MapDouyinLiveLikeComponentSystem.cs 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179
  1. using System;
  2. using System.Collections.Generic;
  3. using Newtonsoft.Json.Linq;
  4. namespace ET.Server
  5. {
  6. [FriendOf(typeof (MapDouyinLiveLikeComponent))]
  7. public static class MapDouyinLiveLikeComponentSystem
  8. {
  9. public class MapDouyinLiveLikeComponentAwakeSystem: AwakeSystem<MapDouyinLiveLikeComponent>
  10. {
  11. protected override void Awake(MapDouyinLiveLikeComponent self)
  12. {
  13. Log.Info($"创建抖音直播点赞任务组件...");
  14. // self.StartTask();
  15. }
  16. }
  17. public class MapDouyinLiveLikeComponentDestroySystem: DestroySystem<MapDouyinLiveLikeComponent>
  18. {
  19. protected override void Destroy(MapDouyinLiveLikeComponent self)
  20. {
  21. Log.Info($"销毁抖音直播点赞任务组件");
  22. self.StopTask();
  23. }
  24. }
  25. public class MapDouyinLiveLikeComponentUpdateSystem: UpdateSystem<MapDouyinLiveLikeComponent>
  26. {
  27. protected override void Update(MapDouyinLiveLikeComponent self)
  28. {
  29. // 运行中状态
  30. if (self.Status == 3)
  31. {
  32. return;
  33. }
  34. Log.Debug($"检查抖音直播点赞任务状态...Status={self.Status}");
  35. self.Status = self.CheckTaskStatus();
  36. switch (self.Status)
  37. {
  38. case -1:
  39. {
  40. // 接口请求出错
  41. Log.Debug($"检查抖音直播点赞任务状态 - 抖音接口请求出错");
  42. break;
  43. }
  44. case 1:
  45. {
  46. // 数据推送回调任务不存在
  47. Log.Debug($"检查抖音直播点赞任务状态 - 任务已经被删除,可能是因为主播取消挂载/已关播");
  48. break;
  49. }
  50. case 2:
  51. {
  52. // 数据推送回调任务未启动则启动
  53. self.StartTask();
  54. break;
  55. }
  56. case 3:
  57. // 数据推送回调任务运行中,不处理
  58. break;
  59. }
  60. }
  61. }
  62. /// <summary>
  63. /// 启动点赞推送任务
  64. /// </summary>
  65. /// <param name="self"></param>
  66. private static void StartTask(this MapDouyinLiveLikeComponent self)
  67. {
  68. // 请求头
  69. Dictionary<string, string> head = new Dictionary<string, string>();
  70. head.Add("access-token", self.GetParent<Map>().AccessToken);
  71. // 参数
  72. JObject param = new JObject();
  73. param.Add("roomid", self.GetParent<Map>().RoomId.ToString());
  74. param.Add("appid", DouyinConst.Appid);
  75. param.Add("msg_type", "live_like");
  76. string str = HttpHelper.PostRequestByDouyin(DouyinConst.StartTaskUrl, head, param);
  77. if (string.IsNullOrEmpty(str))
  78. {
  79. Log.Error($"启动点赞推送任务 - StartTaskUrl 请求失败...返回为null");
  80. return;
  81. }
  82. JObject jObject = JObject.Parse(str);
  83. int errNo = Convert.ToInt32(jObject.SelectToken("err_no"));
  84. if (errNo != 0)
  85. {
  86. Log.Error($"启动点赞推送任务 - StartTaskUrl 请求成功...返回错误:{errNo}");
  87. return;
  88. }
  89. self.LogId = Convert.ToInt64(jObject.SelectToken("data").SelectToken("logid"));
  90. self.TaskId = Convert.ToInt64(jObject.SelectToken("data").SelectToken("task_id"));
  91. }
  92. /// <summary>
  93. /// 停止点赞推送任务
  94. /// </summary>
  95. /// <param name="self"></param>
  96. private static void StopTask(this MapDouyinLiveLikeComponent self)
  97. {
  98. // 请求头
  99. Dictionary<string, string> head = new Dictionary<string, string>();
  100. head.Add("access-token", self.GetParent<Map>().AccessToken);
  101. // 参数
  102. JObject param = new JObject();
  103. param.Add("roomid", self.GetParent<Map>().RoomId.ToString());
  104. param.Add("appid", DouyinConst.Appid);
  105. param.Add("msg_type", "live_like");
  106. string str = HttpHelper.PostRequestByDouyin(DouyinConst.StopTaskUrl, head, param);
  107. if (string.IsNullOrEmpty(str))
  108. {
  109. Log.Error($"停止点赞推送任务 - StopTaskUrl 请求失败...返回为null");
  110. return;
  111. }
  112. JObject jObject = JObject.Parse(str);
  113. int errNo = Convert.ToInt32(jObject.SelectToken("err_no"));
  114. if (errNo != 0)
  115. {
  116. Log.Error($"停止点赞推送任务 - StopTaskUrl 请求成功...返回错误:{errNo}");
  117. return;
  118. }
  119. self.LogId = Convert.ToInt64(jObject.SelectToken("data").SelectToken("logid"));
  120. }
  121. /// <summary>
  122. /// 检查点赞推送任务状态 (1-任务不存在, 2-任务未启动, 3-任务运行中)
  123. /// </summary>
  124. /// <param name="self"></param>
  125. /// <returns></returns>
  126. private static int CheckTaskStatus(this MapDouyinLiveLikeComponent self)
  127. {
  128. Dictionary<string, string> head = new Dictionary<string, string>();
  129. head.Add("access-token", self.GetParent<Map>().AccessToken);
  130. // 参数
  131. Dictionary<string, string> param = new Dictionary<string, string>();
  132. param.Add("roomid", self.GetParent<Map>().RoomId.ToString());
  133. param.Add("appid", DouyinConst.Appid);
  134. param.Add("msg_type", "live_like");
  135. string str = HttpHelper.GetRequestByDouyin(DouyinConst.CheckTaskUrl, head, param);
  136. if (string.IsNullOrEmpty(str))
  137. {
  138. Log.Error($"检查点赞推送任务状态 - CheckTaskUrl 请求失败...返回为null");
  139. return -1;
  140. }
  141. JObject jObject = JObject.Parse(str);
  142. int errNo = Convert.ToInt32(jObject.SelectToken("err_no"));
  143. if (errNo != 0)
  144. {
  145. Log.Error($"检查点赞推送任务状态 - CheckTaskUrl 请求成功...返回错误:{errNo}");
  146. return -1;
  147. }
  148. self.LogId = Convert.ToInt64(jObject.SelectToken("data").SelectToken("logid"));
  149. return Convert.ToInt32(jObject.SelectToken("data").SelectToken("status"));
  150. }
  151. }
  152. }