com.fastchar.pay.action.FinalWxPayAction Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fastchar-pay Show documentation
Show all versions of fastchar-pay Show documentation
FastChar-Pay is a FastChar plugin.
The newest version!
package com.fastchar.pay.action;
import com.fastchar.core.FastAction;
import com.fastchar.core.FastChar;
import com.fastchar.core.FastHandler;
import com.fastchar.pay.entity.FinalPayOrderEntity;
import com.fastchar.pay.interfaces.IFastPayListener;
import com.fastchar.pay.interfaces.IFastPayProvider;
import com.fastchar.pay.wx.FastWxPayConfig;
import com.fastchar.pay.wx.FastWxPayUtils;
import com.fastchar.utils.FastBooleanUtils;
import com.fastchar.utils.FastStringUtils;
import java.io.IOException;
import java.util.HashMap;
import java.util.Map;
public class FinalWxPayAction extends FastAction {
@Override
protected String getRoute() {
return "/pay/wx";
}
/**
* 微信回调
*/
public void callback() throws IOException {
FinalPayOrderEntity.PayOrderTypeEnum type = FinalPayOrderEntity.PayOrderTypeEnum.微信_APP;
if (getUrlParams().size() > 0) {
String urlParam = FastStringUtils.defaultValue(getUrlParam(0), "");
if (urlParam.equalsIgnoreCase("native")) {
type = FinalPayOrderEntity.PayOrderTypeEnum.微信_Native;
} else if (urlParam.equalsIgnoreCase("js")) {
type = FinalPayOrderEntity.PayOrderTypeEnum.微信_JS;
}
}
FastWxPayConfig wxPayConfig = null;
IFastPayProvider iFastPayProvider = FastChar.getOverrides().singleInstance(false, IFastPayProvider.class);
if (iFastPayProvider != null) {
wxPayConfig = iFastPayProvider.getPayConfig(new FastHandler(), type, this, true);
}
if (wxPayConfig == null) {
wxPayConfig = FastChar.getConfig(FastWxPayConfig.class);
}
Map callBack = FastWxPayUtils.getCallBack(getRequest());
FastHandler handler = FastWxPayUtils.verifyCallBack(wxPayConfig, callBack);
if (handler.getCode() == 0) {
String out_trade_no = FastStringUtils.defaultValue(callBack.get("out_trade_no"), "none");
double returnMoney = FastWxPayUtils.getReturnMoney(callBack);
FinalPayOrderEntity details = FinalPayOrderEntity.dao().getDetails(out_trade_no);
if (details != null && details.getInt("payOrderBack") == FinalPayOrderEntity.PayOrderBackEnum.未回调.ordinal()) {
details.set("payOrderMoney", returnMoney);
if (FastWxPayUtils.isTradeSuccess(callBack)) {
details.set("payOrderState", FinalPayOrderEntity.PayOrderStateEnum.已支付.ordinal());
} else {
details.set("payOrderState", FinalPayOrderEntity.PayOrderStateEnum.已失败.ordinal());
}
details.set("payOrderBack", FinalPayOrderEntity.PayOrderBackEnum.已回调.ordinal());
details.update();
IFastPayListener iFastPayListener = FastChar.getOverrides().singleInstance(false, IFastPayListener.class);
if (iFastPayListener != null) {
iFastPayListener.onPayCallBack(details);
}
}
responseText("success");
}
responseText(500, handler.getError());
}
/**
* 发起微信APP支付
* 参数:
* userId 用户Id【必填】
* orderPrefix 订单前缀【必填,请咨询后台开发人员】 生成订单的时候使用前缀,例如:BUY20191235123123412,前缀:BUY
* orderTitle 订单标题【必填】
* orderMoney 订单金额(元)【必填】{double}
* orderData 订单附带数据【请咨询后台开发人员】
* #return
* 返回data对象的json属性说明:
* wx:发起微信支付的参数,直接传入微信sdk中即可!
* order:支付订单的信息
*/
public void app() throws Exception {
setLogResponse(true);
FastWxPayConfig wxPayConfig = null;
IFastPayProvider iFastPayProvider = FastChar.getOverrides().singleInstance(false, IFastPayProvider.class);
if (iFastPayProvider != null) {
FastHandler handler = new FastHandler();
wxPayConfig = iFastPayProvider.getPayConfig(handler,FinalPayOrderEntity.PayOrderTypeEnum.微信_APP, this,false);
if (handler.getCode() != 0) {
responseJson(-1, handler.getError());
}
}
if (wxPayConfig == null) {
wxPayConfig = FastChar.getConfig(FastWxPayConfig.class);
}
String orderPrefix = getParam("orderPrefix", true).toUpperCase();
String orderTitle = getParam("orderTitle", true);
double orderMoney = getParamToDouble("orderMoney", true);
if (orderMoney <= 0.01) {
responseJson(-1, "订单金额不得小于0.01元!");
}
FinalPayOrderEntity payOrderEntity = new FinalPayOrderEntity();
String payOrderCode = FastStringUtils.buildOnlyCode(orderPrefix.trim());
payOrderEntity.set("payOrderCode", payOrderCode);
payOrderEntity.set("payOrderTitle", orderTitle);
payOrderEntity.set("payOrderMoney", orderMoney);
payOrderEntity.set("payOrderType", FinalPayOrderEntity.PayOrderTypeEnum.微信_APP.ordinal());
payOrderEntity.set("payOrderData", getParam("orderData").trim());
payOrderEntity.setAll(getParamToMap());
if (FastStringUtils.isEmpty(wxPayConfig.getNotifyUrl())) {
wxPayConfig.setNotifyUrl(getProjectHost() + "pay/wx/callback/app/" + payOrderEntity.getPayOrderCode());
}
IFastPayListener iFastPayListener = FastChar.getOverrides().singleInstance(false, IFastPayListener.class);
if (iFastPayListener != null) {
FastHandler handler = new FastHandler();
iFastPayListener.onBeforePay(payOrderEntity, handler);
if (handler.getCode() != 0) {
responseJson(-1, handler.getError());
}
}
Map appPay = FastWxPayUtils.requestAppPay(wxPayConfig, payOrderCode, orderTitle, orderTitle, orderMoney, getRemoteIp());
if (appPay != null) {
if (FastBooleanUtils.formatToBoolean(appPay.get("success"))) {
if (payOrderEntity.save()) {
Map data = new HashMap<>();
data.put("wx", appPay);
data.put("order", payOrderEntity);
responseJson(0, "请求成功!", data);
} else {
responseJson(-1, payOrderEntity.getError());
}
} else {
responseJson(-1, "微信APP支付调用失败,服务器端错误:" + appPay.get("msg"));
}
}
responseJson(-1, "操作失败!请稍后重试!");
}
/**
* 发起微信公众号或者小程序支付
* 参数:
* userId 用户Id【必填】
* openid 微信OpenId【必填】
* orderPrefix 订单前缀【必填,请咨询后台开发人员】 生成订单的时候使用前缀,例如:BUY20191235123123412,前缀:BUY
* orderTitle 订单标题【必填】
* orderMoney 订单金额(元)【必填】{double}
* orderData 订单附带数据【请咨询后台开发人员】
* #return
* 返回data对象的json属性说明:
* wx:发起微信支付的参数,直接传入微信sdk中即可!
* order:支付订单的信息
*/
public void js() throws Exception {
setLogResponse(true);
FastWxPayConfig wxPayConfig = null;
IFastPayProvider iFastPayProvider = FastChar.getOverrides().singleInstance(false, IFastPayProvider.class);
if (iFastPayProvider != null) {
FastHandler handler = new FastHandler();
wxPayConfig = iFastPayProvider.getPayConfig(handler,FinalPayOrderEntity.PayOrderTypeEnum.微信_JS, this,false);
if (handler.getCode() != 0) {
responseJson(-1, handler.getError());
}
}
if (wxPayConfig == null) {
wxPayConfig = FastChar.getConfig(FastWxPayConfig.class);
}
String orderPrefix = getParam("orderPrefix", true).toUpperCase();
String orderTitle = getParam("orderTitle", true);
String openid = getParam("openid", true);
double orderMoney = getParamToDouble("orderMoney", true);
if (orderMoney <= 0.01) {
responseJson(-1, "订单金额不得小于0.01元!");
}
FinalPayOrderEntity payOrderEntity = new FinalPayOrderEntity();
String payOrderCode = FastStringUtils.buildOnlyCode(orderPrefix.trim());
payOrderEntity.set("payOrderCode", payOrderCode);
payOrderEntity.set("payOrderTitle", orderTitle);
payOrderEntity.set("payOrderMoney", orderMoney);
payOrderEntity.set("payOrderType", FinalPayOrderEntity.PayOrderTypeEnum.微信_JS.ordinal());
payOrderEntity.set("payOrderData", getParam("orderData").trim());
payOrderEntity.setAll(getParamToMap());
if (FastStringUtils.isEmpty(wxPayConfig.getNotifyUrl())) {
wxPayConfig.setNotifyUrl(getProjectHost() + "pay/wx/callback/js/" + payOrderEntity.getPayOrderCode());
}
IFastPayListener iFastPayListener = FastChar.getOverrides().singleInstance(false, IFastPayListener.class);
if (iFastPayListener != null) {
FastHandler handler = new FastHandler();
iFastPayListener.onBeforePay(payOrderEntity, handler);
if (handler.getCode() != 0) {
responseJson(-1, handler.getError());
}
}
Map appPay = FastWxPayUtils.requestJSAPIPay(wxPayConfig, openid, payOrderCode, orderTitle, orderTitle, orderMoney, getRemoteIp());
if (appPay != null) {
if (FastBooleanUtils.formatToBoolean(appPay.get("success"))) {
if (payOrderEntity.save()) {
Map data = new HashMap<>();
data.put("wx", appPay);
data.put("order", payOrderEntity);
responseJson(0, "请求成功!", data);
} else {
responseJson(-1, payOrderEntity.getError());
}
} else {
responseJson(-1, "微信JS支付调用失败,服务器端错误:" + appPay.get("msg"));
}
}
responseJson(-1, "操作失败!请稍后重试!");
}
/**
* 发起微信电脑网站支付,扫商户二维码支付
* 参数:
* userId 用户Id【必填】
* orderPrefix 订单前缀【必填,请咨询后台开发人员】 生成订单的时候使用前缀,例如:BUY20191235123123412,前缀:BUY
* orderTitle 订单标题【必填】
* orderMoney 订单金额(元)【必填】{double}
* orderData 订单附带数据【请咨询后台开发人员】
* #return
* 返回data对象的json属性说明:
* wx:发起微信支付参数集合,其中code为生成二维码的内容
* order:支付订单的信息
*/
public void page() throws Exception {
setLogResponse(true);
FastWxPayConfig wxPayConfig = null;
IFastPayProvider iFastPayProvider = FastChar.getOverrides().singleInstance(false, IFastPayProvider.class);
if (iFastPayProvider != null) {
FastHandler handler = new FastHandler();
wxPayConfig = iFastPayProvider.getPayConfig(handler,FinalPayOrderEntity.PayOrderTypeEnum.微信_Native, this,false);
if (handler.getCode() != 0) {
responseJson(-1, handler.getError());
}
}
if (wxPayConfig == null) {
wxPayConfig = FastChar.getConfig(FastWxPayConfig.class);
}
String orderPrefix = getParam("orderPrefix", true).toUpperCase();
String orderTitle = getParam("orderTitle", true);
double orderMoney = getParamToDouble("orderMoney", true);
if (orderMoney <= 0.01) {
responseJson(-1, "订单金额不得小于0.01元!");
}
FinalPayOrderEntity payOrderEntity = new FinalPayOrderEntity();
String payOrderCode = FastStringUtils.buildOnlyCode(orderPrefix.trim());
payOrderEntity.set("payOrderCode", payOrderCode);
payOrderEntity.set("payOrderTitle", orderTitle);
payOrderEntity.set("payOrderMoney", orderMoney);
payOrderEntity.set("payOrderType", FinalPayOrderEntity.PayOrderTypeEnum.微信_Native.ordinal());
payOrderEntity.set("payOrderData", getParam("orderData").trim());
payOrderEntity.setAll(getParamToMap());
if (FastStringUtils.isEmpty(wxPayConfig.getNotifyUrl())) {
wxPayConfig.setNotifyUrl(getProjectHost() + "pay/wx/callback/native/" + payOrderEntity.getPayOrderCode());
}
IFastPayListener iFastPayListener = FastChar.getOverrides().singleInstance(false, IFastPayListener.class);
if (iFastPayListener != null) {
FastHandler handler = new FastHandler();
iFastPayListener.onBeforePay(payOrderEntity, handler);
if (handler.getCode() != 0) {
responseJson(-1, handler.getError());
}
}
Map appPay = FastWxPayUtils.requestNativePay(wxPayConfig, payOrderCode, orderTitle, orderTitle, orderMoney, getRemoteIp());
if (appPay != null) {
if (FastBooleanUtils.formatToBoolean(appPay.get("success"))) {
if (payOrderEntity.save()) {
Map data = new HashMap<>();
data.put("wx", appPay);
data.put("order", payOrderEntity);
responseJson(0, "请求成功!", data);
} else {
responseJson(-1, payOrderEntity.getError());
}
} else {
responseJson(-1, "微信APP支付调用失败,服务器端错误:" + appPay.get("msg"));
}
}
responseJson(-1, "操作失败!请稍后重试!");
}
}