| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260 |
- package com.izouma.nineth.service;
- import com.alibaba.fastjson.JSON;
- import com.alibaba.fastjson.JSONObject;
- import com.alipay.api.AlipayClient;
- import com.alipay.api.request.AlipayTradeWapPayRequest;
- import com.github.binarywang.wxpay.bean.order.WxPayMpOrderResult;
- import com.github.binarywang.wxpay.bean.order.WxPayMwebOrderResult;
- import com.github.binarywang.wxpay.bean.request.WxPayUnifiedOrderRequest;
- import com.github.binarywang.wxpay.constant.WxPayConstants;
- import com.github.binarywang.wxpay.exception.WxPayException;
- import com.github.binarywang.wxpay.service.WxPayService;
- import com.huifu.adapay.core.exception.BaseAdaPayException;
- import com.huifu.adapay.model.Payment;
- import com.izouma.nineth.config.AdapayProperties;
- import com.izouma.nineth.config.AlipayProperties;
- import com.izouma.nineth.config.GeneralProperties;
- import com.izouma.nineth.config.WxPayProperties;
- import com.izouma.nineth.domain.Asset;
- import com.izouma.nineth.domain.GiftOrder;
- import com.izouma.nineth.domain.Order;
- import com.izouma.nineth.domain.User;
- import com.izouma.nineth.dto.PageQuery;
- import com.izouma.nineth.enums.AssetStatus;
- import com.izouma.nineth.enums.OrderStatus;
- import com.izouma.nineth.enums.PayMethod;
- import com.izouma.nineth.exception.BusinessException;
- import com.izouma.nineth.repo.AssetRepo;
- import com.izouma.nineth.repo.GiftOrderRepo;
- import com.izouma.nineth.repo.UserRepo;
- import com.izouma.nineth.utils.JpaUtils;
- import com.izouma.nineth.utils.SnowflakeIdWorker;
- import lombok.AllArgsConstructor;
- import org.apache.commons.codec.EncoderException;
- import org.apache.commons.codec.net.URLCodec;
- import org.apache.commons.lang3.StringUtils;
- import org.springframework.core.env.Environment;
- import org.springframework.data.domain.Page;
- import org.springframework.scheduling.annotation.Scheduled;
- import org.springframework.stereotype.Service;
- import org.springframework.ui.Model;
- import javax.transaction.Transactional;
- import java.math.BigDecimal;
- import java.math.RoundingMode;
- import java.time.LocalDateTime;
- import java.time.format.DateTimeFormatter;
- import java.util.Arrays;
- import java.util.HashMap;
- import java.util.List;
- import java.util.Map;
- @Service
- @AllArgsConstructor
- public class GiftOrderService {
- private AssetRepo assetRepo;
- private UserRepo userRepo;
- private SysConfigService sysConfigService;
- private GiftOrderRepo giftOrderRepo;
- private AlipayProperties alipayProperties;
- private AlipayClient alipayClient;
- private WxPayProperties wxPayProperties;
- private WxPayService wxPayService;
- private Environment env;
- private AssetService assetService;
- private AdapayProperties adapayProperties;
- private GeneralProperties generalProperties;
- @Transactional
- public GiftOrder gift(Long userId, Long assetId, Long toUserId) {
- Asset asset = assetRepo.findById(assetId).orElseThrow(new BusinessException("资产不存在"));
- if (!asset.getUserId().equals(userId)) {
- throw new BusinessException("无权限");
- }
- if (toUserId.equals(userId)) {
- throw new BusinessException("不能送给自己");
- }
- if (!(asset.getStatus() == AssetStatus.NORMAL)) {
- throw new BusinessException("当前状态不可转赠");
- }
- if (asset.isConsignment()) {
- throw new BusinessException("请先取消寄售");
- }
- if (asset.isPublicShow()) {
- assetService.cancelPublic(asset);
- }
- asset.setStatus(AssetStatus.GIFTING);
- assetRepo.save(asset);
- GiftOrder giftOrder = GiftOrder.builder()
- .userId(userId)
- .assetId(assetId)
- .toUserId(toUserId)
- .gasPrice(sysConfigService.getBigDecimal("gas_fee"))
- .status(OrderStatus.NOT_PAID)
- .build();
- return giftOrderRepo.save(giftOrder);
- }
- @Transactional
- public void giftNotify(Long orderId, PayMethod payMethod, String transactionId) {
- GiftOrder giftOrder = giftOrderRepo.findById(orderId).orElseThrow(new BusinessException("订单不存在"));
- Asset asset = assetRepo.findById(giftOrder.getAssetId()).orElseThrow(new BusinessException("资产不存在"));
- User newOwner = userRepo.findById(giftOrder.getToUserId()).orElseThrow(new BusinessException("用户不存在"));
- giftOrder.setPayMethod(payMethod);
- giftOrder.setStatus(OrderStatus.FINISH);
- giftOrder.setTransactionId(transactionId);
- giftOrder.setPayTime(LocalDateTime.now());
- giftOrder.setPayMethod(PayMethod.ALIPAY);
- assetService.transfer(asset, asset.getPrice(), newOwner, "转赠", null);
- }
- public void payOrderAlipay(Long id, Model model) {
- try {
- GiftOrder order = giftOrderRepo.findById(id).orElseThrow(new BusinessException("订单不存在"));
- Asset asset = assetRepo.findById(order.getAssetId()).orElseThrow(new BusinessException("藏品不存在"));
- if (order.getStatus() != OrderStatus.NOT_PAID) {
- throw new BusinessException("订单状态错误");
- }
- JSONObject bizContent = new JSONObject();
- bizContent.put("notifyUrl", alipayProperties.getNotifyUrl());
- bizContent.put("returnUrl", alipayProperties.getReturnUrl());
- bizContent.put("out_trade_no", String.valueOf(new SnowflakeIdWorker(0, 0).nextId()));
- bizContent.put("total_amount", order.getGasPrice().stripTrailingZeros().toPlainString());
- bizContent.put("disable_pay_channels", "pcredit,creditCard");
- if (Arrays.stream(env.getActiveProfiles()).noneMatch(s -> s.equals("prod"))) {
- // 测试环境设为1分
- bizContent.put("total_amount", "0.01");
- }
- bizContent.put("subject", "转赠GAS费");
- bizContent.put("product_code", "QUICK_WAP_PAY");
- JSONObject body = new JSONObject();
- body.put("action", "payGiftOrder");
- body.put("userId", order.getUserId());
- body.put("orderId", order.getId());
- bizContent.put("body", body.toJSONString());
- AlipayTradeWapPayRequest alipayRequest = new AlipayTradeWapPayRequest();
- if (asset.getProjectId() == 1) {
- alipayRequest.setReturnUrl(generalProperties.getHost() + "/cosmos/home");
- } else {
- alipayRequest.setReturnUrl(generalProperties.getHost() + "/9th/home");
- }
- alipayRequest.setReturnUrl(generalProperties.getHost() + "/");
- alipayRequest.setNotifyUrl(alipayProperties.getNotifyUrl());
- alipayRequest.setBizContent(JSON.toJSONString(bizContent));
- String form = alipayClient.pageExecute(alipayRequest).getBody();
- model.addAttribute("form", form);
- } catch (BusinessException err) {
- model.addAttribute("errMsg", err.getError());
- } catch (Exception e) {
- model.addAttribute("errMsg", e.getMessage());
- }
- }
- public Object payOrderWeixin(Long id, String tradeType, String openId) throws WxPayException, EncoderException {
- GiftOrder order = giftOrderRepo.findById(id).orElseThrow(new BusinessException("订单不存在"));
- if (order.getStatus() != OrderStatus.NOT_PAID) {
- throw new BusinessException("订单状态错误");
- }
- WxPayUnifiedOrderRequest request = new WxPayUnifiedOrderRequest();
- request.setBody("转赠GAS费");
- request.setOutTradeNo(String.valueOf(new SnowflakeIdWorker(1, 1).nextId()));
- request.setTotalFee(order.getGasPrice().multiply(BigDecimal.valueOf(100)).intValue());
- if (Arrays.stream(env.getActiveProfiles()).noneMatch(s -> s.equals("prod"))) {
- // 测试环境设为1分
- // request.setTotalFee(1);
- }
- request.setSpbillCreateIp("180.102.110.170");
- request.setNotifyUrl(wxPayProperties.getNotifyUrl());
- request.setTradeType(tradeType);
- request.setOpenid(openId);
- request.setSignType("MD5");
- JSONObject body = new JSONObject();
- body.put("action", "payGiftOrder");
- body.put("userId", order.getUserId());
- body.put("orderId", order.getId());
- request.setAttach(body.toJSONString());
- if (WxPayConstants.TradeType.MWEB.equals(tradeType)) {
- WxPayMwebOrderResult result = wxPayService.createOrder(request);
- return result.getMwebUrl() + "&redirect_url=" + new URLCodec().encode(wxPayProperties.getReturnUrl());
- } else if (WxPayConstants.TradeType.JSAPI.equals(tradeType)) {
- return wxPayService.<WxPayMpOrderResult>createOrder(request);
- }
- throw new BusinessException("不支持此付款方式");
- }
- public Object payAdapay(Long id, String payChannel, String openId) throws BaseAdaPayException {
- GiftOrder order = giftOrderRepo.findById(id).orElseThrow(new BusinessException("订单不存在"));
- if (order.getStatus() != OrderStatus.NOT_PAID) {
- throw new BusinessException("订单状态错误");
- }
- Map<String, Object> paymentParams = new HashMap<>();
- paymentParams.put("order_no", String.valueOf(new SnowflakeIdWorker(0, 0).nextId()));
- paymentParams.put("pay_amt", order.getGasPrice().setScale(2, RoundingMode.HALF_UP).toPlainString());
- paymentParams.put("app_id", adapayProperties.getAppId());
- paymentParams.put("pay_channel", payChannel);
- paymentParams.put("goods_title", "转赠GAS费");
- paymentParams.put("time_expire", DateTimeFormatter.ofPattern("yyyyMMddHHmmss")
- .format(LocalDateTime.now().plusMinutes(5)));
- paymentParams.put("notify_url", adapayProperties.getNotifyUrl() + "/giftOrder/" + order.getId());
- if ("wx_pub".equals(payChannel) || "wx_lite".equals(payChannel)) {
- if (StringUtils.isBlank(openId)) {
- throw new BusinessException("缺少openId");
- }
- Map<String, Object> expend = new HashMap<>();
- expend.put("open_id", openId);
- expend.put("limit_pay", "1");
- if ("wx_lite".equals(payChannel)) {
- expend.put("wx_app_id", adapayProperties.getWxAppId());
- }
- paymentParams.put("expend", expend);
- }
- Map<String, Object> response = Payment.create(paymentParams);
- return response;
- }
- @Scheduled(fixedRate = 60000)
- public void batchCancel() {
- List<GiftOrder> orders = giftOrderRepo.findByStatusAndCreatedAtBeforeAndDelFalse(OrderStatus.NOT_PAID,
- LocalDateTime.now().minusMinutes(5));
- orders.forEach(o -> {
- try {
- cancel(o);
- } catch (Exception ignored) {
- }
- });
- }
- public void cancel(GiftOrder order) {
- if (order.getStatus() != OrderStatus.NOT_PAID) {
- throw new BusinessException("已支付订单无法取消");
- }
- Asset asset = assetRepo.findById(order.getAssetId()).orElseThrow(new BusinessException("藏品不存在"));
- asset.setStatus(AssetStatus.NORMAL);
- assetRepo.save(asset);
- order.setStatus(OrderStatus.CANCELLED);
- order.setCancelTime(LocalDateTime.now());
- giftOrderRepo.save(order);
- }
- public Page<GiftOrder> all(PageQuery pageQuery) {
- return giftOrderRepo.findAll(JpaUtils.toSpecification(pageQuery, GiftOrder.class), JpaUtils.toPageRequest(pageQuery));
- }
- }
|