GameDouyinComponentSystem.cs 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using Newtonsoft.Json.Linq;
  6. namespace ET.Server
  7. {
  8. [FriendOf(typeof (GameDouyinComponent))]
  9. public static class GameDouyinComponentSystem
  10. {
  11. public class GameDouyinComponentAwakeSystem: AwakeSystem<GameDouyinComponent>
  12. {
  13. protected override void Awake(GameDouyinComponent self)
  14. {
  15. Log.Info($"创建抖音组件...");
  16. self.InitAccessToken();
  17. }
  18. }
  19. public class GameDouyinComponentDestroySystem: DestroySystem<GameDouyinComponent>
  20. {
  21. protected override void Destroy(GameDouyinComponent self)
  22. {
  23. }
  24. }
  25. public class GameDouyinComponentUpdateSystem: UpdateSystem<GameDouyinComponent>
  26. {
  27. protected override void Update(GameDouyinComponent self)
  28. {
  29. if (self.TokenIsNull)
  30. {
  31. return;
  32. }
  33. if (TimeHelper.ClientNow() < self.AccessTokenTime)
  34. {
  35. return;
  36. }
  37. Log.Info($"AccessToken刷新...");
  38. self.InitAccessToken();
  39. Log.Info($"AccessToken刷新完成, AccessToken:{self.AccessToken}, AccessTokenTime:{self.AccessTokenTime}");
  40. }
  41. }
  42. /// <summary>
  43. /// 初始化抖音接口调用凭证
  44. /// </summary>
  45. /// <param name="self"></param>
  46. private static void InitAccessToken(this GameDouyinComponent self)
  47. {
  48. // 请求头
  49. Dictionary<string, string> head = new Dictionary<string, string>();
  50. // 参数
  51. JObject param = new JObject();
  52. param.Add("appid", DouyinConst.Appid);
  53. param.Add("secret", DouyinConst.Secret);
  54. param.Add("grant_type", "client_credential");
  55. string str = HttpHelper.PostRequestByDouyin(DouyinConst.GetAccessTokenUrl, head, param);
  56. if (string.IsNullOrEmpty(str))
  57. {
  58. Log.Error($"InitAccessToken - GetAccessTokenUrl请求失败...返回为null");
  59. return;
  60. }
  61. JObject jObject = JObject.Parse(str);
  62. int errNo = Convert.ToInt32(jObject.SelectToken("err_no"));
  63. if (errNo != 0)
  64. { string errTips = Convert.ToString(jObject.SelectToken("err_tips"));
  65. Log.Error($"InitAccessToken - GetAccessTokenUrl请求成功...返回错误:{errNo}, 错误信息:{errTips}");
  66. return;
  67. }
  68. self.AccessToken = Convert.ToString(jObject.SelectToken("data").SelectToken("access_token"));
  69. long time = Convert.ToInt64(jObject.SelectToken("data").SelectToken("expires_in"));
  70. self.AccessTokenTime = TimeHelper.ClientNow() + time * 1000;
  71. }
  72. /// <summary>
  73. /// 获取抖音直播信息
  74. /// </summary>
  75. /// <param name="self"></param>
  76. /// <param name="token"></param>
  77. /// <returns></returns>
  78. public static JObject GetRoomInfo(this GameDouyinComponent self, string token)
  79. {
  80. if (string.IsNullOrEmpty(self.AccessToken.Trim()))
  81. {
  82. Log.Error($"InitRoomId...AccessToken为null");
  83. return null;
  84. }
  85. // 请求头
  86. Dictionary<string, string> head = new Dictionary<string, string>();
  87. head.Add("X-Token", self.AccessToken.Trim());
  88. // 参数
  89. JObject param = new JObject();
  90. param.Add("token", token);
  91. string str = HttpHelper.PostRequestByDouyin(DouyinConst.GetLiveInfoUrl, head, param);
  92. if (string.IsNullOrEmpty(str))
  93. {
  94. Log.Error($"InitRoomId - GetLiveInfoUrl请求失败...返回为null");
  95. return null;
  96. }
  97. JObject jObject = JObject.Parse(str);
  98. int errNo = Convert.ToInt32(jObject.SelectToken("errcode"));
  99. if (errNo != 0)
  100. {
  101. Log.Error($"InitRoomId - GetLiveInfoUrl请求成功...返回错误:{errNo}");
  102. return null;
  103. }
  104. return jObject;
  105. }
  106. /// <summary>
  107. /// 礼物置顶
  108. /// </summary>
  109. /// <param name="self"></param>
  110. /// <param name="roomId"></param>
  111. public static void TopGifts(this GameDouyinComponent self, long roomId)
  112. {
  113. if (self.TokenIsNull)
  114. {
  115. return;
  116. }
  117. if (string.IsNullOrEmpty(self.AccessToken.Trim()))
  118. {
  119. Log.Error($"TopGifts...AccessToken为null");
  120. return;
  121. }
  122. // 礼物参数
  123. JArray item = new JArray();
  124. foreach (string itemKey in DouyinItem.GiftHash.Keys)
  125. {
  126. item.Add(itemKey);
  127. }
  128. // 请求头
  129. Dictionary<string, string> head = new Dictionary<string, string>();
  130. head.Add("x-token", self.AccessToken.Trim());
  131. // 参数
  132. JObject param = new JObject();
  133. param.Add("room_id", roomId.ToString());
  134. param.Add("app_id", DouyinConst.Appid);
  135. param.Add("sec_gift_id_list", item);
  136. string str = HttpHelper.PostRequestByDouyin(DouyinConst.TopGiftUrl, head, param);
  137. if (string.IsNullOrEmpty(str))
  138. {
  139. Log.Error($"TopGifts - TopGiftUrl请求失败...返回为null");
  140. return;
  141. }
  142. JObject jObject = JObject.Parse(str);
  143. int errNo = Convert.ToInt32(jObject.SelectToken("errcode"));
  144. if (errNo != 0)
  145. {
  146. Log.Error($"TopGifts - TopGiftUrl请求成功...返回错误:{errNo}");
  147. }
  148. }
  149. /// <summary>
  150. /// 签名验证
  151. /// </summary>
  152. /// <param name="header"> = {
  153. /// "x-nonce-str": "123456",
  154. /// "x-timestamp": "456789",
  155. /// "x-roomid": "268",
  156. /// "x-msg-type": "live_gift",
  157. /// } </param>
  158. /// <param name="bodyStr"> = "abc123你好"</param>
  159. /// <param name="secret"> = "oumuamua410"</param>
  160. /// <returns>PDcKhdlsrKEJif6uMKD2dw==</returns>
  161. public static string Signature(Dictionary<string, string> header, string bodyStr, string secret)
  162. {
  163. List<string> keyList = new List<string>(4);
  164. keyList.AddRange(header.Select(keyValuePair => keyValuePair.Key));
  165. keyList.Sort();
  166. List<string> kvList = new List<string>(4);
  167. kvList.AddRange(keyList.Select(key => key + "=" + header[key]));
  168. string urlParams = string.Join("&", kvList);
  169. string rawData = MD5Helper.StringMD5(urlParams + bodyStr + secret);
  170. byte[] bytes = Encoding.GetEncoding("UTF-8").GetBytes(rawData);
  171. return Convert.ToBase64String(bytes);
  172. }
  173. }
  174. }