PaymentService.php 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343
  1. <?php
  2. namespace app\data\service;
  3. use app\data\service\payment\AlipayPaymentService;
  4. use app\data\service\payment\BalancePyamentService;
  5. use app\data\service\payment\EmptyPaymentService;
  6. use app\data\service\payment\JoinPaymentService;
  7. use app\data\service\payment\WechatPaymentService;
  8. use think\App;
  9. use think\Container;
  10. use think\admin\Exception;
  11. /**
  12. * 支付基础服务
  13. * Class PaymentService
  14. * @package app\data\service
  15. */
  16. abstract class PaymentService
  17. {
  18. // 用户余额支付
  19. const PAYMENT_EMPTY = 'empty';
  20. const PAYMENT_BALANCE = 'balance';
  21. // 汇聚支付参数
  22. const PAYMENT_JOINPAY_GZH = 'joinpay_gzh';
  23. const PAYMENT_JOINPAY_XCX = 'joinpay_xcx';
  24. // 微信商户通道
  25. const PAYMENT_WECHAT_APP = 'wechat_app';
  26. const PAYMENT_WECHAT_GZH = 'wechat_gzh';
  27. const PAYMENT_WECHAT_XCX = 'wechat_xcx';
  28. const PAYMENT_WECHAT_WAP = 'wechat_wap';
  29. const PAYMENT_WECHAT_QRC = 'wechat_qrc';
  30. // 支付宝支付参数
  31. const PAYMENT_ALIAPY_APP = 'alipay_app';
  32. const PAYMENT_ALIPAY_WAP = 'alipay_wap';
  33. const PAYMENT_ALIPAY_WEB = 'alipay_web';
  34. // 支付参数配置
  35. const TYPES = [
  36. // 微信支付配置(不需要的直接注释)
  37. self::PAYMENT_EMPTY => [
  38. 'type' => 'EMPTY',
  39. 'name' => '订单无需支付',
  40. 'bind' => [],
  41. ],
  42. self::PAYMENT_BALANCE => [
  43. 'type' => 'BALANCE',
  44. 'name' => '账号余额支付',
  45. 'bind' => [
  46. UserService::APITYPE_WAP, UserService::APITYPE_WEB,
  47. UserService::APITYPE_WXAPP, UserService::APITYPE_WECHAT,
  48. UserService::APITYPE_IOSAPP, UserService::APITYPE_ANDROID,
  49. ],
  50. ],
  51. self::PAYMENT_WECHAT_WAP => [
  52. 'type' => 'MWEB',
  53. 'name' => '微信WAP支付',
  54. 'bind' => [UserService::APITYPE_WAP],
  55. ],
  56. self::PAYMENT_WECHAT_APP => [
  57. 'type' => 'APP',
  58. 'name' => '微信APP支付',
  59. 'bind' => [UserService::APITYPE_IOSAPP, UserService::APITYPE_ANDROID],
  60. ],
  61. self::PAYMENT_WECHAT_XCX => [
  62. 'type' => 'JSAPI',
  63. 'name' => '微信小程序支付',
  64. 'bind' => [UserService::APITYPE_WXAPP],
  65. ],
  66. self::PAYMENT_WECHAT_GZH => [
  67. 'type' => 'JSAPI',
  68. 'name' => '微信公众号支付',
  69. 'bind' => [UserService::APITYPE_WECHAT],
  70. ],
  71. self::PAYMENT_WECHAT_QRC => [
  72. 'type' => 'NATIVE',
  73. 'name' => '微信二维码支付',
  74. 'bind' => [UserService::APITYPE_WEB],
  75. ],
  76. // 支付宝支持配置(不需要的直接注释)
  77. self::PAYMENT_ALIPAY_WAP => [
  78. 'type' => '',
  79. 'name' => '支付宝WAP支付',
  80. 'bind' => [UserService::APITYPE_WAP],
  81. ],
  82. self::PAYMENT_ALIPAY_WEB => [
  83. 'type' => '',
  84. 'name' => '支付宝WEB支付',
  85. 'bind' => [UserService::APITYPE_WEB],
  86. ],
  87. self::PAYMENT_ALIAPY_APP => [
  88. 'type' => '',
  89. 'name' => '支付宝APP支付',
  90. 'bind' => [UserService::APITYPE_ANDROID, UserService::APITYPE_IOSAPP],
  91. ],
  92. // 汇聚支持配置(不需要的直接注释)
  93. self::PAYMENT_JOINPAY_XCX => [
  94. 'type' => 'WEIXIN_XCX',
  95. 'name' => '汇聚小程序支付',
  96. 'bind' => [UserService::APITYPE_WXAPP],
  97. ],
  98. self::PAYMENT_JOINPAY_GZH => [
  99. 'type' => 'WEIXIN_GZH',
  100. 'name' => '汇聚公众号支付',
  101. 'bind' => [UserService::APITYPE_WECHAT],
  102. ],
  103. ];
  104. /**
  105. * 当前应用
  106. * @var App
  107. */
  108. protected $app;
  109. /**
  110. * 支付参数编号
  111. * @var string
  112. */
  113. protected $code;
  114. /**
  115. * 默认支付类型
  116. * @var string
  117. */
  118. protected $type;
  119. /**
  120. * 当前支付参数
  121. * @var array
  122. */
  123. protected $params;
  124. /**
  125. * 支付服务对象
  126. * @var array
  127. */
  128. protected static $driver = [];
  129. /**
  130. * PaymentService constructor.
  131. * @param App $app 当前应用对象
  132. * @param string $code 支付参数编号
  133. * @param string $type 支付类型代码
  134. * @param array $params 支付参数配置
  135. */
  136. public function __construct(App $app, string $code, string $type, array $params)
  137. {
  138. [$this->app, $this->code, $this->type, $this->params] = [$app, $code, $type, $params];
  139. if (method_exists($this, 'initialize')) $this->initialize();
  140. }
  141. /**
  142. * 根据配置实例支付服务
  143. * @param string $code 支付参数编号
  144. * @return JoinPaymentService|WechatPaymentService|AlipayPaymentService
  145. * @throws Exception
  146. */
  147. public static function instance(string $code): PaymentService
  148. {
  149. if ($code === 'empty') {
  150. $vars = ['code' => 'empty', 'type' => 'empty', 'params' => []];
  151. return static::$driver[$code] = Container::getInstance()->make(EmptyPaymentService::class, $vars);
  152. }
  153. [, $type, $params] = self::config($code);
  154. if (isset(static::$driver[$code])) return static::$driver[$code];
  155. $vars = ['code' => $code, 'type' => $type, 'params' => $params];
  156. // 实例化具体支付参数类型
  157. if (stripos($type, 'balance') === 0) {
  158. return static::$driver[$code] = Container::getInstance()->make(BalancePyamentService::class, $vars);
  159. } elseif (stripos($type, 'alipay_') === 0) {
  160. return static::$driver[$code] = Container::getInstance()->make(AlipayPaymentService::class, $vars);
  161. } elseif (stripos($type, 'wechat_') === 0) {
  162. return static::$driver[$code] = Container::getInstance()->make(WechatPaymentService::class, $vars);
  163. } elseif (stripos($type, 'joinpay_') === 0) {
  164. return static::$driver[$code] = Container::getInstance()->make(JoinPaymentService::class, $vars);
  165. } else {
  166. throw new Exception(sprintf('支付驱动[%s]未定义', $type));
  167. }
  168. }
  169. /**
  170. * 获取支付通道名称
  171. * @param string $type
  172. * @return string
  173. */
  174. public static function name(string $type): string
  175. {
  176. return self::TYPES[$type]['name'] ?? $type;
  177. }
  178. /**
  179. * 获取支付类型
  180. * @return array
  181. */
  182. public static function types(): array
  183. {
  184. $types = [];
  185. foreach (self::TYPES as $k => $v) if (isset($v['bind'])) {
  186. if (array_intersect($v['bind'], array_keys(UserService::TYPES))) {
  187. $types[$k] = $v;
  188. }
  189. }
  190. return $types;
  191. }
  192. /**
  193. * 获取通道配置参数
  194. * @param string $code
  195. * @param array $payment
  196. * @return array [code,type,params]
  197. * @throws Exception
  198. */
  199. public static function config(string $code, array $payment = []): array
  200. {
  201. try {
  202. if (empty($payment)) {
  203. $map = ['code' => $code, 'status' => 1, 'deleted' => 0];
  204. $payment = app()->db->name('ShopPayment')->where($map)->find();
  205. }
  206. if (empty($payment)) {
  207. throw new Exception("支付参数[#{$code}]禁用关闭");
  208. }
  209. $params = @json_decode($payment['content'], true);
  210. if (empty($params)) {
  211. throw new Exception("支付参数[#{$code}]配置无效");
  212. }
  213. if (empty(static::TYPES[$payment['type']])) {
  214. throw new Exception("支付参数[@{$payment['type']}]匹配失败");
  215. }
  216. return [$payment['code'], $payment['type'], $params];
  217. } catch (\Exception $exception) {
  218. throw new Exception($exception->getMessage(), $exception->getCode());
  219. }
  220. }
  221. /**
  222. * 订单更新操作
  223. * @param string $orderNo 订单单号
  224. * @param string $paymentTrade 交易单号
  225. * @param string $paymentAmount 支付金额
  226. * @param string $paymentRemark 支付描述
  227. * @return boolean
  228. * @throws \think\db\exception\DataNotFoundException
  229. * @throws \think\db\exception\DbException
  230. * @throws \think\db\exception\ModelNotFoundException
  231. */
  232. public function updateOrder(string $orderNo, string $paymentTrade, string $paymentAmount, $paymentRemark = '在线支付'): bool
  233. {
  234. // 检查订单支付状态
  235. $map = ['order_no' => $orderNo, 'payment_status' => 0, 'status' => 2];
  236. $order = $this->app->db->name('ShopOrder')->where($map)->find();
  237. if (empty($order)) return false;
  238. // 更新订单支付状态
  239. $data = [
  240. 'status' => 3,
  241. 'payment_type' => $this->type,
  242. 'payment_code' => $this->code,
  243. 'payment_trade' => $paymentTrade,
  244. 'payment_amount' => $paymentAmount,
  245. 'payment_remark' => $paymentRemark,
  246. 'payment_status' => 1,
  247. 'payment_datetime' => date('Y-m-d H:i:s'),
  248. ];
  249. if (empty($data['payment_type'])) unset($data['payment_type']);
  250. $this->app->db->name('ShopOrder')->where($map)->update($data);
  251. // 触发订单更新事件
  252. $this->app->event->trigger('ShopOrderPayment', $orderNo);
  253. return true;
  254. }
  255. /**
  256. * 创建支付行为
  257. * @param string $orderNo 商户订单单号
  258. * @param string $paymentTitle 商户订单标题
  259. * @param string $paymentAmount 需要支付金额
  260. */
  261. protected function createPaymentAction(string $orderNo, string $paymentTitle, string $paymentAmount)
  262. {
  263. $this->app->db->name('ShopPaymentItem')->insert([
  264. 'payment_code' => $this->code, 'payment_type' => $this->type,
  265. 'order_amount' => $paymentAmount, 'order_name' => $paymentTitle, 'order_no' => $orderNo,
  266. ]);
  267. }
  268. /**
  269. * 更新支付记录并更新订单
  270. * @param string $orderNo 商户订单单号
  271. * @param string $paymentTrade 平台交易单号
  272. * @param string $paymentAmount 实际到账金额
  273. * @param string $paymentRemark 平台支付备注
  274. * @return boolean
  275. * @throws \think\db\exception\DataNotFoundException
  276. * @throws \think\db\exception\DbException
  277. * @throws \think\db\exception\ModelNotFoundException
  278. */
  279. protected function updatePaymentAction(string $orderNo, string $paymentTrade, string $paymentAmount, string $paymentRemark = '在线支付'): bool
  280. {
  281. // 更新支付记录
  282. data_save('ShopPaymentItem', [
  283. 'order_no' => $orderNo,
  284. 'payment_code' => $this->code,
  285. 'payment_type' => $this->type,
  286. 'payment_trade' => $paymentTrade,
  287. 'payment_amount' => $paymentAmount,
  288. 'payment_status' => 1,
  289. 'payment_datatime' => date('Y-m-d H:i:s'),
  290. ], 'order_no', [
  291. 'payment_code' => $this->code,
  292. 'payment_type' => $this->type,
  293. ]);
  294. // 更新记录状态
  295. return $this->updateOrder($orderNo, $paymentTrade, $paymentAmount, $paymentRemark);
  296. }
  297. /**
  298. * 订单主动查询
  299. * @param string $orderNo
  300. * @return array
  301. */
  302. abstract public function query(string $orderNo): array;
  303. /**
  304. * 支付通知处理
  305. * @return string
  306. */
  307. abstract public function notify(): string;
  308. /**
  309. * 创建支付订单
  310. * @param string $openid 用户OPENID
  311. * @param string $orderNo 交易订单单号
  312. * @param string $paymentAmount 交易订单金额(元)
  313. * @param string $paymentTitle 交易订单名称
  314. * @param string $paymentRemark 交易订单描述
  315. * @param string $paymentReturn 支付回跳地址
  316. * @return array
  317. */
  318. abstract public function create(string $openid, string $orderNo, string $paymentAmount, string $paymentTitle, string $paymentRemark, string $paymentReturn = ''): array;
  319. }