123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using MySystem.PxcModels;
- using Library;
- using LitJson;
- using System.Text.RegularExpressions;
- using System.Threading;
- namespace MySystem
- {
- public class CheckAlipaySignService
- {
- public readonly static CheckAlipaySignService Instance = new CheckAlipaySignService();
- private CheckAlipaySignService()
- { }
- public void Start()
- {
- Thread th = new Thread(StartListen);
- th.IsBackground = true;
- th.Start();
- }
- public void StartListen()
- {
- while (true)
- {
- string content = RedisDbconn.Instance.RPop<string>("AlipaySignQueue");
- if (!string.IsNullOrEmpty(content))
- {
- StartDo(Newtonsoft.Json.JsonConvert.DeserializeObject<MerchantSign>(content));
- }
- else
- {
- Thread.Sleep(2000);
- }
- }
- }
- public void StartDo(MerchantSign sign)
- {
- try
- {
- PxcModels.WebCMSEntities db = new PxcModels.WebCMSEntities();
- string content = new AlipayFunction().QuerySignStatus(sign.BusinessCode);
- JsonData dic = JsonMapper.ToObject(content);
- if (dic["alipay_open_agent_order_query_response"]["code"].ToString() == "10000")
- {
- if (dic["alipay_open_agent_order_query_response"]["order_status"].ToString() == "MERCHANT_CONFIRM")
- {
- string sign_url = dic["alipay_open_agent_order_query_response"]["confirm_url"].ToString();
- PxcModels.MerchantAddInfo merchantadd = db.MerchantAddInfo.FirstOrDefault(m => m.Id == sign.MerchantAddInfoId && m.QueryCount == 0);
- if (merchantadd != null)
- {
- merchantadd.QueryCount = 1;
- string confirm_url = "/static/alipay_confirm_url/";
- string fileName = function.MD5_16(Guid.NewGuid().ToString());
- function.CreateQRCode2(sign_url, fileName, "/bsserver_com" + confirm_url);
- string SignUrlList = function.CheckNull(merchantadd.SeoKeyword);
- if (string.IsNullOrEmpty(SignUrlList))
- {
- SignUrlList = "Alipay:" + confirm_url + ";";
- }
- else
- {
- SignUrlList = "Alipay:" + confirm_url+ ";" + SignUrlList;
- }
- merchantadd.SeoKeyword = SignUrlList;
- merchantadd.SeoTitle = dic["alipay_open_agent_order_query_response"]["merchant_pid"].ToString();
- db.SaveChanges();
- }
- }
- else if (dic["alipay_open_agent_order_query_response"]["order_status"].ToString() == "MERCHANT_CONFIRM_SUCCESS")
- {
- PxcModels.MerchantAddInfo merchantadd = db.MerchantAddInfo.FirstOrDefault(m => m.Id == sign.MerchantAddInfoId && m.QueryCount < 2);
- if (merchantadd != null)
- {
- merchantadd.QueryCount = 2;
- db.SaveChanges();
- RedisDbconn.Instance.Set("MerchantAddInfo:" + sign.MerchantAddInfoId, merchantadd);
- if (merchantadd.Status == 2 && merchantadd.QueryCount == 2)
- {
- PxcModels.MerchantInfo merchant = db.MerchantInfo.FirstOrDefault(m => m.Id == sign.MerchantAddInfoId);
- List<PxcModels.MerchantInfo> merchants = RedisDbconn.Instance.GetList<PxcModels.MerchantInfo>("TmpMerchantInfo:" + merchant.UserId, 1, 1000000);
- PxcModels.MerchantInfo check = merchants.FirstOrDefault(m => m.Id == sign.MerchantAddInfoId);
- if (check != null)
- {
- merchants.Remove(check);
- RedisDbconn.Instance.Clear("TmpMerchantInfo:" + merchant.UserId);
- RedisDbconn.Instance.AddList("TmpMerchantInfo:" + merchant.UserId, merchants.ToArray());
- }
- }
- }
- }
- else if (dic["alipay_open_agent_order_query_response"]["order_status"].ToString() == "MERCHANT_APPLY_ORDER_CANCELED")
- {
- PxcModels.MerchantAddInfo merchantadd = db.MerchantAddInfo.FirstOrDefault(m => m.Id == sign.MerchantAddInfoId);
- if (merchantadd != null)
- {
- string Season = function.CheckNull(merchantadd.SeoDescription);
- if (string.IsNullOrEmpty(Season))
- {
- Season = "Alipay:" + dic["alipay_open_agent_order_query_response"]["reject_reason"].ToString() + ";";
- }
- else
- {
- Season = Regex.Replace(Season, "Alipay:.*?;", "");
- Season += "Alipay:" + dic["alipay_open_agent_order_query_response"]["reject_reason"].ToString() + ";";
- }
- merchantadd.SeoDescription = Season;
- merchantadd.QueryCount = -1;
- PxcModels.MerchantInfo merchant = db.MerchantInfo.FirstOrDefault(m => m.Id == sign.MerchantAddInfoId);
- if (merchant != null)
- {
- merchant.Status = -1;
- }
- db.SaveChanges();
- }
- }
- }
- }
- catch (Exception ex)
- {
- function.WriteLog(DateTime.Now.ToString() + ":" + ex.ToString(), "public:merchant:signerr");
- }
- }
- }
- }
|