123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886 |
- 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 盒易付
-
-
-
-
-
-
-
- string BoxRequestUrl = "https://openapi.iboxpay.com";
- string BoxAppId = "AP7175619323825451008";
- string BoxAppSecret = "hUfR53gdjyfiZTBR5bILanMqRD1dXD7y";
- string BoxPublicKey = "";
- public static string BrhCode = "030145";
-
-
-
-
-
- public string AddNewMerchant(AddNewMerchant request)
- {
- request.brh = BrhCode;
- LogHelper.Instance.WriteLog(DateTime.Now.ToString(), "好哒新创建商户");
- string req = Newtonsoft.Json.JsonConvert.SerializeObject(request);
- 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/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)
- {
- 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);
- 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)
- {
- 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);
- 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)
- {
- 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);
- 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)
- {
- 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);
- 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)
- {
- 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);
- 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)
- {
- 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);
- 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)
- {
- 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);
- 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)
- {
- 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);
- 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)
- {
- LogHelper.Instance.WriteLog(DateTime.Now.ToString(), "好哒添加分账接收方账户");
- string req = Newtonsoft.Json.JsonConvert.SerializeObject(request);
- 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/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)
- {
- 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/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 OrderDivideAccounts(OrderDivideAccounts request)
- {
- LogHelper.Instance.WriteLog(DateTime.Now.ToString(), "好哒订单分账申请");
- string req = Newtonsoft.Json.JsonConvert.SerializeObject(request);
- 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/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)
- {
- 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);
- 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)
- {
- LogHelper.Instance.WriteLog(DateTime.Now.ToString(), "好哒商户修改银行卡");
- string req = Newtonsoft.Json.JsonConvert.SerializeObject(request);
- 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/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)
- {
- 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);
- 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)
- {
- 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);
- 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")
- {
- 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);
- 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)
- {
- 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);
- 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)
- {
- 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);
- 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)
- {
- 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);
- 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)
- {
- 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)
- {
- 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)
- {
- 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)
- {
- 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);
- 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)
- {
- 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
- }
- }
|