IMService.Chatgroups.cs 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Net;
  4. using System.Threading.Tasks;
  5. using GxPress.Common.Exceptions;
  6. using GxPress.Common.Http;
  7. using GxPress.Request.GroupChat;
  8. using Newtonsoft.Json;
  9. using GxPress.Common.Extensions;
  10. using GxPress.Result.App.IM;
  11. using GxPress.Common.Tools;
  12. using System.Linq;
  13. namespace GxPress.Service.Implement.IM
  14. {
  15. /// <summary>
  16. /// 创建群组
  17. /// </summary>
  18. public partial class IMService
  19. {
  20. /// <summary>
  21. /// 创建群
  22. /// </summary>
  23. /// <returns></returns>
  24. public async Task<CreateGroupChatResult> CreateGroupChatAsync(GroupChatInRequest request)
  25. {
  26. var imServiceUrl = ConfigHelper.GetValue("ServiceAddress:ImUrl");
  27. var result = new CreateGroupChatResult();
  28. if (string.IsNullOrEmpty(request.Name))
  29. throw new BusinessException("群名称不能为空");
  30. if (string.IsNullOrEmpty(request.AvatarUrl))
  31. throw new BusinessException("群头像不能为空");
  32. if (string.IsNullOrEmpty(request.Introduce))
  33. throw new BusinessException("群介绍不能为空");
  34. try
  35. {
  36. var token = await _cache.GetAsync<string>("ImToken");
  37. //创建群
  38. var url = $"{imServiceUrl}/chatgroups";
  39. var headers = new Dictionary<string, string> { { "Authorization", "Bearer " + token } };
  40. // //获取成员
  41. var users = await _userRepository.UserListInsAsync(request.UserIds);
  42. request.Users = users.ToList();
  43. //获取用户
  44. var user = await _userRepository.GetAsync(request.UserId);
  45. var list = new List<string>();
  46. list.AddRange(users.Select(n => n.ImId));
  47. //构造数据
  48. string userValues = string.Empty;
  49. foreach (var value in list)
  50. userValues += "\"" + value + "\",";
  51. if (userValues.Length > 0)
  52. userValues = userValues.Remove(userValues.Length - 1, 1);
  53. var members_only = request.IsAdmin ? "true" : "false";
  54. var jsonString =
  55. "{\"groupname\":\"" + request.Name + "\",\"desc\":\"" + request.Introduce +
  56. "\",\"public\":true,\"maxusers\":1000,\"members_only\":" + members_only + ",\"owner\":\"" +
  57. user.ImId + "\",\"members\":[" + userValues + "]}";
  58. var response =
  59. await HttpClientHelper.PostAsync(url, JsonConvert.DeserializeObject(jsonString), headers);
  60. var tokenJson = await response.Content.ReadAsStringAsync();
  61. if (response.IsSuccessStatusCode)
  62. {
  63. result.Success = true;
  64. var dataJsonDynamic = JsonConvert.DeserializeObject<dynamic>(tokenJson);
  65. //获取groupChatImId
  66. request.GroupChatImId = dataJsonDynamic.data.groupid.ToString();
  67. result.GroupChatImId = request.GroupChatImId;
  68. //创建群写入数据库
  69. request.UserIds = new List<int>();
  70. await _groupChatRepository.InsertAsync(request);
  71. await groupChatService.InsertUsersIntoGroupChatAsync(new Request.App.IM.InsertGroupChatUsersRequest()
  72. {
  73. GroupChatImId = result.GroupChatImId,
  74. Users = request.Users,
  75. });
  76. return result;
  77. }
  78. if (response.StatusCode == HttpStatusCode.Unauthorized)
  79. throw new BusinessException("未授权[无token、token错误、token过期]");
  80. if (response.StatusCode == HttpStatusCode.BadRequest)
  81. throw new BusinessException("owner用户不存在");
  82. if (response.StatusCode == HttpStatusCode.TooManyRequests)
  83. throw new BusinessException("接口被限流");
  84. throw new BusinessException(tokenJson);
  85. //result.Success = false;
  86. }
  87. catch (Exception e)
  88. {
  89. throw new BusinessException(e.Message);
  90. }
  91. return result;
  92. }
  93. }
  94. }