Jelajahi Sumber

更新敏感数据解密密钥
调整接口

lcl 1 tahun lalu
induk
melakukan
8882279a96

+ 1 - 1
AppStart/WeChatFunction.cs

@@ -264,7 +264,7 @@ namespace MySystem
         {
             GcmBlockCipher gcmBlockCipher = new GcmBlockCipher(new AesEngine());
             AeadParameters aeadParameters = new AeadParameters(
-                new KeyParameter(Encoding.UTF8.GetBytes("VyULlqfAW2gBfCNfLdupcL7zlha7d93F")),
+                new KeyParameter(Encoding.UTF8.GetBytes(AppConfig.WeChatParam.AesGemKey)),
                 128,
                 Encoding.UTF8.GetBytes(nonce),
                 Encoding.UTF8.GetBytes(associatedData));

+ 1 - 1
Areas/Api/Controllers/BaseController.cs

@@ -201,7 +201,7 @@ namespace MySystem.Areas.Api.Controllers
                 }
                 return SourceHost + picpath;
             }
-            return Host + "default.png";
+            return OssHost + "/default.png";
         }
 
         #endregion

+ 69 - 0
Areas/Api/Controllers/SystemSetController.cs

@@ -0,0 +1,69 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using Microsoft.AspNetCore.Mvc;
+using Microsoft.AspNetCore.Http;
+using Microsoft.Extensions.Logging;
+using Microsoft.Extensions.Options;
+using System.Web;
+using MySystem.Models;
+using MySystem.MainModels;
+using LitJson;
+using Library;
+using Microsoft.IdentityModel.Tokens;
+using System.Text;
+using System.Security.Claims;
+using System.IdentityModel.Tokens.Jwt;
+
+namespace MySystem.Areas.Api.Controllers
+{
+    [Area("Api")]
+    [Route("Api/[controller]/[action]")]
+    public class SystemSetController : BaseController
+    {
+        public SystemSetController(IHttpContextAccessor accessor, ILogger<BaseController> logger, IOptions<Setting> setting) : base(accessor, logger, setting)
+        {
+        }
+
+        #region 验证获取jwt的token
+
+        public JsonResult AppCheck(string value)
+        { 
+            value = DesDecrypt(value);
+            // string uuid = data["uuid"].ToString();
+            // string salt = data["salt"].ToString();
+            // string u = function.MD5_16(uuid + salt);
+            Dictionary<string, object> Obj = new Dictionary<string, object>();
+            //生成jwt令牌
+            Obj.Add("Token", PublicFunction.AppToken(1, JwtSecret, JwtIss, "consumer"));
+            return Json(new AppResultJson() { Status = "1", Info = "", Data = Obj });
+        }
+        #endregion
+
+
+
+
+        #region 检查签名是否合法,合法返回1,不合法返回提示信息
+
+        /// <summary>
+        /// 检查签名是否合法,合法返回1,不合法返回提示信息
+        /// </summary>
+        /// <param name="value">请求的参数(json字符串)</param>
+        /// <param name="signField">要签名的字段</param>
+        /// <returns></returns>
+        private string CheckSign(string value, string[] signField)
+        {
+            JsonData json = JsonMapper.ToObject(value);
+            Dictionary<string, string> dic = new Dictionary<string, string>();
+            for (int i = 0; i < signField.Length; i++)
+            {
+                dic.Add(signField[i], json[signField[i]].ToString());
+            }
+            string sign = json["sign"].ToString(); //客户端签名字符串
+            return new Sign().sign(dic, sign);
+        }
+
+        #endregion
+
+    }
+}

+ 1 - 1
Areas/Api/Controllers/WeChatController.cs

@@ -43,7 +43,7 @@ namespace MySystem.Areas.Api.Controllers.v1
             string SubMchId = "1619775262";
             string Description = "四川探火网络科技有限责任公司";
             string OpenId = "omawy5VjduiPpSo9GNldzYZlioZE";
-            string Key = "VyULlqfAW2gBfCNfLdupcL7zlha7d93F";
+            string Key = AppConfig.WeChatParam.AesGemKey;
             string NotifyUrl = Host + "api/wechat/notice";
             // Dictionary<string, string> dic = new WeChatFunction(_accessor.HttpContext).Pay(AppId, MchId, SubMchId, 0.1M, DateTime.Now.ToString("yyyyMMddHHmmssfff"), Description, OpenId, Key, NotifyUrl);
             Dictionary<string, string> dic = new WeChatFunction(_accessor.HttpContext).Refund(AppId, MchId, SubMchId, 1M, 1M, "2022020817492424848364549", DateTime.Now.ToString("yyyyMMddHHmmssfff"), Description, OpenId, Key, NotifyUrl);

+ 1 - 1
Areas/Api/Controllers/v1/MainServer/ConsumerOrdersController.cs

@@ -302,7 +302,7 @@ namespace MySystem.Areas.Api.Controllers.v1
                 string SubMchId = merchantAdd.SubMchid;
                 string Description = merchant.Name;
                 string OpenId = openid;
-                string Key = "VyULlqfAW2gBfCNfLdupcL7zlha7d93F";
+                string Key = AppConfig.WeChatParam.AesGemKey;
                 string NotifyUrl = SourceHost + "/api/wechat/notice";
                 Dictionary<string, string> dic = new WeChatFunction(_accessor.HttpContext).Pay(AppId, MchId, SubMchId, PayMoney, OrderNo, Description, OpenId, Key, NotifyUrl);
                 Obj.Add("appId", dic["appId"]); //微信小程序appid

+ 11 - 2
Areas/Api/Controllers/v1/MainServer/MerchantQrCodeController.cs

@@ -42,8 +42,17 @@ namespace MySystem.Areas.Api.Controllers.v1
             int PageNum = int.Parse(function.CheckInt(data["PageNum"].ToString()));
             List<Dictionary<string, object>> dataList = new List<Dictionary<string, object>>();
             MerchantInfo merchant = MerchantInfoDbconn.Instance.Get(MerchantId) ?? new MerchantInfo();
-            List<MerchantQrCode> query = MerchantQrCodeDbconn.Instance.GetList(MerchantId, PageNum, PageSize);
-            foreach (MerchantQrCode subdata in query)
+            IQueryable<MerchantQrCode> query = maindb.MerchantQrCode.Where(m => m.MerchantId == MerchantId);
+            if (PageNum == 1)
+            {
+                query = query.Take(PageSize);
+            }
+            else
+            {
+                int skipNum = PageSize * (PageNum - 1);
+                query = query.Skip(skipNum).Take(PageSize);
+            }
+            foreach (MerchantQrCode subdata in query.ToList())
             {
                 Dictionary<string, object> curData = new Dictionary<string, object>();
                 curData.Add("SnNo", subdata.SnNo); //Sn编号

+ 10 - 0
Config/WeChatParam.cs

@@ -0,0 +1,10 @@
+using System.Collections.Generic;
+using Library;
+
+namespace AppConfig
+{
+    public class WeChatParam
+    {
+        public static string AesGemKey = "Vs64HGFxAjN7Nc3MYvNEDRDUx3MEQCvt";
+    }
+}