| | |
| | | package com.yami.trading.api.controller; |
| | | |
| | | import cn.hutool.core.util.ObjectUtil; |
| | | import cn.hutool.core.util.StrUtil; |
| | | import cn.hutool.http.HttpStatus; |
| | | import cn.hutool.json.JSONUtil; |
| | | import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper; |
| | | import com.fasterxml.jackson.databind.ObjectMapper; |
| | | import com.yami.trading.UD.Coin; |
| | | import com.yami.trading.UD.ResultMsg; |
| | | import com.yami.trading.UD.UdunClient; |
| | | import com.yami.trading.UD.UdunException; |
| | | import com.yami.trading.api.util.ServletUtil; |
| | | import com.yami.trading.bean.item.domain.Item; |
| | | import com.yami.trading.bean.model.User; |
| | |
| | | PasswordEncoder passwordEncoder; |
| | | @Autowired |
| | | private IdentifyingCodeTimeWindowService identifyingCodeTimeWindowService; |
| | | @Autowired |
| | | UdunClient udunClient; |
| | | |
| | | @Override |
| | | public void afterPropertiesSet() throws Exception { |
| | |
| | | public Result apply(HttpServletRequest request, String session_token, String safeword, |
| | | String amount, String from, String currency, |
| | | String channel, String language, String verifcode_type, String verifcode_value) { |
| | | Result resultObject=new Result(); |
| | | try { |
| | | String partyId = SecurityUtils.getUser().getUserId(); |
| | | String error = this.verif(amount); |
| | | if (!StringUtils.isNullOrEmpty(error)) { |
| | |
| | | withdraw.setCurrency(currency); |
| | | withdraw.setTx(""); |
| | | withdraw.setDeviceIp(ServletUtil.getIp(request)); |
| | | |
| | | |
| | | //获取商户支持币种 |
| | | List<Coin> coinList = udunClient.listSupportCoin(false); |
| | | String channelName = channel.replace("_", ""); |
| | | Coin coin = coinList.stream().filter(x -> x.getName().replace("-","").equals(channelName)).findFirst().orElse(null); |
| | | if (coin == null) { |
| | | throw new YamiShopBindException("不支持的提现币种"); |
| | | } |
| | | if (!udunClient.checkAddress(coin.getMainCoinType(), from)) { |
| | | throw new YamiShopBindException("提现地址异常"); |
| | | } |
| | | |
| | | // 保存 |
| | | this.withdrawService.saveApply(withdraw, channel, null, language); |
| | | return Result.succeed(null); |
| | | ResultMsg resultMsg = udunClient.withdraw(from, withdraw.getVolume(), coin.getMainCoinType(), |
| | | coin.getCoinType(), withdraw.getOrderNo(), null); |
| | | if (resultMsg.getCode() != HttpStatus.HTTP_OK) { |
| | | log.error("withdraw:{}", JSONUtil.toJsonStr(resultMsg)); |
| | | throw new UdunException(resultMsg.getCode(), resultMsg.getMessage()); |
| | | } |
| | | resultObject.setCode(0); |
| | | } catch (YamiShopBindException e) { // 1. 显式捕获业务异常,优先处理 |
| | | resultObject.setCode(1); |
| | | resultObject.setMsg("失败"); |
| | | log.error("业务异常: {}", e.getMessage()); |
| | | throw e; |
| | | } catch (UdunException e) { |
| | | resultObject.setCode(1); |
| | | resultObject.setMsg("失败"); |
| | | log.error("Withdraw ud error:{}", e.getMessage()); |
| | | throw e; |
| | | } catch (Throwable t) { |
| | | resultObject.setCode(1); |
| | | resultObject.setMsg("失败"); |
| | | log.error("error: {}", t.getMessage()); |
| | | throw new RuntimeException(t); |
| | | } |
| | | return resultObject; |
| | | } |
| | | |
| | | @PostMapping("withdrawCallback.action") |
| | | public ResultMsg withdrawCallback(HttpServletRequest request){ |
| | | String timestamp = request.getParameter("timestamp"); |
| | | String nonce = request.getParameter("nonce"); |
| | | String sign = request.getParameter("sign"); |
| | | String body = request.getParameter("body"); |
| | | |
| | | ResultMsg resultMsg = new ResultMsg(); |
| | | try{ |
| | | log.info("===withdrawCallback===:{}", body); |
| | | boolean flag = udunClient.checkSign(timestamp, nonce, body, sign); |
| | | log.info("===withdrawCallback===sign:{}", flag); |
| | | |
| | | if (!flag){ |
| | | resultMsg.setCode(406); |
| | | resultMsg.setMessage("提现回调验签失败"); |
| | | return resultMsg; |
| | | } |
| | | ObjectMapper objectMapper = new ObjectMapper(); |
| | | Map<String, Object> map = objectMapper.readValue(body, HashMap.class); |
| | | String address = map.get("address").toString(); |
| | | String order_no = map.get("businessId").toString(); |
| | | |
| | | Withdraw withdraw = withdrawService.getOne(new LambdaQueryWrapper<>(Withdraw.class) |
| | | .eq(Withdraw::getOrderNo, order_no).last(" limit 1 ")); |
| | | if(ObjectUtil.isEmpty(withdraw) && withdraw.getStatus() != 0 && !withdraw.getAddress().equals(address)){ |
| | | log.info("withdraw failed:{}", withdraw); |
| | | resultMsg.setCode(200); |
| | | return resultMsg; |
| | | } |
| | | Integer status = Integer.valueOf(map.get("status").toString()); |
| | | if (status == 3) { //交易成功 |
| | | withdrawService.examineOk(withdraw.getUuid(), null); |
| | | } else if(status == 2) { //驳回 |
| | | withdrawService.reject(withdraw.getUuid(), "订单失败:" + status, "withdrawCallback"); |
| | | } |
| | | resultMsg.setCode(200); |
| | | }catch (Exception e){ |
| | | resultMsg.setCode(500); |
| | | resultMsg.setMessage("回调处理失败"); |
| | | } |
| | | return resultMsg; |
| | | } |
| | | |
| | | /** |