|
@@ -5,7 +5,7 @@ namespace GxPress.Common.WechatPay
|
|
|
public class WxPayApi
|
|
|
{
|
|
|
|
|
|
- public static WxPayData UnifiedOrder(string openId,string productId)
|
|
|
+ public static WxPayData UnifiedOrder(string openId, string productId)
|
|
|
{
|
|
|
//统一下单
|
|
|
WxPayData req = new WxPayData();
|
|
@@ -51,7 +51,7 @@ namespace GxPress.Common.WechatPay
|
|
|
{
|
|
|
throw new WxPayException("提交被扫支付API接口中,缺少必填参数auth_code!");
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
inputObj.SetValue("spbill_create_ip", WxPayConfig.GetConfig().GetIp());//终端ip
|
|
|
inputObj.SetValue("appid", WxPayConfig.GetConfig().GetAppID());//公众账号ID
|
|
|
inputObj.SetValue("mch_id", WxPayConfig.GetConfig().GetMchID());//商户号
|
|
@@ -78,7 +78,7 @@ namespace GxPress.Common.WechatPay
|
|
|
return result;
|
|
|
}
|
|
|
|
|
|
-
|
|
|
+
|
|
|
/**
|
|
|
*
|
|
|
* 查询订单
|
|
@@ -109,7 +109,7 @@ namespace GxPress.Common.WechatPay
|
|
|
|
|
|
////Log.Debug("WxPayApi", "OrderQuery request : " + xml);
|
|
|
string response = HttpService.Post(xml, url, false, timeOut);//调用HTTP通信接口提交数据
|
|
|
- // //Log.Debug("WxPayApi", "OrderQuery response : " + response);
|
|
|
+ // //Log.Debug("WxPayApi", "OrderQuery response : " + response);
|
|
|
|
|
|
var end = DateTime.Now;
|
|
|
int timeCost = (int)((end - start).TotalMilliseconds);//获得接口耗时
|
|
@@ -122,6 +122,22 @@ namespace GxPress.Common.WechatPay
|
|
|
|
|
|
return result;
|
|
|
}
|
|
|
+ //查询订单
|
|
|
+ public static bool QueryOrder(string transaction_id)
|
|
|
+ {
|
|
|
+ WxPayData req = new WxPayData();
|
|
|
+ req.SetValue("transaction_id", transaction_id);
|
|
|
+ WxPayData res = WxPayApi.OrderQuery(req);
|
|
|
+ if (res.GetValue("return_code").ToString() == "SUCCESS" &&
|
|
|
+ res.GetValue("result_code").ToString() == "SUCCESS")
|
|
|
+ {
|
|
|
+ return true;
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ return false;
|
|
|
+ }
|
|
|
+ }
|
|
|
|
|
|
|
|
|
/**
|
|
@@ -206,7 +222,7 @@ namespace GxPress.Common.WechatPay
|
|
|
inputObj.SetValue("nonce_str", Guid.NewGuid().ToString().Replace("-", ""));//随机字符串
|
|
|
inputObj.SetValue("sign_type", WxPayData.SIGN_TYPE_HMAC_SHA256);//签名类型
|
|
|
inputObj.SetValue("sign", inputObj.MakeSign());//签名
|
|
|
-
|
|
|
+
|
|
|
string xml = inputObj.ToXml();
|
|
|
var start = DateTime.Now;
|
|
|
|
|
@@ -238,41 +254,41 @@ namespace GxPress.Common.WechatPay
|
|
|
* @throws WxPayException
|
|
|
* @return 成功时返回,其他抛异常
|
|
|
*/
|
|
|
- public static WxPayData RefundQuery(WxPayData inputObj, int timeOut = 6)
|
|
|
- {
|
|
|
- string url = "https://api.mch.weixin.qq.com/pay/refundquery";
|
|
|
- //检测必填参数
|
|
|
- if(!inputObj.IsSet("out_refund_no") && !inputObj.IsSet("out_trade_no") &&
|
|
|
- !inputObj.IsSet("transaction_id") && !inputObj.IsSet("refund_id"))
|
|
|
- {
|
|
|
- throw new WxPayException("退款查询接口中,out_refund_no、out_trade_no、transaction_id、refund_id四个参数必填一个!");
|
|
|
- }
|
|
|
-
|
|
|
- inputObj.SetValue("appid",WxPayConfig.GetConfig().GetAppID());//公众账号ID
|
|
|
- inputObj.SetValue("mch_id",WxPayConfig.GetConfig().GetMchID());//商户号
|
|
|
- inputObj.SetValue("nonce_str",GenerateNonceStr());//随机字符串
|
|
|
+ public static WxPayData RefundQuery(WxPayData inputObj, int timeOut = 6)
|
|
|
+ {
|
|
|
+ string url = "https://api.mch.weixin.qq.com/pay/refundquery";
|
|
|
+ //检测必填参数
|
|
|
+ if (!inputObj.IsSet("out_refund_no") && !inputObj.IsSet("out_trade_no") &&
|
|
|
+ !inputObj.IsSet("transaction_id") && !inputObj.IsSet("refund_id"))
|
|
|
+ {
|
|
|
+ throw new WxPayException("退款查询接口中,out_refund_no、out_trade_no、transaction_id、refund_id四个参数必填一个!");
|
|
|
+ }
|
|
|
+
|
|
|
+ inputObj.SetValue("appid", WxPayConfig.GetConfig().GetAppID());//公众账号ID
|
|
|
+ inputObj.SetValue("mch_id", WxPayConfig.GetConfig().GetMchID());//商户号
|
|
|
+ inputObj.SetValue("nonce_str", GenerateNonceStr());//随机字符串
|
|
|
inputObj.SetValue("sign_type", WxPayData.SIGN_TYPE_HMAC_SHA256);//签名类型
|
|
|
inputObj.SetValue("sign", inputObj.MakeSign());//签名
|
|
|
|
|
|
- string xml = inputObj.ToXml();
|
|
|
-
|
|
|
- var start = DateTime.Now;//请求开始时间
|
|
|
+ string xml = inputObj.ToXml();
|
|
|
+
|
|
|
+ var start = DateTime.Now;//请求开始时间
|
|
|
|
|
|
//Log.Debug("WxPayApi", "RefundQuery request : " + xml);
|
|
|
string response = HttpService.Post(xml, url, false, timeOut);//调用HTTP通信接口以提交数据到API
|
|
|
//Log.Debug("WxPayApi", "RefundQuery response : " + response);
|
|
|
|
|
|
var end = DateTime.Now;
|
|
|
- int timeCost = (int)((end-start).TotalMilliseconds);//获得接口耗时
|
|
|
+ int timeCost = (int)((end - start).TotalMilliseconds);//获得接口耗时
|
|
|
|
|
|
//将xml格式的结果转换为对象以返回
|
|
|
- WxPayData result = new WxPayData();
|
|
|
+ WxPayData result = new WxPayData();
|
|
|
result.FromXml(response);
|
|
|
|
|
|
- ReportCostTime(url, timeCost, result);//测速上报
|
|
|
-
|
|
|
- return result;
|
|
|
- }
|
|
|
+ ReportCostTime(url, timeCost, result);//测速上报
|
|
|
+
|
|
|
+ return result;
|
|
|
+ }
|
|
|
|
|
|
|
|
|
/**
|
|
@@ -327,23 +343,23 @@ namespace GxPress.Common.WechatPay
|
|
|
* @throws WxPayException
|
|
|
* @return 成功时返回,其他抛异常
|
|
|
*/
|
|
|
- public static WxPayData ShortUrl(WxPayData inputObj, int timeOut = 6)
|
|
|
- {
|
|
|
- string url = "https://api.mch.weixin.qq.com/tools/shorturl";
|
|
|
- //检测必填参数
|
|
|
- if(!inputObj.IsSet("long_url"))
|
|
|
- {
|
|
|
- throw new WxPayException("需要转换的URL,签名用原串,传输需URL encode!");
|
|
|
- }
|
|
|
-
|
|
|
- inputObj.SetValue("appid",WxPayConfig.GetConfig().GetAppID());//公众账号ID
|
|
|
- inputObj.SetValue("mch_id",WxPayConfig.GetConfig().GetMchID());//商户号
|
|
|
- inputObj.SetValue("nonce_str",GenerateNonceStr());//随机字符串
|
|
|
+ public static WxPayData ShortUrl(WxPayData inputObj, int timeOut = 6)
|
|
|
+ {
|
|
|
+ string url = "https://api.mch.weixin.qq.com/tools/shorturl";
|
|
|
+ //检测必填参数
|
|
|
+ if (!inputObj.IsSet("long_url"))
|
|
|
+ {
|
|
|
+ throw new WxPayException("需要转换的URL,签名用原串,传输需URL encode!");
|
|
|
+ }
|
|
|
+
|
|
|
+ inputObj.SetValue("appid", WxPayConfig.GetConfig().GetAppID());//公众账号ID
|
|
|
+ inputObj.SetValue("mch_id", WxPayConfig.GetConfig().GetMchID());//商户号
|
|
|
+ inputObj.SetValue("nonce_str", GenerateNonceStr());//随机字符串
|
|
|
inputObj.SetValue("sign_type", WxPayData.SIGN_TYPE_HMAC_SHA256);//签名类型
|
|
|
inputObj.SetValue("sign", inputObj.MakeSign());//签名
|
|
|
- string xml = inputObj.ToXml();
|
|
|
-
|
|
|
- var start = DateTime.Now;//请求开始时间
|
|
|
+ string xml = inputObj.ToXml();
|
|
|
+
|
|
|
+ var start = DateTime.Now;//请求开始时间
|
|
|
|
|
|
//Log.Debug("WxPayApi", "ShortUrl request : " + xml);
|
|
|
string response = HttpService.Post(xml, url, false, timeOut);
|
|
@@ -354,10 +370,10 @@ namespace GxPress.Common.WechatPay
|
|
|
|
|
|
WxPayData result = new WxPayData();
|
|
|
result.FromXml(response);
|
|
|
- ReportCostTime(url, timeCost, result);//测速上报
|
|
|
-
|
|
|
- return result;
|
|
|
- }
|
|
|
+ ReportCostTime(url, timeCost, result);//测速上报
|
|
|
+
|
|
|
+ return result;
|
|
|
+ }
|
|
|
|
|
|
|
|
|
/**
|
|
@@ -432,7 +448,7 @@ namespace GxPress.Common.WechatPay
|
|
|
return result;
|
|
|
}
|
|
|
|
|
|
-
|
|
|
+
|
|
|
/**
|
|
|
*
|
|
|
* 关闭订单
|
|
@@ -441,23 +457,23 @@ namespace GxPress.Common.WechatPay
|
|
|
* @throws WxPayException
|
|
|
* @return 成功时返回,其他抛异常
|
|
|
*/
|
|
|
- public static WxPayData CloseOrder(WxPayData inputObj, int timeOut = 6)
|
|
|
- {
|
|
|
- string url = "https://api.mch.weixin.qq.com/pay/closeorder";
|
|
|
- //检测必填参数
|
|
|
- if(!inputObj.IsSet("out_trade_no"))
|
|
|
- {
|
|
|
- throw new WxPayException("关闭订单接口中,out_trade_no必填!");
|
|
|
- }
|
|
|
-
|
|
|
- inputObj.SetValue("appid",WxPayConfig.GetConfig().GetAppID());//公众账号ID
|
|
|
- inputObj.SetValue("mch_id",WxPayConfig.GetConfig().GetMchID());//商户号
|
|
|
- inputObj.SetValue("nonce_str",GenerateNonceStr());//随机字符串
|
|
|
+ public static WxPayData CloseOrder(WxPayData inputObj, int timeOut = 6)
|
|
|
+ {
|
|
|
+ string url = "https://api.mch.weixin.qq.com/pay/closeorder";
|
|
|
+ //检测必填参数
|
|
|
+ if (!inputObj.IsSet("out_trade_no"))
|
|
|
+ {
|
|
|
+ throw new WxPayException("关闭订单接口中,out_trade_no必填!");
|
|
|
+ }
|
|
|
+
|
|
|
+ inputObj.SetValue("appid", WxPayConfig.GetConfig().GetAppID());//公众账号ID
|
|
|
+ inputObj.SetValue("mch_id", WxPayConfig.GetConfig().GetMchID());//商户号
|
|
|
+ inputObj.SetValue("nonce_str", GenerateNonceStr());//随机字符串
|
|
|
inputObj.SetValue("sign_type", WxPayData.SIGN_TYPE_HMAC_SHA256);//签名类型
|
|
|
inputObj.SetValue("sign", inputObj.MakeSign());//签名
|
|
|
- string xml = inputObj.ToXml();
|
|
|
-
|
|
|
- var start = DateTime.Now;//请求开始时间
|
|
|
+ string xml = inputObj.ToXml();
|
|
|
+
|
|
|
+ var start = DateTime.Now;//请求开始时间
|
|
|
|
|
|
string response = HttpService.Post(xml, url, false, timeOut);
|
|
|
|
|
@@ -467,10 +483,10 @@ namespace GxPress.Common.WechatPay
|
|
|
WxPayData result = new WxPayData();
|
|
|
result.FromXml(response);
|
|
|
|
|
|
- ReportCostTime(url, timeCost, result);//测速上报
|
|
|
-
|
|
|
- return result;
|
|
|
- }
|
|
|
+ ReportCostTime(url, timeCost, result);//测速上报
|
|
|
+
|
|
|
+ return result;
|
|
|
+ }
|
|
|
|
|
|
|
|
|
/**
|
|
@@ -481,69 +497,69 @@ namespace GxPress.Common.WechatPay
|
|
|
* @param WxPayData inputObj参数数组
|
|
|
*/
|
|
|
private static void ReportCostTime(string interface_url, int timeCost, WxPayData inputObj)
|
|
|
- {
|
|
|
- //如果不需要进行上报
|
|
|
- if(WxPayConfig.GetConfig().GetReportLevel() == 0)
|
|
|
- {
|
|
|
- return;
|
|
|
- }
|
|
|
-
|
|
|
- //如果仅失败上报
|
|
|
- if(WxPayConfig.GetConfig().GetReportLevel() == 1 && inputObj.IsSet("return_code") && inputObj.GetValue("return_code").ToString() == "SUCCESS" &&
|
|
|
- inputObj.IsSet("result_code") && inputObj.GetValue("result_code").ToString() == "SUCCESS")
|
|
|
- {
|
|
|
- return;
|
|
|
- }
|
|
|
-
|
|
|
- //上报逻辑
|
|
|
- WxPayData data = new WxPayData();
|
|
|
- data.SetValue("interface_url",interface_url);
|
|
|
- data.SetValue("execute_time_",timeCost);
|
|
|
- //返回状态码
|
|
|
- if(inputObj.IsSet("return_code"))
|
|
|
- {
|
|
|
- data.SetValue("return_code",inputObj.GetValue("return_code"));
|
|
|
- }
|
|
|
- //返回信息
|
|
|
- if(inputObj.IsSet("return_msg"))
|
|
|
- {
|
|
|
- data.SetValue("return_msg",inputObj.GetValue("return_msg"));
|
|
|
- }
|
|
|
- //业务结果
|
|
|
- if(inputObj.IsSet("result_code"))
|
|
|
- {
|
|
|
- data.SetValue("result_code",inputObj.GetValue("result_code"));
|
|
|
- }
|
|
|
- //错误代码
|
|
|
- if(inputObj.IsSet("err_code"))
|
|
|
- {
|
|
|
- data.SetValue("err_code",inputObj.GetValue("err_code"));
|
|
|
- }
|
|
|
- //错误代码描述
|
|
|
- if(inputObj.IsSet("err_code_des"))
|
|
|
- {
|
|
|
- data.SetValue("err_code_des",inputObj.GetValue("err_code_des"));
|
|
|
- }
|
|
|
- //商户订单号
|
|
|
- if(inputObj.IsSet("out_trade_no"))
|
|
|
- {
|
|
|
- data.SetValue("out_trade_no",inputObj.GetValue("out_trade_no"));
|
|
|
- }
|
|
|
- //设备号
|
|
|
- if(inputObj.IsSet("device_info"))
|
|
|
- {
|
|
|
- data.SetValue("device_info",inputObj.GetValue("device_info"));
|
|
|
- }
|
|
|
-
|
|
|
- try
|
|
|
- {
|
|
|
- Report(data);
|
|
|
- }
|
|
|
+ {
|
|
|
+ //如果不需要进行上报
|
|
|
+ if (WxPayConfig.GetConfig().GetReportLevel() == 0)
|
|
|
+ {
|
|
|
+ return;
|
|
|
+ }
|
|
|
+
|
|
|
+ //如果仅失败上报
|
|
|
+ if (WxPayConfig.GetConfig().GetReportLevel() == 1 && inputObj.IsSet("return_code") && inputObj.GetValue("return_code").ToString() == "SUCCESS" &&
|
|
|
+ inputObj.IsSet("result_code") && inputObj.GetValue("result_code").ToString() == "SUCCESS")
|
|
|
+ {
|
|
|
+ return;
|
|
|
+ }
|
|
|
+
|
|
|
+ //上报逻辑
|
|
|
+ WxPayData data = new WxPayData();
|
|
|
+ data.SetValue("interface_url", interface_url);
|
|
|
+ data.SetValue("execute_time_", timeCost);
|
|
|
+ //返回状态码
|
|
|
+ if (inputObj.IsSet("return_code"))
|
|
|
+ {
|
|
|
+ data.SetValue("return_code", inputObj.GetValue("return_code"));
|
|
|
+ }
|
|
|
+ //返回信息
|
|
|
+ if (inputObj.IsSet("return_msg"))
|
|
|
+ {
|
|
|
+ data.SetValue("return_msg", inputObj.GetValue("return_msg"));
|
|
|
+ }
|
|
|
+ //业务结果
|
|
|
+ if (inputObj.IsSet("result_code"))
|
|
|
+ {
|
|
|
+ data.SetValue("result_code", inputObj.GetValue("result_code"));
|
|
|
+ }
|
|
|
+ //错误代码
|
|
|
+ if (inputObj.IsSet("err_code"))
|
|
|
+ {
|
|
|
+ data.SetValue("err_code", inputObj.GetValue("err_code"));
|
|
|
+ }
|
|
|
+ //错误代码描述
|
|
|
+ if (inputObj.IsSet("err_code_des"))
|
|
|
+ {
|
|
|
+ data.SetValue("err_code_des", inputObj.GetValue("err_code_des"));
|
|
|
+ }
|
|
|
+ //商户订单号
|
|
|
+ if (inputObj.IsSet("out_trade_no"))
|
|
|
+ {
|
|
|
+ data.SetValue("out_trade_no", inputObj.GetValue("out_trade_no"));
|
|
|
+ }
|
|
|
+ //设备号
|
|
|
+ if (inputObj.IsSet("device_info"))
|
|
|
+ {
|
|
|
+ data.SetValue("device_info", inputObj.GetValue("device_info"));
|
|
|
+ }
|
|
|
+
|
|
|
+ try
|
|
|
+ {
|
|
|
+ Report(data);
|
|
|
+ }
|
|
|
catch (WxPayException ex)
|
|
|
{
|
|
|
- //不做任何处理
|
|
|
- }
|
|
|
- }
|
|
|
+ //不做任何处理
|
|
|
+ }
|
|
|
+ }
|
|
|
|
|
|
|
|
|
/**
|
|
@@ -554,39 +570,39 @@ namespace GxPress.Common.WechatPay
|
|
|
* @throws WxPayException
|
|
|
* @return 成功时返回测速上报接口返回的结果,其他抛异常
|
|
|
*/
|
|
|
- public static WxPayData Report(WxPayData inputObj, int timeOut = 1)
|
|
|
- {
|
|
|
- string url = "https://api.mch.weixin.qq.com/payitil/report";
|
|
|
- //检测必填参数
|
|
|
- if(!inputObj.IsSet("interface_url"))
|
|
|
- {
|
|
|
- throw new WxPayException("接口URL,缺少必填参数interface_url!");
|
|
|
- }
|
|
|
- if(!inputObj.IsSet("return_code"))
|
|
|
- {
|
|
|
- throw new WxPayException("返回状态码,缺少必填参数return_code!");
|
|
|
- }
|
|
|
- if(!inputObj.IsSet("result_code"))
|
|
|
- {
|
|
|
- throw new WxPayException("业务结果,缺少必填参数result_code!");
|
|
|
- }
|
|
|
- if(!inputObj.IsSet("user_ip"))
|
|
|
- {
|
|
|
- throw new WxPayException("访问接口IP,缺少必填参数user_ip!");
|
|
|
- }
|
|
|
- if(!inputObj.IsSet("execute_time_"))
|
|
|
- {
|
|
|
- throw new WxPayException("接口耗时,缺少必填参数execute_time_!");
|
|
|
- }
|
|
|
-
|
|
|
- inputObj.SetValue("appid",WxPayConfig.GetConfig().GetAppID());//公众账号ID
|
|
|
- inputObj.SetValue("mch_id",WxPayConfig.GetConfig().GetMchID());//商户号
|
|
|
- inputObj.SetValue("user_ip",WxPayConfig.GetConfig().GetIp());//终端ip
|
|
|
- inputObj.SetValue("time",DateTime.Now.ToString("yyyyMMddHHmmss"));//商户上报时间
|
|
|
- inputObj.SetValue("nonce_str",GenerateNonceStr());//随机字符串
|
|
|
+ public static WxPayData Report(WxPayData inputObj, int timeOut = 1)
|
|
|
+ {
|
|
|
+ string url = "https://api.mch.weixin.qq.com/payitil/report";
|
|
|
+ //检测必填参数
|
|
|
+ if (!inputObj.IsSet("interface_url"))
|
|
|
+ {
|
|
|
+ throw new WxPayException("接口URL,缺少必填参数interface_url!");
|
|
|
+ }
|
|
|
+ if (!inputObj.IsSet("return_code"))
|
|
|
+ {
|
|
|
+ throw new WxPayException("返回状态码,缺少必填参数return_code!");
|
|
|
+ }
|
|
|
+ if (!inputObj.IsSet("result_code"))
|
|
|
+ {
|
|
|
+ throw new WxPayException("业务结果,缺少必填参数result_code!");
|
|
|
+ }
|
|
|
+ if (!inputObj.IsSet("user_ip"))
|
|
|
+ {
|
|
|
+ throw new WxPayException("访问接口IP,缺少必填参数user_ip!");
|
|
|
+ }
|
|
|
+ if (!inputObj.IsSet("execute_time_"))
|
|
|
+ {
|
|
|
+ throw new WxPayException("接口耗时,缺少必填参数execute_time_!");
|
|
|
+ }
|
|
|
+
|
|
|
+ inputObj.SetValue("appid", WxPayConfig.GetConfig().GetAppID());//公众账号ID
|
|
|
+ inputObj.SetValue("mch_id", WxPayConfig.GetConfig().GetMchID());//商户号
|
|
|
+ inputObj.SetValue("user_ip", WxPayConfig.GetConfig().GetIp());//终端ip
|
|
|
+ inputObj.SetValue("time", DateTime.Now.ToString("yyyyMMddHHmmss"));//商户上报时间
|
|
|
+ inputObj.SetValue("nonce_str", GenerateNonceStr());//随机字符串
|
|
|
inputObj.SetValue("sign_type", WxPayData.SIGN_TYPE_HMAC_SHA256);//签名类型
|
|
|
inputObj.SetValue("sign", inputObj.MakeSign());//签名
|
|
|
- string xml = inputObj.ToXml();
|
|
|
+ string xml = inputObj.ToXml();
|
|
|
|
|
|
//Log.Info("WxPayApi", "Report request : " + xml);
|
|
|
|
|
@@ -596,8 +612,8 @@ namespace GxPress.Common.WechatPay
|
|
|
|
|
|
WxPayData result = new WxPayData();
|
|
|
result.FromXml(response);
|
|
|
- return result;
|
|
|
- }
|
|
|
+ return result;
|
|
|
+ }
|
|
|
|
|
|
/**
|
|
|
* 根据当前系统时间加随机序列来生成订单号
|