Pay.php 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkAdmin
  4. // +----------------------------------------------------------------------
  5. // | 版权所有 2014~2019 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
  6. // +----------------------------------------------------------------------
  7. // | 官方网站: http://demo.thinkadmin.top
  8. // +----------------------------------------------------------------------
  9. // | 开源协议 ( https://mit-license.org )
  10. // +----------------------------------------------------------------------
  11. // | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
  12. // | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
  13. // +----------------------------------------------------------------------
  14. namespace app\api\controller;
  15. use app\common\library\AliPay3;
  16. use think\cache\driver\Redis;
  17. use EasyWeChat\Factory;
  18. use think\Controller;
  19. use think\Db;
  20. use think\Exception;
  21. use AlibabaCloud\Client\AlibabaCloud;
  22. use AlibabaCloud\Client\Exception\ClientException;
  23. use AlibabaCloud\Client\Exception\ServerException;
  24. use function AlibabaCloud\Client\value;
  25. /**
  26. * 支付管理类
  27. * Class Refund
  28. * @package app\api\controller\Refund
  29. */
  30. class Pay extends Controller
  31. {
  32. public function test(){
  33. $data = "{\"memberid\":220431411,\"orderid\":\"220431411OR29DAEDEEACBBF11820220602161239\",\"amount\":\"0.1000\",\"successdate\":\"2022-06-02 16:13:24\",\"bankcode\":\"953\",\"status\":\"success\",\"attach\":\"100000\",\"buyer_id\":\"2088012861214283\",\"out_trade_id\":\"202206021612394516457329\",\"notifydate\":\"2022-06-02 16:13:24\",\"num\":1,\"sign\":\"BC0568D0BA0E38DCB3246790C31570BA\"}";
  34. $result= json_decode($data,true);
  35. if ($result['status'] == 'success') {
  36. $result['out_trade_no'] = $result['out_trade_id'];
  37. $return = $this->dealData($result);
  38. echo $return;
  39. }
  40. }
  41. /**
  42. * 微信支付--商品支付成功回调订单
  43. */
  44. public function WxOrderNotify(){
  45. $payXml = file_get_contents("php://input");
  46. //将xml格式转化为json格式
  47. $jsonXml = json_encode(simplexml_load_string($payXml, 'SimpleXMLElement', LIBXML_NOCDATA));
  48. //将json格式转成数组格式 $result['out_trade_no']
  49. $result = json_decode($jsonXml, true);
  50. file_put_contents("wx_pay_return.txt", json_encode($result) . "\n" . "\n", FILE_APPEND);
  51. if ($result['return_code'] == 'SUCCESS' && $result['result_code'] == 'SUCCESS') {
  52. $return = $this->dealData($result);
  53. if ($return){
  54. $arr = array(
  55. 'return_code' => 'SUCCESS',
  56. 'return_msg' => 'OK',
  57. );
  58. return $this->arrayToXml($arr);
  59. }else{
  60. file_put_contents("order_pay_error.txt", file_get_contents("php://input") . "\n" . json_encode($result) . "\n" . "\n", FILE_APPEND);
  61. }
  62. }
  63. }
  64. // /**
  65. // * 支付宝支付--支付成功回调订单
  66. // */
  67. // public function alipayOrderNotify(){
  68. // $result = input('post.');
  69. // file_put_contents("zfb_pay_return.txt", json_encode($result) . "\n" . "\n", FILE_APPEND);
  70. // if ($result['trade_status'] == 'TRADE_SUCCESS' || $result['trade_status'] == 'TRADE_FINISHED') {
  71. // $return = $this->dealData($result);
  72. // if ($return){
  73. // echo 'success';
  74. // }else{
  75. // file_put_contents("order_alipay_error.txt", file_get_contents("php://input") . "\n" . json_encode($result) . "\n" . "\n", FILE_APPEND);
  76. // }
  77. // }
  78. // }
  79. /**
  80. * 支付宝支付--支付成功回调订单
  81. */
  82. public function alipayOrderNotify(){
  83. $results = input('post.');
  84. $zfb = new AliPay3();
  85. $result= json_decode($zfb->sslDeReturn($results['notifyData']),true);
  86. file_put_contents("zfb_pay_return.txt", json_encode($result,true) . "\n" . "\n", FILE_APPEND);
  87. if ($result['status'] == 'success')
  88. {
  89. $result['out_trade_no'] = $result['out_trade_id'];
  90. $return = $this->dealData($result);
  91. if ($return){
  92. echo 'success';
  93. }else{
  94. file_put_contents("order_alipay_error.txt", file_get_contents("php://input") . "\n" . json_encode($result) . "\n" . "\n", FILE_APPEND);
  95. }
  96. }
  97. }
  98. /**
  99. * 汇聚支付支付宝h5,银联h5
  100. */
  101. public function ylOrderNotify(){
  102. $result = input();
  103. debug($result);
  104. if ($result['r6_Status'] == '100'){
  105. $result['out_trade_no'] = $result['r2_OrderNo'];
  106. $result['attach'] = $result['r5_Mp'];
  107. $return = $this->dealData($result);
  108. if ($return){
  109. echo 'success';
  110. }else{
  111. file_put_contents("order_alipay_error.txt", json_encode($result) . "\n" . "\n", FILE_APPEND);
  112. }
  113. }
  114. }
  115. /**
  116. * 汇聚支付快捷支付--有短支付回调
  117. */
  118. public function kuaijiePayNotify(){
  119. $result = input();
  120. debug($result,'kuaijie');
  121. if ($result['biz_code']=='JS000000'){
  122. $data = json_decode($result['data'],true);
  123. if ($data['order_status']=='P1000'){
  124. $result['out_trade_no'] = $result['mch_order_no'];
  125. $result['attach'] = $result['callback_param'];
  126. $return = $this->dealData($result);
  127. if ($return){
  128. echo 'success';
  129. }
  130. }
  131. }
  132. }
  133. /**
  134. * 处理数据库信息
  135. * @param $result
  136. * @return bool
  137. */
  138. function dealData($result){
  139. Db::startTrans();
  140. $redis = new Redis();
  141. $key = 'order_not_pay_'.$result['attach'];
  142. $com = true;
  143. try {
  144. $order = $redis->hGet($key,$result['out_trade_no']);
  145. if (!$order) return false;
  146. $order = json_decode($order,true);
  147. $is_order = Db::name('store_order')->where('order_no',$result['out_trade_no'])->find();
  148. if (isset($is_order) && $is_order['status']==1) return false;
  149. $order['status'] = 1;
  150. $order['pay_at'] = date('Y-m-d H:i:s');
  151. $order['return_success_info'] = json_encode($result,true);
  152. $order_id = Db::name('store_order')->insertGetId($order);
  153. $array = [];
  154. $pro_info = json_decode($order['pro_info'],true);
  155. $is_nft = Db::name('hash2')->where('goods_id',$order['c_id'])->where('success',1)->find();
  156. for ($i=0;$i<$order['num'];$i++){
  157. //获取排名
  158. $rank = getRanking($order['c_id'])+1;
  159. $tag = getTag($order['c_id'],$rank,$order['inventory']);
  160. saveRanking($order['c_id']);
  161. $collectors_hash = '';
  162. $date = [
  163. 'order_id'=>$order_id,
  164. 'order_no'=>get_order_sn(),
  165. 'tag'=>$tag,
  166. 'mid'=>$order['mid'],
  167. 'c_id'=>$order['c_id'],
  168. 'name'=>$pro_info['name'],
  169. 'cover'=>$pro_info['cover'],
  170. 'pro_info'=>$order['pro_info'],
  171. 'type'=>$pro_info['type'],
  172. 'tokenid'=>$is_nft['class_id'],
  173. 'nfttype'=>$is_nft['operationId'],
  174. 'collectors_hash'=>$collectors_hash,
  175. 'collectors_hash_time'=>''
  176. ];
  177. $array[] = $date;
  178. }
  179. Db::name('store_order_info')->insertAll($array);
  180. //送积分
  181. // $by_collection_integral = getConfigValue('by_collection_integral');
  182. // if ($by_collection_integral){
  183. // $by_collection_integral = bcmul($by_collection_integral,$order['num']);
  184. // memberMoneyChange($by_collection_integral,1,$order['mid'],'购买藏品',1,$order['id']);
  185. // }
  186. Db::commit();
  187. } catch (\Exception $e){
  188. $com = false;
  189. Db::rollback();
  190. }
  191. if ($com){
  192. $redis->hdel($key,$result['out_trade_no']);
  193. return true;
  194. }else{
  195. return false;
  196. }
  197. }
  198. /**
  199. * 微信支付--充值盲盒成功回调订单
  200. */
  201. public function BlindRechargeNotify(){
  202. $payXml = file_get_contents("php://input");
  203. //将xml格式转化为json格式
  204. $jsonXml = json_encode(simplexml_load_string($payXml, 'SimpleXMLElement', LIBXML_NOCDATA));
  205. //将json格式转成数组格式 $result['out_trade_no']
  206. $result = json_decode($jsonXml, true);
  207. if ($result['return_code'] == 'SUCCESS' && $result['result_code'] == 'SUCCESS') {
  208. $return = $this->dealBox($result);
  209. if ($return){
  210. $arr = array(
  211. 'return_code' => 'SUCCESS',
  212. 'return_msg' => 'OK',
  213. );
  214. return $this->arrayToXml($arr);
  215. }else{
  216. file_put_contents("order_pay_error.txt", file_get_contents("php://input") . "\n" . json_encode($result) . "\n" . "\n", FILE_APPEND);
  217. }
  218. }
  219. }
  220. /**
  221. * 支付宝支付--充值盲盒回调订单
  222. */
  223. public function alipayBlindRechargeNotify(){
  224. $result = input('post.');
  225. if ($result['trade_status'] == 'TRADE_SUCCESS' || $result['trade_status'] == 'TRADE_FINISHED') {
  226. $return = $this->dealBox($result);
  227. if ($return){
  228. echo 'success';
  229. }else{
  230. file_put_contents("order_alipay_error.txt", file_get_contents("php://input") . "\n" . json_encode($result) . "\n" . "\n", FILE_APPEND);
  231. }
  232. }
  233. }
  234. /**
  235. * 盲盒充值次数处理数据库信息
  236. * @param $result
  237. * @return bool
  238. */
  239. function dealBox($result){
  240. $com = true;
  241. Db::startTrans();
  242. try {
  243. $order = Db::name('store_blind_recharge')->where('order_no',$result['out_trade_no'])->find();
  244. if ($order['status']==1) return true;
  245. Db::name('store_blind_recharge')
  246. ->where('order_no',$result['out_trade_no'])
  247. ->update(['status'=>1,'pay_at'=>date('Y-m-d H:i:s'),'return_success_info'=>json_encode($result,true)]);
  248. //用户加次数
  249. Db::name('store_member')->where('id',$order['m_id'])->setInc('lottery_number',$order['num']);
  250. Db::commit();
  251. } catch (\Exception $e){
  252. $com = false;
  253. Db::rollback();
  254. }
  255. if ($com){
  256. setMemberInfoHash($order['m_id']);
  257. return true;
  258. }else{
  259. return false;
  260. }
  261. }
  262. /**
  263. * 微信支付--二级市场回调订单
  264. */
  265. public function SecondaryWxOrderNotify(){
  266. $payXml = file_get_contents("php://input");
  267. //将xml格式转化为json格式
  268. $jsonXml = json_encode(simplexml_load_string($payXml, 'SimpleXMLElement', LIBXML_NOCDATA));
  269. //将json格式转成数组格式 $result['out_trade_no']
  270. $result = json_decode($jsonXml, true);
  271. if ($result['return_code'] == 'SUCCESS' && $result['result_code'] == 'SUCCESS') {
  272. $return = $this->dealSecondary($result);
  273. if ($return){
  274. $arr = array(
  275. 'return_code' => 'SUCCESS',
  276. 'return_msg' => 'OK',
  277. );
  278. return $this->arrayToXml($arr);
  279. }else{
  280. file_put_contents("order_pay_error.txt", file_get_contents("php://input") . "\n" . json_encode($result) . "\n" . "\n", FILE_APPEND);
  281. }
  282. }
  283. }
  284. /**
  285. * 支付宝支付--二级市场回调订单
  286. */
  287. public function alipaySecondaryNotify(){
  288. $results = input('post.');
  289. $zfb = new AliPay3();
  290. $result= json_decode($zfb->sslDeReturn($results['notifyData']),true);
  291. file_put_contents("zfbse_pay_return.txt", json_encode($result) . "\n" . "\n", FILE_APPEND);
  292. if ($result['status'] == 'success') {
  293. $result['out_trade_no'] = $result['out_trade_id'];
  294. $return = $this->dealSecondary($result);
  295. if ($return){
  296. echo 'success';
  297. }else{
  298. file_put_contents("order_alipay_error.txt", file_get_contents("php://input") . "\n" . json_encode($result) . "\n" . "\n", FILE_APPEND);
  299. }
  300. }
  301. }
  302. /**
  303. * 杉德支付--二级市场回调订单
  304. */
  305. public function shandeSecondaryNotify(){
  306. $data = stripslashes($_POST['data']); //支付数据
  307. file_put_contents("shandepay.txt", $data . "\n" , FILE_APPEND);
  308. $data = json_decode($data,true);
  309. if ($data['body']['orderStatus']==1){
  310. //$data['body']['orderCode']
  311. $return = $this->dealSecondary($data,'sd');
  312. if ($return){
  313. return 'respCode=000000';
  314. }else{
  315. file_put_contents("shandepay_error.txt", $data . "\n" . json_encode($data) . "\n" . "\n", FILE_APPEND);
  316. }
  317. }
  318. }
  319. /**
  320. * 二级市场-汇聚支付支付宝h5,银联h5
  321. */
  322. public function ylSecondaryNotify(){
  323. $result = input();
  324. debug($result);
  325. if ($result['r6_Status'] == '100'){
  326. $return = $this->dealSecondary($result,'huijuh5');
  327. if ($return){
  328. echo 'success';
  329. }else{
  330. file_put_contents("order_error.txt", json_encode($result) . "\n" . "\n", FILE_APPEND);
  331. }
  332. }
  333. }
  334. /**
  335. * 二级市场-汇聚支付快捷支付--有短支付回调
  336. */
  337. public function kuaijieSecondPayNotify(){
  338. $result = input();
  339. debug($result,'kuaijiesecond');
  340. if ($result['biz_code']=='JS000000'){
  341. $data = json_decode($result['data'],true);
  342. if ($data['order_status']=='P1000'){
  343. $return = $this->dealSecondary($result,'kuaijie');
  344. if ($return){
  345. echo 'success';
  346. }
  347. }
  348. }
  349. }
  350. /**
  351. * 二级市场处理数据库信息
  352. * @param $result
  353. * @return bool
  354. */
  355. function dealSecondary($result,$from=''){
  356. $com = true;
  357. Db::startTrans();
  358. try {
  359. if ($from=='sd'){
  360. $out_trade_no = $result['body']['orderCode'];
  361. }elseif ($from=='sd'){
  362. $out_trade_no = $result['out_trade_no'];
  363. } elseif($from=='huijuh5'){
  364. $out_trade_no = $result['r2_OrderNo'];
  365. }elseif ($from=='kuaijie'){
  366. $out_trade_no = $result['mch_order_no'];
  367. }
  368. $order = Db::name('store_order_info_order')->where('order_no',$out_trade_no)->find();
  369. if ($order['status']==1) return false;
  370. if (!$order) return false;
  371. $resale_status = Db::name('store_order_info')->where('id',$order['info_id'])->value('resale_status');
  372. if ($resale_status!=2){
  373. }else{
  374. Db::name('store_order_info_order')
  375. ->where('order_no',$out_trade_no)
  376. ->update(['status'=>1,'pay_at'=>date('Y-m-d H:i:s'),'return_success_info'=>json_encode($result,true)]);
  377. //藏品修改状态
  378. Db::name('store_order_info')->where('id',$order['info_id'])->update([
  379. 'status'=>2,
  380. 'resale_status'=>3,
  381. 'selling_time'=>date('Y-m-d H:i:s')
  382. ]);
  383. $info = Db::name('store_order_info')->where('id',$order['info_id'])->find();
  384. //增加一条记录
  385. $to_date = [
  386. 'order_id'=>$info['order_id'],
  387. 'order_no'=>get_order_sn(),
  388. 'tag'=>$info['tag'],
  389. 'mid'=>$order['mid'],
  390. 'c_id'=>$info['c_id'],
  391. 'name'=>$info['name'],
  392. 'cover'=>$info['cover'],
  393. 'pro_info'=>$info['pro_info'],
  394. 'type'=>$info['type'],
  395. 'status'=>3,
  396. 'from'=>2,
  397. 'to_mid'=>$info['mid'],
  398. 'over_time'=>date('Y-m-d H:i:s'),
  399. 'tokenid'=>$info['tokenid'],
  400. 'nfttype'=>$info['nfttype'],
  401. 'collectors_hash'=>'',
  402. 'collectors_hash_time'=>date('Y-m-d H:i:s')
  403. ];
  404. Db::name('store_order_info')->insert($to_date);
  405. //增加用户余额
  406. memberMoneyChange($order['to_account'],3,$info['mid'],'出售藏品',1,$order['id']);
  407. Db::commit();
  408. }
  409. } catch (\Exception $e){
  410. $com = false;
  411. Db::rollback();
  412. }
  413. if ($com){
  414. setMemberInfoHash($order['mid']);
  415. return true;
  416. }else{
  417. return false;
  418. }
  419. }
  420. /**
  421. * 余额充值--汇聚云闪付,支付宝h5支付回调
  422. */
  423. public function ylrechargeNotify(){
  424. $result = input();
  425. debug($result);
  426. if ($result['r6_Status'] == '100'){
  427. $return = $this->dealRecharge($result,'huijuh5');
  428. if ($return){
  429. echo 'success';
  430. }else{
  431. file_put_contents("recharge_error.txt", json_encode($result) . "\n" . "\n", FILE_APPEND);
  432. }
  433. }
  434. }
  435. //处理充值
  436. function dealRecharge($result,$from=''){
  437. $com = true;
  438. Db::startTrans();
  439. try {
  440. if($from=='huijuh5'){
  441. $out_trade_no = $result['r2_OrderNo'];;
  442. }
  443. $order = Db::name('store_member_recharge')->where('order_no',$out_trade_no)->find();
  444. if (!$order || $order['status']==1) return false;
  445. //增加用户余额
  446. $re = memberMoneyChange($order['pay_price'],3,$order['m_id'],'余额充值',1,$order['id']);
  447. if ($re){
  448. Db::name('store_member_recharge')
  449. ->where('order_no',$out_trade_no)
  450. ->update(['status'=>1,'pay_at'=>date('Y-m-d H:i:s'),'return_success_info'=>json_encode($result,true)]);
  451. Db::commit();
  452. }else{
  453. $com = false;
  454. Db::rollback();
  455. }
  456. } catch (\Exception $e){
  457. $com = false;
  458. Db::rollback();
  459. }
  460. if ($com){
  461. setMemberInfoHash($order['m_id']);
  462. return true;
  463. }else{
  464. return false;
  465. }
  466. }
  467. /**
  468. * 代付回调
  469. */
  470. public function wePayNotify(){
  471. $result = input();
  472. debug($result,'wePay');
  473. }
  474. /**
  475. * 数组转xml
  476. * @ApiInternal
  477. */
  478. public function arrayToXml($arr)
  479. {
  480. $xml = "<xml>";
  481. foreach ($arr as $key => $val) {
  482. if (is_numeric($val)) {
  483. $xml .= "<" . $key . ">" . $val . "</" . $key . ">";
  484. } else
  485. $xml .= "<" . $key . "><![CDATA[" . $val . "]]></" . $key . ">";
  486. }
  487. $xml .= "</xml>";
  488. return $xml;
  489. }
  490. }