pay.js 9.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252
  1. 'use strict';
  2. const { CrudService } = require('naf-framework-mongoose-free/lib/service');
  3. const { BusinessError, ErrorCode } = require('naf-core').Error;
  4. const _ = require('lodash');
  5. const assert = require('assert');
  6. const Transaction = require('mongoose-transactions');
  7. const moment = require('moment');
  8. //
  9. class PayService extends CrudService {
  10. constructor(ctx) {
  11. super(ctx, 'pay');
  12. this.httpUtil = this.ctx.service.util.httpUtil;
  13. this.appConfig = 'pointApp';
  14. this.orderModel = this.ctx.model.Trade.Order;
  15. this.dictDataModel = this.ctx.model.Dev.DictData;
  16. this.payOrderReturnUrl = this.app.config.payReturn.order;
  17. this.wxDomain = _.get(this.app, 'config.httpPrefix.wechat');
  18. this.tran = new Transaction();
  19. }
  20. /**
  21. * 去支付订单
  22. * 1.有支付方式之分; 微信/支付宝
  23. * 2.根据不同方式去请求
  24. * @param {Object} body 请求体
  25. * @param body.order_id 订单id
  26. * @param body.type 支付方式
  27. */
  28. async toPayOrder({ order_id, type = '0' }) {
  29. const payWay = await this.dictDataModel.findOne({ value: type, status: '0' });
  30. if (!payWay) throw new BusinessError(ErrorCode.DATA_INVALID, '该支付方式暂时无法使用');
  31. const order = await this.orderModel.findById(order_id);
  32. if (!order) throw new BusinessError(ErrorCode.DATA_NOT_EXIST, '未找到订单数据');
  33. const { no, pay, stauts } = order;
  34. let rePayTimes = 0;
  35. if (stauts === '1') throw new BusinessError(ErrorCode.DATA_EXISTED, '订单已支付,无需重复支付');
  36. // 检查是否有支付信息如果有的话,支付方式是否一致
  37. if (_.isObject(pay) && Object.keys(pay).length > 0) {
  38. const pay_no = _.get(pay, 'pay_no');
  39. if (pay_no) {
  40. // 有支付订单.则先查支付订单是否可以继续支付
  41. // 1.如果有支付信息及支付单号,直接关闭.重开
  42. const arr = pay_no.split('-');
  43. // 获取重支付的次数,重支付次数+1
  44. const last = _.last(arr);
  45. rePayTimes = this.ctx.plus(last, 1);
  46. }
  47. await this.closeOrder(pay);
  48. }
  49. // 没有支付信息(要是有支付信息,上面直接return了.漏下来的都是没有的处理方案)
  50. const str = this.ctx.service.util.trade.createNonceStr();
  51. const arr = no.split('-');
  52. // 订单中pay的信息
  53. const payObject = { pay_type: type, pay_no: `${_.last(arr)}-${str}-${rePayTimes}` };
  54. const totalMoney = this.getOrderNeedPay(order);
  55. payObject.pay_money = totalMoney;
  56. let payData;
  57. let res;
  58. // 找到当前用户的openid:这里涉及问题是: 如果自己下单,自己付款.那没有问题;
  59. // 如果是自己下单.如果使用账号密码登录再付款.还用下单的人找到的openid就不能在这个微信号上进行支付了;
  60. // 所以此处是需要用当前用户的openid进行支付,如果之前生成单子.还需要检查当前用户的openid和之前的openid是否一致
  61. // 如果不一致.则需要将之前的订单关闭,重新生成
  62. // 请求微信支付接口的数据
  63. if (type === '0') {
  64. payData = this.getWxPayData(order_id, totalMoney, payObject.pay_no);
  65. payObject.openid = payData.openid;
  66. }
  67. try {
  68. this.tran.update('Order', order_id, { pay: payObject });
  69. await this.tran.run();
  70. } catch (error) {
  71. await this.tran.rollback();
  72. console.error(error);
  73. }
  74. if (type === '0') {
  75. res = await this.create(payData);
  76. res = this.preparToUniAppWxPay(res);
  77. }
  78. return res;
  79. }
  80. /**
  81. * 支付订单回调函数
  82. * @param {Object} body 请求地址参数
  83. * @param body.result 支付回调结果
  84. */
  85. async callBackPayOrder({ result }) {
  86. const { out_trade_no, payer } = result;
  87. // TODO: 没有需要报警,没有订单号就出问题了
  88. if (!out_trade_no) {
  89. console.error('没有支付订单号');
  90. return;
  91. }
  92. const openid = _.get(payer, 'openid');
  93. const query = { 'pay.pay_no': new RegExp(`${out_trade_no}`), 'pay.openid': openid };
  94. let orderData = await this.orderModel.findOne(query);
  95. // TODO: 没找到订单也是有问题的,需要报警
  96. if (!orderData) {
  97. console.error('没有找到订单');
  98. return;
  99. }
  100. orderData = JSON.parse(JSON.stringify(orderData));
  101. const payData = _.get(orderData, 'pay', {});
  102. // 支付结果全都存起来
  103. payData.result = result;
  104. // 支付时间
  105. payData.pay_time = moment().format('YYYY-MM-DD HH:mm:ss');
  106. // 修改状态
  107. try {
  108. this.tran.update('Order', orderData._id, { pay: payData, status: '1' });
  109. await this.tran.run();
  110. // 拆订单
  111. await this.ctx.service.trade.orderDetail.create({ order_id: orderData._id }, this.tran);
  112. // 加积分
  113. await this.ctx.service.user.point.afterPayOrder({ order_id: orderData._id, openid }, this.tran);
  114. await this.tran.run();
  115. } catch (error) {
  116. console.error(error);
  117. await this.tran.rollback();
  118. throw new BusinessError(ErrorCode.SERVICE_FAULT, '支付回调:修改失败');
  119. } finally {
  120. // 清空事务
  121. this.tran.clean();
  122. }
  123. }
  124. /**
  125. * 关闭订单
  126. * @param {Object} pay 支付信息
  127. */
  128. async closeOrder(pay) {
  129. const { pay_type, pay_no } = pay;
  130. if (pay_type === '0') {
  131. // 微信支付方式
  132. const params = { config: this.appConfig, order_no: pay_no };
  133. const url = `${this.wxDomain}/pay/closeOrder`;
  134. const res = await this.httpUtil.cpost(url, params);
  135. return res || 'ok';
  136. }
  137. }
  138. /**
  139. * 微信支付:整理出uniapp需要的数据
  140. * @param {Object} data 微信接口的数据
  141. */
  142. preparToUniAppWxPay(data) {
  143. const obj = {
  144. // appid: _.get(data, 'appid'),
  145. // prepayid: _.get(data, 'prepay_id'),
  146. nonceStr: _.get(data, 'nonceStr'),
  147. package: `prepay_id=${_.get(data, 'prepay_id')}`,
  148. signType: _.get(data, 'signType'),
  149. timeStamp: _.get(data, 'timestamp'),
  150. paySign: _.get(data, 'paySign'),
  151. };
  152. return obj;
  153. }
  154. /**
  155. * 组织微信支付数据
  156. * @param {String} order_id 订单号
  157. * @param {Number} money 支付金额
  158. * @param {String} no 支付订单号
  159. */
  160. getWxPayData(order_id, money, no) {
  161. const openid = _.get(this.ctx, 'user.openid');
  162. const data = { config: this.appConfig, money, openid, order_no: no, desc: '购物', notice_url: this.payOrderReturnUrl(order_id) };
  163. return data;
  164. }
  165. /**
  166. * 计算订单需支付的金额
  167. * @param {Object} order 要支付的订单数据
  168. */
  169. getOrderNeedPay(order) {
  170. let total = 0;
  171. const { total_detail = {} } = order;
  172. const { discount_detail, ...others } = total_detail;
  173. for (const key in others) {
  174. total = this.ctx.plus(total_detail[key], total);
  175. }
  176. // 优惠券部分
  177. if (discount_detail) {
  178. let totalDiscount = 0;
  179. for (const uc in discount_detail) {
  180. // uc:用户领取的优惠券id
  181. // detail: 该优惠券下的明细
  182. const detail = discount_detail[uc];
  183. if (!detail) continue;
  184. totalDiscount = this.ctx.plus(totalDiscount, Object.values(detail).reduce((p, n) => this.ctx.plus(p, n), 0));
  185. }
  186. total = this.ctx.minus(total, totalDiscount);
  187. }
  188. return total;
  189. }
  190. /**
  191. * 查询订单
  192. * @param {String} order_no 订单号
  193. */
  194. async search(order_no) {
  195. assert(order_no, '缺少订单号,无法查询订单信息');
  196. const params = { config: this.appConfig, order_no };
  197. const url = `${this.wxDomain}/pay/searchOrderByOrderNo`;
  198. const wxOrderReq = await this.httpUtil.cpost(url, params);
  199. return wxOrderReq;
  200. }
  201. /**
  202. * 创建订单,获取微信支付签名
  203. * @param {Object} data 数据
  204. */
  205. async create(data) {
  206. const { money, openid, order_no, desc, notice_url } = data;
  207. const wxOrderData = { config: this.appConfig, money, openid, order_no, desc, notice_url };
  208. const url = `${this.wxDomain}/pay/payOrder`;
  209. const res = await this.httpUtil.cpost(url, wxOrderData);
  210. if (res) return res;
  211. throw new BusinessError(ErrorCode.SERVICE_FAULT, '微信下单失败!');
  212. }
  213. /**
  214. * 关闭订单
  215. * @param {String} order_no 订单号
  216. */
  217. async close(order_no) {
  218. assert(order_no, '缺少订单号,无法查询订单信息');
  219. const params = { config: this.appConfig, order_no };
  220. const url = `${this.wxDomain}/pay/closeOrder`;
  221. const res = await this.httpUtil.cpost(url, params);
  222. return res || 'ok';
  223. }
  224. /**
  225. * TODO 退款,金额需要指定.可能是部分退款,也可能是全额退款
  226. * @param {String} order_no 支付订单号
  227. * @param {String} out_refund_no 退款单号
  228. * @param {String} money 退款金额
  229. * @param {String} reason 原因
  230. */
  231. async refund({ order_no, out_refund_no, money, reason }) {
  232. assert(order_no, '缺少订单号,无法查询订单信息');
  233. assert(out_refund_no, '缺少退款单号,无法退款');
  234. const url = `${this.wxDomain}/pay/refundOrder`;
  235. const params = { config: this.appConfig, order_no, out_refund_no, money, reason };
  236. const wxRefundReq = await this.httpUtil.cpost(url, params);
  237. return wxRefundReq || 'ok';
  238. }
  239. }
  240. module.exports = PayService;