123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162 |
- package com.tencent.business;
- import com.tencent.common.Configure;
- import com.tencent.common.Log;
- import com.tencent.common.Signature;
- import com.tencent.common.Util;
- import com.tencent.common.report.ReporterFactory;
- import com.tencent.common.report.protocol.ReportReqData;
- import com.tencent.common.report.service.ReportService;
- import com.tencent.protocol.refund_protocol.RefundReqData;
- import com.tencent.protocol.refund_protocol.RefundResData;
- import com.tencent.service.RefundService;
- import org.slf4j.LoggerFactory;
- /**
- * User: rizenguo
- * Date: 2014/12/2
- * Time: 17:51
- */
- public class RefundBusiness {
- public RefundBusiness() throws IllegalAccessException, ClassNotFoundException, InstantiationException {
- refundService = new RefundService();
- }
- public interface ResultListener{
- //API返回ReturnCode不合法,支付请求逻辑错误,请仔细检测传过去的每一个参数是否合法,或是看API能否被正常访问
- void onFailByReturnCodeError(RefundResData refundResData);
- //API返回ReturnCode为FAIL,支付API系统返回失败,请检测Post给API的数据是否规范合法
- void onFailByReturnCodeFail(RefundResData refundResData);
- //支付请求API返回的数据签名验证失败,有可能数据被篡改了
- void onFailBySignInvalid(RefundResData refundResData);
- //退款失败
- void onRefundFail(RefundResData refundResData);
- //退款成功
- void onRefundSuccess(RefundResData refundResData);
- }
- //打log用
- private static Log log = new Log(LoggerFactory.getLogger(RefundBusiness.class));
- //执行结果
- private static String result = "";
- private RefundService refundService;
- /**
- * 调用退款业务逻辑
- * @param refundReqData 这个数据对象里面包含了API要求提交的各种数据字段
- * @param resultListener 业务逻辑可能走到的结果分支,需要商户处理
- * @throws Exception
- */
- public void run(RefundReqData refundReqData,ResultListener resultListener) throws Exception {
- //--------------------------------------------------------------------
- //构造请求“退款API”所需要提交的数据
- //--------------------------------------------------------------------
- //API返回的数据
- String refundServiceResponseString;
- long costTimeStart = System.currentTimeMillis();
- log.i("退款查询API返回的数据如下:");
- refundServiceResponseString = refundService.request(refundReqData);
- long costTimeEnd = System.currentTimeMillis();
- long totalTimeCost = costTimeEnd - costTimeStart;
- log.i("api请求总耗时:" + totalTimeCost + "ms");
- log.i(refundServiceResponseString);
- //将从API返回的XML数据映射到Java对象
- RefundResData refundResData = (RefundResData) Util.getObjectFromXML(refundServiceResponseString, RefundResData.class);
- ReportReqData reportReqData = new ReportReqData(
- refundResData.getDevice_info(),
- Configure.REFUND_API,
- (int) (totalTimeCost),//本次请求耗时
- refundResData.getReturn_code(),
- refundResData.getReturn_msg(),
- refundResData.getResult_code(),
- refundResData.getErr_code(),
- refundResData.getErr_code_des(),
- refundResData.getOut_trade_no(),
- Configure.getIP()
- );
- long timeAfterReport;
- if(Configure.isUseThreadToDoReport()){
- ReporterFactory.getReporter(reportReqData).run();
- timeAfterReport = System.currentTimeMillis();
- Util.log("pay+report总耗时(异步方式上报):"+(timeAfterReport-costTimeStart) + "ms");
- }else{
- ReportService.request(reportReqData);
- timeAfterReport = System.currentTimeMillis();
- Util.log("pay+report总耗时(同步方式上报):"+(timeAfterReport-costTimeStart) + "ms");
- }
- if (refundResData == null || refundResData.getReturn_code() == null) {
- setResult("Case1:退款API请求逻辑错误,请仔细检测传过去的每一个参数是否合法,或是看API能否被正常访问",Log.LOG_TYPE_ERROR);
- resultListener.onFailByReturnCodeError(refundResData);
- return;
- }
- //Debug:查看数据是否正常被填充到scanPayResponseData这个对象中
- //Util.reflect(refundResData);
- if (refundResData.getReturn_code().equals("FAIL")) {
- ///注意:一般这里返回FAIL是出现系统级参数错误,请检测Post给API的数据是否规范合法
- setResult("Case2:退款API系统返回失败,请检测Post给API的数据是否规范合法",Log.LOG_TYPE_ERROR);
- resultListener.onFailByReturnCodeFail(refundResData);
- } else {
- log.i("退款API系统成功返回数据");
- //--------------------------------------------------------------------
- //收到API的返回数据的时候得先验证一下数据有没有被第三方篡改,确保安全
- //--------------------------------------------------------------------
- if (!Signature.checkIsSignValidFromResponseString(refundServiceResponseString)) {
- setResult("Case3:退款请求API返回的数据签名验证失败,有可能数据被篡改了",Log.LOG_TYPE_ERROR);
- resultListener.onFailBySignInvalid(refundResData);
- return;
- }
- if (refundResData.getResult_code().equals("FAIL")) {
- log.i("出错,错误码:" + refundResData.getErr_code() + " 错误信息:" + refundResData.getErr_code_des());
- setResult("Case4:【退款失败】",Log.LOG_TYPE_ERROR);
- //退款失败时再怎么延时查询退款状态都没有意义,这个时间建议要么再手动重试一次,依然失败的话请走投诉渠道进行投诉
- resultListener.onRefundFail(refundResData);
- } else {
- //退款成功
- setResult("Case5:【退款成功】",Log.LOG_TYPE_INFO);
- resultListener.onRefundSuccess(refundResData);
- }
- }
- }
- public void setRefundService(RefundService service) {
- refundService = service;
- }
- public String getResult() {
- return result;
- }
- public void setResult(String result) {
- RefundBusiness.result = result;
- }
- public void setResult(String result,String type){
- setResult(result);
- log.log(type,result);
- }
- }
|