浏览代码

添加获取腾讯地图地址代码(未放开)

DuGuYang 1 年之前
父节点
当前提交
cc2f8a673c

+ 19 - 9
AppStart/Helper/CheckAlipaySignService.cs

@@ -30,7 +30,7 @@ namespace MySystem
                 if (!string.IsNullOrEmpty(content))
                 {
                     string result = StartDo(Newtonsoft.Json.JsonConvert.DeserializeObject<MerchantSign>(content));
-                    if(result == "wait")
+                    if (result == "wait")
                     {
                         Thread.Sleep(10000);
                         RedisDbconn.Instance.AddList("AlipaySignQueue", content);
@@ -86,9 +86,9 @@ namespace MySystem
                         if (merchantadd != null)
                         {
                             merchantadd.AlipayPid = dic["alipay_open_agent_order_query_response"]["merchant_pid"].ToString();
-                            if(content.Contains("restrict_infos"))
+                            if (content.Contains("restrict_infos"))
                             {
-                                if(dic["alipay_open_agent_order_query_response"]["restrict_infos"].Count > 0)
+                                if (dic["alipay_open_agent_order_query_response"]["restrict_infos"].Count > 0)
                                 {
                                     merchantadd.QueryCount = -1;
                                     merchantadd.AlipayRemark = dic["alipay_open_agent_order_query_response"]["restrict_infos"][0]["restrict_reason"].ToString();
@@ -105,11 +105,16 @@ namespace MySystem
                                     if (merchant != null)
                                     {
                                         merchant.QueryCount = 2;
-                                        if(merchant.SignDate == null)
+                                        if (merchant.SignDate == null)
                                         {
                                             merchant.SignDate = DateTime.Now;
                                         }
                                     }
+                                    // if (merchant.Latitude == 0)
+                                    // {
+                                    //     //签约成功调用腾讯地图接口获取地址
+                                    //     RedisDbconn.Instance.AddList("GetTencentAddressInfoQueue", "{\"Address\":\"" + merchant.Areas + merchant.Address + "\"}");
+                                    // }
                                 }
                             }
                             else
@@ -119,22 +124,27 @@ namespace MySystem
                                 if (merchant != null)
                                 {
                                     merchant.QueryCount = 2;
-                                    if(merchant.SignDate == null)
+                                    if (merchant.SignDate == null)
                                     {
                                         merchant.SignDate = DateTime.Now;
                                     }
                                 }
+                                // if (merchant.Latitude == 0)
+                                // {
+                                //     //签约成功调用腾讯地图接口获取地址
+                                //     RedisDbconn.Instance.AddList("GetTencentAddressInfoQueue", "{\"Address\":\"" + merchant.Areas + merchant.Address + "\"}");
+                                // }
                             }
                             db.SaveChanges();
                         }
                     }
                     else if (dic["alipay_open_agent_order_query_response"]["order_status"].ToString() == "MERCHANT_APPLY_ORDER_CANCELED")
-                    { 
+                    {
                         MerchantAddInfo merchantadd = db.MerchantAddInfo.FirstOrDefault(m => m.Id == sign.MerchantAddInfoId);
                         if (merchantadd != null)
                         {
                             string reason = "";
-                            if(dic["alipay_open_agent_order_query_response"]["restrict_infos"].Count > 0)
+                            if (dic["alipay_open_agent_order_query_response"]["restrict_infos"].Count > 0)
                             {
                                 reason = dic["alipay_open_agent_order_query_response"]["restrict_infos"][0]["restrict_reason"].ToString();
                             }
@@ -149,13 +159,13 @@ namespace MySystem
                         }
                     }
                     else if (dic["alipay_open_agent_order_query_response"]["order_status"].ToString() == "MERCHANT_AUDITING")
-                    { 
+                    {
                         return "wait";
                     }
                 }
                 else
                 {
-                    if(dic["alipay_open_agent_order_query_response"]["code"].ToString() == "40004" && dic["alipay_open_agent_order_query_response"]["sub_msg"].ToString() == "系统繁忙")
+                    if (dic["alipay_open_agent_order_query_response"]["code"].ToString() == "40004" && dic["alipay_open_agent_order_query_response"]["sub_msg"].ToString() == "系统繁忙")
                     {
                         return "wait";
                     }

+ 5 - 0
AppStart/Helper/CheckWeChatSignService.cs

@@ -101,6 +101,11 @@ namespace MySystem
                                 merchant.SignDate = DateTime.Now;
                             }
                         }
+                        // if (merchant.Latitude == 0)
+                        // {
+                        //     //签约成功调用腾讯地图接口获取地址
+                        //     RedisDbconn.Instance.AddList("GetTencentAddressInfoQueue", "{\"Address\":\"" + merchant.Areas + merchant.Address + "\"}");
+                        // }
                         db.SaveChanges();
                     }
                 }

+ 48 - 0
AppStart/Helper/Tencent/GetTencentAddressInfoService.cs

@@ -0,0 +1,48 @@
+using System;
+using System.Collections.Generic;
+using System.Data;
+using System.Linq;
+using System.Threading;
+using MySystem.Models;
+using Library;
+using LitJson;
+
+namespace MySystem
+{
+    /// <summary>
+    /// 获取腾讯地图地址
+    /// </summary>
+    public class GetTencentAddressInfoService
+    {
+        public readonly static GetTencentAddressInfoService Instance = new GetTencentAddressInfoService();
+        private GetTencentAddressInfoService()
+        { }
+
+        public void Start()
+        {
+            Thread th = new Thread(GetTencentAddress);
+            th.IsBackground = true;
+            th.Start();
+        }
+
+        public void GetTencentAddress()
+        {
+            while (true)
+            {
+                try
+                {
+                    string data = RedisDbconn.Instance.RPop<string>("GetTencentAddressInfoQueue");
+                    JsonData jsonObj = JsonMapper.ToObject(data);
+                    int Address = int.Parse(jsonObj["Data"]["Address"].ToString());
+                    var Key = Library.ConfigurationManager.AppSettings["TencentKey"].ToString();
+                    var info = function.GetWebRequest("https://apis.map.qq.com/ws/geocoder/v1/?address=" + Address + "&key=" + Key);
+                }
+                catch (Exception ex)
+                {
+                    function.WriteLog(DateTime.Now.ToString() + ":" + ex.ToString(), "过期机具执行扣费异常");
+                }
+                Thread.Sleep(100000);
+            }
+        }
+    }
+}

+ 1 - 0
Startup.cs

@@ -189,6 +189,7 @@ namespace MySystem
             }
             if(Library.ConfigurationManager.EnvironmentFlag == 2)
             {
+                // GetTencentAddressInfoService.Instance.Start(); // 获取腾讯地图地址
                 MerchantConfirmService.Instance.Start(); //特约商户进件队列
                 CheckAlipaySignService.Instance.Start(); //特约商户签约队列(支付宝)
                 CheckWeChatSignService.Instance.Start(); //特约商户签约队列(微信)

+ 1 - 0
appsettings.Development.json

@@ -30,6 +30,7 @@
     "OSSSecret": "",
     "OSSEndpoint": "",
     "OSSBucketName": "",
+    "TencentKey":"GU3BZ-JYL6Q-ETG5Y-BGPXM-QFQV6-PZBLW",
     "AppSource": "/skin/app/default/",
     "JwtSecret": "JvDHuowbOnWiyxMIFc9gG5rw1LSSc0xx68L31oRfxS0",
     "JwtIss": "QrCodePlateMainServer",