ConsumersController.cs 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using Microsoft.AspNetCore.Mvc;
  5. using Microsoft.AspNetCore.Http;
  6. using Microsoft.Extensions.Logging;
  7. using Microsoft.Extensions.Options;
  8. using Microsoft.AspNetCore.Authorization;
  9. using System.Web;
  10. using MySystem.MainModels;
  11. using LitJson;
  12. using Library;
  13. using System.Security.Cryptography;
  14. using System.Text;
  15. using Aop.Api;
  16. using Aop.Api.Request;
  17. using Aop.Api.Response;
  18. using System.Collections;
  19. using Aop.Api.Util;
  20. namespace MySystem.Areas.Api.Controllers.v1
  21. {
  22. [Area("Api")]
  23. [Route("Api/v1/[controller]/[action]")]
  24. public class ConsumersController : BaseController
  25. {
  26. public ConsumersController(IHttpContextAccessor accessor, ILogger<BaseController> logger, IOptions<Setting> setting) : base(accessor, logger, setting)
  27. {
  28. }
  29. #region 消费者-微信小程序通过code获取openid
  30. [Authorize]
  31. public JsonResult WeChatMiniOpenId(string value)
  32. {
  33. value = DesDecrypt(value);
  34. JsonData data = JsonMapper.ToObject(value);
  35. AppResultJson result = WeChatMiniOpenIdDo(value);
  36. return Json(new AppResultJson() { Status = result.Status, Info = result.Info, Data = result.Data });
  37. }
  38. public AppResultJson WeChatMiniOpenIdDo(string value)
  39. {
  40. JsonData data = JsonMapper.ToObject(value);
  41. string code = data["code"].ToString(); //微信小程序获取的code
  42. string nickName = data["nickName"].ToString(); //昵称
  43. string avatarUrl = data["avatarUrl"].ToString(); //头像地址
  44. string encryptedData = data["encryptedData"].ToString(); //微信小程序获取手机号的数据包
  45. string iv = data["iv"].ToString(); //微信小程序获取手机号的IV
  46. Dictionary<string, object> Obj = new Dictionary<string, object>();
  47. // PublicAccountSet set = RedisDbconn.Instance.Get<PublicAccountSet>("PublicAccountSet") ?? new PublicAccountSet();
  48. PublicAccountSet set = new PublicAccountSet()
  49. {
  50. WeChatMiniAppId = "wx5417e0770bb19c4e",
  51. WeChatMiniAppSecret = "b853caabd367e1f3fd729c259ac8bee6",
  52. };
  53. string result = function.GetWebRequest("https://api.weixin.qq.com/sns/jscode2session?appid=" + set.WeChatMiniAppId + "&secret=" + set.WeChatMiniAppSecret + "&js_code=" + code + "&grant_type=authorization_code");
  54. JsonData jsonObj = JsonMapper.ToObject(result);
  55. string openid = jsonObj["openid"].ToString();
  56. string session_key = jsonObj["session_key"].ToString();
  57. string mobile = getPhoneNumber(encryptedData, iv, session_key)["Mobile"];
  58. if (mobile == "err")
  59. {
  60. Obj.Add("ConsumerId", "");
  61. return new AppResultJson() { Status = "-1", Info = "授权失败,请重试", Data = Obj };
  62. }
  63. int ConsumerId = 0;
  64. ConsumerOpenIds check = ConsumerOpenIdsDbconn.Instance.Get(openid);
  65. if (check == null)
  66. {
  67. // ConsumerId = PublicFunction.MakeConsumerId();
  68. Consumers consumer = new Consumers()
  69. {
  70. Id = ConsumerId,
  71. CreateDate = DateTime.Now,
  72. NickName = filterEmoji(nickName),
  73. HeadPhoto = avatarUrl,
  74. Mobile = mobile,
  75. WechatOpenId = openid,
  76. };
  77. check = new ConsumerOpenIds()
  78. {
  79. OpenId = openid,
  80. ConsumerId = ConsumerId,
  81. };
  82. }
  83. else
  84. {
  85. Consumers consumer = ConsumersDbconn.Instance.Get(check.ConsumerId);
  86. consumer.NickName = filterEmoji(nickName);
  87. consumer.HeadPhoto = avatarUrl;
  88. consumer.Mobile = mobile;
  89. ConsumerId = check.ConsumerId;
  90. }
  91. Obj.Add("ConsumerId", ConsumerId); //消费者Id
  92. return new AppResultJson() { Status = "1", Info = "", Data = Obj };
  93. }
  94. public Dictionary<string, string> getPhoneNumber(string encryptedData, string iv, string session_key)
  95. {
  96. Dictionary<string, string> Obj = new Dictionary<string, string>();
  97. try
  98. {
  99. byte[] encryData = Convert.FromBase64String(encryptedData);
  100. RijndaelManaged rijndaelCipher = new RijndaelManaged();
  101. rijndaelCipher.Key = Convert.FromBase64String(session_key);
  102. rijndaelCipher.IV = Convert.FromBase64String(iv);
  103. rijndaelCipher.Mode = CipherMode.CBC;
  104. rijndaelCipher.Padding = PaddingMode.PKCS7;
  105. ICryptoTransform transform = rijndaelCipher.CreateDecryptor();
  106. byte[] plainText = transform.TransformFinalBlock(encryData, 0, encryData.Length);
  107. string result = Encoding.Default.GetString(plainText);
  108. dynamic model = Newtonsoft.Json.Linq.JToken.Parse(result) as dynamic;
  109. string phoneNumber = model.phoneNumber;
  110. //return model.phoneNumber;
  111. if (string.IsNullOrEmpty(phoneNumber))
  112. {
  113. phoneNumber = "";
  114. }
  115. Obj.Add("Mobile", phoneNumber);
  116. }
  117. catch(Exception ex)
  118. {
  119. Obj.Add("Mobile", "err");
  120. function.WriteLog(DateTime.Now.ToString(), "微信小程序获取手机号异常");
  121. function.WriteLog(encryptedData, "微信小程序获取手机号异常");
  122. function.WriteLog(iv, "微信小程序获取手机号异常");
  123. function.WriteLog(session_key, "微信小程序获取手机号异常");
  124. function.WriteLog(ex.ToString(), "微信小程序获取手机号异常");
  125. function.WriteLog("\r\n\r\n", "微信小程序获取手机号异常");
  126. }
  127. return Obj;
  128. }
  129. public string filterEmoji(string str)
  130. {
  131. string origin = str;
  132. try
  133. {
  134. //关键代码
  135. foreach (var a in str)
  136. {
  137. byte[] bts = System.Text.Encoding.UTF32.GetBytes(a.ToString());
  138. if (bts[0].ToString() == "253" && bts[1].ToString() == "255")
  139. {
  140. str = str.Replace(a.ToString(), "");
  141. }
  142. }
  143. }
  144. catch
  145. {
  146. str = origin;
  147. }
  148. return str;
  149. }
  150. #endregion
  151. #region 消费者-支付宝通过code获取openid
  152. [Authorize]
  153. public JsonResult AlipayMiniOpenId(string value)
  154. {
  155. if (string.IsNullOrEmpty(value))
  156. {
  157. System.IO.StreamReader sr = new System.IO.StreamReader(Request.Body);
  158. value = sr.ReadToEnd();
  159. value = value.Split('=')[1];
  160. }
  161. value = DesDecrypt(value);
  162. JsonData data = JsonMapper.ToObject(value);
  163. AppResultJson result = AlipayMiniOpenIdDo(value);
  164. return Json(new AppResultJson() { Status = result.Status, Info = result.Info, Data = result.Data });
  165. }
  166. public AppResultJson AlipayMiniOpenIdDo(string value)
  167. {
  168. JsonData data = JsonMapper.ToObject(value);
  169. string code = data["code"].ToString(); //微信小程序获取的code
  170. // string nickName = data["nickName"].ToString(); //昵称
  171. // string avatarUrl = data["avatarUrl"].ToString(); //头像地址
  172. string encryptedData = data["encryptedData"].ToString(); //微信小程序获取手机号的数据包
  173. // string iv = data["iv"].ToString(); //微信小程序获取手机号的IV
  174. Dictionary<string, object> Obj = new Dictionary<string, object>();
  175. string UserIdString = new AlipayFunction(_accessor.HttpContext).GetAlipayUserId(code);
  176. string AlipayUserId = UserIdString.Split('|')[0];
  177. string mobile = new AlipayFunction(_accessor.HttpContext).GetAlipayMobile(encryptedData);
  178. if (mobile.StartsWith("success|"))
  179. {
  180. mobile = mobile.Split('|')[1];
  181. }
  182. int ConsumerId = 0;
  183. ConsumerOpenIds check = ConsumerOpenIdsDbconn.Instance.Get(AlipayUserId);
  184. if (check == null)
  185. {
  186. // ConsumerId = PublicFunction.MakeConsumerId();
  187. Consumers consumer = new Consumers()
  188. {
  189. Id = ConsumerId,
  190. CreateDate = DateTime.Now,
  191. NickName = "码牌用户" + function.get_Random(6),
  192. // HeadPhoto = avatarUrl,
  193. Mobile = mobile,
  194. AlipayUserId = AlipayUserId,
  195. };
  196. check = new ConsumerOpenIds()
  197. {
  198. OpenId = AlipayUserId,
  199. ConsumerId = ConsumerId,
  200. };
  201. }
  202. else
  203. {
  204. Consumers consumer = ConsumersDbconn.Instance.Get(check.ConsumerId);
  205. // consumer.NickName = filterEmoji(nickName);
  206. // consumer.HeadPhoto = avatarUrl;
  207. consumer.Mobile = mobile;
  208. ConsumerId = check.ConsumerId;
  209. }
  210. Obj.Add("ConsumerId", ConsumerId); //消费者Id
  211. return new AppResultJson() { Status = "1", Info = "", Data = Obj };
  212. }
  213. #endregion
  214. #region 消费者-消费者详情
  215. [Authorize]
  216. public JsonResult Detail(string value)
  217. {
  218. value = DesDecrypt(value);
  219. JsonData data = JsonMapper.ToObject(value);
  220. Dictionary<string, object> Obj = DetailDo(value);
  221. return Json(new AppResultJson() { Status = "1", Info = "", Data = Obj });
  222. }
  223. public Dictionary<string, object> DetailDo(string value)
  224. {
  225. JsonData data = JsonMapper.ToObject(value);
  226. Dictionary<string, object> Obj = new Dictionary<string, object>();
  227. Consumers query = new Consumers();
  228. int Id = int.Parse(function.CheckInt(data["Id"].ToString()));
  229. query = ConsumersDbconn.Instance.Get(Id) ?? new Consumers();
  230. Obj.Add("NickName", query.NickName); //昵称
  231. Obj.Add("HeadPhoto", DefaultPic(query.HeadPhoto)); //头像
  232. Obj.Add("Mobile", query.Mobile); //手机号
  233. Obj.Add("TotalDividend", query.TotalDividend); //累计分红
  234. Obj.Add("TotalIntegral", query.TotalIntegral); //累计积分
  235. Obj.Add("CurIntgegral", query.CurIntgegral); //当前积分
  236. Obj.Add("CreateDate", query.CreateDate); //创建时间
  237. return Obj;
  238. }
  239. #endregion
  240. #region 检查签名是否合法,合法返回1,不合法返回提示信息
  241. /// <summary>
  242. /// 检查签名是否合法,合法返回1,不合法返回提示信息
  243. /// </summary>
  244. /// <param name="value">请求的参数(json字符串)</param>
  245. /// <param name="signField">要签名的字段</param>
  246. /// <returns></returns>
  247. private string CheckSign(string value, string[] signField)
  248. {
  249. JsonData json = JsonMapper.ToObject(value);
  250. Dictionary<string, string> dic = new Dictionary<string, string>();
  251. for (int i = 0; i < signField.Length; i++)
  252. {
  253. dic.Add(signField[i], json[signField[i]].ToString());
  254. }
  255. string sign = json["sign"].ToString(); //客户端签名字符串
  256. return new Sign().sign(dic, sign);
  257. }
  258. #endregion
  259. }
  260. }