|
|
|
@ -1,6 +1,13 @@ |
|
|
|
|
package com.v1.controller.business; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
import com.alibaba.fastjson.JSONObject; |
|
|
|
|
import com.hai.common.exception.ErrorCode; |
|
|
|
|
import com.hai.common.exception.ErrorHelp; |
|
|
|
|
import com.hai.common.exception.SysCode; |
|
|
|
|
import com.hai.common.utils.ResponseMsgUtil; |
|
|
|
|
import com.hai.entity.ApiMerchants; |
|
|
|
|
import com.hai.model.ResponseData; |
|
|
|
|
import com.hai.openApi.service.ApiBlxCouponService; |
|
|
|
|
import com.hai.openApi.service.ApiMobileRechargeProductService; |
|
|
|
|
import com.hai.order.type.OrderProductType; |
|
|
|
@ -40,60 +47,60 @@ public class BlxCouponController { |
|
|
|
|
private ApiIpAddressService apiIpAddressService; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// @RequestMapping(value = "/getCouponList", method = RequestMethod.POST)
|
|
|
|
|
// @ResponseBody
|
|
|
|
|
// @ApiOperation(value = "获取话费充值产品")
|
|
|
|
|
// public ResponseData getCouponList(@RequestBody JSONObject object , HttpServletRequest request ) {
|
|
|
|
|
// try {
|
|
|
|
|
//
|
|
|
|
|
// String ip = "";
|
|
|
|
|
// // 有的user可能使用代理,为处理用户使用代理的情况,使用x-forwarded-for
|
|
|
|
|
// if (request.getHeader("x-forwarded-for") == null) {
|
|
|
|
|
// ip = request.getRemoteAddr();
|
|
|
|
|
// } else {
|
|
|
|
|
// ip = request.getHeader("x-forwarded-for");
|
|
|
|
|
// }
|
|
|
|
|
//
|
|
|
|
|
// if (!apiIpAddressService.validationIpAddressLegal(object.getString("merchId") , ip)) {
|
|
|
|
|
// log.error("getRechargeProduct error!", "非法ip地址,请联系管理人员!");
|
|
|
|
|
// throw ErrorHelp.genException(SysCode.System, ErrorCode.IP_ERROR, "非法ip地址,请联系管理人员!");
|
|
|
|
|
// }
|
|
|
|
|
//
|
|
|
|
|
// if (
|
|
|
|
|
// StringUtils.isBlank(object.getString("merchId")) ||
|
|
|
|
|
// StringUtils.isBlank(object.getString("sign"))
|
|
|
|
|
// ) {
|
|
|
|
|
// log.error("getRechargeProduct error!", "请求参数校验失败!");
|
|
|
|
|
// throw ErrorHelp.genException(SysCode.System, ErrorCode.REQ_PARAMS_ERROR);
|
|
|
|
|
// }
|
|
|
|
|
//
|
|
|
|
|
// ApiMerchants apiMerchants = apiMerchantsService.findByMchId(object.getString("merchId"));
|
|
|
|
|
//
|
|
|
|
|
// if (apiMerchants == null) {
|
|
|
|
|
// log.error("getRechargeProduct error!", "帐户号错误!");
|
|
|
|
|
// throw ErrorHelp.genException(SysCode.System, ErrorCode.ACCOUNT_NOT_EXIST);
|
|
|
|
|
// }
|
|
|
|
|
//
|
|
|
|
|
// if (!secConfigService.isConfig(OrderProductType.PRODUCT_TYPE9.getApiCode(), object.getString("merchId"))) {
|
|
|
|
|
// log.error("getAllCities error!", "当前帐户无权限查询!");
|
|
|
|
|
// throw ErrorHelp.genException(SysCode.System, ErrorCode.MERCHANT_NOT_AUTHORIZED, "");
|
|
|
|
|
// }
|
|
|
|
|
//
|
|
|
|
|
// Map<String , Object> map = new HashMap<>();
|
|
|
|
|
// map.put("apiKey" , apiMerchants.getApiKey());
|
|
|
|
|
// map.put("merchId" , object.getString("merchId"));
|
|
|
|
|
//
|
|
|
|
|
// if (!secConfigService.isSignVerify(map , object.getString("sign"))) {
|
|
|
|
|
// log.error("getRechargeProduct error!", "签名校验失败!");
|
|
|
|
|
// throw ErrorHelp.genException(SysCode.System, ErrorCode.SIGN_VERIFY);
|
|
|
|
|
// }
|
|
|
|
|
//
|
|
|
|
|
// return ResponseMsgUtil.success(apiBlxCouponService.getBlxCouponList(object.getString("merchId")));
|
|
|
|
|
//
|
|
|
|
|
// } catch (Exception e) {
|
|
|
|
|
// log.error("HighOpenApiController --> getRechargeProduct() error!", e);
|
|
|
|
|
// return ResponseMsgUtil.exception(e);
|
|
|
|
|
// }
|
|
|
|
|
// }
|
|
|
|
|
@RequestMapping(value = "/getCouponList", method = RequestMethod.POST) |
|
|
|
|
@ResponseBody |
|
|
|
|
@ApiOperation(value = "获取停车券列表") |
|
|
|
|
public ResponseData getCouponList(@RequestBody JSONObject object , HttpServletRequest request ) { |
|
|
|
|
try { |
|
|
|
|
|
|
|
|
|
String ip = ""; |
|
|
|
|
// 有的user可能使用代理,为处理用户使用代理的情况,使用x-forwarded-for
|
|
|
|
|
if (request.getHeader("x-forwarded-for") == null) { |
|
|
|
|
ip = request.getRemoteAddr(); |
|
|
|
|
} else { |
|
|
|
|
ip = request.getHeader("x-forwarded-for"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
if (!apiIpAddressService.validationIpAddressLegal(object.getString("merchId") , ip)) { |
|
|
|
|
log.error("getRechargeProduct error!", "非法ip地址,请联系管理人员!"); |
|
|
|
|
throw ErrorHelp.genException(SysCode.System, ErrorCode.IP_ERROR, "非法ip地址,请联系管理人员!"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
if ( |
|
|
|
|
StringUtils.isBlank(object.getString("merchId")) || |
|
|
|
|
StringUtils.isBlank(object.getString("sign")) |
|
|
|
|
) { |
|
|
|
|
log.error("getRechargeProduct error!", "请求参数校验失败!"); |
|
|
|
|
throw ErrorHelp.genException(SysCode.System, ErrorCode.REQ_PARAMS_ERROR); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
ApiMerchants apiMerchants = apiMerchantsService.findByMchId(object.getString("merchId")); |
|
|
|
|
|
|
|
|
|
if (apiMerchants == null) { |
|
|
|
|
log.error("getRechargeProduct error!", "帐户号错误!"); |
|
|
|
|
throw ErrorHelp.genException(SysCode.System, ErrorCode.ACCOUNT_NOT_EXIST); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
if (!secConfigService.isConfig(OrderProductType.PRODUCT_TYPE13.getApiCode(), object.getString("merchId"))) { |
|
|
|
|
log.error("getAllCities error!", "当前帐户无权限查询!"); |
|
|
|
|
throw ErrorHelp.genException(SysCode.System, ErrorCode.MERCHANT_NOT_AUTHORIZED, ""); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
Map<String , Object> map = new HashMap<>(); |
|
|
|
|
map.put("apiKey" , apiMerchants.getApiKey()); |
|
|
|
|
map.put("merchId" , object.getString("merchId")); |
|
|
|
|
|
|
|
|
|
if (!secConfigService.isSignVerify(map , object.getString("sign"))) { |
|
|
|
|
log.error("getRechargeProduct error!", "签名校验失败!"); |
|
|
|
|
throw ErrorHelp.genException(SysCode.System, ErrorCode.SIGN_VERIFY); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
return ResponseMsgUtil.success(apiBlxCouponService.getBlxCouponList(new HashMap<>())); |
|
|
|
|
|
|
|
|
|
} catch (Exception e) { |
|
|
|
|
log.error("HighOpenApiController --> getRechargeProduct() error!", e); |
|
|
|
|
return ResponseMsgUtil.exception(e); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|