MapDouyinLiveLikeComponentSystem.cs 6.9 KB

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