1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009 |
- using System.Net.Mime;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Security.Cryptography;
- using System.Text;
- using Library;
- using System.Net;
- using System.IO;
- using Aop.Api.Util;
- using LitJson;
- namespace MySystem
- {
-
-
-
- public class HaoDaHelper
- {
- public readonly static HaoDaHelper Instance = new HaoDaHelper();
- private HaoDaHelper()
- {
- }
- #region 盒易付
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- public string AddNewMerchant(AddNewMerchant request, int BrandId = 0)
- {
- var BoxRequestUrl = HaodaUnionParam.BoxRequestUrl;
- if (BrandId == 1)
- {
- BoxRequestUrl = HaodaParam.BoxRequestUrl;
- request.oprInvitedCode = "T1715836";
- }
-
- LogHelper.Instance.WriteLog(DateTime.Now.ToString(), "好哒新创建商户");
- string req = Newtonsoft.Json.JsonConvert.SerializeObject(request);
- LogHelper.Instance.WriteLog(req, "好哒新创建商户");
- Dictionary<string, string> headdic = GetHeader(req, BrandId);
- string head = Newtonsoft.Json.JsonConvert.SerializeObject(headdic);
- LogHelper.Instance.WriteLog("请求头\n" + head, "好哒新创建商户");
- LogHelper.Instance.WriteLog("请求参数\n" + req, "好哒新创建商户");
- LogHelper.Instance.WriteLog("请求地址:" + BoxRequestUrl + "/api/inst/mcht/new_create_mcht", "好哒新创建商户");
- string result = PostWebRequest(BoxRequestUrl + "/api/inst/mcht/new_create_mcht", req, headdic);
- LogHelper.Instance.WriteLog("返回\n" + result + "\n\n", "好哒新创建商户");
- return result;
- }
-
-
-
-
-
-
- public string QueryMerchantStatus(string instId, string mchtNo, int BrandId = 0)
- {
- if(string.IsNullOrEmpty(mchtNo))
- {
- return "{}";
- }
- var BoxRequestUrl = HaodaUnionParam.BoxRequestUrl;
- if (BrandId == 1) BoxRequestUrl = HaodaParam.BoxRequestUrl;
- LogHelper.Instance.WriteLog(DateTime.Now.ToString(), "好哒查询商户审核状态");
- Dictionary<string, object> reqdic = new Dictionary<string, object>();
- reqdic.Add("instId", instId);
- reqdic.Add("mchtNo", mchtNo);
- string req = Newtonsoft.Json.JsonConvert.SerializeObject(reqdic);
- LogHelper.Instance.WriteLog(req, "好哒查询商户审核状态");
- Dictionary<string, string> headdic = GetHeader(req, BrandId);
- string head = Newtonsoft.Json.JsonConvert.SerializeObject(headdic);
- LogHelper.Instance.WriteLog("请求头\n" + head, "好哒查询商户审核状态");
- LogHelper.Instance.WriteLog("请求参数\n" + req, "好哒查询商户审核状态");
- LogHelper.Instance.WriteLog("请求地址:" + BoxRequestUrl + "/api/inst/mcht/query_mcht_audit", "好哒查询商户审核状态");
- string result = PostWebRequest(BoxRequestUrl + "/api/inst/mcht/query_mcht_audit", req, headdic);
- LogHelper.Instance.WriteLog("返回\n" + result + "\n\n", "好哒查询商户审核状态");
- return result;
- }
-
-
-
-
-
-
- public string QueryAuthStatus(string mchtNo, string storeNo, int BrandId = 0)
- {
- var BoxRequestUrl = HaodaUnionParam.BoxRequestUrl;
- if (BrandId == 1) BoxRequestUrl = HaodaParam.BoxRequestUrl;
- LogHelper.Instance.WriteLog(DateTime.Now.ToString(), "好哒查询实名认证状态");
- Dictionary<string, object> reqdic = new Dictionary<string, object>();
- reqdic.Add("mchtNo", mchtNo);
- reqdic.Add("storeNo", storeNo);
- string req = Newtonsoft.Json.JsonConvert.SerializeObject(reqdic);
- LogHelper.Instance.WriteLog(req, "好哒查询实名认证状态");
- Dictionary<string, string> headdic = GetHeader(req, BrandId);
- string head = Newtonsoft.Json.JsonConvert.SerializeObject(headdic);
- LogHelper.Instance.WriteLog("请求头\n" + head, "好哒查询实名认证状态");
- LogHelper.Instance.WriteLog("请求参数\n" + req, "好哒查询实名认证状态");
- LogHelper.Instance.WriteLog("请求地址:" + BoxRequestUrl + "/api/hzg/v2/wechat/queryVerifiedResult.json", "好哒查询实名认证状态");
- string result = PostWebRequest(BoxRequestUrl + "/api/hzg/v2/wechat/queryVerifiedResult.json", req, headdic);
- LogHelper.Instance.WriteLog("返回\n" + result + "\n\n", "好哒查询实名认证状态");
- return result;
- }
-
-
-
-
-
-
- public string QueryAuthQRcode(string mchtNo, string storeNo, int BrandId = 0)
- {
- var BoxRequestUrl = HaodaUnionParam.BoxRequestUrl;
- if (BrandId == 1) BoxRequestUrl = HaodaParam.BoxRequestUrl;
- LogHelper.Instance.WriteLog(DateTime.Now.ToString(), "好哒查询实名认证二维码");
- Dictionary<string, object> reqdic = new Dictionary<string, object>();
- reqdic.Add("mchtNo", mchtNo);
- reqdic.Add("storeNo", storeNo);
- string req = Newtonsoft.Json.JsonConvert.SerializeObject(reqdic);
- LogHelper.Instance.WriteLog(req, "好哒查询实名认证二维码");
- Dictionary<string, string> headdic = GetHeader(req, BrandId);
- string head = Newtonsoft.Json.JsonConvert.SerializeObject(headdic);
- LogHelper.Instance.WriteLog("请求头\n" + head, "好哒查询实名认证二维码");
- LogHelper.Instance.WriteLog("请求参数\n" + req, "好哒查询实名认证二维码");
- LogHelper.Instance.WriteLog("请求地址:" + BoxRequestUrl + "/api/hzg/v2/wechat/queryVerifiedQrcode.json", "好哒查询实名认证二维码");
- string result = PostWebRequest(BoxRequestUrl + "/api/hzg/v2/wechat/queryVerifiedQrcode.json", req, headdic);
- LogHelper.Instance.WriteLog("返回\n" + result + "\n\n", "好哒查询实名认证二维码");
- return result;
- }
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- public string WeChatPay(string mchtNo, string storeNo, string outOrderNo, string transAmount, string callbackUrl, string subOpenId, string confirmCode, string subAppId, string subAppIdType, string ledgerModel, int BrandId = 0)
- {
- var BoxRequestUrl = HaodaUnionParam.BoxRequestUrl;
- if (BrandId == 1) BoxRequestUrl = HaodaParam.BoxRequestUrl;
- LogHelper.Instance.WriteLog(DateTime.Now.ToString(), "好哒微信公众号和小程序支付");
- Dictionary<string, object> reqdic = new Dictionary<string, object>();
- reqdic.Add("mchtNo", mchtNo);
- reqdic.Add("storeNo", storeNo);
- reqdic.Add("outOrderNo", outOrderNo);
- reqdic.Add("transAmount", transAmount);
- reqdic.Add("callbackUrl", callbackUrl);
- reqdic.Add("subOpenId", subOpenId);
- reqdic.Add("confirmCode", confirmCode);
- reqdic.Add("subAppId", subAppId);
- reqdic.Add("subAppIdType", subAppIdType);
- reqdic.Add("ledgerModel", ledgerModel);
- string req = Newtonsoft.Json.JsonConvert.SerializeObject(reqdic);
- LogHelper.Instance.WriteLog(req, "好哒微信公众号和小程序支付");
- Dictionary<string, string> headdic = GetHeader(req, BrandId);
- string head = Newtonsoft.Json.JsonConvert.SerializeObject(headdic);
- LogHelper.Instance.WriteLog("请求头\n" + head, "好哒微信公众号和小程序支付");
- LogHelper.Instance.WriteLog("请求参数\n" + req, "好哒微信公众号和小程序支付");
- LogHelper.Instance.WriteLog("请求地址:" + BoxRequestUrl + "/api/hzg/v2/unitedtrade/wechat_js_pay", "好哒微信公众号和小程序支付");
- string result = PostWebRequest(BoxRequestUrl + "/api/hzg/v2/unitedtrade/wechat_js_pay", req, headdic);
- LogHelper.Instance.WriteLog("返回\n" + result + "\n\n", "好哒微信公众号和小程序支付");
- return result;
- }
-
-
-
-
-
-
-
-
-
-
-
- public string Alipay(string mchtNo, string storeNo, string outOrderNo, string transAmount, string callbackUrl, string subOpenId, string confirmCode, int BrandId = 0)
- {
- var BoxRequestUrl = HaodaUnionParam.BoxRequestUrl;
- if (BrandId == 1) BoxRequestUrl = HaodaParam.BoxRequestUrl;
- LogHelper.Instance.WriteLog(DateTime.Now.ToString(), "好哒支付宝服务窗支付");
- Dictionary<string, object> reqdic = new Dictionary<string, object>();
- reqdic.Add("mchtNo", mchtNo);
- reqdic.Add("storeNo", storeNo);
- reqdic.Add("outOrderNo", outOrderNo);
- reqdic.Add("transAmount", transAmount);
- reqdic.Add("callbackUrl", callbackUrl);
- reqdic.Add("subOpenId", subOpenId);
- reqdic.Add("confirmCode", confirmCode);
- string req = Newtonsoft.Json.JsonConvert.SerializeObject(reqdic);
- LogHelper.Instance.WriteLog(req, "好哒支付宝服务窗支付");
- Dictionary<string, string> headdic = GetHeader(req, BrandId);
- string head = Newtonsoft.Json.JsonConvert.SerializeObject(headdic);
- LogHelper.Instance.WriteLog("请求头\n" + head, "好哒支付宝服务窗支付");
- LogHelper.Instance.WriteLog("请求参数\n" + req, "好哒支付宝服务窗支付");
- LogHelper.Instance.WriteLog("请求地址:" + BoxRequestUrl + "/api/hzg/v2/unitedtrade/wechat_js_pay", "好哒支付宝服务窗支付");
- string result = PostWebRequest(BoxRequestUrl + "/api/hzg/v2/unitedtrade/wechat_js_pay", req, headdic);
- LogHelper.Instance.WriteLog("返回\n" + result + "\n\n", "好哒支付宝服务窗支付");
- return result;
- }
-
-
-
-
-
-
-
-
-
- public string AggregatedPayRefund(string mchtNo, string storeNo, string outRefundNo, string outOrderNo, string refundAmount, int BrandId = 0)
- {
- var BoxRequestUrl = HaodaUnionParam.BoxRequestUrl;
- if (BrandId == 1) BoxRequestUrl = HaodaParam.BoxRequestUrl;
- LogHelper.Instance.WriteLog(DateTime.Now.ToString(), "好哒聚合支付退款");
- Dictionary<string, object> reqdic = new Dictionary<string, object>();
- reqdic.Add("mchtNo", mchtNo);
- reqdic.Add("storeNo", storeNo);
- reqdic.Add("outRefundNo", outRefundNo);
- reqdic.Add("outOrderNo", outOrderNo);
- reqdic.Add("refundAmount", refundAmount);
- reqdic.Add("refundReason", "门店消费补贴");
- string req = Newtonsoft.Json.JsonConvert.SerializeObject(reqdic);
- LogHelper.Instance.WriteLog(req, "好哒聚合支付退款");
- Dictionary<string, string> headdic = GetHeader(req, BrandId);
- string head = Newtonsoft.Json.JsonConvert.SerializeObject(headdic);
- LogHelper.Instance.WriteLog("请求头\n" + head, "好哒聚合支付退款");
- LogHelper.Instance.WriteLog("请求参数\n" + req, "好哒聚合支付退款");
- LogHelper.Instance.WriteLog("请求地址:" + BoxRequestUrl + "/api/hzg/v2/unitedtrade/refund", "好哒聚合支付退款");
- string result = PostWebRequest(BoxRequestUrl + "/api/hzg/v2/unitedtrade/refund", req, headdic);
- LogHelper.Instance.WriteLog("返回\n" + result + "\n\n", "好哒聚合支付退款");
- return result;
- }
-
-
-
-
-
-
- public string OpenDivideAccounts(string mchtNo, string storeNo, int BrandId = 0)
- {
- var BoxRequestUrl = HaodaUnionParam.BoxRequestUrl;
- if (BrandId == 1) BoxRequestUrl = HaodaParam.BoxRequestUrl;
- LogHelper.Instance.WriteLog(DateTime.Now.ToString(), "好哒开通分账");
- Dictionary<string, object> reqdic = new Dictionary<string, object>();
- reqdic.Add("mchtNo", mchtNo);
- reqdic.Add("storeNo", storeNo);
- string req = Newtonsoft.Json.JsonConvert.SerializeObject(reqdic);
- LogHelper.Instance.WriteLog(req, "好哒开通分账");
- Dictionary<string, string> headdic = GetHeader(req, BrandId);
- string head = Newtonsoft.Json.JsonConvert.SerializeObject(headdic);
- LogHelper.Instance.WriteLog("请求头\n" + head, "好哒开通分账");
- LogHelper.Instance.WriteLog("请求参数\n" + req, "好哒开通分账");
- LogHelper.Instance.WriteLog("请求地址:" + BoxRequestUrl + "/api/v3/hzg/part/mcht/reg", "好哒开通分账");
- string result = PostWebRequest(BoxRequestUrl + "/api/v3/hzg/part/mcht/reg", req, headdic);
- LogHelper.Instance.WriteLog("返回\n" + result + "\n\n", "好哒开通分账");
- return result;
- }
-
-
-
-
-
-
-
- public string DivideAccountsSign(string acctNo, string mchtNo, string storeNo, int BrandId = 0)
- {
- var BoxRequestUrl = HaodaUnionParam.BoxRequestUrl;
- if (BrandId == 1) BoxRequestUrl = HaodaParam.BoxRequestUrl;
- LogHelper.Instance.WriteLog(DateTime.Now.ToString(), "好哒分账接收方签约");
- Dictionary<string, object> reqdic = new Dictionary<string, object>();
- reqdic.Add("acctNo", acctNo);
- reqdic.Add("mchtNo", mchtNo);
- reqdic.Add("storeNo", storeNo);
- string req = Newtonsoft.Json.JsonConvert.SerializeObject(reqdic);
- LogHelper.Instance.WriteLog(req, "好哒分账接收方签约");
- Dictionary<string, string> headdic = GetHeader(req, BrandId);
- string head = Newtonsoft.Json.JsonConvert.SerializeObject(headdic);
- LogHelper.Instance.WriteLog("请求头\n" + head, "好哒分账接收方签约");
- LogHelper.Instance.WriteLog("请求参数\n" + req, "好哒分账接收方签约");
- LogHelper.Instance.WriteLog("请求地址:" + BoxRequestUrl + "/api/v3/hzg/part/acct/bind_mcht", "好哒分账接收方签约");
- string result = PostWebRequest(BoxRequestUrl + "/api/v3/hzg/part/acct/bind_mcht", req, headdic);
- LogHelper.Instance.WriteLog("返回\n" + result + "\n\n", "好哒分账接收方签约");
- return result;
- }
-
-
-
-
-
- public string AddOpenDivideAccounts(AddOpenDivideAccounts request, int BrandId = 0)
- {
- var BoxRequestUrl = HaodaUnionParam.BoxRequestUrl;
- if (BrandId == 1) BoxRequestUrl = HaodaParam.BoxRequestUrl;
- LogHelper.Instance.WriteLog(DateTime.Now.ToString(), "好哒添加分账接收方账户");
- string req = Newtonsoft.Json.JsonConvert.SerializeObject(request);
- LogHelper.Instance.WriteLog(req, "好哒添加分账接收方账户");
- Dictionary<string, string> headdic = GetHeader(req, BrandId);
- string head = Newtonsoft.Json.JsonConvert.SerializeObject(headdic);
- LogHelper.Instance.WriteLog("请求头\n" + head, "好哒添加分账接收方账户");
- LogHelper.Instance.WriteLog("请求参数\n" + req, "好哒添加分账接收方账户");
- LogHelper.Instance.WriteLog("请求地址:" + BoxRequestUrl + "/api/v3/hzg/part/acct/register", "好哒添加分账接收方账户");
- string result = PostWebRequest(BoxRequestUrl + "/api/v3/hzg/part/acct/register", req, headdic);
- LogHelper.Instance.WriteLog("返回\n" + result + "\n\n", "好哒添加分账接收方账户");
- return result;
- }
-
-
-
-
-
-
- public string QueryOrderDivideAccounts(string mchtNo, string orderNo, int BrandId = 0)
- {
- var BoxRequestUrl = HaodaUnionParam.BoxRequestUrl;
- if (BrandId == 1) BoxRequestUrl = HaodaParam.BoxRequestUrl;
- LogHelper.Instance.WriteLog(DateTime.Now.ToString(), "好哒分账交易详情查询");
- Dictionary<string, object> reqdic = new Dictionary<string, object>();
- reqdic.Add("mchtNo", mchtNo);
- reqdic.Add("orderNo", orderNo);
- string req = Newtonsoft.Json.JsonConvert.SerializeObject(reqdic);
- LogHelper.Instance.WriteLog(req, "好哒分账交易详情查询");
- Dictionary<string, string> headdic = GetHeader(req, BrandId);
- string head = Newtonsoft.Json.JsonConvert.SerializeObject(headdic);
- LogHelper.Instance.WriteLog("请求头\n" + head, "好哒分账交易详情查询");
- LogHelper.Instance.WriteLog("请求参数\n" + req, "好哒分账交易详情查询");
- LogHelper.Instance.WriteLog("请求地址:" + BoxRequestUrl + "/api/v3/hzg/part/acct/bind_mcht", "好哒分账交易详情查询");
- string result = PostWebRequest(BoxRequestUrl + "/api/v3/hzg/part/acct/bind_mcht", req, headdic);
- LogHelper.Instance.WriteLog("返回\n" + result + "\n\n", "好哒分账交易详情查询");
- return result;
- }
-
-
-
-
-
-
- public string QueryOrderDivideDetail(string mchtNo, string orderNo, int BrandId = 0)
- {
- var BoxRequestUrl = HaodaUnionParam.BoxRequestUrl;
- if (BrandId == 1) BoxRequestUrl = HaodaParam.BoxRequestUrl;
- LogHelper.Instance.WriteLog(DateTime.Now.ToString(), "好哒分账交易详情查询");
- Dictionary<string, object> reqdic = new Dictionary<string, object>();
- reqdic.Add("mchtNo", mchtNo);
- reqdic.Add("orderNo", orderNo);
- string req = Newtonsoft.Json.JsonConvert.SerializeObject(reqdic);
- LogHelper.Instance.WriteLog(req, "好哒分账交易详情查询");
- Dictionary<string, string> headdic = GetHeader(req);
- string head = Newtonsoft.Json.JsonConvert.SerializeObject(headdic);
- LogHelper.Instance.WriteLog("请求头\n" + head, "好哒分账交易详情查询");
- LogHelper.Instance.WriteLog("请求参数\n" + req, "好哒分账交易详情查询");
- LogHelper.Instance.WriteLog("请求地址:" + BoxRequestUrl + "/api/v3/hzg/part/trade/clear/get", "好哒分账交易详情查询");
- string result = PostWebRequest(BoxRequestUrl + "/api/v3/hzg/part/trade/clear/get", req, headdic);
- LogHelper.Instance.WriteLog("返回\n" + result + "\n\n", "好哒分账交易详情查询");
- return result;
- }
-
-
-
-
-
-
- public string OrderDivideAccounts(OrderDivideAccounts request, int BrandId = 0)
- {
- var BoxRequestUrl = HaodaUnionParam.BoxRequestUrl;
- if (BrandId == 1) BoxRequestUrl = HaodaParam.BoxRequestUrl;
- LogHelper.Instance.WriteLog(DateTime.Now.ToString(), "好哒订单分账申请");
- string req = Newtonsoft.Json.JsonConvert.SerializeObject(request);
- LogHelper.Instance.WriteLog(req, "好哒订单分账申请");
- Dictionary<string, string> headdic = GetHeader(req, BrandId);
- string head = Newtonsoft.Json.JsonConvert.SerializeObject(headdic);
- LogHelper.Instance.WriteLog("请求头\n" + head, "好哒订单分账申请");
- LogHelper.Instance.WriteLog("请求参数\n" + req, "好哒订单分账申请");
- LogHelper.Instance.WriteLog("请求地址:" + BoxRequestUrl + "/api/v3/hzg/part/order/apply", "好哒订单分账申请");
- string result = PostWebRequest(BoxRequestUrl + "/api/v3/hzg/part/order/apply", req, headdic);
- LogHelper.Instance.WriteLog("返回\n" + result + "\n\n", "好哒订单分账申请");
- return result;
- }
-
-
-
-
-
-
- public string OrderDivideAccountsQuery(string applyNo, string mchtNo, int BrandId = 0)
- {
- var BoxRequestUrl = HaodaUnionParam.BoxRequestUrl;
- if (BrandId == 1) BoxRequestUrl = HaodaParam.BoxRequestUrl;
- LogHelper.Instance.WriteLog(DateTime.Now.ToString(), "好哒订单分账结果查询");
- Dictionary<string, object> reqdic = new Dictionary<string, object>();
- reqdic.Add("applyNo", applyNo);
- reqdic.Add("mchtNo", mchtNo);
- string req = Newtonsoft.Json.JsonConvert.SerializeObject(reqdic);
- LogHelper.Instance.WriteLog(req, "好哒订单分账结果查询");
- Dictionary<string, string> headdic = GetHeader(req, BrandId);
- string head = Newtonsoft.Json.JsonConvert.SerializeObject(headdic);
- LogHelper.Instance.WriteLog("请求头\n" + head, "好哒订单分账结果查询");
- LogHelper.Instance.WriteLog("请求参数\n" + req, "好哒订单分账结果查询");
- LogHelper.Instance.WriteLog("请求地址:" + BoxRequestUrl + "/api/v3/hzg/part/apply/query", "好哒订单分账结果查询");
- string result = PostWebRequest(BoxRequestUrl + "/api/v3/hzg/part/apply/query", req, headdic);
- LogHelper.Instance.WriteLog("返回\n" + result + "\n\n", "好哒订单分账结果查询");
- return result;
- }
-
-
-
-
-
- public string ChangeMerchantCard(ChangeMerchantCard request, int BrandId = 0)
- {
- var BoxRequestUrl = HaodaUnionParam.BoxRequestUrl;
- if (BrandId == 1) BoxRequestUrl = HaodaParam.BoxRequestUrl;
- LogHelper.Instance.WriteLog(DateTime.Now.ToString(), "好哒商户修改银行卡");
- string req = Newtonsoft.Json.JsonConvert.SerializeObject(request);
- LogHelper.Instance.WriteLog(req, "好哒商户修改银行卡");
- Dictionary<string, string> headdic = GetHeader(req, BrandId);
- string head = Newtonsoft.Json.JsonConvert.SerializeObject(headdic);
- LogHelper.Instance.WriteLog("请求头\n" + head, "好哒商户修改银行卡");
- LogHelper.Instance.WriteLog("请求参数\n" + req, "好哒商户修改银行卡");
- LogHelper.Instance.WriteLog("请求地址:" + BoxRequestUrl + "/api/inst/mcht/update_acct", "好哒商户修改银行卡");
- string result = PostWebRequest(BoxRequestUrl + "/api/inst/mcht/update_acct", req, headdic);
- LogHelper.Instance.WriteLog("返回\n" + result + "\n\n", "好哒商户修改银行卡");
- return result;
- }
-
-
-
-
-
-
- public string QueryChangeCardStatus(string mchtNo, string taskId, int BrandId = 0)
- {
- var BoxRequestUrl = HaodaUnionParam.BoxRequestUrl;
- if (BrandId == 1) BoxRequestUrl = HaodaParam.BoxRequestUrl;
- LogHelper.Instance.WriteLog(DateTime.Now.ToString(), "好哒查询修改银行卡任务审核状态");
- Dictionary<string, object> reqdic = new Dictionary<string, object>();
- reqdic.Add("mchtNo", mchtNo);
- reqdic.Add("taskId", taskId);
- string req = Newtonsoft.Json.JsonConvert.SerializeObject(reqdic);
- LogHelper.Instance.WriteLog(req, "好哒查询修改银行卡任务审核状态");
- Dictionary<string, string> headdic = GetHeader(req, BrandId);
- string head = Newtonsoft.Json.JsonConvert.SerializeObject(headdic);
- LogHelper.Instance.WriteLog("请求头\n" + head, "好哒查询修改银行卡任务审核状态");
- LogHelper.Instance.WriteLog("请求参数\n" + req, "好哒查询修改银行卡任务审核状态");
- LogHelper.Instance.WriteLog("请求地址:" + BoxRequestUrl + "/api/inst/mcht/query_acct_task", "好哒查询修改银行卡任务审核状态");
- string result = PostWebRequest(BoxRequestUrl + "/api/inst/mcht/query_acct_task", req, headdic);
- LogHelper.Instance.WriteLog("返回\n" + result + "\n\n", "好哒查询修改银行卡任务审核状态");
- return result;
- }
-
-
-
-
-
-
-
- public string BindWeChatAppId(string mchtNo, string storeNo, string subAppId, int BrandId = 0)
- {
- var BoxRequestUrl = HaodaUnionParam.BoxRequestUrl;
- if (BrandId == 1) BoxRequestUrl = HaodaParam.BoxRequestUrl;
- LogHelper.Instance.WriteLog(DateTime.Now.ToString(), "好哒绑定微信appid接口");
- Dictionary<string, object> reqdic = new Dictionary<string, object>();
- reqdic.Add("mchtNo", mchtNo);
- reqdic.Add("storeNo", storeNo);
- reqdic.Add("subAppId", subAppId);
- string req = Newtonsoft.Json.JsonConvert.SerializeObject(reqdic);
- LogHelper.Instance.WriteLog(req, "好哒绑定微信appid接口");
- Dictionary<string, string> headdic = GetHeader(req, BrandId);
- string head = Newtonsoft.Json.JsonConvert.SerializeObject(headdic);
- LogHelper.Instance.WriteLog("请求头\n" + head, "好哒绑定微信appid接口");
- LogHelper.Instance.WriteLog("请求参数\n" + req, "好哒绑定微信appid接口");
- LogHelper.Instance.WriteLog("请求地址:" + BoxRequestUrl + "/api/hzg/v2/wechat/add_sub_config", "好哒绑定微信appid接口");
- string result = PostWebRequest(BoxRequestUrl + "/api/hzg/v2/wechat/add_sub_config", req, headdic);
- LogHelper.Instance.WriteLog("返回\n" + result + "\n\n", "好哒绑定微信appid接口");
- return result;
- }
-
-
-
-
-
-
-
-
-
-
-
-
- public string QueryAccountList(string mchtNo, string startTime, string endTime, string tradeMchtNo, string cardNo, string settleStatus, string page = "1", string rows = "10", int BrandId = 0)
- {
- var BoxRequestUrl = HaodaUnionParam.BoxRequestUrl;
- if (BrandId == 1) BoxRequestUrl = HaodaParam.BoxRequestUrl;
- LogHelper.Instance.WriteLog(DateTime.Now.ToString(), "好哒到账记录查询");
- Dictionary<string, object> reqdic = new Dictionary<string, object>();
- reqdic.Add("mchtNo", mchtNo);
- reqdic.Add("startTime", startTime);
- reqdic.Add("endTime", endTime);
- reqdic.Add("tradeMchtNo", tradeMchtNo);
- reqdic.Add("cardNo", cardNo);
- reqdic.Add("settleStatus", settleStatus);
- reqdic.Add("page", page);
- reqdic.Add("rows", rows);
- string req = Newtonsoft.Json.JsonConvert.SerializeObject(reqdic);
- LogHelper.Instance.WriteLog(req, "好哒到账记录查询");
- Dictionary<string, string> headdic = GetHeader(req, BrandId);
- string head = Newtonsoft.Json.JsonConvert.SerializeObject(headdic);
- LogHelper.Instance.WriteLog("请求头\n" + head, "好哒到账记录查询");
- LogHelper.Instance.WriteLog("请求参数\n" + req, "好哒到账记录查询");
- LogHelper.Instance.WriteLog("请求地址:" + BoxRequestUrl + "/api/v3/hzg/accb/to_account/query", "好哒到账记录查询");
- string result = PostWebRequest(BoxRequestUrl + "/api/v3/hzg/accb/to_account/query", req, headdic);
- LogHelper.Instance.WriteLog("返回\n" + result + "\n\n", "好哒到账记录查询");
- return result;
- }
-
-
-
-
-
-
- public string QueryAccountDetail(string mchtNo, string id, int BrandId = 0)
- {
- var BoxRequestUrl = HaodaUnionParam.BoxRequestUrl;
- if (BrandId == 1) BoxRequestUrl = HaodaParam.BoxRequestUrl;
- LogHelper.Instance.WriteLog(DateTime.Now.ToString(), "好哒到账记录详情");
- Dictionary<string, object> reqdic = new Dictionary<string, object>();
- reqdic.Add("mchtNo", mchtNo);
- reqdic.Add("id", id);
- string req = Newtonsoft.Json.JsonConvert.SerializeObject(reqdic);
- LogHelper.Instance.WriteLog(req, "好哒到账记录详情");
- Dictionary<string, string> headdic = GetHeader(req, BrandId);
- string head = Newtonsoft.Json.JsonConvert.SerializeObject(headdic);
- LogHelper.Instance.WriteLog("请求头\n" + head, "好哒到账记录详情");
- LogHelper.Instance.WriteLog("请求参数\n" + req, "好哒到账记录详情");
- LogHelper.Instance.WriteLog("请求地址:" + BoxRequestUrl + "/api/v3/hzg/accb/to_account/get", "好哒到账记录详情");
- string result = PostWebRequest(BoxRequestUrl + "/api/v3/hzg/accb/to_account/get", req, headdic);
- LogHelper.Instance.WriteLog("返回\n" + result + "\n\n", "好哒到账记录详情");
- return result;
- }
-
-
-
-
-
-
- public string QueryTradeDetail(string mchtNo, string outOrderNo, int BrandId = 0)
- {
- var BoxRequestUrl = HaodaUnionParam.BoxRequestUrl;
- if (BrandId == 1) BoxRequestUrl = HaodaParam.BoxRequestUrl;
- LogHelper.Instance.WriteLog(DateTime.Now.ToString(), "好哒聚合支付查询");
- Dictionary<string, object> reqdic = new Dictionary<string, object>();
- reqdic.Add("mchtNo", mchtNo);
- reqdic.Add("outOrderNo", outOrderNo);
- string req = Newtonsoft.Json.JsonConvert.SerializeObject(reqdic);
- LogHelper.Instance.WriteLog(req, "好哒聚合支付查询");
- Dictionary<string, string> headdic = GetHeader(req, BrandId);
- string head = Newtonsoft.Json.JsonConvert.SerializeObject(headdic);
- LogHelper.Instance.WriteLog("请求头\n" + head, "好哒聚合支付查询");
- LogHelper.Instance.WriteLog("请求参数\n" + req, "好哒聚合支付查询");
- LogHelper.Instance.WriteLog("请求地址:" + BoxRequestUrl + "/api/hzg/v2/unitedtrade/query_status", "好哒聚合支付查询");
- string result = PostWebRequest(BoxRequestUrl + "/api/hzg/v2/unitedtrade/query_status", req, headdic);
- LogHelper.Instance.WriteLog("返回\n" + result + "\n\n", "好哒聚合支付查询");
- return result;
- }
-
-
-
-
-
-
-
- public string QueryRefundDetail(string mchtNo, string storeNo, string outRefundNo, int BrandId = 0)
- {
- var BoxRequestUrl = HaodaUnionParam.BoxRequestUrl;
- if (BrandId == 1) BoxRequestUrl = HaodaParam.BoxRequestUrl;
- LogHelper.Instance.WriteLog(DateTime.Now.ToString(), "好哒退款查询");
- Dictionary<string, object> reqdic = new Dictionary<string, object>();
- reqdic.Add("mchtNo", mchtNo);
- reqdic.Add("storeNo", storeNo);
- reqdic.Add("outRefundNo", outRefundNo);
- string req = Newtonsoft.Json.JsonConvert.SerializeObject(reqdic);
- LogHelper.Instance.WriteLog(req, "好哒退款查询");
- Dictionary<string, string> headdic = GetHeader(req, BrandId);
- string head = Newtonsoft.Json.JsonConvert.SerializeObject(headdic);
- LogHelper.Instance.WriteLog("请求头\n" + head, "好哒退款查询");
- LogHelper.Instance.WriteLog("请求参数\n" + req, "好哒退款查询");
- LogHelper.Instance.WriteLog("请求地址:" + BoxRequestUrl + "/api/hzg/v2/unitedtrade/refund_query", "好哒退款查询");
- string result = PostWebRequest(BoxRequestUrl + "/api/hzg/v2/unitedtrade/refund_query", req, headdic);
- LogHelper.Instance.WriteLog("返回\n" + result + "\n\n", "好哒退款查询");
- return result;
- }
- public Dictionary<string, string> GetHeader(string req, int BrandId = 0)
- {
- var BoxAppId = HaodaUnionParam.BoxAppId;
- var BoxAppSecret = HaodaUnionParam.BoxAppSecret;
- if (BrandId == 1)
- {
- BoxAppId = HaodaParam.BoxAppId;
- BoxAppSecret = HaodaParam.BoxAppSecret;
- }
- Dictionary<string, string> headdic = new Dictionary<string, string>();
- string timestamp = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss");
-
-
- headdic.Add("X-Up-AppId", BoxAppId);
- headdic.Add("X-Timestamp", timestamp);
- headdic.Add("X-Sign-Type", "SHA-256");
- headdic.Add("X-Sign", SHA256Sign(timestamp + BoxAppSecret + req));
- return headdic;
- }
- public string SHA256Sign(string toSignStr)
- {
- byte[] toSignByte = Encoding.UTF8.GetBytes(toSignStr);
- SHA256 sha256 = SHA256.Create();
- byte[] signByte = sha256.ComputeHash(toSignByte);
- string sign = Convert.ToBase64String(signByte);
- return sign;
- }
- public bool VerifySign(string toSignStr, string signStr, int BrandId = 0)
- {
- var BoxPublicKey = HaodaUnionParam.BoxPublicKey;
- if (BrandId == 1) BoxPublicKey = HaodaParam.BoxPublicKey;
- byte[] toSignByte = Encoding.Default.GetBytes(toSignStr);
- byte[] signByte = Convert.FromBase64String(signStr);
- var toKey = Convert.FromBase64String(BoxPublicKey);
- var rsaroot = RSA.Create();
- rsaroot.ImportSubjectPublicKeyInfo(toKey, out _);
- var publicKeyParameters = rsaroot.ExportParameters(false);
- using (var rsa = RSA.Create())
- {
- rsa.ImportParameters(publicKeyParameters);
- var sha256 = SHA256.Create();
- var hash = sha256.ComputeHash(toSignByte);
- return rsa.VerifyHash(hash, signByte, HashAlgorithmName.SHA256, RSASignaturePadding.Pkcs1);
- }
- }
- public string SignData(string toSignStr, int BrandId = 0)
- {
- var BoxPublicKey = HaodaUnionParam.BoxPublicKey;
- if (BrandId == 1) BoxPublicKey = HaodaParam.BoxPublicKey;
- byte[] toSignByte = Encoding.UTF8.GetBytes(toSignStr);
- var toKey = Convert.FromBase64String(BoxPublicKey);
- var rsaroot = RSA.Create();
- rsaroot.ImportSubjectPublicKeyInfo(toKey, out _);
- var publicKeyParameters = rsaroot.ExportParameters(false);
- using (var rsa = RSA.Create())
- {
- rsa.ImportParameters(publicKeyParameters);
- var sha256 = SHA256.Create();
- var hash = sha256.ComputeHash(toSignByte);
- byte[] endByte = rsa.SignData(toSignByte, HashAlgorithmName.SHA256, RSASignaturePadding.Pkcs1);
- return Convert.ToBase64String(endByte);
- }
- }
- private string PostWebRequest(string postUrl, string paramData, Dictionary<string, string> headers)
- {
- string ret = string.Empty;
- try
- {
- LogHelper.Instance.WriteLog(DateTime.Now.ToString(), "请求好哒API日志");
- LogHelper.Instance.WriteLog(postUrl, "请求好哒API日志");
- LogHelper.Instance.WriteLog(paramData, "请求好哒API日志");
- byte[] postData = System.Text.Encoding.UTF8.GetBytes(paramData);
-
- System.Net.HttpWebRequest request = System.Net.WebRequest.Create(postUrl) as System.Net.HttpWebRequest;
- System.Text.Encoding myEncoding = System.Text.Encoding.UTF8;
- request.Method = "POST";
- request.KeepAlive = false;
- request.AllowAutoRedirect = true;
- request.ContentType = "application/json";
- foreach (string key in headers.Keys)
- {
- request.Headers.Add(key, headers[key]);
- }
- request.UserAgent = "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)";
- request.ContentLength = postData.Length;
-
- System.IO.Stream outputStream = request.GetRequestStream();
- outputStream.Write(postData, 0, postData.Length);
- outputStream.Close();
- System.Net.HttpWebResponse response;
- System.IO.Stream responseStream;
- System.IO.StreamReader reader;
- string srcString;
- response = request.GetResponse() as System.Net.HttpWebResponse;
- responseStream = response.GetResponseStream();
- reader = new System.IO.StreamReader(responseStream, System.Text.Encoding.UTF8);
- srcString = reader.ReadToEnd();
- ret = srcString;
- reader.Close();
- LogHelper.Instance.WriteLog(srcString, "请求好哒API日志");
- }
- catch (System.Net.WebException ex)
- {
- System.Net.HttpWebResponse response = (System.Net.HttpWebResponse)ex.Response;
- System.IO.Stream myResponseStream = response.GetResponseStream();
-
- System.IO.StreamReader myStreamReader = new System.IO.StreamReader(myResponseStream);
- ret = myStreamReader.ReadToEnd();
- myResponseStream.Close();
- }
- catch (Exception ex)
- {
- ret = "fail";
- LogHelper.Instance.WriteLog(DateTime.Now.ToString() + "\r\n" + ex.ToString(), "请求好哒API异常");
- }
- return ret;
- }
-
-
-
-
-
-
- public string GetToken(string fileName, string action, int BrandId = 0)
- {
- var BoxRequestUrl = HaodaUnionParam.BoxRequestUrl;
- if (BrandId == 1) BoxRequestUrl = HaodaParam.BoxRequestUrl;
- LogHelper.Instance.WriteLog(DateTime.Now.ToString(), "好哒获取文件令牌接口");
- Dictionary<string, object> reqdic = new Dictionary<string, object>();
- reqdic.Add("fileName", fileName);
- reqdic.Add("action", action);
- string req = Newtonsoft.Json.JsonConvert.SerializeObject(reqdic);
- LogHelper.Instance.WriteLog(req, "好哒获取文件令牌接口");
- Dictionary<string, string> headdic = GetHeader(req, BrandId);
- string head = Newtonsoft.Json.JsonConvert.SerializeObject(headdic);
- LogHelper.Instance.WriteLog("请求头\n" + head, "好哒获取文件令牌接口");
- LogHelper.Instance.WriteLog("请求参数\n" + req, "好哒获取文件令牌接口");
- LogHelper.Instance.WriteLog("请求地址:" + BoxRequestUrl + "/api/auth/v1/get_file_token", "好哒获取文件令牌接口");
- string result = PostWebRequest(BoxRequestUrl + "/api/auth/v1/get_file_token", req, headdic);
- LogHelper.Instance.WriteLog("返回\n" + result + "\n\n", "好哒获取文件令牌接口");
- return result;
- }
-
-
-
-
-
-
-
-
- public string DoPost(string url, string token, IDictionary<string, string> textParams, IDictionary<string, FileItem> fileParams, string charset = "utf-8")
- {
-
- if (fileParams == null || fileParams.Count == 0)
- {
- return "";
- }
- string boundary = DateTime.Now.Ticks.ToString("X");
- HttpWebRequest req = GetWebRequest(url, "POST");
- req.Headers.Add("X-File-Token", token);
- req.ContentType = "multipart/form-data;charset=" + charset + ";boundary=" + boundary;
- Stream reqStream = req.GetRequestStream();
- byte[] itemBoundaryBytes = Encoding.GetEncoding(charset).GetBytes("\r\n--" + boundary + "\r\n");
- byte[] endBoundaryBytes = Encoding.GetEncoding(charset).GetBytes("\r\n--" + boundary + "--\r\n");
-
- string textTemplate = "Content-Disposition:form-data;name=\"{0}\"\r\nContent-Type:text/plain\r\n\r\n{1}";
- IEnumerator<KeyValuePair<string, string>> textEnum = textParams.GetEnumerator();
- while (textEnum.MoveNext())
- {
- string textEntry = string.Format(textTemplate, textEnum.Current.Key, textEnum.Current.Value);
- byte[] itemBytes = Encoding.GetEncoding(charset).GetBytes(textEntry);
- reqStream.Write(itemBoundaryBytes, 0, itemBoundaryBytes.Length);
- reqStream.Write(itemBytes, 0, itemBytes.Length);
- }
-
- string fileTemplate = "Content-Disposition:form-data;name=\"{0}\";filename=\"{1}\"\r\nContent-Type:{2}\r\n\r\n";
- IEnumerator<KeyValuePair<string, FileItem>> fileEnum = fileParams.GetEnumerator();
- while (fileEnum.MoveNext())
- {
- string key = fileEnum.Current.Key;
- FileItem fileItem = fileEnum.Current.Value;
- string fileEntry = string.Format(fileTemplate, key, fileItem.GetFileName(), fileItem.GetMimeType());
- byte[] itemBytes = Encoding.GetEncoding(charset).GetBytes(fileEntry);
- reqStream.Write(itemBoundaryBytes, 0, itemBoundaryBytes.Length);
- reqStream.Write(itemBytes, 0, itemBytes.Length);
- byte[] fileBytes = fileItem.GetContent();
- reqStream.Write(fileBytes, 0, fileBytes.Length);
- }
- reqStream.Write(endBoundaryBytes, 0, endBoundaryBytes.Length);
- reqStream.Close();
- HttpWebResponse rsp = (HttpWebResponse)req.GetResponse();
- Encoding encoding = Encoding.GetEncoding(rsp.CharacterSet);
- return GetResponseAsString(rsp, encoding);
- }
- public HttpWebRequest GetWebRequest(string url, string method)
- {
- HttpWebRequest req = (HttpWebRequest)WebRequest.Create(url);
- req.ServicePoint.Expect100Continue = false;
- req.Method = method;
- req.KeepAlive = true;
- req.Timeout = 100000;
- return req;
- }
-
-
-
-
-
-
- public string GetResponseAsString(HttpWebResponse rsp, Encoding encoding)
- {
- StringBuilder result = new StringBuilder();
- Stream stream = null;
- StreamReader reader = null;
- try
- {
-
- stream = rsp.GetResponseStream();
- reader = new StreamReader(stream, encoding);
-
- int ch = -1;
- while ((ch = reader.Read()) > -1)
- {
-
- char c = (char)ch;
- if (c != '\0')
- {
- result.Append(c);
- }
- }
- }
- finally
- {
-
- if (reader != null) reader.Close();
- if (stream != null) stream.Close();
- if (rsp != null) rsp.Close();
- }
- return result.ToString();
- }
-
-
-
-
-
-
- public string ReturnFileName(string token, string value, int BrandId = 0)
- {
- var BoxRequestUrl = HaodaUnionParam.BoxRequestUrl;
- if (BrandId == 1) BoxRequestUrl = HaodaParam.BoxRequestUrl;
- Dictionary<string, string> file = new Dictionary<string, string>();
- file.Add("fileName", value.Substring(value.LastIndexOf("/")).Trim('/'));
- if (string.IsNullOrEmpty(value.Split(',')[0]))
- {
- return "";
- }
- FileItem item = PublicFunction.GetNetFileItem(AppConfig.Base.OssHost + value.Split(',')[0]);
-
- Dictionary<string, FileItem> files = new Dictionary<string, FileItem>();
- files.Add("file", item);
- var upLoadInfo = JsonMapper.ToObject(HaoDaHelper.Instance.DoPost(BoxRequestUrl + "/api/file/v1/upload_file", token, file, files, "utf-8"));
- if (upLoadInfo["code"].ToString() == "1")
- {
- return upLoadInfo["data"]["fileName"].ToString();
- }
- else
- {
- return "false";
- }
- }
- #endregion
- }
- }
|