PosMachinesController.cs 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304
  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 PosMachinesController : BaseController
  18. {
  19. public PosMachinesController(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 BindMerchantId = int.Parse(function.CheckInt(data["BindMerchantId"].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(BindMerchantId) ?? new MerchantInfo();
  39. List<PosMachines> query = new PosMachinesService().List(new List<FieldItem>(), " and BindMerchantId=" + BindMerchantId, PageNum, PageSize);
  40. foreach (var subdata in query)
  41. {
  42. Dictionary<string, object> curData = new Dictionary<string, object>();
  43. curData.Add("BindingTime", subdata.BindingTime == null ? "" : subdata.BindingTime.Value.ToString("yyyy-MM-dd HH:mm:ss")); //绑定时间
  44. curData.Add("PosSn", subdata.PosSn); //SN编号
  45. curData.Add("Id", subdata.Id); //Id
  46. curData.Add("MerchantName", merchant.Name); //商户名称
  47. string CheckKey = "_" + subdata.Id;
  48. int BindCount = MachineForQrCodeDbconn.Instance.GetList(BindMerchantId).Count(m => m.DataId.EndsWith(CheckKey));
  49. curData.Add("BindCount", BindCount); //关联数量
  50. dataList.Add(curData);
  51. }
  52. return dataList;
  53. }
  54. #endregion
  55. #region 商户-已绑音箱
  56. [Authorize]
  57. public JsonResult BindedMachines(string value)
  58. {
  59. value = DesDecrypt(value);
  60. JsonData data = JsonMapper.ToObject(value);
  61. List<Dictionary<string, object>> dataList = BindedMachinesDo(value);
  62. return Json(new AppResultJson() { Status = "1", Info = "", Data = dataList });
  63. }
  64. public List<Dictionary<string, object>> BindedMachinesDo(string value)
  65. {
  66. JsonData data = JsonMapper.ToObject(value);
  67. int BindMerchantId = int.Parse(function.CheckInt(data["BindMerchantId"].ToString())); //绑定商户
  68. int PageSize = int.Parse(function.CheckInt(data["PageSize"].ToString()));
  69. int PageNum = int.Parse(function.CheckInt(data["PageNum"].ToString()));
  70. List<Dictionary<string, object>> dataList = new List<Dictionary<string, object>>();
  71. MerchantInfo merchant = MerchantInfoDbconn.Instance.Get(BindMerchantId) ?? new MerchantInfo();
  72. List<int> query = PosMachinesDbconn.Instance.GetList(BindMerchantId, PageNum, PageSize);
  73. foreach (int MachineId in query)
  74. {
  75. PosMachines subdata = PosMachinesDbconn.Instance.Get(MachineId) ?? new PosMachines();
  76. Dictionary<string, object> curData = new Dictionary<string, object>();
  77. curData.Add("BindingTime", subdata.BindingTime == null ? "" : subdata.BindingTime.Value.ToString("yyyy-MM-dd")); //绑定时间
  78. curData.Add("PosSn", subdata.PosSn); //SN编号
  79. curData.Add("Id", subdata.Id); //Id
  80. curData.Add("MerchantName", merchant.Name); //商户名称
  81. string CheckKey = "_" + subdata.Id;
  82. List<MachineForQrCode> QrCodes = MachineForQrCodeDbconn.Instance.GetList(BindMerchantId);
  83. QrCodes = QrCodes.Where(m => m.DataId.EndsWith(CheckKey)).ToList();
  84. curData.Add("BindCount", QrCodes.Count); //关联数量
  85. List<Dictionary<string, object>> QrCodeList = new List<Dictionary<string, object>>();
  86. foreach (MachineForQrCode QrCode in QrCodes)
  87. {
  88. Dictionary<string, object> item = new Dictionary<string, object>();
  89. string DataId = QrCode.DataId;
  90. if (DataId.Contains("_"))
  91. {
  92. DataId = DataId.Split('_')[0];
  93. }
  94. item.Add("Id", DataId);
  95. item.Add("Type", 1);
  96. item.Add("BindDate", QrCode.BindDate == null ? "" : QrCode.BindDate.Value.ToString("yyyy-MM-dd"));
  97. item.Add("Sn", QrCode.SnNo);
  98. QrCodeList.Add(item);
  99. }
  100. curData.Add("QrCodeList", QrCodeList); //二维码列表
  101. dataList.Add(curData);
  102. }
  103. return dataList;
  104. }
  105. #endregion
  106. #region 商户-替换音箱码
  107. [Authorize]
  108. public JsonResult ReplaceMachines(string value)
  109. {
  110. value = DesDecrypt(value);
  111. JsonData data = JsonMapper.ToObject(value);
  112. List<Dictionary<string, object>> dataList = ReplaceMachinesDo(value);
  113. return Json(new AppResultJson() { Status = "1", Info = "", Data = dataList });
  114. }
  115. public List<Dictionary<string, object>> ReplaceMachinesDo(string value)
  116. {
  117. JsonData data = JsonMapper.ToObject(value);
  118. int BindMerchantId = int.Parse(function.CheckInt(data["BindMerchantId"].ToString())); //绑定商户
  119. int PageSize = int.Parse(function.CheckInt(data["PageSize"].ToString()));
  120. int PageNum = int.Parse(function.CheckInt(data["PageNum"].ToString()));
  121. string CheckKey = "_" + BindMerchantId;
  122. List<Dictionary<string, object>> dataList = new List<Dictionary<string, object>>();
  123. List<MerchantQrCode> query = new MerchantQrCodeService().List(new List<FieldItem>(), " and MerchantId=" + BindMerchantId, 1, 1000);
  124. foreach (MerchantQrCode subdata in query)
  125. {
  126. Dictionary<string, object> curData = new Dictionary<string, object>();
  127. curData.Add("BindingTime", subdata.UpdateDate == null ? "" : subdata.UpdateDate.Value.ToString("yyyy-MM-dd HH:mm:ss")); //绑定时间
  128. curData.Add("PosSn", subdata.SnNo); //SN编号
  129. curData.Add("Id", subdata.Id); //Id
  130. dataList.Add(curData);
  131. }
  132. return dataList;
  133. }
  134. #endregion
  135. #region 商户-确认关联音箱
  136. [Authorize]
  137. public JsonResult Add(string value)
  138. {
  139. value = DesDecrypt(value);
  140. JsonData data = JsonMapper.ToObject(value);
  141. AppResultJson result = AddDo(value);
  142. return Json(new AppResultJson() { Status = result.Status, Info = result.Info, Data = result.Data });
  143. }
  144. public AppResultJson AddDo(string value)
  145. {
  146. JsonData data = JsonMapper.ToObject(value);
  147. int BindMerchantId = int.Parse(function.CheckInt(data["BindMerchantId"].ToString())); //绑定商户
  148. // string QrCodeId = data["QrCodeId"].ToString(); //二维码Id
  149. int QrCodeId = int.Parse(function.CheckInt(data["QrCodeId"].ToString())); //二维码Id
  150. string MachineId = data["MachineId"].ToString(); //音箱Id
  151. Dictionary<string, object> Obj = new Dictionary<string, object>();
  152. MerchantQrCode qrcode = new MerchantQrCodeService().Query(QrCodeId);
  153. PosMachines machine = PosMachinesDbconn.Instance.Get(MachineId) ?? new PosMachines();
  154. MachineForQrCode query = new MachineForQrCode()
  155. {
  156. DataId = QrCodeId + "_" + MachineId,
  157. MerchantId = BindMerchantId,
  158. BindDate = DateTime.Now,
  159. SnNo = qrcode.SnNo,
  160. MachineSnNo = machine.PosSn,
  161. };
  162. machine.BindingState = 1;
  163. qrcode.MachineId = int.Parse(MachineId);
  164. return new AppResultJson() { Status = "1", Info = "", Data = Obj };
  165. }
  166. #endregion
  167. #region 商户-绑定列表
  168. [Authorize]
  169. public JsonResult BindList(string value)
  170. {
  171. value = DesDecrypt(value);
  172. JsonData data = JsonMapper.ToObject(value);
  173. List<Dictionary<string, object>> dataList = BindListDo(value);
  174. return Json(new AppResultJson() { Status = "1", Info = "", Data = dataList });
  175. }
  176. public List<Dictionary<string, object>> BindListDo(string value)
  177. {
  178. JsonData data = JsonMapper.ToObject(value);
  179. int BindMerchantId = int.Parse(function.CheckInt(data["BindMerchantId"].ToString())); //绑定商户
  180. int PageSize = int.Parse(function.CheckInt(data["PageSize"].ToString()));
  181. int PageNum = int.Parse(function.CheckInt(data["PageNum"].ToString()));
  182. List<Dictionary<string, object>> dataList = new List<Dictionary<string, object>>();
  183. string condition = "";
  184. if (!string.IsNullOrEmpty(data["BindMerchantId"].ToString()))
  185. {
  186. condition += " and BindMerchantId=" + BindMerchantId;
  187. }
  188. List<PosMachines> query = new PosMachinesService().List(new List<FieldItem>(), condition, PageNum, PageSize);
  189. foreach (var subdata in query)
  190. {
  191. Dictionary<string, object> curData = new Dictionary<string, object>();
  192. curData.Add("BindingTime", subdata.BindingTime == null ? "" : subdata.BindingTime.Value.ToString("yyyy-MM-dd HH:mm:ss")); //绑定时间
  193. curData.Add("PosSn", subdata.PosSn); //SN编号
  194. curData.Add("MerchantName", ""); //商户名称
  195. curData.Add("MerchantLogo", ""); //商户Logo
  196. dataList.Add(curData);
  197. }
  198. return dataList;
  199. }
  200. #endregion
  201. #region 商户-绑定机具
  202. [Authorize]
  203. public JsonResult Bind(string value)
  204. {
  205. value = DesDecrypt(value);
  206. JsonData data = JsonMapper.ToObject(value);
  207. AppResultJson result = BindDo(value);
  208. return Json(new AppResultJson() { Status = result.Status, Info = result.Info, Data = result.Data });
  209. }
  210. public AppResultJson BindDo(string value)
  211. {
  212. JsonData data = JsonMapper.ToObject(value);
  213. string PosSn = data["PosSn"].ToString(); //SN编号
  214. int BindMerchantId = int.Parse(function.CheckInt(data["BindMerchantId"].ToString())); //绑定商户
  215. Dictionary<string, object> Obj = new Dictionary<string, object>();
  216. PosMachines query = new PosMachines();
  217. query = new PosMachines()
  218. {
  219. CreateDate = DateTime.Now, //创建时间
  220. UpdateDate = DateTime.Now, //修改时间
  221. PosSn = PosSn, //SN编号
  222. BindMerchantId = BindMerchantId, //绑定商户
  223. };
  224. return new AppResultJson() { Status = "1", Info = "", Data = Obj };
  225. }
  226. #endregion
  227. #region 商户-已绑音箱解除关联
  228. [Authorize]
  229. public JsonResult Remove(string value)
  230. {
  231. value = DesDecrypt(value);
  232. JsonData data = JsonMapper.ToObject(value);
  233. AppResultJson result = RemoveDo(value);
  234. return Json(new AppResultJson() { Status = result.Status, Info = result.Info, Data = result.Data });
  235. }
  236. public AppResultJson RemoveDo(string value)
  237. {
  238. JsonData data = JsonMapper.ToObject(value);
  239. int BindMerchantId = int.Parse(function.CheckInt(data["BindMerchantId"].ToString())); //绑定商户
  240. int Id = int.Parse(function.CheckInt(data["Id"].ToString()));
  241. Dictionary<string, object> Obj = new Dictionary<string, object>();
  242. string CheckKey = "_" + Id;
  243. var list = maindb.MachineForQrCode.Select(m => new { m.MerchantId, m.DataId }).Where(m => m.MerchantId == BindMerchantId && m.DataId.EndsWith(CheckKey)).ToList();
  244. foreach (var sub in list)
  245. {
  246. MachineForQrCode edit = maindb.MachineForQrCode.FirstOrDefault(m => m.DataId == sub.DataId);
  247. if (edit != null)
  248. {
  249. maindb.MachineForQrCode.Remove(edit);
  250. int MachineId = int.Parse(function.CheckInt(edit.DataId.Split('_')[1]));
  251. PosMachines machine = maindb.PosMachines.FirstOrDefault(m => m.BindMerchantId == MachineId);
  252. if (machine != null)
  253. {
  254. machine.BindMerchantId = 0;
  255. }
  256. }
  257. }
  258. maindb.SaveChanges();
  259. return new AppResultJson() { Status = "1", Info = "", Data = Obj };
  260. }
  261. #endregion
  262. #region 检查签名是否合法,合法返回1,不合法返回提示信息
  263. /// <summary>
  264. /// 检查签名是否合法,合法返回1,不合法返回提示信息
  265. /// </summary>
  266. /// <param name="value">请求的参数(json字符串)</param>
  267. /// <param name="signField">要签名的字段</param>
  268. /// <returns></returns>
  269. private string CheckSign(string value, string[] signField)
  270. {
  271. JsonData json = JsonMapper.ToObject(value);
  272. Dictionary<string, string> dic = new Dictionary<string, string>();
  273. for (int i = 0; i < signField.Length; i++)
  274. {
  275. dic.Add(signField[i], json[signField[i]].ToString());
  276. }
  277. string sign = json["sign"].ToString(); //客户端签名字符串
  278. return new Sign().sign(dic, sign);
  279. }
  280. #endregion
  281. }
  282. }