MerchantQrCodeController.cs 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253
  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. namespace MySystem.Areas.Api.Controllers.v1
  14. {
  15. [Area("Api")]
  16. [Route("Api/v1/[controller]/[action]")]
  17. public class MerchantQrCodeController : BaseController
  18. {
  19. public MerchantQrCodeController(IHttpContextAccessor accessor, ILogger<BaseController> logger, IOptions<Setting> setting) : base(accessor, logger, setting)
  20. {
  21. }
  22. #region 商户-已绑二维码
  23. [Authorize]
  24. public JsonResult List(string value)
  25. {
  26. value = DesDecrypt(value);
  27. JsonData data = JsonMapper.ToObject(value);
  28. List<Dictionary<string, object>> dataList = ListDo(value);
  29. return Json(new AppResultJson() { Status = "1", Info = "", Data = dataList });
  30. }
  31. public List<Dictionary<string, object>> ListDo(string value)
  32. {
  33. JsonData data = JsonMapper.ToObject(value);
  34. int MerchantId = int.Parse(function.CheckInt(data["MerchantId"].ToString())); //商户
  35. int PageSize = int.Parse(function.CheckInt(data["PageSize"].ToString()));
  36. int PageNum = int.Parse(function.CheckInt(data["PageNum"].ToString()));
  37. List<Dictionary<string, object>> dataList = new List<Dictionary<string, object>>();
  38. MerchantInfo merchant = MerchantInfoDbconn.Instance.Get(MerchantId) ?? new MerchantInfo();
  39. IQueryable<MerchantQrCode> query = maindb.MerchantQrCode.Where(m => m.MerchantId == MerchantId);
  40. if (PageNum == 1)
  41. {
  42. query = query.Take(PageSize);
  43. }
  44. else
  45. {
  46. int skipNum = PageSize * (PageNum - 1);
  47. query = query.Skip(skipNum).Take(PageSize);
  48. }
  49. foreach (MerchantQrCode subdata in query.ToList())
  50. {
  51. Dictionary<string, object> curData = new Dictionary<string, object>();
  52. curData.Add("SnNo", subdata.SnNo); //Sn编号
  53. curData.Add("Id", subdata.Id); //Id
  54. curData.Add("BindDate", subdata.CreateDate == null ? "" : subdata.CreateDate.Value.ToString("yyyy-MM-dd")); //绑定时间
  55. curData.Add("MerchantName", merchant.Name); //商户名称
  56. PosMachines machine = PosMachinesDbconn.Instance.Get(subdata.MachineId) ?? new PosMachines();
  57. curData.Add("MachineSnNo", machine.PosSn); //音箱SN
  58. curData.Add("BindFlag", machine.BindingState); //绑定状态
  59. dataList.Add(curData);
  60. }
  61. return dataList;
  62. }
  63. #endregion
  64. #region 商户-绑定收款码
  65. [Authorize]
  66. public JsonResult Bind(string value)
  67. {
  68. value = DesDecrypt(value);
  69. JsonData data = JsonMapper.ToObject(value);
  70. AppResultJson result = BindDo(value);
  71. return Json(new AppResultJson() { Status = result.Status, Info = result.Info, Data = result.Data });
  72. }
  73. public AppResultJson BindDo(string value)
  74. {
  75. JsonData data = JsonMapper.ToObject(value);
  76. int MerchantId = int.Parse(function.CheckInt(data["MerchantId"].ToString())); //商户
  77. string SnNo = data["SnNo"].ToString(); //Sn编号
  78. string MachineNo = data["Machine"].ToString(); //音箱码
  79. Dictionary<string, object> Obj = new Dictionary<string, object>();
  80. MerchantQrCode query = new MerchantQrCodeService().Query(SnNo);
  81. PosMachinesTwo pos = new PosMachinesTwoService().Query(SnNo);
  82. MerchantInfo merchant = new MerchantInfoService().Query(MerchantId);
  83. if(pos.Id == 0)
  84. {
  85. return new AppResultJson() { Status = "-1", Info = "绑定失败" };
  86. }
  87. if(pos.BuyUserId == 0)
  88. {
  89. return new AppResultJson() { Status = "-1", Info = "码牌未授权" };
  90. }
  91. if (query.Id > 0)
  92. {
  93. if (query.MerchantId > 0)
  94. {
  95. return new AppResultJson() { Status = "-1", Info = "此二维码已被绑定,请勿重复绑定" };
  96. }
  97. }
  98. Dictionary<string, object> fields = new Dictionary<string, object>();
  99. fields.Add("MerchantId", MerchantId);
  100. fields.Add("SnNo", SnNo);
  101. new MerchantQrCodeService().Add(fields);
  102. // query = maindb.MerchantQrCode.Add(new MerchantQrCode()
  103. // {
  104. // CreateDate = DateTime.Now, //绑定时间
  105. // MerchantId = MerchantId, //商户
  106. // SnNo = SnNo,
  107. // }).Entity;
  108. // maindb.SaveChanges();
  109. string DataId = query.Id + "_0";
  110. MachineForQrCode forQrCode = maindb.MachineForQrCode.FirstOrDefault(m => m.DataId == DataId);
  111. if (forQrCode == null)
  112. {
  113. forQrCode = maindb.MachineForQrCode.Add(new MachineForQrCode(){
  114. DataId = DataId,
  115. SnNo = SnNo,
  116. MachineSnNo = MachineNo,
  117. BindDate = DateTime.Now,
  118. MerchantId = MerchantId,
  119. }).Entity;
  120. }
  121. else
  122. {
  123. forQrCode.SnNo = SnNo;
  124. forQrCode.MachineSnNo = MachineNo;
  125. forQrCode.BindDate = DateTime.Now;
  126. forQrCode.MerchantId = MerchantId;
  127. }
  128. maindb.SaveChanges();
  129. fields = new Dictionary<string, object>();
  130. fields.Add("BuyUserId", merchant.UserId);
  131. fields.Add("UserId", merchant.UserId);
  132. fields.Add("BindingTime", DateTime.Now);
  133. fields.Add("BindingState", 1);
  134. fields.Add("BindMerchantId", MerchantId);
  135. fields.Add("OpId", 1);
  136. new PosMachinesTwoService().Edit(fields, pos.Id);
  137. // pos.BuyUserId = merchant.UserId;
  138. // pos.UserId = merchant.UserId;
  139. // pos.BindingTime = DateTime.Now;
  140. // pos.BindingState = 1;
  141. // pos.BindMerchantId = MerchantId;
  142. // maindb.SaveChanges();
  143. PublicFunction.BindUserMachineData(maindb, merchant.UserId, 0, 1, SnNo);
  144. return new AppResultJson() { Status = "1", Info = "绑定成功" };
  145. }
  146. #endregion
  147. #region 商户-确认替换音箱码
  148. [Authorize]
  149. public JsonResult ConfirmReplace(string value)
  150. {
  151. value = DesDecrypt(value);
  152. JsonData data = JsonMapper.ToObject(value);
  153. AppResultJson result = ConfirmReplaceDo(value);
  154. return Json(new AppResultJson() { Status = result.Status, Info = result.Info, Data = result.Data });
  155. }
  156. public AppResultJson ConfirmReplaceDo(string value)
  157. {
  158. JsonData data = JsonMapper.ToObject(value);
  159. int MerchantId = int.Parse(function.CheckInt(data["MerchantId"].ToString())); //商户
  160. int MachineId = int.Parse(function.CheckInt(data["MachineId"].ToString())); //设备
  161. int QrCodeId = int.Parse(function.CheckInt(data["QrCodeId"].ToString())); //收款码Id
  162. Dictionary<string, object> Obj = new Dictionary<string, object>();
  163. MerchantQrCode query = new MerchantQrCodeService().Query(QrCodeId) ?? new MerchantQrCode();
  164. PosMachines machine = PosMachinesDbconn.Instance.Get(MachineId) ?? new PosMachines();
  165. query.MerchantId = MerchantId; //商户
  166. query.MachineId = MachineId; //设备
  167. MachineForQrCode qrcode = new MachineForQrCode()
  168. {
  169. MerchantId = MerchantId,
  170. DataId = QrCodeId + "_" + MachineId,
  171. BindDate = DateTime.Now,
  172. SnNo = query.SnNo,
  173. MachineSnNo = machine.PosSn,
  174. };
  175. return new AppResultJson() { Status = "1", Info = "", Data = Obj };
  176. }
  177. #endregion
  178. #region 商户-已绑收款码解除关联
  179. [Authorize]
  180. public JsonResult Remove(string value)
  181. {
  182. value = DesDecrypt(value);
  183. JsonData data = JsonMapper.ToObject(value);
  184. AppResultJson result = RemoveDo(value);
  185. return Json(new AppResultJson() { Status = result.Status, Info = result.Info, Data = result.Data });
  186. }
  187. public AppResultJson RemoveDo(string value)
  188. {
  189. JsonData data = JsonMapper.ToObject(value);
  190. int MerchantId = int.Parse(function.CheckInt(data["MerchantId"].ToString())); //商户
  191. int Id = int.Parse(function.CheckInt(data["Id"].ToString()));
  192. Dictionary<string, object> Obj = new Dictionary<string, object>();
  193. string CheckKey = Id + "_";
  194. var list = maindb.MachineForQrCode.Select(m => new { m.MerchantId, m.DataId }).Where(m => m.MerchantId == MerchantId && m.DataId.StartsWith(CheckKey)).ToList();
  195. foreach (var sub in list)
  196. {
  197. MachineForQrCode edit = maindb.MachineForQrCode.FirstOrDefault(m => m.DataId == sub.DataId);
  198. if (edit != null)
  199. {
  200. maindb.MachineForQrCode.Remove(edit);
  201. int MachineId = int.Parse(function.CheckInt(edit.DataId.Split('_')[1]));
  202. MerchantQrCode qrCode = maindb.MerchantQrCode.FirstOrDefault(m => m.MerchantId == MachineId);
  203. if (qrCode != null)
  204. {
  205. qrCode.MerchantId = 0;
  206. }
  207. }
  208. }
  209. maindb.SaveChanges();
  210. return new AppResultJson() { Status = "1", Info = "", Data = Obj };
  211. }
  212. #endregion
  213. #region 检查签名是否合法,合法返回1,不合法返回提示信息
  214. /// <summary>
  215. /// 检查签名是否合法,合法返回1,不合法返回提示信息
  216. /// </summary>
  217. /// <param name="value">请求的参数(json字符串)</param>
  218. /// <param name="signField">要签名的字段</param>
  219. /// <returns></returns>
  220. private string CheckSign(string value, string[] signField)
  221. {
  222. JsonData json = JsonMapper.ToObject(value);
  223. Dictionary<string, string> dic = new Dictionary<string, string>();
  224. for (int i = 0; i < signField.Length; i++)
  225. {
  226. dic.Add(signField[i], json[signField[i]].ToString());
  227. }
  228. string sign = json["sign"].ToString(); //客户端签名字符串
  229. return new Sign().sign(dic, sign);
  230. }
  231. #endregion
  232. }
  233. }