123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246 |
- using System;
- using System.Collections.Generic;
- using System.Web;
- using System.Threading;
- namespace LYFZ.WxPayAPI
- {
- public class MicroPay
- {
-
- public static Result<WxPayData> Run(string body, string total_fee, string auth_code, string AppId = "", string MacId = "", string key = "", string sub_mch_id = "",bool bMySalt=false)
- {
- Result<WxPayData> resultData = new Result<WxPayData>();
- Log.Info("MicroPay", "Micropay is processing...");
- WxPayData data = new WxPayData();
- data.SetValue("auth_code", auth_code);
- data.SetValue("body", body);
- data.SetValue("total_fee", int.Parse(total_fee));
- data.SetValue("out_trade_no", WxPayApi.GenerateOutTradeNo());
- if (!bMySalt)
- {
- data.SetValue("sub_mch_id", sub_mch_id);
- }
- else
- {
- sub_mch_id = "";
-
- }
- WxPayData result = WxPayApi.Micropay(data, 120, AppId, MacId, key);
-
- if (!result.IsSet("return_code") || result.GetValue("return_code").ToString() == "FAIL")
- {
- string returnMsg = result.IsSet("return_msg") ? result.GetValue("return_msg").ToString() : "";
- Log.Error("MicroPay", "Micropay API interface call failure, result : " + result.ToXml());
-
- resultData.Status = false;
- resultData.StatusCode = 0;
- resultData.Message = returnMsg;
- resultData.Data = result;
- return resultData;
- }
-
- result.CheckSign(key);
- Log.Debug("MicroPay", "Micropay response check sign success");
-
- if (result.GetValue("return_code").ToString() == "SUCCESS" &&
- result.GetValue("result_code").ToString() == "SUCCESS")
- {
- Log.Debug("MicroPay", "Micropay business success, result : " + result.ToXml());
- resultData.Status = true;
- resultData.StatusCode = 1;
- resultData.Message = result.ToXml();
- resultData.Data = result;
- return resultData;
- }
-
-
- if (result.GetValue("err_code").ToString() != "USERPAYING" &&
- result.GetValue("err_code").ToString() != "SYSTEMERROR")
- {
- Log.Error("MicroPay", "micropay API interface call success, business failure, result : " + result.ToXml());
- resultData.Status = false;
- resultData.StatusCode = 0;
- resultData.Message = result.ToXml();
- resultData.Data = result;
- return resultData;
- }
-
-
- string out_trade_no = data.GetValue("out_trade_no").ToString();
-
- int queryTimes = 10;
- while (queryTimes-- > 0)
- {
- int succResult = 0;
- WxPayData queryResult = Query(out_trade_no, out succResult, AppId, MacId, key, sub_mch_id);
-
- if (succResult == 2)
- {
- Thread.Sleep(2000);
- continue;
- }
-
- else if (succResult == 1)
- {
- Log.Debug("MicroPay", "Mircopay success, return order query result : " + queryResult.ToXml());
- resultData.Status = true;
- resultData.StatusCode = 1;
- resultData.Message = queryResult.ToXml();
- resultData.Data = queryResult;
- return resultData;
- }
-
- else
- {
- Log.Error("MicroPay", "Micropay failure, return micropay result : " + result.ToXml());
- resultData.Status = false;
- resultData.StatusCode = 0;
- resultData.Message = result.ToXml();
- resultData.Data = result;
- return resultData;
- }
- }
-
- Log.Error("MicroPay", "Micropay failure, Reverse order is processing...");
- if (!Cancel(out_trade_no))
- {
- Log.Error("MicroPay", "Reverse order failure");
- throw new WxPayException("Reverse order failure!");
- }
- if (result.GetValue("return_msg").ToString().ToUpper() == "OK")
- {
- resultData.Status = true;
- resultData.StatusCode = 1;
- }
- else
- {
- resultData.Status = false;
- resultData.StatusCode = 0;
- }
- resultData.Message = result.ToXml();
- resultData.Data = result;
- return resultData;
- }
-
- public static WxPayData Query(string out_trade_no, out int succCode, string AppId = "", string MacId = "", string key = "", string sub_mch_id = "")
- {
- WxPayData queryOrderInput = new WxPayData();
- queryOrderInput.SetValue("out_trade_no",out_trade_no);
- if (!string.IsNullOrEmpty(sub_mch_id))
- {
- queryOrderInput.SetValue("sub_mch_id", sub_mch_id);
- }
-
- WxPayData result = WxPayApi.OrderQuery(queryOrderInput, 20, AppId, MacId, key);
-
- if(result.GetValue("return_code").ToString() == "SUCCESS"
- && result.GetValue("result_code").ToString() == "SUCCESS")
- {
-
- if (result.GetValue("trade_state") != null && result.GetValue("trade_state").ToString() == "SUCCESS")
- {
- succCode = 1;
- return result;
- }
-
- else if (result.GetValue("trade_state") != null && result.GetValue("trade_state").ToString() == "USERPAYING")
- {
- succCode = 2;
- return result;
- }
- else if (result.GetValue("trade_state") != null && result.GetValue("trade_state").ToString() == "NOTPAY")
- {
- succCode = 3;
- return result;
- }
- else if (result.GetValue("trade_state") != null && result.GetValue("trade_state").ToString() == "PAYERROR")
- {
- succCode = 4;
- return result;
- }
- }
-
-
- if (result.GetValue("err_code") != null && result.GetValue("err_code").ToString() == "ORDERNOTEXIST")
- {
- succCode = 0;
- }
- else
- {
-
- succCode = 2;
- }
- return result;
- }
-
-
- public static bool Cancel(string out_trade_no, int depth = 0)
- {
- if(depth > 10)
- {
- return false;
- }
-
- WxPayData reverseInput = new WxPayData();
- reverseInput.SetValue("out_trade_no",out_trade_no);
- WxPayData result = WxPayApi.Reverse(reverseInput);
-
-
- if(result.GetValue("return_code").ToString() != "SUCCESS")
- {
- return false;
- }
-
-
- if(result.GetValue("result_code").ToString() != "SUCCESS" && result.GetValue("recall").ToString() == "N")
- {
- return true;
- }
- else if(result.GetValue("recall").ToString() == "Y")
- {
- return Cancel(out_trade_no, ++depth);
- }
- return false;
- }
- }
- }
|