MerchantQrCodeController.cs 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298
  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 && m.QueryCount == 1);
  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. if (SnNo.Length > 20)
  80. {
  81. SnNo = System.Web.HttpUtility.UrlDecode(SnNo);
  82. if (!SnNo.EndsWith("="))
  83. {
  84. SnNo += "=";
  85. }
  86. SnNo = dbconn.Decrypt3DES(SnNo, "l2k0b2#3");
  87. SnNo = SnNo.TrimEnd('\0');
  88. SnNo = SnNo.Substring(0, 20);
  89. }
  90. if(!string.IsNullOrEmpty(MachineNo))
  91. {
  92. if (MachineNo.Length > 20)
  93. {
  94. MachineNo = System.Web.HttpUtility.UrlDecode(MachineNo);
  95. if (!MachineNo.EndsWith("="))
  96. {
  97. MachineNo += "=";
  98. }
  99. MachineNo = dbconn.Decrypt3DES(MachineNo, "l2k0b2#3");
  100. MachineNo = MachineNo.TrimEnd('\0');
  101. MachineNo = MachineNo.Substring(0, 20);
  102. }
  103. }
  104. Dictionary<string, object> Obj = new Dictionary<string, object>();
  105. MerchantQrCode query = new MerchantQrCodeService().Query(SnNo);
  106. PosMachinesTwo pos = new PosMachinesTwoService().Query(SnNo);
  107. PosMachines machines = new PosMachinesService().Query(SnNo);
  108. MerchantInfo merchant = new MerchantInfoService().Query(MerchantId);
  109. int PosId = 0;
  110. if (SnNo == MachineNo || string.IsNullOrEmpty(MachineNo))
  111. {
  112. if (pos.Id == 0)
  113. {
  114. return new AppResultJson() { Status = "-1", Info = "绑定失败" };
  115. }
  116. PosId = pos.Id;
  117. }
  118. else if (SnNo != MachineNo)
  119. {
  120. if (machines.Id == 0)
  121. {
  122. return new AppResultJson() { Status = "-1", Info = "绑定失败" };
  123. }
  124. PosId = machines.Id;
  125. }
  126. if (query.Id > 0)
  127. {
  128. if (query.MerchantId > 0)
  129. {
  130. return new AppResultJson() { Status = "-1", Info = "此二维码已被绑定,请勿重复绑定" };
  131. }
  132. }
  133. Dictionary<string, object> fields = new Dictionary<string, object>();
  134. if (SnNo == MachineNo || string.IsNullOrEmpty(MachineNo))
  135. {
  136. fields.Add("MerchantId", MerchantId);
  137. fields.Add("SnNo", SnNo);
  138. fields.Add("QueryCount", 1);
  139. new MerchantQrCodeService().Add(fields);
  140. }
  141. else
  142. {
  143. string DataId = PosId + "_1";
  144. MachineForQrCode forQrCode = maindb.MachineForQrCode.FirstOrDefault(m => m.DataId == DataId);
  145. if (forQrCode == null)
  146. {
  147. forQrCode = maindb.MachineForQrCode.Add(new MachineForQrCode(){
  148. DataId = DataId,
  149. SnNo = SnNo,
  150. MachineSnNo = MachineNo,
  151. BindDate = DateTime.Now,
  152. MerchantId = MerchantId,
  153. }).Entity;
  154. }
  155. else
  156. {
  157. forQrCode.SnNo = SnNo;
  158. forQrCode.MachineSnNo = MachineNo;
  159. forQrCode.BindDate = DateTime.Now;
  160. forQrCode.MerchantId = MerchantId;
  161. }
  162. }
  163. maindb.SaveChanges();
  164. if (SnNo == MachineNo || string.IsNullOrEmpty(MachineNo))
  165. {
  166. fields = new Dictionary<string, object>();
  167. fields.Add("BuyUserId", merchant.UserId);
  168. fields.Add("UserId", merchant.UserId);
  169. fields.Add("BindingTime", DateTime.Now);
  170. fields.Add("BindingState", 1);
  171. fields.Add("BindMerchantId", MerchantId);
  172. fields.Add("OpId", 1);
  173. new PosMachinesTwoService().Edit(fields, pos.Id);
  174. }
  175. else if (SnNo != MachineNo && !string.IsNullOrEmpty(MachineNo))
  176. {
  177. fields = new Dictionary<string, object>();
  178. fields.Add("BindMerchantId", MerchantId);
  179. fields.Add("DeviceKind", "1");
  180. new PosMachinesService().Edit(fields, machines.Id);
  181. }
  182. if (SnNo == MachineNo || string.IsNullOrEmpty(MachineNo))
  183. {
  184. PublicFunction.BindUserMachineData(maindb, merchant.UserId, 0, 1, SnNo);
  185. }
  186. else
  187. {
  188. PublicFunction.BindUserMachineData(maindb, merchant.UserId, 1, 1, SnNo);
  189. }
  190. return new AppResultJson() { Status = "1", Info = "绑定成功" };
  191. }
  192. #endregion
  193. #region 商户-确认替换音箱码
  194. [Authorize]
  195. public JsonResult ConfirmReplace(string value)
  196. {
  197. value = DesDecrypt(value);
  198. JsonData data = JsonMapper.ToObject(value);
  199. AppResultJson result = ConfirmReplaceDo(value);
  200. return Json(new AppResultJson() { Status = result.Status, Info = result.Info, Data = result.Data });
  201. }
  202. public AppResultJson ConfirmReplaceDo(string value)
  203. {
  204. JsonData data = JsonMapper.ToObject(value);
  205. int MerchantId = int.Parse(function.CheckInt(data["MerchantId"].ToString())); //商户
  206. int MachineId = int.Parse(function.CheckInt(data["MachineId"].ToString())); //设备
  207. int QrCodeId = int.Parse(function.CheckInt(data["QrCodeId"].ToString())); //收款码Id
  208. Dictionary<string, object> Obj = new Dictionary<string, object>();
  209. MerchantQrCode query = new MerchantQrCodeService().Query(QrCodeId) ?? new MerchantQrCode();
  210. PosMachines machine = PosMachinesDbconn.Instance.Get(MachineId) ?? new PosMachines();
  211. query.MerchantId = MerchantId; //商户
  212. query.MachineId = MachineId; //设备
  213. MachineForQrCode qrcode = new MachineForQrCode()
  214. {
  215. MerchantId = MerchantId,
  216. DataId = QrCodeId + "_" + MachineId,
  217. BindDate = DateTime.Now,
  218. SnNo = query.SnNo,
  219. MachineSnNo = machine.PosSn,
  220. };
  221. return new AppResultJson() { Status = "1", Info = "", Data = Obj };
  222. }
  223. #endregion
  224. #region 商户-已绑收款码解除关联
  225. [Authorize]
  226. public JsonResult Remove(string value)
  227. {
  228. value = DesDecrypt(value);
  229. JsonData data = JsonMapper.ToObject(value);
  230. AppResultJson result = RemoveDo(value);
  231. return Json(new AppResultJson() { Status = result.Status, Info = result.Info, Data = result.Data });
  232. }
  233. public AppResultJson RemoveDo(string value)
  234. {
  235. JsonData data = JsonMapper.ToObject(value);
  236. int MerchantId = int.Parse(function.CheckInt(data["MerchantId"].ToString())); //商户
  237. int Id = int.Parse(function.CheckInt(data["Id"].ToString()));
  238. Dictionary<string, object> Obj = new Dictionary<string, object>();
  239. string CheckKey = Id + "_";
  240. var list = maindb.MachineForQrCode.Select(m => new { m.MerchantId, m.DataId }).Where(m => m.MerchantId == MerchantId && m.DataId.StartsWith(CheckKey)).ToList();
  241. foreach (var sub in list)
  242. {
  243. MachineForQrCode edit = maindb.MachineForQrCode.FirstOrDefault(m => m.DataId == sub.DataId);
  244. if (edit != null)
  245. {
  246. maindb.MachineForQrCode.Remove(edit);
  247. int MachineId = int.Parse(function.CheckInt(edit.DataId.Split('_')[1]));
  248. MerchantQrCode qrCode = maindb.MerchantQrCode.FirstOrDefault(m => m.MerchantId == MachineId);
  249. if (qrCode != null)
  250. {
  251. qrCode.MerchantId = 0;
  252. }
  253. }
  254. }
  255. maindb.SaveChanges();
  256. return new AppResultJson() { Status = "1", Info = "", Data = Obj };
  257. }
  258. #endregion
  259. #region 检查签名是否合法,合法返回1,不合法返回提示信息
  260. /// <summary>
  261. /// 检查签名是否合法,合法返回1,不合法返回提示信息
  262. /// </summary>
  263. /// <param name="value">请求的参数(json字符串)</param>
  264. /// <param name="signField">要签名的字段</param>
  265. /// <returns></returns>
  266. private string CheckSign(string value, string[] signField)
  267. {
  268. JsonData json = JsonMapper.ToObject(value);
  269. Dictionary<string, string> dic = new Dictionary<string, string>();
  270. for (int i = 0; i < signField.Length; i++)
  271. {
  272. dic.Add(signField[i], json[signField[i]].ToString());
  273. }
  274. string sign = json["sign"].ToString(); //客户端签名字符串
  275. return new Sign().sign(dic, sign);
  276. }
  277. #endregion
  278. }
  279. }