All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.binarywang.wxpay.service.impl.BaseWxPayServiceImpl Maven / Gradle / Ivy

There is a newer version: 4.6.9.B
Show newest version
package com.github.binarywang.wxpay.service.impl;

import java.io.File;
import java.nio.charset.StandardCharsets;
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.Paths;
import java.util.Date;
import java.util.HashMap;
import java.util.LinkedList;
import java.util.List;
import java.util.Map;
import java.util.zip.ZipException;

import org.apache.commons.lang3.StringUtils;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import com.github.binarywang.utils.qrcode.QrcodeUtils;
import com.github.binarywang.wxpay.bean.WxPayApiData;
import com.github.binarywang.wxpay.bean.coupon.WxPayCouponInfoQueryRequest;
import com.github.binarywang.wxpay.bean.coupon.WxPayCouponInfoQueryResult;
import com.github.binarywang.wxpay.bean.coupon.WxPayCouponSendRequest;
import com.github.binarywang.wxpay.bean.coupon.WxPayCouponSendResult;
import com.github.binarywang.wxpay.bean.coupon.WxPayCouponStockQueryRequest;
import com.github.binarywang.wxpay.bean.coupon.WxPayCouponStockQueryResult;
import com.github.binarywang.wxpay.bean.notify.WxPayOrderNotifyResult;
import com.github.binarywang.wxpay.bean.notify.WxPayRefundNotifyResult;
import com.github.binarywang.wxpay.bean.notify.WxScanPayNotifyResult;
import com.github.binarywang.wxpay.bean.order.WxPayAppOrderResult;
import com.github.binarywang.wxpay.bean.order.WxPayMpOrderResult;
import com.github.binarywang.wxpay.bean.order.WxPayMwebOrderResult;
import com.github.binarywang.wxpay.bean.order.WxPayNativeOrderResult;
import com.github.binarywang.wxpay.bean.request.WxPayAuthcode2OpenidRequest;
import com.github.binarywang.wxpay.bean.request.WxPayDefaultRequest;
import com.github.binarywang.wxpay.bean.request.WxPayDownloadBillRequest;
import com.github.binarywang.wxpay.bean.request.WxPayDownloadFundFlowRequest;
import com.github.binarywang.wxpay.bean.request.WxPayMicropayRequest;
import com.github.binarywang.wxpay.bean.request.WxPayOrderCloseRequest;
import com.github.binarywang.wxpay.bean.request.WxPayOrderQueryRequest;
import com.github.binarywang.wxpay.bean.request.WxPayOrderReverseRequest;
import com.github.binarywang.wxpay.bean.request.WxPayQueryCommentRequest;
import com.github.binarywang.wxpay.bean.request.WxPayRedpackQueryRequest;
import com.github.binarywang.wxpay.bean.request.WxPayRefundQueryRequest;
import com.github.binarywang.wxpay.bean.request.WxPayRefundRequest;
import com.github.binarywang.wxpay.bean.request.WxPayReportRequest;
import com.github.binarywang.wxpay.bean.request.WxPaySendRedpackRequest;
import com.github.binarywang.wxpay.bean.request.WxPayShorturlRequest;
import com.github.binarywang.wxpay.bean.request.WxPayUnifiedOrderRequest;
import com.github.binarywang.wxpay.bean.result.BaseWxPayResult;
import com.github.binarywang.wxpay.bean.result.WxPayAuthcode2OpenidResult;
import com.github.binarywang.wxpay.bean.result.WxPayBillBaseResult;
import com.github.binarywang.wxpay.bean.result.WxPayBillResult;
import com.github.binarywang.wxpay.bean.result.WxPayCommonResult;
import com.github.binarywang.wxpay.bean.result.WxPayFundFlowBaseResult;
import com.github.binarywang.wxpay.bean.result.WxPayFundFlowResult;
import com.github.binarywang.wxpay.bean.result.WxPayMicropayResult;
import com.github.binarywang.wxpay.bean.result.WxPayOrderCloseResult;
import com.github.binarywang.wxpay.bean.result.WxPayOrderQueryResult;
import com.github.binarywang.wxpay.bean.result.WxPayOrderReverseResult;
import com.github.binarywang.wxpay.bean.result.WxPayRedpackQueryResult;
import com.github.binarywang.wxpay.bean.result.WxPayRefundQueryResult;
import com.github.binarywang.wxpay.bean.result.WxPayRefundResult;
import com.github.binarywang.wxpay.bean.result.WxPaySandboxSignKeyResult;
import com.github.binarywang.wxpay.bean.result.WxPaySendRedpackResult;
import com.github.binarywang.wxpay.bean.result.WxPayShorturlResult;
import com.github.binarywang.wxpay.bean.result.WxPayUnifiedOrderResult;
import com.github.binarywang.wxpay.config.WxPayConfig;
import com.github.binarywang.wxpay.constant.WxPayConstants.BillType;
import com.github.binarywang.wxpay.constant.WxPayConstants.SignType;
import com.github.binarywang.wxpay.constant.WxPayConstants.TradeType;
import com.github.binarywang.wxpay.exception.WxPayException;
import com.github.binarywang.wxpay.service.EntPayService;
import com.github.binarywang.wxpay.service.WxPayService;
import com.github.binarywang.wxpay.util.SignUtils;
import com.google.common.base.Joiner;
import com.google.common.collect.Maps;
import jodd.io.ZipUtil;

