MerchantQrCodeController.cs 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358
  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.Models.Main;
  11. using MySystem.Models.Main1;
  12. using LitJson;
  13. using Library;
  14. using MySystem.Service.Main;
  15. namespace MySystem.Areas.Api.Controllers.v1
  16. {
  17. [Area("Api")]
  18. [Route("Api/v1/[controller]/[action]")]
  19. public class MerchantQrCodeController : BaseController
  20. {
  21. public MerchantQrCodeController(IHttpContextAccessor accessor) : base(accessor)
  22. {
  23. }
  24. #region 商户-已绑二维码
  25. // [Authorize]
  26. public JsonResult List(string value)
  27. {
  28. value = DesDecrypt(value);
  29. value = value.Replace("null", "\"\"");
  30. JsonData data = JsonMapper.ToObject(value);
  31. List<Dictionary<string, object>> dataList = ListDo(value);
  32. return Json(new AppResultJson() { Status = "1", Info = "", Data = dataList });
  33. }
  34. public List<Dictionary<string, object>> ListDo(string value)
  35. {
  36. JsonData data = JsonMapper.ToObject(value);
  37. int MerchantId = int.Parse(function.CheckInt(data.getItem("MerchantId").ToString())); //商户
  38. int PageSize = int.Parse(function.CheckInt(data.getItem("PageSize").ToString()));
  39. int PageNum = int.Parse(function.CheckInt(data.getItem("PageNum").ToString()));
  40. List<Dictionary<string, object>> dataList = new List<Dictionary<string, object>>();
  41. Models.Main.MerchantInfo merchant = MerchantInfoDbconn.Instance.Get(MerchantId) ?? new Models.Main.MerchantInfo();
  42. IQueryable<Models.Main1.MerchantQrCode> query = main1db.MerchantQrCode.Where(m => m.MerchantId == MerchantId && m.QueryCount == 2);
  43. if (PageNum == 1)
  44. {
  45. query = query.Take(PageSize);
  46. }
  47. else
  48. {
  49. int skipNum = PageSize * (PageNum - 1);
  50. query = query.Skip(skipNum).Take(PageSize);
  51. }
  52. foreach (Models.Main1.MerchantQrCode subdata in query.ToList())
  53. {
  54. Dictionary<string, object> curData = new Dictionary<string, object>();
  55. curData.Add("SnNo", subdata.SnNo); //Sn编号
  56. curData.Add("Id", subdata.Id); //Id
  57. curData.Add("BindDate", subdata.CreateDate == null ? "" : subdata.CreateDate.Value.ToString("yyyy-MM-dd")); //绑定时间
  58. curData.Add("MerchantName", merchant.Name); //商户名称
  59. Models.Main1.PosMachines machine = PosMachinesDbconn.Instance.Get(subdata.MachineId) ?? new Models.Main1.PosMachines();
  60. curData.Add("MachineSnNo", machine.PosSn); //音箱SN
  61. curData.Add("BindFlag", machine.BindingState); //绑定状态
  62. dataList.Add(curData);
  63. }
  64. return dataList;
  65. }
  66. #endregion
  67. #region 商户-绑定收款码
  68. // [Authorize]
  69. public JsonResult Bind(string value)
  70. {
  71. value = DesDecrypt(value);
  72. value = value.Replace("null", "\"\"");
  73. JsonData data = JsonMapper.ToObject(value);
  74. AppResultJson result = BindDo(value);
  75. return Json(new AppResultJson() { Status = result.Status, Info = result.Info, Data = result.Data });
  76. }
  77. public AppResultJson BindDo(string value)
  78. {
  79. JsonData data = JsonMapper.ToObject(value);
  80. int MerchantId = int.Parse(function.CheckInt(data.getItem("MerchantId").ToString())); //商户
  81. string SnNo = data.getItem("SnNo").ToString(); //Sn编号
  82. string MachineNo = data.getItem("Machine").ToString(); //音箱码
  83. if (SnNo.Length > 20)
  84. {
  85. SnNo = System.Web.HttpUtility.UrlDecode(SnNo);
  86. if (!SnNo.EndsWith("="))
  87. {
  88. SnNo += "=";
  89. }
  90. SnNo = dbconn.Decrypt3DES(SnNo, "l2k0b2#3");
  91. SnNo = SnNo.TrimEnd('\0');
  92. SnNo = SnNo.Substring(0, 20);
  93. }
  94. if(!string.IsNullOrEmpty(MachineNo))
  95. {
  96. if (MachineNo.Length > 20)
  97. {
  98. MachineNo = System.Web.HttpUtility.UrlDecode(MachineNo);
  99. if (!MachineNo.EndsWith("="))
  100. {
  101. MachineNo += "=";
  102. }
  103. MachineNo = dbconn.Decrypt3DES(MachineNo, "l2k0b2#3");
  104. MachineNo = MachineNo.TrimEnd('\0');
  105. MachineNo = MachineNo.Substring(0, 20);
  106. }
  107. }
  108. Dictionary<string, object> Obj = new Dictionary<string, object>();
  109. Models.Main1.MerchantQrCode query = MerchantQrCodeService.Query(" SnNo='" + SnNo + "'");
  110. Models.Main1.PosMachinesTwo pos = PosMachinesTwoService.Query(" PosSn='" + SnNo + "'");
  111. Models.Main1.PosMachines machines = PosMachinesService.Query(" PosSn='" + SnNo + "'");
  112. Models.Main.MerchantInfo merchant = MerchantInfoService.Query(MerchantId);
  113. int PosId = 0;
  114. if (SnNo == MachineNo || string.IsNullOrEmpty(MachineNo))
  115. {
  116. if (pos.Id == 0)
  117. {
  118. return new AppResultJson() { Status = "-1", Info = "绑定失败" };
  119. }
  120. // if (pos.BuyUserId == 0)
  121. // {
  122. // return new AppResultJson() { Status = "-1", Info = "码牌未授权" };
  123. // }
  124. PosId = pos.Id;
  125. }
  126. else if (SnNo != MachineNo)
  127. {
  128. if (machines.Id == 0)
  129. {
  130. return new AppResultJson() { Status = "-1", Info = "绑定失败" };
  131. }
  132. // if (machines.BuyUserId == 0)
  133. // {
  134. // return new AppResultJson() { Status = "-1", Info = "音响未授权" };
  135. // }
  136. PosId = machines.Id;
  137. }
  138. if (query.Id > 0)
  139. {
  140. if (query.MerchantId > 0)
  141. {
  142. return new AppResultJson() { Status = "-1", Info = "此二维码已被绑定,请勿重复绑定" };
  143. }
  144. }
  145. Dictionary<string, object> fields = new Dictionary<string, object>();
  146. if (SnNo == MachineNo || string.IsNullOrEmpty(MachineNo))
  147. {
  148. fields.Add("MerchantId", MerchantId);
  149. fields.Add("SnNo", SnNo);
  150. fields.Add("QueryCount", 2);
  151. MerchantQrCodeService.Add(fields);
  152. }
  153. else
  154. {
  155. string DataId = PosId + "_2";
  156. Models.Main1.MachineForQrCode forQrCode = main1db.MachineForQrCode.FirstOrDefault(m => m.DataId == DataId);
  157. if (forQrCode == null)
  158. {
  159. forQrCode = main1db.MachineForQrCode.Add(new Models.Main1.MachineForQrCode()
  160. {
  161. DataId = DataId,
  162. SnNo = SnNo,
  163. MachineSnNo = MachineNo,
  164. BindDate = DateTime.Now,
  165. MerchantId = MerchantId,
  166. }).Entity;
  167. }
  168. else
  169. {
  170. forQrCode.SnNo = SnNo;
  171. forQrCode.MachineSnNo = MachineNo;
  172. forQrCode.BindDate = DateTime.Now;
  173. forQrCode.MerchantId = MerchantId;
  174. }
  175. }
  176. main1db.SaveChanges();
  177. if (SnNo == MachineNo || string.IsNullOrEmpty(MachineNo))
  178. {
  179. fields = new Dictionary<string, object>();
  180. fields.Add("BuyUserId", merchant.UserId);
  181. fields.Add("UserId", merchant.UserId);
  182. fields.Add("BindingTime", DateTime.Now);
  183. fields.Add("BindingState", 1);
  184. fields.Add("BindMerchantId", MerchantId);
  185. fields.Add("OpId", 2);
  186. fields.Add("QueryCount", 2);
  187. PosMachinesTwoService.Edit(fields, pos.Id, false);
  188. }
  189. else if (SnNo != MachineNo && !string.IsNullOrEmpty(MachineNo))
  190. {
  191. //通过sn获取设备号
  192. // string result = AliIotFunction.Instance.IotDeviceQuery(MachineNo);
  193. // JsonData jsonObj = JsonMapper.ToObject(result);
  194. // if(jsonObj["alipay_commerce_iot_device_baseinfo_query_response"]["code"].ToString() == "10000")
  195. // {
  196. // string deviceId = jsonObj["alipay_commerce_iot_device_baseinfo_query_response"]["device_id"].ToString();
  197. if(machines.BrandId == 1)
  198. {
  199. Models.Main.MerchantAddInfo addinfo = MerchantAddInfoService.Query(MerchantId);
  200. //通过商户smid(好哒认证成功后台提供)绑定支付宝设备
  201. var result = AliIotFunction.Instance.IotBind(addinfo.AliMerchantId, MachineNo);
  202. JsonData jsonObj = JsonMapper.ToObject(result);
  203. if (jsonObj["alipay_merchant_indirect_iot_bind_response"]["code"].ToString() == "10000")
  204. {
  205. fields = new Dictionary<string, object>();
  206. fields.Add("BindingTime", DateTime.Now);
  207. fields.Add("BuyUserId", merchant.UserId);
  208. fields.Add("UserId", merchant.UserId);
  209. fields.Add("BindingState", 1);
  210. fields.Add("BindMerchantId", MerchantId);
  211. fields.Add("DeviceKind", "2");
  212. PosMachinesService.Edit(fields, machines.Id, false);
  213. }
  214. }
  215. else
  216. {
  217. fields = new Dictionary<string, object>();
  218. fields.Add("BindMerchantId", MerchantId);
  219. fields.Add("DeviceKind", "2");
  220. PosMachinesService.Edit(fields, machines.Id, false);
  221. }
  222. // }
  223. }
  224. if (SnNo == MachineNo || string.IsNullOrEmpty(MachineNo))
  225. {
  226. PublicFunction.BindUserMachineData(main1db, merchant.UserId, 0, 1, SnNo);
  227. }
  228. else
  229. {
  230. PublicFunction.BindUserMachineData(main1db, merchant.UserId, 1, 1, SnNo);
  231. }
  232. return new AppResultJson() { Status = "1", Info = "绑定成功" };
  233. }
  234. #endregion
  235. #region 商户-确认替换音箱码
  236. // [Authorize]
  237. public JsonResult ConfirmReplace(string value)
  238. {
  239. value = DesDecrypt(value);
  240. value = value.Replace("null", "\"\"");
  241. JsonData data = JsonMapper.ToObject(value);
  242. AppResultJson result = ConfirmReplaceDo(value);
  243. return Json(new AppResultJson() { Status = result.Status, Info = result.Info, Data = result.Data });
  244. }
  245. public AppResultJson ConfirmReplaceDo(string value)
  246. {
  247. JsonData data = JsonMapper.ToObject(value);
  248. int MerchantId = int.Parse(function.CheckInt(data.getItem("MerchantId").ToString())); //商户
  249. int MachineId = int.Parse(function.CheckInt(data.getItem("MachineId").ToString())); //设备
  250. int QrCodeId = int.Parse(function.CheckInt(data.getItem("QrCodeId").ToString())); //收款码Id
  251. Dictionary<string, object> Obj = new Dictionary<string, object>();
  252. Models.Main1.MerchantQrCode query = MerchantQrCodeService.Query(QrCodeId) ?? new Models.Main1.MerchantQrCode();
  253. Models.Main1.PosMachines machine = PosMachinesDbconn.Instance.Get(MachineId) ?? new Models.Main1.PosMachines();
  254. query.MerchantId = MerchantId; //商户
  255. query.MachineId = MachineId; //设备
  256. Models.Main1.MachineForQrCode qrcode = new Models.Main1.MachineForQrCode()
  257. {
  258. MerchantId = MerchantId,
  259. DataId = QrCodeId + "_" + MachineId,
  260. BindDate = DateTime.Now,
  261. SnNo = query.SnNo,
  262. MachineSnNo = machine.PosSn,
  263. };
  264. return new AppResultJson() { Status = "1", Info = "", Data = Obj };
  265. }
  266. #endregion
  267. #region 商户-已绑收款码解除关联
  268. // [Authorize]
  269. public JsonResult Remove(string value)
  270. {
  271. value = DesDecrypt(value);
  272. value = value.Replace("null", "\"\"");
  273. JsonData data = JsonMapper.ToObject(value);
  274. AppResultJson result = RemoveDo(value);
  275. return Json(new AppResultJson() { Status = result.Status, Info = result.Info, Data = result.Data });
  276. }
  277. public AppResultJson RemoveDo(string value)
  278. {
  279. JsonData data = JsonMapper.ToObject(value);
  280. int MerchantId = int.Parse(function.CheckInt(data.getItem("MerchantId").ToString())); //商户
  281. int Id = int.Parse(function.CheckInt(data.getItem("Id").ToString()));
  282. Dictionary<string, object> Obj = new Dictionary<string, object>();
  283. string CheckKey = Id + "_";
  284. var list = main1db.MachineForQrCode.Select(m => new { m.MerchantId, m.DataId }).Where(m => m.MerchantId == MerchantId && m.DataId.StartsWith(CheckKey)).ToList();
  285. foreach (var sub in list)
  286. {
  287. Models.Main1.MachineForQrCode edit = main1db.MachineForQrCode.FirstOrDefault(m => m.DataId == sub.DataId);
  288. if (edit != null)
  289. {
  290. if (edit.SnNo != edit.MachineSnNo)
  291. {
  292. Models.Main.MerchantAddInfo addinfo = MerchantAddInfoService.Query(edit.MerchantId);
  293. Models.Main1.PosMachines machine = PosMachinesService.Query(" PosSn='" + edit.MachineSnNo + "'");
  294. string result = AliIotFunction.Instance.IotUnBind(addinfo.AliMerchantId, machine.PosSn);
  295. JsonData jsonObj = JsonMapper.ToObject(result);
  296. if (jsonObj["alipay_merchant_indirect_iot_unbind_response"]["code"].ToString() == "10000")
  297. {
  298. Dictionary<string, object> fields = new Dictionary<string, object>();
  299. fields.Add("BuyUserId", 0);
  300. fields.Add("UserId", 0);
  301. fields.Add("BindingTime", DateTime.Parse("1900-01-01"));
  302. fields.Add("BindingState", 0);
  303. fields.Add("BindMerchantId", 0);
  304. PosMachinesService.Edit(fields, machine.Id, false);
  305. }
  306. }
  307. main1db.MachineForQrCode.Remove(edit);
  308. int MachineId = int.Parse(function.CheckInt(edit.DataId.Split('_')[1]));
  309. Models.Main1.MerchantQrCode qrCode = main1db.MerchantQrCode.FirstOrDefault(m => m.MerchantId == MachineId);
  310. if (qrCode != null)
  311. {
  312. qrCode.MerchantId = 0;
  313. }
  314. }
  315. }
  316. main1db.SaveChanges();
  317. return new AppResultJson() { Status = "1", Info = "", Data = Obj };
  318. }
  319. #endregion
  320. #region 检查签名是否合法,合法返回1,不合法返回提示信息
  321. /// <summary>
  322. /// 检查签名是否合法,合法返回1,不合法返回提示信息
  323. /// </summary>
  324. /// <param name="value">请求的参数(json字符串)</param>
  325. /// <param name="signField">要签名的字段</param>
  326. /// <returns></returns>
  327. private string CheckSign(string value, string[] signField)
  328. {
  329. JsonData json = JsonMapper.ToObject(value);
  330. Dictionary<string, string> dic = new Dictionary<string, string>();
  331. for (int i = 0; i < signField.Length; i++)
  332. {
  333. dic.Add(signField[i], json[signField[i]].ToString());
  334. }
  335. string sign = json["sign"].ToString(); //客户端签名字符串
  336. return new Sign().sign(dic, sign);
  337. }
  338. #endregion
  339. }
  340. }