WeChatFunction.cs 33 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566
  1. using System;
  2. using System.Collections.Generic;
  3. using Library;
  4. using LitJson;
  5. using System.Linq;
  6. using System.Security.Cryptography.X509Certificates;
  7. using System.Security.Cryptography;
  8. using System.Text;
  9. using System.IO;
  10. using System.Net;
  11. using MySystem.PxcModels;
  12. namespace MySystem
  13. {
  14. public class WeChatFunction
  15. {
  16. public WeChatFunction()
  17. {
  18. }
  19. #region 服务商平台商户进件提交申请单API
  20. public string MerchantCreate(PxcModels.MerchantAddInfo info, PxcModels.MerchantInfo merchant)
  21. {
  22. // pubkey = GetPublicKey();
  23. Dictionary<string, object> result = new Dictionary<string, object>();
  24. result.Add("business_code", info.BusinessCode); //业务申请编号
  25. PxcModels.WebCMSEntities dbpxc = new PxcModels.WebCMSEntities();
  26. //超级管理员信息
  27. Dictionary<string, object> contact_info = new Dictionary<string, object>();
  28. contact_info.Add("contact_type", "LEGAL"); //超级管理员姓名
  29. contact_info.Add("contact_name", RSAEncrypt(info.ContactName)); //超级管理员姓名
  30. contact_info.Add("contact_id_number", RSAEncrypt(info.ContactIdNumber)); //超级管理员身份证件号码
  31. // contact_info.Add("openid", info.OpenId); //超级管理员微信openid
  32. contact_info.Add("mobile_phone", RSAEncrypt(info.MobilePhone)); //联系手机
  33. contact_info.Add("contact_email", RSAEncrypt(info.ContactEmail)); //联系邮箱
  34. result.Add("contact_info", contact_info);
  35. //主体资料
  36. Dictionary<string, object> subject_info = new Dictionary<string, object>();
  37. subject_info.Add("subject_type", info.SubjectType); //主体类型
  38. Dictionary<string, object> business_license_info = new Dictionary<string, object>();
  39. business_license_info.Add("license_copy", GetMediaId("/" + info.LicenseCopy)); //营业执照照片
  40. business_license_info.Add("license_number", info.LicenseNumber); //注册号/统一社会信用代码
  41. business_license_info.Add("merchant_name", merchant.Name); //商户名称
  42. business_license_info.Add("legal_person", info.LegalPerson); //个体户经营者/法人姓名
  43. subject_info.Add("business_license_info", business_license_info); //营业执照
  44. // Dictionary<string, object> certificate_info = new Dictionary<string, object>();
  45. // certificate_info.Add("cert_copy", GetMediaId("/" + info.CertCopy)); //登记证书照片
  46. // certificate_info.Add("cert_type", info.CertType); //登记证书类型
  47. // certificate_info.Add("cert_number", info.CertNumber); //证书号
  48. // certificate_info.Add("merchant_name", info.CertMerchantName); //商户名称
  49. // certificate_info.Add("company_address", info.CompanyAddress); //注册地址
  50. // certificate_info.Add("legal_person", info.CertLegalPerson); //法人姓名
  51. // certificate_info.Add("period_begin", CheckForever(info.PeriodBegin)); //有效期限开始日期
  52. // certificate_info.Add("period_end", CheckForever(info.PeriodEnd)); //有效期限结束日期
  53. // subject_info.Add("certificate_info", certificate_info); //登记证书
  54. // Dictionary<string, object> organization_info = new Dictionary<string, object>();
  55. // organization_info.Add("organization_copy", GetMediaId("/" + info.OrganizationCopy)); //组织机构代码证照片
  56. // organization_info.Add("organization_code", info.OrganizationCode); //组织机构代码
  57. // organization_info.Add("org_period_begin", CheckForever(info.OrgPeriodBegin)); //组织机构代码证有效期开始日期
  58. // organization_info.Add("org_period_end", CheckForever(info.OrgPeriodEnd)); //组织机构代码证有效期结束日期
  59. // subject_info.Add("organization_info", organization_info); //组织机构代码证
  60. // subject_info.Add("certificate_letter_copy", GetMediaId("/" + info.CertificateLetterCopy)); //单位证明函照片
  61. Dictionary<string, object> identity_info = new Dictionary<string, object>();
  62. info.IdDocType = "IDENTIFICATION_TYPE_IDCARD";
  63. identity_info.Add("id_holder_type", "LEGAL"); //证件持有人类型
  64. identity_info.Add("id_doc_type", info.IdDocType); //证件类型
  65. Dictionary<string, object> id_card_info = new Dictionary<string, object>();
  66. id_card_info.Add("id_card_copy", GetMediaId("/" + info.IdCardCopy)); //身份证人像面照片
  67. id_card_info.Add("id_card_national", GetMediaId("/" + info.IdCardNational)); //身份证人像面照片
  68. id_card_info.Add("id_card_name", RSAEncrypt(info.IdCardName)); //身份证姓名
  69. id_card_info.Add("id_card_number", RSAEncrypt(info.IdCardNumber)); //身份证号码
  70. id_card_info.Add("id_card_address", RSAEncrypt(info.IdCardAddress)); //身份证居住地址
  71. id_card_info.Add("card_period_begin", CheckForever(info.CardPeriodBegin)); //身份证有效期开始时间
  72. id_card_info.Add("card_period_end", CheckForever(info.CardPeriodEnd)); //身份证有效期结束时间
  73. identity_info.Add("id_card_info", id_card_info); //身份证信息
  74. // identity_info.Add("owner", info.Owner == 1 ? true : false); //经营者/法人是否为受益人
  75. identity_info.Add("owner", true);
  76. subject_info.Add("identity_info", identity_info); //经营者/法人身份证件
  77. // if (info.Owner == 0)
  78. // {
  79. // Dictionary<string, object> ubo_info = new Dictionary<string, object>();
  80. // ubo_info.Add("id_type", info.UboInfoIdType); //证件类型
  81. // ubo_info.Add("id_card_copy", GetMediaId("/" + info.UboInfoIdCardCopy)); //身份证人像面照片
  82. // ubo_info.Add("id_card_national", GetMediaId("/" + info.UboInfoIdCardNational)); //身份证国徽面照片
  83. // ubo_info.Add("id_doc_copy", GetMediaId("/" + info.UboInfoIdDocCopy)); //证件照片
  84. // ubo_info.Add("name", RSAEncrypt(info.UboInfoName)); //受益人姓名
  85. // ubo_info.Add("id_number", RSAEncrypt(info.UboInfoIdNumber)); //证件号码
  86. // ubo_info.Add("id_period_begin", CheckForever(info.UboInfoIdPeriodBegin)); //证件有效期开始时间
  87. // ubo_info.Add("id_period_end", CheckForever(info.UboInfoIdPeriodEnd)); //证件有效期结束时间
  88. // subject_info.Add("ubo_info", ubo_info); //最终受益人信息(UBO)
  89. // }
  90. result.Add("subject_info", subject_info);
  91. //经营资料
  92. Dictionary<string, object> business_info = new Dictionary<string, object>();
  93. business_info.Add("merchant_shortname", info.MerchantShortname); //商户简称
  94. business_info.Add("service_phone", info.ServicePhone); //客服电话
  95. Dictionary<string, object> sales_info = new Dictionary<string, object>();
  96. info.SalesScenesType = "SALES_SCENES_STORE";
  97. sales_info.Add("sales_scenes_type", info.SalesScenesType.Split(',').ToList()); //经营场景类型
  98. Dictionary<string, object> biz_store_info = new Dictionary<string, object>();
  99. biz_store_info.Add("biz_store_name", info.BizStoreName); //门店名称
  100. PxcModels.OpenBankCityTable BizAddress = dbpxc.OpenBankCityTable.FirstOrDefault(m => m.CityName.EndsWith(info.BizAddressCode)) ?? new PxcModels.OpenBankCityTable();
  101. biz_store_info.Add("biz_address_code", BizAddress.Code); //门店省市编码
  102. biz_store_info.Add("biz_store_address", info.BizStoreAddress); //门店地址
  103. List<string> store_entrance_pic = new List<string>();
  104. store_entrance_pic.Add(GetMediaId("/" + info.StoreEntrancePic));
  105. biz_store_info.Add("store_entrance_pic", store_entrance_pic); //门店门头照片
  106. List<string> indoor_pic = new List<string>();
  107. indoor_pic.Add(GetMediaId("/" + info.IndoorPic));
  108. biz_store_info.Add("indoor_pic", indoor_pic); //店内环境照片
  109. biz_store_info.Add("biz_sub_appid", info.BizSubAppid); //线下场所对应的商家APPID
  110. sales_info.Add("biz_store_info", biz_store_info); //线下门店场景
  111. // Dictionary<string, object> mp_info = new Dictionary<string, object>();
  112. // mp_info.Add("mp_appid", info.MpAppid); //服务商公众号APPID
  113. // mp_info.Add("mp_sub_appid", info.MpSubAppid); //商家公众号APPID
  114. // mp_info.Add("mp_pics", GetMediaId("/" + info.MpPics)); //公众号页面截图
  115. // sales_info.Add("mp_info", mp_info); //公众号场景
  116. // Dictionary<string, object> mini_program_info = new Dictionary<string, object>();
  117. // mini_program_info.Add("mini_program_appid", info.MiniProgramAppid); //服务商小程序APPID
  118. // mini_program_info.Add("mini_program_sub_appid", info.MiniProgramSubAppid); //商家小程序APPID
  119. // mini_program_info.Add("mini_program_pics", GetMediaId("/" + info.MiniProgramPics)); //小程序截图
  120. // sales_info.Add("mini_program_info", mini_program_info); //小程序场景
  121. // Dictionary<string, object> app_info = new Dictionary<string, object>();
  122. // app_info.Add("app_appid", info.AppAppid); //服务商应用APPID
  123. // app_info.Add("app_sub_appid", info.AppSubAppid); //商家应用APPID
  124. // app_info.Add("app_pics", GetMediaId("/" + info.AppPics)); //商家应用APPID
  125. // sales_info.Add("app_info", app_info); //APP场景
  126. // Dictionary<string, object> web_info = new Dictionary<string, object>();
  127. // web_info.Add("domain", info.WebDomain); //互联网网站域名
  128. // web_info.Add("web_authorisation", GetMediaId("/" + info.WebAuthorisation)); //网站授权函
  129. // web_info.Add("web_appid", info.WebAppId); //互联网网站对应的商家APPID
  130. // sales_info.Add("web_info", web_info); //互联网网站场景
  131. // Dictionary<string, object> wework_info = new Dictionary<string, object>();
  132. // wework_info.Add("sub_corp_id", info.SubCorpId); //商家企业微信CorpID
  133. // wework_info.Add("wework_pics", GetMediaId("/" + info.WeworkPics)); //企业微信页面截图
  134. // sales_info.Add("wework_info", wework_info); //企业微信场景
  135. business_info.Add("sales_info", sales_info); //经营场景
  136. result.Add("business_info", business_info);
  137. //结算规则
  138. Dictionary<string, object> settlement_info = new Dictionary<string, object>();
  139. settlement_info.Add("settlement_id", info.SettlementId); //入驻结算规则ID
  140. string QualificationType = function.CheckNull(info.QualificationType);
  141. if (QualificationType.Contains(","))
  142. {
  143. QualificationType = QualificationType.Split(',')[0];
  144. }
  145. settlement_info.Add("qualification_type", QualificationType); //所属行业
  146. if (!string.IsNullOrEmpty(info.Qualifications))
  147. {
  148. List<string> Qualifications = new List<string>();
  149. Qualifications.Add(GetMediaId("/" + info.Qualifications));
  150. settlement_info.Add("qualifications", Qualifications); //特殊资质图片
  151. }
  152. settlement_info.Add("activities_id", info.ActivitiesId); //优惠费率活动ID
  153. settlement_info.Add("activities_rate", info.ActivitiesRate); //优惠费率活动值
  154. result.Add("settlement_info", settlement_info);
  155. //结算银行账户
  156. Dictionary<string, object> bank_account_info = new Dictionary<string, object>();
  157. bank_account_info.Add("bank_account_type", info.BankAccountType); //账户类型
  158. bank_account_info.Add("account_name", RSAEncrypt(info.AccountName)); //开户名称
  159. bank_account_info.Add("account_bank", info.AccountBank); //开户银行
  160. PxcModels.OpenBankCityTable BankAddress = dbpxc.OpenBankCityTable.FirstOrDefault(m => m.CityName.EndsWith(info.BankAddressCode)) ?? new PxcModels.OpenBankCityTable();
  161. bank_account_info.Add("bank_address_code", BankAddress.Code); //开户银行省市编码
  162. PxcModels.OpenBankTable BankBranch = dbpxc.OpenBankTable.FirstOrDefault(m => m.BankName == info.BankName) ?? new PxcModels.OpenBankTable();
  163. bank_account_info.Add("bank_branch_id", BankBranch.BankCode); //开户银行联行号
  164. bank_account_info.Add("bank_name", info.BankName); //开户银行全称(含支行)
  165. bank_account_info.Add("account_number", RSAEncrypt(info.AccountNumber)); //银行账号
  166. result.Add("bank_account_info", bank_account_info);
  167. dbpxc.Dispose();
  168. string req = Newtonsoft.Json.JsonConvert.SerializeObject(result);
  169. Dictionary<string, string> header = new Dictionary<string, string>();
  170. // 如何查看证书序列号?
  171. // 登陆商户平台【API安全】->【API证书】->【查看证书】,可查看商户API证书序列号。
  172. // 商户API证书和微信支付平台证书均可以使用第三方的证书解析工具,查看证书内容。或者使用openssl命令行工具查看证书序列号。
  173. // $ openssl x509 -in 1900009191_20180326_cert.pem -noout -serial
  174. // serial=1DDE55AD98ED71D6EDD4A4A16996DE7B47773A8C
  175. string merchantId = "1611167423"; //商户号
  176. string serialNo = "534165421BE2814DEC08F8D00BDAB9944B13646C"; //证书编号
  177. string resp = postJson("https://api.mch.weixin.qq.com/v3/applyment4sub/applyment/", req, prikey, merchantId, serialNo);
  178. function.WriteLog(resp, "商户进件日志");
  179. return resp;
  180. }
  181. #endregion
  182. #region 服务商平台查询申请单状态API
  183. public Dictionary<string, object> QueryMerchant(string BusinessCode)
  184. {
  185. Dictionary<string, object> return_result = new Dictionary<string, object>();
  186. try
  187. {
  188. string merchantId = "1611167423"; //商户号
  189. string serialNo = "534165421BE2814DEC08F8D00BDAB9944B13646C"; //证书编号
  190. string result = postJson("https://api.mch.weixin.qq.com/v3/applyment4sub/applyment/business_code/" + BusinessCode, "", prikey, merchantId, serialNo, "GET");
  191. function.WriteLog(result, "服务商平台查询申请单状态API");
  192. //{\"applyment_id\":2000002247709762,\"applyment_state\":\"APPLYMENT_STATE_FINISHED\",\"applyment_state_msg\":\"商户入驻申请已完成\",\"audit_detail\":[],\"business_code\":\"0123456789\",\"sign_url\":\"https://mp.weixin.qq.com/cgi-bin/showqrcode?ticket=gQFv7zwAAAAAAAAAAS5odHRwOi8vd2VpeGluLnFxLmNvbS9xLzAyUXE1czkzb3JlUjIxZHpXbTF5Y2YAAgRjbe9hAwQAjScA\",\"sub_mchid\":\"1619775262\"}
  193. JsonData jsonObj = JsonMapper.ToObject(result);
  194. return_result.Add("applyment_id", jsonObj["applyment_id"].ToString()); //微信支付申请单号
  195. return_result.Add("applyment_state", jsonObj["applyment_state"].ToString()); //申请单状态
  196. return_result.Add("applyment_state_msg", jsonObj["applyment_state_msg"].ToString()); //申请状态描述
  197. if (jsonObj["applyment_state"].ToString() == "APPLYMENT_STATE_REJECTED")
  198. {
  199. List<Dictionary<string, string>> audit_detail = new List<Dictionary<string, string>>();
  200. JsonData auditObj = jsonObj["audit_detail"]; //驳回原因详情
  201. // for (int i = 0; i < auditObj.Count; i++)
  202. // {
  203. // Dictionary<string, string> row = new Dictionary<string, string>();
  204. // // row.Add("field", auditObj[i]["field"].ToString()); //字段名
  205. // // row.Add("field_name", auditObj[i]["field_name"].ToString()); //字段名称
  206. // row.Add("reject_reason", auditObj[i]["reject_reason"].ToString()); //驳回原因
  207. // audit_detail.Add(row);
  208. // }
  209. return_result.Add("reject_reason", auditObj[0]["reject_reason"].ToString());
  210. return_result.Add("audit_detail", audit_detail); //申请状态描述
  211. }
  212. if (result.Contains("\"sign_url\":"))
  213. {
  214. return_result.Add("sign_url", jsonObj["sign_url"].ToString()); //进件通过申请,待商家签约的地址
  215. }
  216. }
  217. catch (Exception ex)
  218. {
  219. function.WriteLog(DateTime.Now.ToString() + "\r\n" + ex.ToString(), "服务商平台查询申请单状态API异常");
  220. }
  221. return return_result;
  222. }
  223. #endregion
  224. #region 服务商平台申请退款API
  225. public Dictionary<string, string> Refund(string AppId, string MchId, string SubMchId, decimal RefundMoney, decimal TotalMoney, string OrderNo, string RefundNo)
  226. {
  227. Dictionary<string, string> return_result = new Dictionary<string, string>();
  228. int refund = (int)(RefundMoney * 100);
  229. int amount = (int)(TotalMoney * 100);
  230. //具体请求参数
  231. SortedList<string, object> par = new SortedList<string, object>();
  232. par.Add("sub_mchid", SubMchId); //子商户号
  233. par.Add("out_trade_no", OrderNo); //商户订单号
  234. par.Add("out_refund_no", RefundNo); //商户退款单号
  235. Dictionary<string, object> amountDic = new Dictionary<string, object>();
  236. amountDic.Add("refund", refund); //退款金额
  237. amountDic.Add("total", amount); //原订单金额
  238. amountDic.Add("currency", "CNY"); //退款币种
  239. par.Add("amount", amountDic); //金额信息
  240. string req = Newtonsoft.Json.JsonConvert.SerializeObject(par);
  241. function.WriteLog(req, "服务商平台申请退款API");
  242. try
  243. {
  244. string merchantId = MchId; //商户号
  245. string serialNo = "534165421BE2814DEC08F8D00BDAB9944B13646C"; //证书编号
  246. string result = postJson("https://api.mch.weixin.qq.com/v3/refund/domestic/refunds", req, prikey, merchantId, serialNo);
  247. function.WriteLog(result, "服务商平台申请退款API");
  248. JsonData jsonObj = JsonMapper.ToObject(result);
  249. return_result.Add("refund_id", jsonObj["refund_id"].ToString()); //微信支付退款单号
  250. return_result.Add("channel", jsonObj["channel"].ToString()); //退款渠道
  251. return_result.Add("user_received_account", jsonObj["user_received_account"].ToString()); //退款入账账户
  252. return_result.Add("status", jsonObj["status"].ToString()); //退款状态
  253. return_result.Add("payer_total", jsonObj["amount"]["payer_total"].ToString()); //用户支付金额
  254. return_result.Add("payer_refund", jsonObj["amount"]["payer_refund"].ToString()); //用户退款金额
  255. return_result.Add("settlement_refund", jsonObj["amount"]["settlement_refund"].ToString()); //应结退款金额
  256. return_result.Add("settlement_total", jsonObj["amount"]["settlement_total"].ToString()); //应结订单金额
  257. return_result.Add("discount_refund", jsonObj["amount"]["discount_refund"].ToString()); //优惠退款金额
  258. }
  259. catch (Exception ex)
  260. {
  261. function.WriteLog(DateTime.Now.ToString() + "\r\n" + ex.ToString(), "服务商平台申请退款API异常");
  262. }
  263. return return_result;
  264. }
  265. #endregion
  266. #region 敏感信息加密
  267. // string pubkey = "MIIBCgKCAQEAxK9K2ElQ0rUMwNFW4xMx7kmkpDlp7WGQ8VffXLpudJBIrRVFWJN7dlinCGu67ZATf+/GZvLSSzQPWejHEsI9vUp9ej0x5iZDHGc9/shNUjd03ORkKo/Ohj3Ju19RzX4mh+GoinKGiuKX8CdGPXPe7UObKWyETrDcxrit6VCJQjE604aNtVeAUE+41mOpCLGzTgAKt4psfHxsBRtqlveH4cH/51ip+cGkC/u36gfDMKaRluVfFO3ETxDkI94BwNtnthcA4WDKha+wjtB6HIJ5xxHV550+cfdkl4j8UKU6pB+C5JRNgvjAf6ljg/TF+cGF1d8C6IbYYodYKloqN2DzrwIDAQAB"; //公钥
  268. string pubkey = "MIID3DCCAsSgAwIBAgIUU0FlQhvigU3sCPjQC9q5lEsTZGwwDQYJKoZIhvcNAQELBQAwXjELMAkGA1UEBhMCQ04xEzARBgNVBAoTClRlbnBheS5jb20xHTAbBgNVBAsTFFRlbnBheS5jb20gQ0EgQ2VudGVyMRswGQYDVQQDExJUZW5wYXkuY29tIFJvb3QgQ0EwHhcNMjEwNjMwMDMwOTA5WhcNMjYwNjI5MDMwOTA5WjBuMRgwFgYDVQQDDA9UZW5wYXkuY29tIHNpZ24xEzARBgNVBAoMClRlbnBheS5jb20xHTAbBgNVBAsMFFRlbnBheS5jb20gQ0EgQ2VudGVyMQswCQYDVQQGDAJDTjERMA8GA1UEBwwIU2hlblpoZW4wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC64SIwN1afgge2pjFeNZAlKz5ZdJw8W/hisaIJnkzbE/1oG5n+SgtbMLfBLBFp0zMyT5SP5ve5aJAvUjwnRwQoDG+4z3jE8vLyjFLxoy5sWGex8+FBC5hs81oAUHuazigi5NcSH9Ji/8Lq3zFh8Az4+ZchQ14SFhSGTifSZfdTX5wYDEv3DKDYgQvvAgDgjBF1Uj91NpVD7ruQjAJ7MwZvUX7rnYFnQggFQwIBWazNXaGa7OpO6Xbf+uNtbl436My7WQX+ffjmtYmcgND60mgn/rFQMg5r+Q+J8mDgIaAzCmr3xW31OIvAD1iYV0ksTyQntD5pOzCYdHZPDOZCqYlHAgMBAAGjgYEwfzAJBgNVHRMEAjAAMAsGA1UdDwQEAwIE8DBlBgNVHR8EXjBcMFqgWKBWhlRodHRwOi8vZXZjYS5pdHJ1cy5jb20uY24vcHVibGljL2l0cnVzY3JsP0NBPTFCRDQyMjBFNTBEQkMwNEIwNkFEMzk3NTQ5ODQ2QzAxQzNFOEVCRDIwDQYJKoZIhvcNAQELBQADggEBAEgXlFe4MpFUUnj6gJt5KoPpzLTNOXDHsglUrAobq/HlmDBOF8yCUFvtbRaJxUSQVFfo/2zag8J57YNMo2If1HkD1LMEGAcPGNS+aho9SgCFbLG+c82nNICl8g8oe1HNS7IpRjacSfrKIYt5VL5lHHC5ZJaKq0Ez9c7bfPGC6CaA8WDnApFZut5qhYNMBUYZZjAMVIZ2G/kIsxbo1oUpVEnQq5YQxPUDWdYKxdTvo7uXXpWv6qo761Hid24R7mdrGEuHZNBfxYCt1wJQNlcGVgCjk8PPo73mO0zYRwV0x7pNkFFbiP7aetf6RB82YUbuNkvql83Ox+e22ByMi8lOUZo=";
  269. string prikey = "MIIEvgIBADANBgkqhkiG9w0BAQEFAASCBKgwggSkAgEAAoIBAQD7f7VmtjtLJaY+oJkMgDN9dDE082ZOgquHorPrtJNEdf7VjRFLMoKOoiQsT4OgVq3lNN2KKndd5ahsegSq7Ng7aYJq7IDH584RWEGbekEn0M10aXThdk9dPSCMXBPFR6y4gMvV4R6pVbPBxoSFMI6ty+EqfZLP9Cxvxx7msIKEB46r2R6gYL7j061ytoURavUxGAZxMXnCAEckbrssiFwhLTmX6TtC8MVPyUfLPUh07ArRZxK2F0hpX35Te0Jda7xkulbWtz4EB8KPXr0bJGO/oUo+Prqpdjy0+zKMfMvBP6NG1Hnh3z7yBhlYIe4vymFQU1Wy0OtrEbrU1OdJiq5XAgMBAAECggEAJ7biAWczc8ltOCSKJpQ0DVKE1rS86hbuWUvTF5x7SOtNI5HUMki2nylxhuHDilVFvpUbis7r7JLwhri59ffSqYcexh20tFyhiNGkApZKpavuVby1bUkOfU3CzwdXQ+bumnAUQCD9g4X6DdZ4ZMPnNACm/Nu5jEcloT0TXyBua8SpmlFMYgo/x8XOTT4dEeubwNsfEpmSeWcQRJLJI5ujGgmmZLiAs7F3VlCJFNtQa1KT3a1EDhD5jajeQAzsPpQ48i/joOqE71RlVr77z4Ethr8o1Cc16K9Md2AtVesMZ6eZNqKkQ/qC3vnxk5Sy25tuVmOCXa81ErIf9Tf/JwhymQKBgQD/TXnYxEzYJCqa7/Ck6QqBHQf4ak1OVz7/NY7bmxYT5ez4eJKzrh+xQYWBq/UmKeEiH5QI6T3MVo7L20tbeuYLQwYpgb+BpOKHFne2ODOgDYreNREB06Ww2qAQYCqwyBnTqt7UthDmcXhcPojwxNLSJAOCQhld9TOOmK1db33PIwKBgQD8L5KiN9XRFCvUH6rhUcs/8lmGR2N8zSTts+BNCwIPGQWE0UvbjroyNxVbq6cXXlZZ6H07vEAgaIrLIkwLgen2IwsuOiyaEMvRP9oGwC+LnpP+9sxbW5w5do1hfyeGiSPPgSYIWZMOOwX+qfqXDMM3whJP1hk4El87kC+kl2URPQKBgQC4kTc8ebWgMI1Ik5wibIN2khlYAum+cB6P/BU6OCU+32NwwiI0mfY5fEfbVgiVvYMP20p3Ir/VgOIdCH2zNecnTx4eVbmwLRbDWH/VEU5pMEEroauY6XyInZVIIW3bfd4GAyqzFqijIHdGIMN5ZKGQ4A5VVhnmrkTGmyQCP37xhwKBgQCaLW+Fc4NqTt240x+Cn6IWV1E6UfzV+QmBtb4E/BznJBIGsHqjIbBeMOUC5X/DPq6mSwf9dEr0RVXNeQtq4aMrEyOrwG8yReCF7naaN/cZcfrjHvmzRN/PFda766Q7kS5ul3OsGS9ZvOYeWsdUf73+Ic1WN/u1Fy5X2P/3rYNhtQKBgAIioAq8psFdy/itpJryaWdmDM6fM6ctp5P6VBWOVp2JGkOzHboiXFToJJBtmi7Rdp8AN1aYBbtVX1o0+RmfEiHqXn84GpSNT6tGirHvARi5ab3jvn+bkUWjZYOGd96hus8GirA+wQb/V92Ms3jS5VUS1HBfHaTGT5G2Slrr8YZu"; //私钥
  270. public string RSAEncrypt(string text)
  271. {
  272. byte[] publicKey = Convert.FromBase64String(pubkey);
  273. // var rsa = RSA.Create();
  274. // rsa.ImportRSAPublicKey(publicKey, out _);
  275. // var buff = rsa.Encrypt(Encoding.UTF8.GetBytes(text), RSAEncryptionPadding.OaepSHA1);
  276. // return Convert.ToBase64String(buff);
  277. using (var x509 = new X509Certificate2(publicKey))
  278. {
  279. using (var rsa = x509.GetRSAPublicKey())
  280. {
  281. var buff = rsa.Encrypt(Encoding.UTF8.GetBytes(text), RSAEncryptionPadding.OaepSHA1);
  282. return Convert.ToBase64String(buff);
  283. }
  284. }
  285. }
  286. public string postJson(string url, string postData, string privateKey, string merchantId, string serialNo, string method = "POST")
  287. {
  288. HttpWebRequest request = (HttpWebRequest)WebRequest.Create(url);
  289. request.Method = method;
  290. request.ContentType = "application/json;charset=UTF-8";
  291. request.UserAgent = "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3100.0 Safari/537.36";
  292. request.Accept = "application/json";
  293. string Authorization = GetAuthorization(url, method, postData, privateKey, merchantId, "62B64854B768D344249FDB9E6EF4A1232C000E84");
  294. request.Headers.Add("Authorization", Authorization);
  295. request.Headers.Add("Wechatpay-Serial", serialNo);
  296. if (!string.IsNullOrEmpty(postData))
  297. {
  298. byte[] paramJsonBytes;
  299. paramJsonBytes = System.Text.Encoding.UTF8.GetBytes(postData);
  300. request.ContentLength = paramJsonBytes.Length;
  301. Stream writer;
  302. try
  303. {
  304. writer = request.GetRequestStream();
  305. }
  306. catch (Exception)
  307. {
  308. writer = null;
  309. Console.Write("连接服务器失败!");
  310. }
  311. writer.Write(paramJsonBytes, 0, paramJsonBytes.Length);
  312. writer.Close();
  313. }
  314. HttpWebResponse response;
  315. try
  316. {
  317. response = (HttpWebResponse)request.GetResponse();
  318. }
  319. catch (WebException ex)
  320. {
  321. response = ex.Response as HttpWebResponse;
  322. }
  323. Stream resStream = response.GetResponseStream();
  324. StreamReader reader = new StreamReader(resStream);
  325. string text = reader.ReadToEnd();
  326. return text;
  327. //{\"code\":\"PARAM_ERROR\",\"message\":\"请确认待处理的消息是否为加密后的密文\"}
  328. //{\"applyment_id\":2000002247709762}
  329. }
  330. #endregion
  331. #region 图片上传
  332. public string GetMediaId(string imgPath)
  333. {
  334. if (string.IsNullOrEmpty(imgPath))
  335. {
  336. return "";
  337. }
  338. if (imgPath.Contains(","))
  339. {
  340. imgPath = imgPath.Split(',')[0];
  341. }
  342. string key = "wechatpic:" + function.MD5_16(imgPath);
  343. string media_id = RedisDbconn.Instance.Get<string>(key);
  344. if (!string.IsNullOrEmpty(media_id))
  345. {
  346. return media_id;
  347. }
  348. string filePath = function.getPath(imgPath);
  349. var filename = Path.GetFileName(filePath);
  350. FileStream fs = new FileStream(filePath, FileMode.Open, FileAccess.Read);
  351. Byte[] imgBytesIn = new Byte[fs.Length];
  352. fs.Read(imgBytesIn, 0, imgBytesIn.Length);
  353. fs.Close();
  354. byte[] hash = SHA256Managed.Create().ComputeHash(imgBytesIn);
  355. StringBuilder builder = new StringBuilder();
  356. for (int i = 0; i < hash.Length; i++)
  357. {
  358. builder.Append(hash[i].ToString("x2"));
  359. }
  360. var sha256 = builder.ToString();
  361. string metaStr = "{\"filename\":\""+ filename + "\",\"sha256\":\"" + sha256 + "\"}";
  362. media_id = UploadImgApi(metaStr, imgBytesIn, filename);
  363. RedisDbconn.Instance.Set(key, media_id);
  364. return media_id;
  365. }
  366. public string UploadImgApi(string metaStr, Byte[] imgBytesIn,string filename)
  367. {
  368. string url = "https://api.mch.weixin.qq.com/v3/merchant/media/upload";
  369. string merchantId = "1611167423"; //商户号
  370. string serialNo = "62B64854B768D344249FDB9E6EF4A1232C000E84"; //证书编号
  371. string privateKey = prikey;
  372. #region 定义请求体中的内容 并转成二进制
  373. string boundary = "lc199aecd61b4653ef";
  374. string Enter = "\r\n";
  375. string campaignIDStr1
  376. = "--" + boundary
  377. + Enter
  378. + "Content-Disposition: form-data; name=\"meta\";"
  379. + Enter
  380. + "Content-Type:application/json;"
  381. + Enter
  382. + Enter
  383. + metaStr
  384. + Enter
  385. + "--" + boundary
  386. + Enter
  387. + "Content-Disposition:form-data;name=\"file\";filename=\""+ filename + "\";"
  388. + Enter
  389. + "Content-Type:image/jpeg"
  390. + Enter
  391. + Enter;
  392. byte[] byteData2
  393. = imgBytesIn;
  394. string campaignIDStr3
  395. = Enter
  396. + "--" + boundary
  397. + Enter;
  398. var byteData1 = System.Text.Encoding.UTF8.GetBytes(campaignIDStr1);
  399. var byteData3 = System.Text.Encoding.UTF8.GetBytes(campaignIDStr3);
  400. #endregion
  401. string transactionsResponse = UploadImg_postJson(url, byteData1, byteData2, byteData3, metaStr, privateKey, merchantId, serialNo, boundary, "POST");
  402. var result=JsonMapper.ToObject(transactionsResponse);
  403. return result["media_id"].ToString();
  404. }
  405. public string UploadImg_postJson(string url, byte[] b1, byte[] b2, byte[] b3, string metaStr, string privateKey, string merchantId, string serialNo, string boundary, string method = "POST")
  406. {
  407. HttpWebRequest request = (HttpWebRequest)WebRequest.Create(url);
  408. request.Method = method;
  409. //request.ContentType = "application/json;charset=UTF-8";
  410. request.ContentType = "multipart/form-data;boundary=" + boundary;
  411. request.UserAgent = "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3100.0 Safari/537.36";
  412. request.Accept = "application/json";
  413. string Authorization = GetAuthorization(url, method, metaStr, privateKey, merchantId, serialNo);
  414. request.Headers.Add("Authorization", Authorization);
  415. Stream writer;
  416. try
  417. {
  418. writer = request.GetRequestStream();
  419. }
  420. catch (Exception)
  421. {
  422. writer = null;
  423. }
  424. writer.Write(b1, 0, b1.Length);
  425. writer.Write(b2, 0, b2.Length);
  426. writer.Write(b3, 0, b3.Length);
  427. writer.Close();
  428. HttpWebResponse response;
  429. try
  430. {
  431. response = (HttpWebResponse)request.GetResponse();
  432. }
  433. catch (WebException ex)
  434. {
  435. response = ex.Response as HttpWebResponse;
  436. }
  437. Stream resStream = response.GetResponseStream();
  438. StreamReader reader = new StreamReader(resStream);
  439. string text = reader.ReadToEnd();
  440. return text;
  441. }
  442. protected string GetAuthorization(string url, string method, string jsonParame, string privateKey, string merchantId, string serialNo)
  443. {
  444. var uri = new Uri(url);
  445. string urlPath = uri.PathAndQuery;
  446. string nonce = Guid.NewGuid().ToString();
  447. var timestamp = DateTimeOffset.Now.ToUnixTimeSeconds();
  448. //数据签名 HTTP请求方法\n接口地址的url\n请求时间戳\n请求随机串\n请求报文主体\n
  449. method = string.IsNullOrEmpty(method) ? "" : method;
  450. string message = string.Format("{0}\n{1}\n{2}\n{3}\n{4}\n", method, urlPath, timestamp, nonce, jsonParame);
  451. string signTxt = Sign(message, privateKey);
  452. //Authorization和格式
  453. string authorzationTxt = string.Format("WECHATPAY2-SHA256-RSA2048 mchid=\"{0}\",nonce_str=\"{1}\",timestamp=\"{2}\",serial_no=\"{3}\",signature=\"{4}\"",
  454. merchantId,
  455. nonce,
  456. timestamp,
  457. serialNo,
  458. signTxt
  459. );
  460. return authorzationTxt;
  461. }
  462. protected string Sign(string message, string privateKey)
  463. {
  464. byte[] keyData = Convert.FromBase64String(privateKey);
  465. byte[] data = System.Text.Encoding.UTF8.GetBytes(message);
  466. var rsa = RSA.Create();
  467. rsa.ImportPkcs8PrivateKey(keyData, out _);
  468. return Convert.ToBase64String(rsa.SignData(data, HashAlgorithmName.SHA256, RSASignaturePadding.Pkcs1));
  469. // using (CngKey cngKey = CngKey.Import(keyData, CngKeyBlobFormat.Pkcs8PrivateBlob))
  470. // using (RSACng rsa = new RSACng(cngKey))
  471. // {
  472. // return Convert.ToBase64String(rsa.SignData(data, HashAlgorithmName.SHA256, RSASignaturePadding.Pkcs1));
  473. // }
  474. }
  475. #endregion
  476. #region 获取文件sha256
  477. public string GetSha256(FileStream stream)
  478. {
  479. using (SHA256 mySHA256 = SHA256.Create())
  480. {
  481. byte[] hashValue = mySHA256.ComputeHash(stream);
  482. return Encoding.UTF8.GetString(hashValue);
  483. }
  484. }
  485. #endregion
  486. #region 判断长期
  487. public string CheckForever(DateTime? time)
  488. {
  489. if (time == null)
  490. {
  491. return "";
  492. }
  493. if (time.Value.Year >= 2050)
  494. {
  495. return "长期";
  496. }
  497. return time.Value.ToString("yyyy-MM-dd");
  498. }
  499. #endregion
  500. }
  501. }