ConsumersController.cs 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280
  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. Consumers check = maindb.Consumers.FirstOrDefault(m => m.WechatOpenId == openid);
  65. if (check == null)
  66. {
  67. check = maindb.Consumers.Add(new Consumers()
  68. {
  69. CreateDate = DateTime.Now,
  70. NickName = filterEmoji(nickName),
  71. HeadPhoto = avatarUrl,
  72. Mobile = mobile,
  73. WechatOpenId = openid,
  74. }).Entity;
  75. maindb.SaveChanges();
  76. ConsumerId = check.Id;
  77. maindb.ConsumerOpenIds.Add(new ConsumerOpenIds()
  78. {
  79. OpenId = openid,
  80. ConsumerId = ConsumerId,
  81. });
  82. maindb.SaveChanges();
  83. }
  84. else
  85. {
  86. check.NickName = filterEmoji(nickName);
  87. check.HeadPhoto = avatarUrl;
  88. check.Mobile = mobile;
  89. ConsumerId = check.Id;
  90. maindb.SaveChanges();
  91. }
  92. Obj.Add("ConsumerId", ConsumerId); //消费者Id
  93. return new AppResultJson() { Status = "1", Info = "", Data = Obj };
  94. }
  95. public Dictionary<string, string> getPhoneNumber(string encryptedData, string iv, string session_key)
  96. {
  97. Dictionary<string, string> Obj = new Dictionary<string, string>();
  98. try
  99. {
  100. byte[] encryData = Convert.FromBase64String(encryptedData);
  101. RijndaelManaged rijndaelCipher = new RijndaelManaged();
  102. rijndaelCipher.Key = Convert.FromBase64String(session_key);
  103. rijndaelCipher.IV = Convert.FromBase64String(iv);
  104. rijndaelCipher.Mode = CipherMode.CBC;
  105. rijndaelCipher.Padding = PaddingMode.PKCS7;
  106. ICryptoTransform transform = rijndaelCipher.CreateDecryptor();
  107. byte[] plainText = transform.TransformFinalBlock(encryData, 0, encryData.Length);
  108. string result = Encoding.Default.GetString(plainText);
  109. dynamic model = Newtonsoft.Json.Linq.JToken.Parse(result) as dynamic;
  110. string phoneNumber = model.phoneNumber;
  111. //return model.phoneNumber;
  112. if (string.IsNullOrEmpty(phoneNumber))
  113. {
  114. phoneNumber = "";
  115. }
  116. Obj.Add("Mobile", phoneNumber);
  117. }
  118. catch(Exception ex)
  119. {
  120. Obj.Add("Mobile", "err");
  121. function.WriteLog(DateTime.Now.ToString(), "微信小程序获取手机号异常");
  122. function.WriteLog(encryptedData, "微信小程序获取手机号异常");
  123. function.WriteLog(iv, "微信小程序获取手机号异常");
  124. function.WriteLog(session_key, "微信小程序获取手机号异常");
  125. function.WriteLog(ex.ToString(), "微信小程序获取手机号异常");
  126. function.WriteLog("\r\n\r\n", "微信小程序获取手机号异常");
  127. }
  128. return Obj;
  129. }
  130. public string filterEmoji(string str)
  131. {
  132. string origin = str;
  133. try
  134. {
  135. //关键代码
  136. foreach (var a in str)
  137. {
  138. byte[] bts = System.Text.Encoding.UTF32.GetBytes(a.ToString());
  139. if (bts[0].ToString() == "253" && bts[1].ToString() == "255")
  140. {
  141. str = str.Replace(a.ToString(), "");
  142. }
  143. }
  144. }
  145. catch
  146. {
  147. str = origin;
  148. }
  149. return str;
  150. }
  151. #endregion
  152. #region 消费者-支付宝通过code获取openid
  153. [Authorize]
  154. public JsonResult AlipayMiniOpenId(string value)
  155. {
  156. if (string.IsNullOrEmpty(value))
  157. {
  158. System.IO.StreamReader sr = new System.IO.StreamReader(Request.Body);
  159. value = sr.ReadToEnd();
  160. value = value.Split('=')[1];
  161. }
  162. value = DesDecrypt(value);
  163. JsonData data = JsonMapper.ToObject(value);
  164. AppResultJson result = AlipayMiniOpenIdDo(value);
  165. return Json(new AppResultJson() { Status = result.Status, Info = result.Info, Data = result.Data });
  166. }
  167. public AppResultJson AlipayMiniOpenIdDo(string value)
  168. {
  169. JsonData data = JsonMapper.ToObject(value);
  170. string code = data["code"].ToString(); //微信小程序获取的code
  171. // string nickName = data["nickName"].ToString(); //昵称
  172. // string avatarUrl = data["avatarUrl"].ToString(); //头像地址
  173. string encryptedData = data["encryptedData"].ToString(); //微信小程序获取手机号的数据包
  174. // string iv = data["iv"].ToString(); //微信小程序获取手机号的IV
  175. Dictionary<string, object> Obj = new Dictionary<string, object>();
  176. string UserIdString = new AlipayFunction(_accessor.HttpContext).GetAlipayUserId(code);
  177. string AlipayUserId = UserIdString.Split('|')[0];
  178. string mobile = new AlipayFunction(_accessor.HttpContext).GetAlipayMobile(encryptedData);
  179. if (mobile.StartsWith("success|"))
  180. {
  181. mobile = mobile.Split('|')[1];
  182. }
  183. int ConsumerId = 0;
  184. ConsumerOpenIds check = ConsumerOpenIdsDbconn.Instance.Get(AlipayUserId);
  185. if (check == null)
  186. {
  187. // ConsumerId = PublicFunction.MakeConsumerId();
  188. Consumers consumer = new Consumers()
  189. {
  190. Id = ConsumerId,
  191. CreateDate = DateTime.Now,
  192. NickName = "码牌用户" + function.get_Random(6),
  193. // HeadPhoto = avatarUrl,
  194. Mobile = mobile,
  195. AlipayUserId = AlipayUserId,
  196. };
  197. check = new ConsumerOpenIds()
  198. {
  199. OpenId = AlipayUserId,
  200. ConsumerId = ConsumerId,
  201. };
  202. }
  203. else
  204. {
  205. Consumers consumer = ConsumersDbconn.Instance.Get(check.ConsumerId);
  206. // consumer.NickName = filterEmoji(nickName);
  207. // consumer.HeadPhoto = avatarUrl;
  208. consumer.Mobile = mobile;
  209. ConsumerId = check.ConsumerId;
  210. }
  211. Obj.Add("ConsumerId", ConsumerId); //消费者Id
  212. return new AppResultJson() { Status = "1", Info = "", Data = Obj };
  213. }
  214. #endregion
  215. #region 消费者-消费者详情
  216. [Authorize]
  217. public JsonResult Detail(string value)
  218. {
  219. value = DesDecrypt(value);
  220. JsonData data = JsonMapper.ToObject(value);
  221. Dictionary<string, object> Obj = DetailDo(value);
  222. return Json(new AppResultJson() { Status = "1", Info = "", Data = Obj });
  223. }
  224. public Dictionary<string, object> DetailDo(string value)
  225. {
  226. JsonData data = JsonMapper.ToObject(value);
  227. Dictionary<string, object> Obj = new Dictionary<string, object>();
  228. Consumers query = new Consumers();
  229. int Id = int.Parse(function.CheckInt(data["Id"].ToString()));
  230. query = ConsumersDbconn.Instance.Get(Id) ?? new Consumers();
  231. Obj.Add("NickName", query.NickName); //昵称
  232. Obj.Add("HeadPhoto", DefaultPic(query.HeadPhoto)); //头像
  233. Obj.Add("Mobile", query.Mobile); //手机号
  234. Obj.Add("TotalDividend", new ConsumerProfitService().Sum("GetMoney", " and ConsumerId=" + Id)); //累计分红
  235. Obj.Add("TotalIntegral", query.TotalIntegral); //累计积分
  236. Obj.Add("CurIntgegral", query.CurIntgegral); //当前积分
  237. Obj.Add("CreateDate", query.CreateDate); //创建时间
  238. return Obj;
  239. }
  240. #endregion
  241. #region 检查签名是否合法,合法返回1,不合法返回提示信息
  242. /// <summary>
  243. /// 检查签名是否合法,合法返回1,不合法返回提示信息
  244. /// </summary>
  245. /// <param name="value">请求的参数(json字符串)</param>
  246. /// <param name="signField">要签名的字段</param>
  247. /// <returns></returns>
  248. private string CheckSign(string value, string[] signField)
  249. {
  250. JsonData json = JsonMapper.ToObject(value);
  251. Dictionary<string, string> dic = new Dictionary<string, string>();
  252. for (int i = 0; i < signField.Length; i++)
  253. {
  254. dic.Add(signField[i], json[signField[i]].ToString());
  255. }
  256. string sign = json["sign"].ToString(); //客户端签名字符串
  257. return new Sign().sign(dic, sign);
  258. }
  259. #endregion
  260. }
  261. }