截流自动化的商城平台
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

AliPayServer.php 13KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | likeshop开源商城系统
  4. // +----------------------------------------------------------------------
  5. // | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
  6. // | gitee下载:https://gitee.com/likeshop_gitee
  7. // | github下载:https://github.com/likeshop-github
  8. // | 访问官网:https://www.likeshop.cn
  9. // | 访问社区:https://home.likeshop.cn
  10. // | 访问手册:http://doc.likeshop.cn
  11. // | 微信公众号:likeshop技术社区
  12. // | likeshop系列产品在gitee、github等公开渠道开源版本可免费商用,未经许可不能去除前后端官方版权标识
  13. // | likeshop系列产品收费版本务必购买商业授权,购买去版权授权后,方可去除前后端官方版权标识
  14. // | 禁止对系统程序代码以任何目的,任何形式的再发布
  15. // | likeshop团队版权所有并拥有最终解释权
  16. // +----------------------------------------------------------------------
  17. // | author: likeshop.cn.team
  18. // +----------------------------------------------------------------------
  19. namespace app\common\server;
  20. use Alipay\EasySDK\Kernel\Config;
  21. use app\common\enum\IntegralOrderEnum;
  22. use app\common\logic\IntegralOrderRefundLogic;
  23. use app\common\logic\PayNotifyLogic;
  24. use app\common\model\Client_;
  25. use app\common\enum\PayEnum;
  26. use app\common\model\integral\IntegralOrder;
  27. use think\facade\Db;
  28. use think\facade\Log;
  29. use Yansongda\Pay\Exceptions\GatewayException;
  30. use Yansongda\Pay\Exceptions\InvalidConfigException;
  31. use Yansongda\Pay\Exceptions\InvalidSignException;
  32. use Yansongda\Pay\Pay;
  33. use Yansongda\Supports\Collection;
  34. class AliPayServer
  35. {
  36. protected $error = '未知错误';
  37. private $alipay = null;
  38. public function getError()
  39. {
  40. return $this->error;
  41. }
  42. public function __construct()
  43. {
  44. $this->alipay = Pay::alipay(YansongdaAliPayServer::config());
  45. }
  46. /**
  47. * Notes: 支付设置
  48. * @author 段誉(2021/3/23 10:33)
  49. * @return Config
  50. * @throws \Exception
  51. */
  52. // public function getOptions()
  53. // {
  54. // $result = (new PayModel())->where(['codePay' => 'alipay'])->find();
  55. // if (empty($result)) {
  56. // throw new \Exception('请配置好支付设置');
  57. // }
  58. //
  59. // $options = new Config();
  60. // $options->protocol = 'https';
  61. // $options->gatewayHost = 'openapi.alipay.com';
  62. // // $options->gatewayHost = 'openapi.alipaydev.com'; //测试沙箱地址
  63. // $options->signType = 'RSA2';
  64. // $options->appId = $result['config']['app_id'] ?? '';
  65. //
  66. // // 应用私钥
  67. // $options->merchantPrivateKey = $result['config']['private_key'] ?? '';
  68. // //支付宝公钥
  69. // // $options->alipayPublicKey = $result['config']['ali_public_key'] ?? '';
  70. //
  71. // // 支付宝公钥证书文件路径,例如:/foo/alipayCertPublicKey_RSA2.crt
  72. // $options->alipayCertPath = YansongdaAliPayServer::_cache_file('ali_public_cert', $result['config']['ali_public_cert'] ?? '');
  73. // // 支付宝根证书文件路径,例如:/foo/alipayRootCert.crt
  74. // $options->alipayRootCertPath = YansongdaAliPayServer::_cache_file('ali_root_cert', $result['config']['ali_root_cert'] ?? '');
  75. // // 应用公钥证书文件路径,例如:/foo/appCertPublicKey_2019051064521003.crt
  76. // $options->merchantCertPath = YansongdaAliPayServer::_cache_file('app_cert', $result['config']['app_cert'] ?? '');
  77. //
  78. // //回调地址
  79. // $options->notifyUrl = (string)url('pay/aliNotify', [], false, true);
  80. //
  81. // return $options;
  82. // }
  83. static function getAliPayData($attach, $order_id) : array
  84. {
  85. if($attach == 'trade') {
  86. $trade = Db::name('order_trade')->where(['id' => $order_id])->find();
  87. $sn = $trade['t_sn'];
  88. $order_amount = $trade['order_amount'];
  89. }
  90. if($attach == 'order') {
  91. $order = Db::name('order')->where(['id' => $order_id])->find();
  92. $sn = $order['order_sn'];
  93. $order_amount = $order['order_amount'];
  94. }
  95. if($attach == 'recharge') {
  96. $order = Db::name('recharge_order')->where(['id' => $order_id])->find();
  97. $sn = $order['order_sn'];
  98. $order_amount = $order['order_amount'];
  99. }
  100. if ($attach == 'integral') {
  101. $order = IntegralOrder::where(['id' => $order_id])->find();
  102. $sn = $order['order_sn'];
  103. $order_amount = $order['order_amount'];
  104. }
  105. return [
  106. 'sn' => $sn ?? '',
  107. 'order_amount' => $order_amount ?? 0,
  108. ];
  109. }
  110. /**
  111. * Notes: pc支付
  112. * @param $attach
  113. * @param $order
  114. * @author 段誉(2021/3/22 18:38)
  115. * @return string
  116. */
  117. public function pagePay($attach, $order_id)
  118. {
  119. $domain = request()->domain();
  120. $data = static::getAliPayData($attach, $order_id);
  121. $ali_data = [
  122. 'out_trade_no' => $data['sn'],
  123. 'total_amount' => $data['order_amount'],
  124. 'subject' => '订单:' . $data['sn'],
  125. 'return_url' => $domain.'/pc/user/order',
  126. 'passback_params' => $attach,
  127. ];
  128. return $this->alipay->web($ali_data)->getContent();
  129. }
  130. /**
  131. * Notes: app支付
  132. * @param $attach
  133. * @param $order
  134. * @author 段誉(2021/3/22 18:38)
  135. * @return string
  136. */
  137. public function appPay($attach, $order_id)
  138. {
  139. $data = static::getAliPayData($attach, $order_id);
  140. $ali_data = [
  141. 'out_trade_no' => $data['sn'],
  142. 'total_amount' => $data['order_amount'],
  143. 'subject' => $data['sn'],
  144. 'passback_params' => $attach,
  145. ];
  146. return $this->alipay->app($ali_data)->getContent();
  147. }
  148. /**
  149. * Notes: 手机网页支付
  150. * @param $attach
  151. * @param $order
  152. * @author 段誉(2021/3/22 18:38)
  153. * @return string
  154. */
  155. public function wapPay($attach, $order_id)
  156. {
  157. $data = static::getAliPayData($attach, $order_id);
  158. $domain = request()->domain();
  159. $ali_data = [
  160. 'out_trade_no' => $data['sn'],
  161. 'total_amount' => $data['order_amount'],
  162. 'subject' => $data['sn'],
  163. 'passback_params' => $attach,
  164. 'return_url' => $domain . '/mobile/bundle/pages/user_order/user_order',
  165. 'quit_url' => $domain . '/mobile/bundle/pages/user_order/user_order',
  166. ];
  167. return $this->alipay->wap($ali_data)->getContent();
  168. }
  169. function mnpPay($attach, $order_id)
  170. {
  171. $data = static::getAliPayData($attach, $order_id);
  172. $ali_data = [
  173. 'out_trade_no' => $data['sn'],
  174. 'total_amount' => $data['order_amount'],
  175. 'subject' => $data['sn'],
  176. 'passback_params' => $attach,
  177. ];
  178. return $this->alipay->wap($ali_data)->getContent();
  179. }
  180. function oaPay($attach, $order_id)
  181. {
  182. $data = static::getAliPayData($attach, $order_id);
  183. $ali_data = [
  184. 'out_trade_no' => $data['sn'],
  185. 'total_amount' => $data['order_amount'],
  186. 'subject' => $data['sn'],
  187. 'passback_params' => $attach,
  188. ];
  189. return $this->alipay->wap($ali_data)->getContent();
  190. }
  191. /**
  192. * Notes: 支付
  193. * @param $from
  194. * @param $order
  195. * @param $order_source
  196. * @author 段誉(2021/3/22 18:33)
  197. * @return bool|string
  198. */
  199. public function pay($from, $order_id, $order_source)
  200. {
  201. try{
  202. switch ($order_source){
  203. case Client_::pc:
  204. $result = $this->pagePay($from, $order_id);
  205. break;
  206. case Client_::ios:
  207. case Client_::android:
  208. $result = $this->appPay($from, $order_id);
  209. break;
  210. case Client_::h5:
  211. $result = $this->wapPay($from, $order_id);
  212. break;
  213. case Client_::mnp:
  214. $result = $this->mnpPay($from, $order_id);
  215. break;
  216. case Client_::oa:
  217. $result = $this->oaPay($from, $order_id);
  218. break;
  219. default:
  220. throw new \Exception('支付方式错误');
  221. }
  222. return $result;
  223. } catch (\Exception $e) {
  224. $this->error = $e->getMessage();
  225. return false;
  226. }
  227. }
  228. /**
  229. * Notes: 支付回调验证
  230. * @param $data
  231. * @author 段誉(2021/3/22 17:22)
  232. * @return bool
  233. */
  234. public function verifyNotify($data)
  235. {
  236. try {
  237. $this->alipay->verify($data);
  238. if (!in_array($data['trade_status'], ['TRADE_SUCCESS', 'TRADE_FINISHED'])) {
  239. return true;
  240. }
  241. $extra['transaction_id'] = $data['trade_no'];
  242. //验证订单是否已支付
  243. switch ($data['passback_params']) {
  244. case 'order':
  245. $order = Db::name('order')->where(['order_sn' => $data['out_trade_no']])->find();
  246. if (!$order || $order['pay_status'] >= PayEnum::ISPAID) {
  247. return true;
  248. }
  249. PayNotifyLogic::handle('order', $data['out_trade_no'], $extra);
  250. break;
  251. case 'trade':
  252. $order_trade = Db::name('order_trade')->where(['t_sn' => $data['out_trade_no']])->find();
  253. $trade_id = $order_trade['id'];
  254. $orders = Db::name('order')->where(['trade_id' => $trade_id])->select();
  255. foreach ($orders as $order) {
  256. if (!$order || $order['pay_status'] >= PayEnum::ISPAID) {
  257. return true;
  258. }
  259. }
  260. PayNotifyLogic::handle('trade', $data['out_trade_no'], $extra);
  261. break;
  262. case 'recharge':
  263. $order = Db::name('recharge_order')->where(['order_sn' => $data['out_trade_no']])->find();
  264. if (!$order || $order['pay_status'] >= PayEnum::ISPAID) {
  265. return true;
  266. }
  267. PayNotifyLogic::handle('recharge', $data['out_trade_no'], $extra);
  268. break;
  269. case 'integral':
  270. $order = IntegralOrder::where(['order_sn' => $data['out_trade_no']])->find();
  271. if (!$order || $order['refund_status'] == IntegralOrderEnum::IS_REFUND) {
  272. // 没有订单记录 或者 订单已发生退款 中断后续操作
  273. return true;
  274. }
  275. if ($order['order_status'] == IntegralOrderEnum::ORDER_STATUS_DOWN) {
  276. // 收到支付回调时,订单已被关闭, 则进行退款操作
  277. IntegralOrderRefundLogic::refundOrderAmount($order['id']);
  278. return true;
  279. }
  280. if ($order['pay_status'] >= PayEnum::ISPAID) {
  281. return true;
  282. }
  283. PayNotifyLogic::handle('integral', $data['out_trade_no'], $extra);
  284. break;
  285. }
  286. return true;
  287. } catch (\Throwable $e) {
  288. $record = [
  289. __CLASS__, __FUNCTION__, $e->getFile(), $e->getLine(), $e->getMessage()
  290. ];
  291. Log::record(implode('-', $record));
  292. return false;
  293. }
  294. }
  295. /**
  296. * @notes 查询订单
  297. * @param $order_sn
  298. * @return Collection
  299. * @throws InvalidConfigException
  300. * @throws InvalidSignException
  301. * @throws GatewayException
  302. * @author lbzy
  303. * @datetime 2023-08-01 11:04:49
  304. */
  305. public function checkPay($order_sn) : Collection
  306. {
  307. return $this->alipay->find([
  308. 'out_trade_no' => $order_sn,
  309. ]);
  310. }
  311. /**
  312. * @notes 退款
  313. * @param $order_sn
  314. * @param $order_amount
  315. * @param string $out_request_no 部分退款订单
  316. * @return array
  317. * @author lbzy
  318. * @datetime 2023-08-01 11:04:55
  319. */
  320. public function refund($order_sn, $order_amount, string $out_request_no = '')
  321. {
  322. try {
  323. $data = [
  324. 'out_trade_no' => "{$order_sn}",
  325. 'refund_amount' => "{$order_amount}",
  326. ];
  327. if ($out_request_no) {
  328. $data['out_request_no'] = "{$out_request_no}";
  329. }
  330. return $this->alipay->refund($data)->toArray();
  331. } catch(InvalidConfigException |InvalidSignException|GatewayException|\Throwable $e) {
  332. Log::write([ $order_sn, $order_amount, $e->__toString() ], 'ALI_PAY_REFUND');
  333. return [ 'code' => 0, 'msg' => 'Failed', 'fund_change' => '', 'e' => [ $order_sn, $order_amount ] ];
  334. }
  335. }
  336. }