PosRePushHelper.cs 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185
  1. using System;
  2. using System.Linq;
  3. using System.Data;
  4. using System.Threading;
  5. using Library;
  6. using LitJson;
  7. using MySystem.Models.Push;
  8. using System.Collections.Generic;
  9. using System.Text;
  10. using System.IO;
  11. using System.Net;
  12. namespace MySystem
  13. {
  14. public class PosRePushHelper
  15. {
  16. public readonly static PosRePushHelper Instance = new PosRePushHelper();
  17. private PosRePushHelper()
  18. {
  19. }
  20. public void Start()//启动
  21. {
  22. Thread thread = new Thread(threadStart);
  23. thread.IsBackground = true;
  24. thread.Start();
  25. }
  26. private void threadStart()
  27. {
  28. while (true)
  29. {
  30. try
  31. {
  32. DoSomeThing();
  33. }
  34. catch (Exception ex)
  35. {
  36. LogHelper.Instance.WriteLog(DateTime.Now.ToString() + "\n" + ex.ToString(), "重推机具数据异常");
  37. }
  38. Thread.Sleep(5000);
  39. }
  40. }
  41. //要执行的方法
  42. public void DoSomeThing()
  43. {
  44. string url = "";
  45. WebCMSEntities db = new WebCMSEntities();
  46. DateTime check = DateTime.Now.AddMinutes(-3);
  47. List<PushPosRecord> list = db.PushPosRecord.Where(m => m.CreateDate >= check && m.Status < 1).OrderBy(m => m.Id).Take(200).ToList();
  48. foreach(PushPosRecord sub in list)
  49. {
  50. string dataType = sub.DataType;
  51. if(dataType == "bind") url = "https://apigateway.kexiaoshuang.com/v1/kxs/statServer/sp/binding";
  52. if(dataType == "un_bind") url = "https://apigateway.kexiaoshuang.com/v1/kxs/statServer/sp/unbind";
  53. if(dataType == "trade") url = "https://apigateway.kexiaoshuang.com/v1/kxs/statServer/sp/trade";
  54. if(dataType == "deposit") url = "https://apigateway.kexiaoshuang.com/v1/kxs/statServer/sp/cash";
  55. if(dataType == "active") url = "https://apigateway.kexiaoshuang.com/v1/kxs/statServer/sp/extActData";
  56. if(dataType == "qr_bind") url = "https://apigateway.kexiaoshuang.com/v1/kxs/statServer/sp/saveHaoDaQrCodeMchInfo";
  57. string res = PostWebRequest(url, sub.EncryptContent, new Dictionary<string, string>());
  58. if(res.Contains("\"status\""))
  59. {
  60. JsonData backObj = JsonMapper.ToObject(res);
  61. if(backObj["status"].ToString() == "1")
  62. {
  63. PushPosRecord edit = db.PushPosRecord.FirstOrDefault(m => m.Id == sub.Id);
  64. if(edit != null)
  65. {
  66. edit.Status = 1;
  67. edit.BackContent = res;
  68. }
  69. }
  70. else
  71. {
  72. PushPosRecord edit = db.PushPosRecord.FirstOrDefault(m => m.Id == sub.Id);
  73. if(edit != null)
  74. {
  75. edit.Status = 2;
  76. edit.BackContent = res;
  77. }
  78. }
  79. }
  80. else
  81. {
  82. PushPosRecord edit = db.PushPosRecord.FirstOrDefault(m => m.Id == sub.Id);
  83. if(edit != null)
  84. {
  85. edit.Status = 3;
  86. edit.BackContent = res;
  87. }
  88. }
  89. }
  90. db.SaveChanges();
  91. db.Dispose();
  92. }
  93. public void SaveToDb(string content, string encryptContent, string dataType)
  94. {
  95. WebCMSEntities db = new WebCMSEntities();
  96. db.PushPosRecord.Add(new PushPosRecord()
  97. {
  98. CreateDate = DateTime.Now,
  99. Content = content,
  100. DataType = dataType,
  101. EncryptContent = encryptContent,
  102. });
  103. db.SaveChanges();
  104. db.Dispose();
  105. }
  106. public string AesEncrypt(string str)
  107. {
  108. if (string.IsNullOrEmpty(str)) return null;
  109. Byte[] toEncryptArray = Encoding.UTF8.GetBytes(str);
  110. string key = "CBTU1dD4Kd5pyiGWTsI10jRQ3SvKusSV";
  111. string iv = "DYgjCEIMVrj2W9xN";
  112. System.Security.Cryptography.RijndaelManaged rm = new System.Security.Cryptography.RijndaelManaged
  113. {
  114. Key = Encoding.UTF8.GetBytes(key),
  115. IV = Encoding.UTF8.GetBytes(iv),
  116. Mode = System.Security.Cryptography.CipherMode.CBC,
  117. Padding = System.Security.Cryptography.PaddingMode.PKCS7
  118. };
  119. System.Security.Cryptography.ICryptoTransform cTransform = rm.CreateEncryptor();
  120. Byte[] resultArray = cTransform.TransformFinalBlock(toEncryptArray, 0, toEncryptArray.Length);
  121. return Convert.ToBase64String(resultArray, 0, resultArray.Length);
  122. }
  123. public string PostWebRequest(string postUrl, string paramData, Dictionary<string, string> headers)
  124. {
  125. string ret = string.Empty;
  126. try
  127. {
  128. byte[] postData = System.Text.Encoding.UTF8.GetBytes(paramData);
  129. // 设置提交的相关参数
  130. HttpWebRequest request = WebRequest.Create(postUrl) as HttpWebRequest;
  131. System.Text.Encoding myEncoding = System.Text.Encoding.UTF8;
  132. request.Method = "POST";
  133. request.KeepAlive = false;
  134. request.AllowAutoRedirect = true;
  135. request.ContentType = "application/json";
  136. foreach (string key in headers.Keys)
  137. {
  138. request.Headers.Add(key, headers[key]);
  139. }
  140. request.UserAgent = "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)";
  141. request.ContentLength = postData.Length;
  142. // 提交请求数据
  143. Stream outputStream = request.GetRequestStream();
  144. outputStream.Write(postData, 0, postData.Length);
  145. outputStream.Close();
  146. HttpWebResponse response;
  147. Stream responseStream;
  148. StreamReader reader;
  149. string srcString;
  150. response = request.GetResponse() as HttpWebResponse;
  151. responseStream = response.GetResponseStream();
  152. reader = new StreamReader(responseStream, System.Text.Encoding.UTF8);
  153. srcString = reader.ReadToEnd();
  154. ret = srcString; //返回值赋值
  155. reader.Close();
  156. }
  157. catch (WebException ex)
  158. {
  159. HttpWebResponse response = (HttpWebResponse)ex.Response;
  160. Stream myResponseStream = response.GetResponseStream();
  161. //获取响应内容
  162. StreamReader myStreamReader = new StreamReader(myResponseStream);
  163. ret = myStreamReader.ReadToEnd();
  164. myResponseStream.Close();
  165. }
  166. catch (Exception ex)
  167. {
  168. ret = "fail";
  169. function.WriteLog(DateTime.Now.ToString() + "\r\n" + ex.ToString(), "POST请求异常");
  170. }
  171. return ret;
  172. }
  173. }
  174. }