IMService.Remove.cs 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. using System.Collections.Generic;
  2. using System.Net;
  3. using System.Threading.Tasks;
  4. using GxPress.Common.Exceptions;
  5. using GxPress.Common.Http;
  6. using GxPress.Common.Extensions;
  7. using GxPress.Common.Tools;
  8. namespace GxPress.Service.Implement.IM
  9. {
  10. /// <summary>
  11. /// 解散群组
  12. /// </summary>
  13. public partial class IMService
  14. {
  15. /// <summary>
  16. /// 根据ImId删除群组
  17. /// </summary>
  18. /// <param name="groupChatImId"></param>
  19. /// <returns></returns>
  20. public async Task<bool> DeleteGroupChatAsync(string groupChatImId,int userId)
  21. {
  22. var imServiceUrl = ConfigHelper.GetValue("ServiceAddress:ImUrl");
  23. //获取群信息
  24. var groupChat = await _groupChatRepository.GetGroupChatByImIdAsync(groupChatImId);
  25. if (groupChat == null)
  26. throw new BusinessException("群不存在");
  27. if(groupChat.UserId!=userId)
  28. throw new BusinessException("不是群主不能解散群");
  29. var url = $"{imServiceUrl}/chatgroups/{groupChatImId}";
  30. try
  31. {
  32. var token = await _cache.GetAsync<string>("ImToken");
  33. var headers = new Dictionary<string, string> { { "Authorization", "Bearer " + token } };
  34. var response =
  35. await HttpClientHelper.DeleteAsync(url, headers);
  36. var tokenJson = await response.Content.ReadAsStringAsync();
  37. if (response.IsSuccessStatusCode)
  38. {
  39. //删除群
  40. await _groupChatRepository.DeleteAsync(groupChat.Id);
  41. }
  42. if (response.StatusCode == HttpStatusCode.Unauthorized)
  43. throw new BusinessException("未授权[无token、token错误、token过期]");
  44. if (response.StatusCode == HttpStatusCode.BadRequest)
  45. throw new BusinessException("owner用户不存在");
  46. if (response.StatusCode == HttpStatusCode.TooManyRequests)
  47. throw new BusinessException("接口被限流");
  48. }
  49. catch (System.Exception ex)
  50. {
  51. throw new BusinessException(ex.Message);
  52. }
  53. return true;
  54. }
  55. }
  56. }