import static com.github.binarywang.wxpay.constant.WxPayConstants.QUERY_COMMENT_DATE_FORMAT;
import static com.github.binarywang.wxpay.constant.WxPayConstants.TarType;

/**
 * 
 *  微信支付接口请求抽象实现类
 * Created by Binary Wang on 2017-7-8.
 * 
* * @author Binary Wang */ public abstract class BaseWxPayServiceImpl implements WxPayService { private static final String PAY_BASE_URL = "https://api.mch.weixin.qq.com"; /** * The Log. */ protected final Logger log = LoggerFactory.getLogger(this.getClass()); /** * The constant wxApiData. */ protected static ThreadLocal wxApiData = new ThreadLocal<>(); private EntPayService entPayService = new EntPayServiceImpl(this); /** * The Config. */ protected WxPayConfig config; @Override public EntPayService getEntPayService() { return entPayService; } @Override public void setEntPayService(EntPayService entPayService) { this.entPayService = entPayService; } @Override public WxPayConfig getConfig() { return this.config; } @Override public void setConfig(WxPayConfig config) { this.config = config; } @Override public String getPayBaseUrl() { if (this.getConfig().isUseSandboxEnv()) { return PAY_BASE_URL + "/sandboxnew"; } return PAY_BASE_URL; } @Override public WxPayRefundResult refund(WxPayRefundRequest request) throws WxPayException { request.checkAndSign(this.getConfig()); String url = this.getPayBaseUrl() + "/secapi/pay/refund"; String responseContent = this.post(url, request.toXML(), true); WxPayRefundResult result = BaseWxPayResult.fromXML(responseContent, WxPayRefundResult.class); result.composeRefundCoupons(); result.checkResult(this, request.getSignType(), true); return result; } @Override public WxPayRefundQueryResult refundQuery(String transactionId, String outTradeNo, String outRefundNo, String refundId) throws WxPayException { WxPayRefundQueryRequest request = new WxPayRefundQueryRequest(); request.setOutTradeNo(StringUtils.trimToNull(outTradeNo)); request.setTransactionId(StringUtils.trimToNull(transactionId)); request.setOutRefundNo(StringUtils.trimToNull(outRefundNo)); request.setRefundId(StringUtils.trimToNull(refundId)); return this.refundQuery(request); } @Override public WxPayRefundQueryResult refundQuery(WxPayRefundQueryRequest request) throws WxPayException { request.checkAndSign(this.getConfig()); String url = this.getPayBaseUrl() + "/pay/refundquery"; String responseContent = this.post(url, request.toXML(), false); WxPayRefundQueryResult result = BaseWxPayResult.fromXML(responseContent, WxPayRefundQueryResult.class); result.composeRefundRecords(); result.checkResult(this, request.getSignType(), true); return result; } @Override public WxPayOrderNotifyResult parseOrderNotifyResult(String xmlData) throws WxPayException { try { log.debug("微信支付异步通知请求参数:{}", xmlData); WxPayOrderNotifyResult result = WxPayOrderNotifyResult.fromXML(xmlData); log.debug("微信支付异步通知请求解析后的对象:{}", result); result.checkResult(this, this.getConfig().getSignType(), false); return result; } catch (WxPayException e) { log.error(e.getMessage(), e); throw e; } catch (Exception e) { log.error(e.getMessage(), e); throw new WxPayException("发生异常," + e.getMessage(), e); } } @Override public WxPayRefundNotifyResult parseRefundNotifyResult(String xmlData) throws WxPayException { try { log.debug("微信支付退款异步通知参数:{}", xmlData); WxPayRefundNotifyResult result = WxPayRefundNotifyResult.fromXML(xmlData, this.getConfig().getMchKey()); log.debug("微信支付退款异步通知解析后的对象:{}", result); return result; } catch (Exception e) { log.error(e.getMessage(), e); throw new WxPayException("发生异常," + e.getMessage(), e); } } @Override public WxScanPayNotifyResult parseScanPayNotifyResult(String xmlData) throws WxPayException { try { log.debug("扫码支付回调通知请求参数:{}", xmlData); WxScanPayNotifyResult result = BaseWxPayResult.fromXML(xmlData, WxScanPayNotifyResult.class); log.debug("扫码支付回调通知解析后的对象:{}", result); result.checkResult(this, this.getConfig().getSignType(), false); return result; } catch (WxPayException e) { log.error(e.getMessage(), e); throw e; } catch (Exception e) { log.error(e.getMessage(), e); throw new WxPayException("发生异常," + e.getMessage(), e); } } @Override public WxPaySendRedpackResult sendRedpack(WxPaySendRedpackRequest request) throws WxPayException { request.checkAndSign(this.getConfig()); String url = this.getPayBaseUrl() + "/mmpaymkttransfers/sendredpack"; if (request.getAmtType() != null) { //裂变红包 url = this.getPayBaseUrl() + "/mmpaymkttransfers/sendgroupredpack"; } String responseContent = this.post(url, request.toXML(), true); //无需校验,因为没有返回签名信息 return BaseWxPayResult.fromXML(responseContent, WxPaySendRedpackResult.class); } @Override public WxPayRedpackQueryResult queryRedpack(String mchBillNo) throws WxPayException { WxPayRedpackQueryRequest request = new WxPayRedpackQueryRequest(); request.setMchBillNo(mchBillNo); request.setBillType(BillType.MCHT); request.checkAndSign(this.getConfig()); String url = this.getPayBaseUrl() + "/mmpaymkttransfers/gethbinfo"; String responseContent = this.post(url, request.toXML(), true); WxPayRedpackQueryResult result = BaseWxPayResult.fromXML(responseContent, WxPayRedpackQueryResult.class); result.checkResult(this, request.getSignType(), true); return result; } @Override public WxPayOrderQueryResult queryOrder(String transactionId, String outTradeNo) throws WxPayException { WxPayOrderQueryRequest request = new WxPayOrderQueryRequest(); request.setOutTradeNo(StringUtils.trimToNull(outTradeNo)); request.setTransactionId(StringUtils.trimToNull(transactionId)); return this.queryOrder(request); } @Override public WxPayOrderQueryResult queryOrder(WxPayOrderQueryRequest request) throws WxPayException { request.checkAndSign(this.getConfig()); String url = this.getPayBaseUrl() + "/pay/orderquery"; String responseContent = this.post(url, request.toXML(), false); if (StringUtils.isBlank(responseContent)) { throw new WxPayException("无响应结果"); } WxPayOrderQueryResult result = BaseWxPayResult.fromXML(responseContent, WxPayOrderQueryResult.class); result.composeCoupons(); result.checkResult(this, request.getSignType(), true); return result; } @Override public WxPayOrderCloseResult closeOrder(String outTradeNo) throws WxPayException { if (StringUtils.isBlank(outTradeNo)) { throw new WxPayException("out_trade_no不能为空"); } WxPayOrderCloseRequest request = new WxPayOrderCloseRequest(); request.setOutTradeNo(StringUtils.trimToNull(outTradeNo)); return this.closeOrder(request); } @Override public WxPayOrderCloseResult closeOrder(WxPayOrderCloseRequest request) throws WxPayException { request.checkAndSign(this.getConfig()); String url = this.getPayBaseUrl() + "/pay/closeorder"; String responseContent = this.post(url, request.toXML(), false); WxPayOrderCloseResult result = BaseWxPayResult.fromXML(responseContent, WxPayOrderCloseResult.class); result.checkResult(this, request.getSignType(), true); return result; } @Override public T createOrder(WxPayUnifiedOrderRequest request) throws WxPayException { WxPayUnifiedOrderResult unifiedOrderResult = this.unifiedOrder(request); String prepayId = unifiedOrderResult.getPrepayId(); if (StringUtils.isBlank(prepayId)) { throw new WxPayException(String.format("无法获取prepay id,错误代码: '%s',信息:%s。", unifiedOrderResult.getErrCode(), unifiedOrderResult.getErrCodeDes())); } String timestamp = String.valueOf(System.currentTimeMillis() / 1000); String nonceStr = String.valueOf(System.currentTimeMillis()); switch (request.getTradeType()) { case TradeType.MWEB: { return (T) new WxPayMwebOrderResult(unifiedOrderResult.getMwebUrl()); } case TradeType.NATIVE: { return (T) new WxPayNativeOrderResult(unifiedOrderResult.getCodeURL()); } case TradeType.APP: { // APP支付绑定的是微信开放平台上的账号,APPID为开放平台上绑定APP后发放的参数 String appId = unifiedOrderResult.getAppid(); if (StringUtils.isNotEmpty(unifiedOrderResult.getSubAppId())) { appId = unifiedOrderResult.getSubAppId(); } Map configMap = new HashMap<>(8); // 此map用于参与调起sdk支付的二次签名,格式全小写,timestamp只能是10位,格式固定,切勿修改 String partnerId; if (StringUtils.isEmpty(request.getMchId())) { partnerId = this.getConfig().getMchId(); } else { partnerId = request.getMchId(); } configMap.put("prepayid", prepayId); configMap.put("partnerid", partnerId); String packageValue = "Sign=WXPay"; configMap.put("package", packageValue); configMap.put("timestamp", timestamp); configMap.put("noncestr", nonceStr); configMap.put("appid", appId); final WxPayAppOrderResult result = WxPayAppOrderResult.builder() .sign(SignUtils.createSign(configMap, null, this.getConfig().getMchKey(), null)) .prepayId(prepayId) .partnerId(partnerId) .appId(appId) .packageValue(packageValue) .timeStamp(timestamp) .nonceStr(nonceStr) .build(); return (T) result; } case TradeType.JSAPI: { String signType = SignType.MD5; String appid = unifiedOrderResult.getAppid(); if (StringUtils.isNotEmpty(unifiedOrderResult.getSubAppId())) { appid = unifiedOrderResult.getSubAppId(); } WxPayMpOrderResult payResult = WxPayMpOrderResult.builder() .appId(appid) .timeStamp(timestamp) .nonceStr(nonceStr) .packageValue("prepay_id=" + prepayId) .signType(signType) .build(); payResult.setPaySign(SignUtils.createSign(payResult, signType, this.getConfig().getMchKey(), null)); return (T) payResult; } default: { throw new WxPayException("该交易类型暂不支持"); } } } @Override public WxPayUnifiedOrderResult unifiedOrder(WxPayUnifiedOrderRequest request) throws WxPayException { request.checkAndSign(this.getConfig()); String url = this.getPayBaseUrl() + "/pay/unifiedorder"; String responseContent = this.post(url, request.toXML(), false); WxPayUnifiedOrderResult result = BaseWxPayResult.fromXML(responseContent, WxPayUnifiedOrderResult.class); result.checkResult(this, request.getSignType(), true); return result; } @Override @Deprecated public Map getPayInfo(WxPayUnifiedOrderRequest request) throws WxPayException { WxPayUnifiedOrderResult unifiedOrderResult = this.unifiedOrder(request); String prepayId = unifiedOrderResult.getPrepayId(); if (StringUtils.isBlank(prepayId)) { throw new RuntimeException(String.format("无法获取prepay id,错误代码: '%s',信息:%s。", unifiedOrderResult.getErrCode(), unifiedOrderResult.getErrCodeDes())); } Map payInfo = new HashMap<>(); String timestamp = String.valueOf(System.currentTimeMillis() / 1000); String nonceStr = String.valueOf(System.currentTimeMillis()); if (TradeType.NATIVE.equals(request.getTradeType())) { payInfo.put("codeUrl", unifiedOrderResult.getCodeURL()); } else if (TradeType.APP.equals(request.getTradeType())) { // APP支付绑定的是微信开放平台上的账号,APPID为开放平台上绑定APP后发放的参数 String appId = getConfig().getAppId(); Map configMap = new HashMap<>(); // 此map用于参与调起sdk支付的二次签名,格式全小写,timestamp只能是10位,格式固定,切勿修改 String partnerId = getConfig().getMchId(); configMap.put("prepayid", prepayId); configMap.put("partnerid", partnerId); String packageValue = "Sign=WXPay"; configMap.put("package", packageValue); configMap.put("timestamp", timestamp); configMap.put("noncestr", nonceStr); configMap.put("appid", appId); // 此map用于客户端与微信服务器交互 payInfo.put("sign", SignUtils.createSign(configMap, null, this.getConfig().getMchKey(), null)); payInfo.put("prepayId", prepayId); payInfo.put("partnerId", partnerId); payInfo.put("appId", appId); payInfo.put("packageValue", packageValue); payInfo.put("timeStamp", timestamp); payInfo.put("nonceStr", nonceStr); } else if (TradeType.JSAPI.equals(request.getTradeType())) { payInfo.put("appId", unifiedOrderResult.getAppid()); // 支付签名时间戳,注意微信jssdk中的所有使用timestamp字段均为小写。但最新版的支付后台生成签名使用的timeStamp字段名需大写其中的S字符 payInfo.put("timeStamp", timestamp); payInfo.put("nonceStr", nonceStr); payInfo.put("package", "prepay_id=" + prepayId); payInfo.put("signType", SignType.MD5); payInfo.put("paySign", SignUtils.createSign(payInfo, null, this.getConfig().getMchKey(), null)); } return payInfo; } @Override public byte[] createScanPayQrcodeMode1(String productId, File logoFile, Integer sideLength) { String content = this.createScanPayQrcodeMode1(productId); return this.createQrcode(content, logoFile, sideLength); } @Override public String createScanPayQrcodeMode1(String productId) { //weixin://wxpay/bizpayurl?sign=XXXXX&appid=XXXXX&mch_id=XXXXX&product_id=XXXXXX&time_stamp=XXXXXX&nonce_str=XXXXX StringBuilder codeUrl = new StringBuilder("weixin://wxpay/bizpayurl?"); Map params = Maps.newHashMap(); params.put("appid", this.getConfig().getAppId()); params.put("mch_id", this.getConfig().getMchId()); params.put("product_id", productId); //这里需要秒,10位数字 params.put("time_stamp", String.valueOf(System.currentTimeMillis() / 1000)); params.put("nonce_str", String.valueOf(System.currentTimeMillis())); String sign = SignUtils.createSign(params, null, this.getConfig().getMchKey(), null); params.put("sign", sign); for (String key : params.keySet()) { codeUrl.append(key).append("=").append(params.get(key)).append("&"); } String content = codeUrl.toString().substring(0, codeUrl.length() - 1); log.debug("扫码支付模式一生成二维码的URL:{}", content); return content; } @Override public byte[] createScanPayQrcodeMode2(String codeUrl, File logoFile, Integer sideLength) { return this.createQrcode(codeUrl, logoFile, sideLength); } private byte[] createQrcode(String content, File logoFile, Integer sideLength) { if (sideLength == null || sideLength < 1) { return QrcodeUtils.createQrcode(content, logoFile); } return QrcodeUtils.createQrcode(content, sideLength, logoFile); } @Override public void report(WxPayReportRequest request) throws WxPayException { request.checkAndSign(this.getConfig()); String url = this.getPayBaseUrl() + "/payitil/report"; String responseContent = this.post(url, request.toXML(), false); WxPayCommonResult result = BaseWxPayResult.fromXML(responseContent, WxPayCommonResult.class); result.checkResult(this, request.getSignType(), true); } @Override public WxPayBillResult downloadBill(String billDate, String billType, String tarType, String deviceInfo) throws WxPayException { if (!BillType.ALL.equals(billType)) { throw new WxPayException("目前仅支持ALL类型的对账单下载"); } WxPayDownloadBillRequest request = new WxPayDownloadBillRequest(); request.setBillType(billType); request.setBillDate(billDate); request.setTarType(tarType); request.setDeviceInfo(deviceInfo); return this.downloadBill(request); } @Override public WxPayBillResult downloadBill(WxPayDownloadBillRequest request) throws WxPayException { request.checkAndSign(this.getConfig()); String url = this.getPayBaseUrl() + "/pay/downloadbill"; String responseContent; if (TarType.GZIP.equals(request.getTarType())) { responseContent = this.handleGzipBill(url, request.toXML()); } else { responseContent = this.post(url, request.toXML(), false); if (responseContent.startsWith("<")) { throw WxPayException.from(BaseWxPayResult.fromXML(responseContent, WxPayCommonResult.class)); } } return this.handleBill(request.getBillType(), responseContent); } private WxPayBillResult handleBill(String billType, String responseContent) { if (!BillType.ALL.equals(billType)) { return null; } return this.handleAllBill(responseContent); } private String handleGzipBill(String url, String requestStr) throws WxPayException { try { byte[] responseBytes = this.postForBytes(url, requestStr, false); Path tempDirectory = Files.createTempDirectory("bill"); Path path = Paths.get(tempDirectory.toString(), System.currentTimeMillis() + ".gzip"); Files.write(path, responseBytes); try { List allLines = Files.readAllLines(ZipUtil.ungzip(path.toFile()).toPath(), StandardCharsets.UTF_8); return Joiner.on("\n").join(allLines); } catch (ZipException e) { if (e.getMessage().contains("Not in GZIP format")) { throw WxPayException.from(BaseWxPayResult.fromXML(new String(responseBytes, StandardCharsets.UTF_8), WxPayCommonResult.class)); } else { this.log.error("解压zip文件出错", e); } } } catch (Exception e) { this.log.error("解析对账单文件时出错", e); } return null; } private WxPayBillResult handleAllBill(String responseContent) { WxPayBillResult wxPayBillResult = new WxPayBillResult(); String listStr = ""; String objStr = ""; if (responseContent.contains("总交易单数")) { listStr = responseContent.substring(0, responseContent.indexOf("总交易单数")); objStr = responseContent.substring(responseContent.indexOf("总交易单数")); } /* * 交易时间:2017-04-06 01:00:02 公众账号ID: 商户号: 子商户号:0 设备号:WEB 微信订单号: 商户订单号:2017040519091071873216 用户标识: 交易类型:NATIVE * 交易状态:REFUND 付款银行:CFT 货币种类:CNY 总金额:0.00 企业红包金额:0.00 微信退款单号: 商户退款单号:20170406010000933 退款金额:0.01 企业红包退款金额:0.00 * 退款类型:ORIGINAL 退款状态:SUCCESS 商品名称: 商户数据包: 手续费:0.00000 费率 :0.60% * 参考以上格式进行取值 */ List wxPayBillBaseResultLst = new LinkedList<>(); // 去空格 String newStr = listStr.replaceAll(",", " "); // 数据分组 String[] tempStr = newStr.split("`"); // 分组标题 String[] t = tempStr[0].split(" "); // 计算循环次数 int j = tempStr.length / t.length; // 纪录数组下标 int k = 1; for (int i = 0; i < j; i++) { WxPayBillBaseResult wxPayBillBaseResult = new WxPayBillBaseResult(); wxPayBillBaseResult.setTradeTime(tempStr[k].trim()); wxPayBillBaseResult.setAppId(tempStr[k + 1].trim()); wxPayBillBaseResult.setMchId(tempStr[k + 2].trim()); wxPayBillBaseResult.setSubMchId(tempStr[k + 3].trim()); wxPayBillBaseResult.setDeviceInfo(tempStr[k + 4].trim()); wxPayBillBaseResult.setTransactionId(tempStr[k + 5].trim()); wxPayBillBaseResult.setOutTradeNo(tempStr[k + 6].trim()); wxPayBillBaseResult.setOpenId(tempStr[k + 7].trim()); wxPayBillBaseResult.setTradeType(tempStr[k + 8].trim()); wxPayBillBaseResult.setTradeState(tempStr[k + 9].trim()); wxPayBillBaseResult.setBankType(tempStr[k + 10].trim()); wxPayBillBaseResult.setFeeType(tempStr[k + 11].trim()); wxPayBillBaseResult.setTotalFee(tempStr[k + 12].trim()); wxPayBillBaseResult.setCouponFee(tempStr[k + 13].trim()); wxPayBillBaseResult.setRefundId(tempStr[k + 14].trim()); wxPayBillBaseResult.setOutRefundNo(tempStr[k + 15].trim()); wxPayBillBaseResult.setSettlementRefundFee(tempStr[k + 16].trim()); wxPayBillBaseResult.setCouponRefundFee(tempStr[k + 17].trim()); wxPayBillBaseResult.setRefundChannel(tempStr[k + 18].trim()); wxPayBillBaseResult.setRefundState(tempStr[k + 19].trim()); wxPayBillBaseResult.setBody(tempStr[k + 20].trim()); wxPayBillBaseResult.setAttach(tempStr[k + 21].trim()); wxPayBillBaseResult.setPoundage(tempStr[k + 22].trim()); wxPayBillBaseResult.setPoundageRate(tempStr[k + 23].trim()); wxPayBillBaseResultLst.add(wxPayBillBaseResult); k += t.length; } wxPayBillResult.setWxPayBillBaseResultLst(wxPayBillBaseResultLst); /* * 总交易单数,总交易额,总退款金额,总代金券或立减优惠退款金额,手续费总金额 `2,`0.02,`0.0,`0.0,`0 * 参考以上格式进行取值 */ String totalStr = objStr.replaceAll(",", " "); String[] totalTempStr = totalStr.split("`"); wxPayBillResult.setTotalRecord(totalTempStr[1]); wxPayBillResult.setTotalFee(totalTempStr[2]); wxPayBillResult.setTotalRefundFee(totalTempStr[3]); wxPayBillResult.setTotalCouponFee(totalTempStr[4]); wxPayBillResult.setTotalPoundageFee(totalTempStr[5]); return wxPayBillResult; } @Override public WxPayFundFlowResult downloadFundFlow(String billDate, String accountType, String tarType) throws WxPayException { WxPayDownloadFundFlowRequest request = new WxPayDownloadFundFlowRequest(); request.setBillDate(billDate); request.setAccountType(accountType); request.setTarType(tarType); return this.downloadFundFlow(request); } @Override public WxPayFundFlowResult downloadFundFlow(WxPayDownloadFundFlowRequest request) throws WxPayException { request.checkAndSign(this.getConfig()); String url = this.getPayBaseUrl() + "/pay/downloadfundflow"; String responseContent; if (TarType.GZIP.equals(request.getTarType())) { responseContent = this.handleGzipFundFlow(url, request.toXML()); } else { responseContent = this.post(url, request.toXML(), true); if (responseContent.startsWith("<")) { throw WxPayException.from(BaseWxPayResult.fromXML(responseContent, WxPayCommonResult.class)); } } return this.handleFundFlow(responseContent); } private String handleGzipFundFlow(String url, String requestStr) throws WxPayException { try { byte[] responseBytes = this.postForBytes(url, requestStr, true); Path tempDirectory = Files.createTempDirectory("fundFlow"); Path path = Paths.get(tempDirectory.toString(), System.currentTimeMillis() + ".gzip"); Files.write(path, responseBytes); try { List allLines = Files.readAllLines(ZipUtil.ungzip(path.toFile()).toPath(), StandardCharsets.UTF_8); return Joiner.on("\n").join(allLines); } catch (ZipException e) { if (e.getMessage().contains("Not in GZIP format")) { throw WxPayException.from(BaseWxPayResult.fromXML(new String(responseBytes, StandardCharsets.UTF_8), WxPayCommonResult.class)); } else { this.log.error("解压zip文件出错", e); throw new WxPayException("解压zip文件出错"); } } } catch (WxPayException wxPayException) { throw wxPayException; } catch (Exception e) { this.log.error("解析对账单文件时出错", e); throw new WxPayException("解压zip文件出错"); } } private WxPayFundFlowResult handleFundFlow(String responseContent) { WxPayFundFlowResult wxPayFundFlowResult = new WxPayFundFlowResult(); String listStr = ""; String objStr = ""; if (StringUtils.isNotBlank(responseContent) && responseContent.contains("资金流水总笔数")) { listStr = responseContent.substring(0, responseContent.indexOf("资金流水总笔数")); objStr = responseContent.substring(responseContent.indexOf("资金流水总笔数")); } /* * 记账时间:2018-02-01 04:21:23 微信支付业务单号:50000305742018020103387128253 资金流水单号:1900009231201802015884652186 业务名称:退款 * 业务类型:退款 收支类型:支出 收支金额(元):0.02 账户结余(元):0.17 资金变更提交申请人:system 备注:缺货 业务凭证号:REF4200000068201801293084726067 * 参考以上格式进行取值 */ List wxPayFundFlowBaseResultList = new LinkedList<>(); // 去空格 String newStr = listStr.replaceAll(",", " "); // 数据分组 String[] tempStr = newStr.split("`"); // 分组标题 String[] t = tempStr[0].split(" "); // 计算循环次数 int j = tempStr.length / t.length; // 纪录数组下标 int k = 1; for (int i = 0; i < j; i++) { WxPayFundFlowBaseResult wxPayFundFlowBaseResult = new WxPayFundFlowBaseResult(); wxPayFundFlowBaseResult.setBillingTime(tempStr[k].trim()); wxPayFundFlowBaseResult.setBizTransactionId(tempStr[k + 1].trim()); wxPayFundFlowBaseResult.setFundFlowId(tempStr[k + 2].trim()); wxPayFundFlowBaseResult.setBizName(tempStr[k + 3].trim()); wxPayFundFlowBaseResult.setBizType(tempStr[k + 4].trim()); wxPayFundFlowBaseResult.setFinancialType(tempStr[k + 5].trim()); wxPayFundFlowBaseResult.setFinancialFee(tempStr[k + 6].trim()); wxPayFundFlowBaseResult.setAccountBalance(tempStr[k + 7].trim()); wxPayFundFlowBaseResult.setFundApplicant(tempStr[k + 8].trim()); wxPayFundFlowBaseResult.setMemo(tempStr[k + 9].trim()); wxPayFundFlowBaseResult.setBizVoucherId(tempStr[k + 10].trim()); wxPayFundFlowBaseResultList.add(wxPayFundFlowBaseResult); k += t.length; } wxPayFundFlowResult.setWxPayFundFlowBaseResultList(wxPayFundFlowBaseResultList); /* * 资金流水总笔数,收入笔数,收入金额,支出笔数,支出金额 `20.0,`17.0,`0.35,`3.0,`0.18 * 参考以上格式进行取值 */ String totalStr = objStr.replaceAll(",", " "); String[] totalTempStr = totalStr.split("`"); wxPayFundFlowResult.setTotalRecord(totalTempStr[1]); wxPayFundFlowResult.setIncomeRecord(totalTempStr[2]); wxPayFundFlowResult.setIncomeAmount(totalTempStr[3]); wxPayFundFlowResult.setExpenditureRecord(totalTempStr[4]); wxPayFundFlowResult.setExpenditureAmount(totalTempStr[5]); return wxPayFundFlowResult; } @Override public WxPayMicropayResult micropay(WxPayMicropayRequest request) throws WxPayException { request.checkAndSign(this.getConfig()); String url = this.getPayBaseUrl() + "/pay/micropay"; String responseContent = this.post(url, request.toXML(), false); WxPayMicropayResult result = BaseWxPayResult.fromXML(responseContent, WxPayMicropayResult.class); result.checkResult(this, request.getSignType(), true); return result; } @Override public WxPayOrderReverseResult reverseOrder(WxPayOrderReverseRequest request) throws WxPayException { request.checkAndSign(this.getConfig()); String url = this.getPayBaseUrl() + "/secapi/pay/reverse"; String responseContent = this.post(url, request.toXML(), true); WxPayOrderReverseResult result = BaseWxPayResult.fromXML(responseContent, WxPayOrderReverseResult.class); result.checkResult(this, request.getSignType(), true); return result; } @Override public String shorturl(WxPayShorturlRequest request) throws WxPayException { request.checkAndSign(this.getConfig()); String url = this.getPayBaseUrl() + "/tools/shorturl"; String responseContent = this.post(url, request.toXML(), false); WxPayShorturlResult result = BaseWxPayResult.fromXML(responseContent, WxPayShorturlResult.class); result.checkResult(this, request.getSignType(), true); return result.getShortUrl(); } @Override public String shorturl(String longUrl) throws WxPayException { return this.shorturl(new WxPayShorturlRequest(longUrl)); } @Override public String authcode2Openid(WxPayAuthcode2OpenidRequest request) throws WxPayException { request.checkAndSign(this.getConfig()); String url = this.getPayBaseUrl() + "/tools/authcodetoopenid"; String responseContent = this.post(url, request.toXML(), false); WxPayAuthcode2OpenidResult result = BaseWxPayResult.fromXML(responseContent, WxPayAuthcode2OpenidResult.class); result.checkResult(this, request.getSignType(), true); return result.getOpenid(); } @Override public String authcode2Openid(String authCode) throws WxPayException { return this.authcode2Openid(new WxPayAuthcode2OpenidRequest(authCode)); } @Override public String getSandboxSignKey() throws WxPayException { WxPayDefaultRequest request = new WxPayDefaultRequest(); request.checkAndSign(this.getConfig()); String url = "https://api.mch.weixin.qq.com/sandboxnew/pay/getsignkey"; String responseContent = this.post(url, request.toXML(), false); WxPaySandboxSignKeyResult result = BaseWxPayResult.fromXML(responseContent, WxPaySandboxSignKeyResult.class); result.checkResult(this, request.getSignType(), true); return result.getSandboxSignKey(); } @Override public WxPayCouponSendResult sendCoupon(WxPayCouponSendRequest request) throws WxPayException { request.checkAndSign(this.getConfig()); String url = this.getPayBaseUrl() + "/mmpaymkttransfers/send_coupon"; String responseContent = this.post(url, request.toXML(), true); WxPayCouponSendResult result = BaseWxPayResult.fromXML(responseContent, WxPayCouponSendResult.class); result.checkResult(this, request.getSignType(), true); return result; } @Override public WxPayCouponStockQueryResult queryCouponStock(WxPayCouponStockQueryRequest request) throws WxPayException { request.checkAndSign(this.getConfig()); String url = this.getPayBaseUrl() + "/mmpaymkttransfers/query_coupon_stock"; String responseContent = this.post(url, request.toXML(), false); WxPayCouponStockQueryResult result = BaseWxPayResult.fromXML(responseContent, WxPayCouponStockQueryResult.class); result.checkResult(this, request.getSignType(), true); return result; } @Override public WxPayCouponInfoQueryResult queryCouponInfo(WxPayCouponInfoQueryRequest request) throws WxPayException { request.checkAndSign(this.getConfig()); String url = this.getPayBaseUrl() + "/mmpaymkttransfers/querycouponsinfo"; String responseContent = this.post(url, request.toXML(), false); WxPayCouponInfoQueryResult result = BaseWxPayResult.fromXML(responseContent, WxPayCouponInfoQueryResult.class); result.checkResult(this, request.getSignType(), true); return result; } @Override public WxPayApiData getWxApiData() { try { return wxApiData.get(); } finally { //一般来说,接口请求会在一个线程内进行,这种情况下,每个线程get的会是之前所存入的数据, // 但以防万一有同一线程多次请求的问题,所以每次获取完数据后移除对应数据 wxApiData.remove(); } } @Override public String queryComment(Date beginDate, Date endDate, Integer offset, Integer limit) throws WxPayException { WxPayQueryCommentRequest request = new WxPayQueryCommentRequest(); request.setBeginTime(QUERY_COMMENT_DATE_FORMAT.format(beginDate)); request.setEndTime(QUERY_COMMENT_DATE_FORMAT.format(endDate)); request.setOffset(offset); request.setLimit(limit); request.setSignType(SignType.HMAC_SHA256); request.checkAndSign(this.getConfig()); String url = this.getPayBaseUrl() + "/billcommentsp/batchquerycomment"; String responseContent = this.post(url, request.toXML(), true); if (responseContent.startsWith("<")) { throw WxPayException.from(BaseWxPayResult.fromXML(responseContent, WxPayCommonResult.class)); } return responseContent; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy