Pay.php 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575
  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 think\cache\driver\Redis;
  16. use EasyWeChat\Factory;
  17. use think\Controller;
  18. use think\Db;
  19. use think\Exception;
  20. use AlibabaCloud\Client\AlibabaCloud;
  21. use AlibabaCloud\Client\Exception\ClientException;
  22. use AlibabaCloud\Client\Exception\ServerException;
  23. use function AlibabaCloud\Client\value;
  24. /**
  25. * 支付管理类
  26. * Class Refund
  27. * @package app\api\controller\Refund
  28. */
  29. class Pay extends Controller
  30. {
  31. /**
  32. * 微信支付--商品支付成功回调订单
  33. */
  34. public function WxOrderNotify(){
  35. $payXml = file_get_contents("php://input");
  36. //将xml格式转化为json格式
  37. $jsonXml = json_encode(simplexml_load_string($payXml, 'SimpleXMLElement', LIBXML_NOCDATA));
  38. //将json格式转成数组格式 $result['out_trade_no']
  39. $result = json_decode($jsonXml, true);
  40. //file_put_contents("wx_pay_return.txt", json_encode($result) . "\n" . "\n", FILE_APPEND);
  41. if ($result['return_code'] == 'SUCCESS' && $result['result_code'] == 'SUCCESS') {
  42. $return = $this->dealData($result);
  43. if ($return){
  44. $arr = array(
  45. 'return_code' => 'SUCCESS',
  46. 'return_msg' => 'OK',
  47. );
  48. return $this->arrayToXml($arr);
  49. }else{
  50. file_put_contents("order_pay_error.txt", file_get_contents("php://input") . "\n" . json_encode($result) . "\n" . "\n", FILE_APPEND);
  51. }
  52. }
  53. }
  54. /**
  55. * 支付宝支付--支付成功回调订单
  56. */
  57. public function alipayOrderNotify(){
  58. $result = input('post.');
  59. file_put_contents("ali_pay_return.txt", json_encode($result) . "\n" . "\n", FILE_APPEND);
  60. if ($result['trade_status'] == 'TRADE_SUCCESS' || $result['trade_status'] == 'TRADE_FINISHED') {
  61. $return = $this->dealData($result);
  62. if ($return){
  63. echo 'success';
  64. }else{
  65. file_put_contents("order_alipay_error.txt", file_get_contents("php://input") . "\n" . json_encode($result) . "\n" . "\n", FILE_APPEND);
  66. }
  67. }
  68. }
  69. /**
  70. * 余额支付--支付成功回调订单
  71. */
  72. public static function balanceOrderNotify($result){
  73. file_put_contents("balance_pay_return.txt", json_encode($result) . "\n" . "\n", FILE_APPEND);
  74. Db::startTrans();
  75. $redis = new Redis();
  76. $key = 'order_not_pay_'.$result['attach'];
  77. $com = true;
  78. try {
  79. $order = $redis->hGet($key,$result['out_trade_no']);
  80. if (!$order) return '木有订单';
  81. $order = json_decode($order,true);
  82. $is_order = Db::name('store_order')->where('order_no',$result['out_trade_no'])->find();
  83. if (isset($is_order) && $is_order['status']==1) return '又订单id';
  84. $order['status'] = 1;
  85. $order['pay_at'] = date('Y-m-d H:i:s');
  86. $order['return_success_info'] = json_encode($result,true);
  87. $order_id = Db::name('store_order')->insertGetId($order);
  88. $array = [];
  89. $pro_info = json_decode($order['pro_info'],true);
  90. for ($i=0;$i<$order['num'];$i++){
  91. //获取排名
  92. $rank = getRanking($order['c_id'])+1;
  93. $tag = getTag($order['c_id'],$rank,$order['inventory']);
  94. saveRanking($order['c_id']);
  95. $company = '南宁中科数艺科技有限公司';
  96. $hash = getCompanyHash($order['c_id']);
  97. $company_hash = $hash['hash'];
  98. $company_hash_time = $hash['create_at'];
  99. $tokenid = $hash['tokenid'];
  100. Db::name('hash')->where('hash',$hash['hash'])->update(['status'=>1]);
  101. $collectors_hash = '';
  102. $date = [
  103. 'order_id'=>$order_id,
  104. 'order_no'=>get_order_sn(),
  105. 'tag'=>$tag,
  106. 'mid'=>$order['mid'],
  107. 'c_id'=>$order['c_id'],
  108. 'name'=>$pro_info['name'],
  109. 'cover'=>$pro_info['cover'],
  110. 'pro_info'=>$order['pro_info'],
  111. 'company'=>$company,
  112. 'company_hash'=>$company_hash,
  113. 'ddcid'=>$tokenid,
  114. 'company_hash_time'=>$company_hash_time,
  115. 'collectors_hash'=>$collectors_hash,
  116. 'collectors_hash_time'=>''
  117. ];
  118. $array[] = $date;
  119. }
  120. Db::name('store_order_info')->insertAll($array);
  121. //减少用户余额
  122. $ret = memberMoneyChange($order['pay_price'],3,$order['mid'],'购买数字藏品',0,$order_id,['order_id'=>$order_id,'source'=>1]);
  123. Db::commit();
  124. } catch (\Exception $e){
  125. $com = false;
  126. Db::rollback();
  127. }
  128. if ($com){
  129. $redis->hdel($key,$result['out_trade_no']);
  130. return '成功';
  131. }else{
  132. return '失败';
  133. }
  134. }
  135. /**
  136. * 杉德支付--支付成功回调订单
  137. */
  138. public function shandeOrderNotify(){
  139. $data = stripslashes($_POST['data']); //支付数据
  140. file_put_contents("shandepay.txt", $data . "\n" , FILE_APPEND);
  141. $data = json_decode($data,true);
  142. if ($data['body']['orderStatus']==1){
  143. //$data['body']['orderCode']
  144. $return = $this->dealData($data,'sd');
  145. if ($return){
  146. return 'respCode=000000';
  147. }else{
  148. file_put_contents("shandepay_error.txt", $data . "\n" . json_encode($data) . "\n" . "\n", FILE_APPEND);
  149. }
  150. }
  151. }
  152. /**
  153. * 处理数据库信息
  154. * @param $result
  155. * @return bool
  156. */
  157. function dealData($result,$from=''){
  158. Db::startTrans();
  159. $redis = new Redis();
  160. if($from=='sd'){
  161. $orderCode = $result['body']['orderCode'];
  162. $orderCode_arr = explode('S',$orderCode);
  163. $key = 'order_not_pay_'.$orderCode_arr[1];
  164. $out_trade_no = $orderCode_arr[0];
  165. }else{
  166. $key = 'order_not_pay_'.$result['attach'];
  167. $out_trade_no = $result['out_trade_no'];
  168. }
  169. $com = true;
  170. try {
  171. $order = $redis->hGet($key,$out_trade_no);
  172. if (!$order) return false;
  173. $order = json_decode($order,true);
  174. $is_order = Db::name('store_order')->where('order_no',$out_trade_no)->find();
  175. if (isset($is_order) && $is_order['status']==1) return false;
  176. $order['status'] = 1;
  177. $order['pay_at'] = date('Y-m-d H:i:s');
  178. $order['return_success_info'] = json_encode($result,true);
  179. $order_id = Db::name('store_order')->insertGetId($order);
  180. $array = [];
  181. $pro_info = json_decode($order['pro_info'],true);
  182. $type = Db::name('store_collection')->where('id',$order['c_id'])->value('type');
  183. for ($i=0;$i<$order['num'];$i++){
  184. //获取排名
  185. $rank = getRanking($order['c_id'])+1;
  186. $tag = getTag($order['c_id'],$rank,$order['inventory']);
  187. saveRanking($order['c_id']);
  188. $company = '南宁中科数艺科技有限公司';
  189. $hash = getCompanyHash($order['c_id']);
  190. $company_hash = $hash['hash'];
  191. $company_hash_time = $hash['create_at'];
  192. $tokenid = $hash['tokenid'];
  193. Db::name('hash')->where('hash',$hash['hash'])->update(['status'=>1]);
  194. $collectors_hash = '';
  195. $date = [
  196. 'order_id'=>$order_id,
  197. 'order_no'=>get_order_sn(),
  198. 'tag'=>$tag,
  199. 'mid'=>$order['mid'],
  200. 'c_id'=>$order['c_id'],
  201. 'name'=>$pro_info['name'],
  202. 'cover'=>$pro_info['cover'],
  203. 'pro_info'=>$order['pro_info'],
  204. 'type' => $type,
  205. 'company'=>$company,
  206. 'company_hash'=>$company_hash,
  207. 'ddcid'=>$tokenid,
  208. 'company_hash_time'=>$company_hash_time,
  209. 'collectors_hash'=>$collectors_hash,
  210. 'collectors_hash_time'=>''
  211. ];
  212. $array[] = $date;
  213. }
  214. Db::name('store_order_info')->insertAll($array);
  215. //送积分
  216. // $by_collection_integral = getConfigValue('by_collection_integral');
  217. // if ($by_collection_integral){
  218. // $by_collection_integral = bcmul($by_collection_integral,$order['num']);
  219. // memberMoneyChange($by_collection_integral,1,$order['mid'],'购买藏品',1,$order['id']);
  220. // }
  221. Db::commit();
  222. } catch (\Exception $e){
  223. $com = false;
  224. Db::rollback();
  225. }
  226. if ($com){
  227. $redis->hdel($key,$result['out_trade_no']);
  228. return true;
  229. }else{
  230. return false;
  231. }
  232. }
  233. /**
  234. * 微信支付--充值盲盒成功回调订单
  235. */
  236. public function BlindRechargeNotify(){
  237. $payXml = file_get_contents("php://input");
  238. //将xml格式转化为json格式
  239. $jsonXml = json_encode(simplexml_load_string($payXml, 'SimpleXMLElement', LIBXML_NOCDATA));
  240. //将json格式转成数组格式 $result['out_trade_no']
  241. $result = json_decode($jsonXml, true);
  242. if ($result['return_code'] == 'SUCCESS' && $result['result_code'] == 'SUCCESS') {
  243. $return = $this->dealBox($result);
  244. if ($return){
  245. $arr = array(
  246. 'return_code' => 'SUCCESS',
  247. 'return_msg' => 'OK',
  248. );
  249. return $this->arrayToXml($arr);
  250. }else{
  251. file_put_contents("order_pay_error.txt", file_get_contents("php://input") . "\n" . json_encode($result) . "\n" . "\n", FILE_APPEND);
  252. }
  253. }
  254. }
  255. /**
  256. * 支付宝支付--充值盲盒回调订单
  257. */
  258. public function alipayBlindRechargeNotify(){
  259. $result = input('post.');
  260. if ($result['trade_status'] == 'TRADE_SUCCESS' || $result['trade_status'] == 'TRADE_FINISHED') {
  261. $return = $this->dealBox($result);
  262. if ($return){
  263. echo 'success';
  264. }else{
  265. file_put_contents("order_alipay_error.txt", file_get_contents("php://input") . "\n" . json_encode($result) . "\n" . "\n", FILE_APPEND);
  266. }
  267. }
  268. }
  269. /**
  270. * 盲盒充值次数处理数据库信息
  271. * @param $result
  272. * @return bool
  273. */
  274. function dealBox($result){
  275. $com = true;
  276. Db::startTrans();
  277. try {
  278. $order = Db::name('store_blind_recharge')->where('order_no',$result['out_trade_no'])->find();
  279. if ($order['status']==1) return true;
  280. Db::name('store_blind_recharge')
  281. ->where('order_no',$result['out_trade_no'])
  282. ->update(['status'=>1,'pay_at'=>date('Y-m-d H:i:s'),'return_success_info'=>json_encode($result,true)]);
  283. //用户加次数
  284. Db::name('store_member')->where('id',$order['m_id'])->setInc('lottery_number',$order['num']);
  285. Db::commit();
  286. } catch (\Exception $e){
  287. $com = false;
  288. Db::rollback();
  289. }
  290. if ($com){
  291. setMemberInfoHash($order['m_id']);
  292. return true;
  293. }else{
  294. return false;
  295. }
  296. }
  297. /**
  298. * 微信支付--二级市场回调订单
  299. */
  300. public function SecondaryWxOrderNotify(){
  301. $payXml = file_get_contents("php://input");
  302. //将xml格式转化为json格式
  303. $jsonXml = json_encode(simplexml_load_string($payXml, 'SimpleXMLElement', LIBXML_NOCDATA));
  304. //将json格式转成数组格式 $result['out_trade_no']
  305. $result = json_decode($jsonXml, true);
  306. if ($result['return_code'] == 'SUCCESS' && $result['result_code'] == 'SUCCESS') {
  307. $return = $this->dealSecondary($result);
  308. if ($return){
  309. $arr = array(
  310. 'return_code' => 'SUCCESS',
  311. 'return_msg' => 'OK',
  312. );
  313. return $this->arrayToXml($arr);
  314. }else{
  315. file_put_contents("order_pay_error.txt", file_get_contents("php://input") . "\n" . json_encode($result) . "\n" . "\n", FILE_APPEND);
  316. }
  317. }
  318. }
  319. /**
  320. * 支付宝支付--二级市场回调订单
  321. */
  322. public function alipaySecondaryNotify(){
  323. $result = input('post.');
  324. if ($result['trade_status'] == 'TRADE_SUCCESS' || $result['trade_status'] == 'TRADE_FINISHED') {
  325. $return = $this->dealSecondary($result);
  326. if ($return){
  327. echo 'success';
  328. }else{
  329. file_put_contents("order_alipay_error.txt", file_get_contents("php://input") . "\n" . json_encode($result) . "\n" . "\n", FILE_APPEND);
  330. }
  331. }
  332. }
  333. /**
  334. * 杉德支付--二级市场回调订单
  335. */
  336. public function shandeSecondaryNotify(){
  337. $data = stripslashes($_POST['data']); //支付数据
  338. file_put_contents("shandepay.txt", $data . "\n" , FILE_APPEND);
  339. $data = json_decode($data,true);
  340. if ($data['body']['orderStatus']==1){
  341. //$data['body']['orderCode']
  342. $return = $this->dealSecondary($data,'sd');
  343. if ($return){
  344. return 'respCode=000000';
  345. }else{
  346. file_put_contents("shandepay_error.txt", $data . "\n" . json_encode($data) . "\n" . "\n", FILE_APPEND);
  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. }else{
  362. $out_trade_no = $result['out_trade_no'];
  363. }
  364. $order = Db::name('store_order_info_order')->where('order_no',$out_trade_no)->find();
  365. if ($order['status']==1) return false;
  366. if (!$order) return false;
  367. $resale_status = Db::name('store_order_info')->where('id',$order['info_id'])->value('resale_status');
  368. if ($resale_status!=2){
  369. }else{
  370. Db::name('store_order_info_order')
  371. ->where('order_no',$out_trade_no)
  372. ->update(['status'=>1,'pay_at'=>date('Y-m-d H:i:s'),'return_success_info'=>json_encode($result,true)]);
  373. //藏品修改状态
  374. Db::name('store_order_info')->where('id',$order['info_id'])->update([
  375. 'status'=>2,
  376. 'resale_status'=>3,
  377. 'selling_time'=>date('Y-m-d H:i:s')
  378. ]);
  379. $info = Db::name('store_order_info')->where('id',$order['info_id'])->find();
  380. //增加一条记录
  381. $to_date = [
  382. 'order_id'=>$info['order_id'],
  383. 'order_no'=>get_order_sn(),
  384. 'tag'=>$info['tag'],
  385. 'mid'=>$order['mid'],
  386. 'c_id'=>$info['c_id'],
  387. 'name'=>$info['name'],
  388. 'cover'=>$info['cover'],
  389. 'pro_info'=>$info['pro_info'],
  390. 'status'=>3,
  391. 'from'=>2,
  392. 'to_mid'=>$info['mid'],
  393. 'over_time'=>date('Y-m-d H:i:s'),
  394. 'company'=>'南宁中科数艺科技有限公司',
  395. 'company_hash'=>$info['company_hash'],
  396. 'company_hash_time'=>$info['company_hash_time'],
  397. 'ddcid'=>$info['ddcid'],
  398. 'collectors_hash'=>'',
  399. 'collectors_hash_time'=>date('Y-m-d H:i:s')
  400. ];
  401. Db::name('store_order_info')->insert($to_date);
  402. //增加用户余额
  403. memberMoneyChange($order['to_account'],3,$info['mid'],'出售藏品',1,$order['id'],['source'=>4]);
  404. Db::commit();
  405. }
  406. } catch (\Exception $e){
  407. $com = false;
  408. Db::rollback();
  409. }
  410. if ($com){
  411. setMemberInfoHash($order['mid']);
  412. return true;
  413. }else{
  414. return false;
  415. }
  416. }
  417. /**
  418. * 微信支付--充值余额支付成功回调订单
  419. */
  420. public function WxRechargeOrderNotify(){
  421. $payXml = file_get_contents("php://input");
  422. //将xml格式转化为json格式
  423. $jsonXml = json_encode(simplexml_load_string($payXml, 'SimpleXMLElement', LIBXML_NOCDATA));
  424. //将json格式转成数组格式 $result['out_trade_no']
  425. $result = json_decode($jsonXml, true);
  426. file_put_contents("wx_recharge_pay_return.txt", json_encode($result) . "\n" . "\n", FILE_APPEND);
  427. if ($result['return_code'] == 'SUCCESS' && $result['result_code'] == 'SUCCESS') {
  428. $return = $this->dealRechargeData($result);
  429. if ($return){
  430. $arr = array(
  431. 'return_code' => 'SUCCESS',
  432. 'return_msg' => 'OK',
  433. );
  434. return $this->arrayToXml($arr);
  435. }else{
  436. file_put_contents("rechargeorder_pay_error.txt", file_get_contents("php://input") . "\n" . json_encode($result) . "\n" . "\n", FILE_APPEND);
  437. }
  438. }
  439. }
  440. /**
  441. * 支付宝支付--支付成功回调订单
  442. */
  443. public function alipayRechargeOrderNotify(){
  444. $result = input('post.');
  445. file_put_contents("ali_pay_return.txt", json_encode($result) . "\n" . "\n", FILE_APPEND);
  446. if ($result['trade_status'] == 'TRADE_SUCCESS' || $result['trade_status'] == 'TRADE_FINISHED') {
  447. $return = $this->dealRechargeData($result);
  448. if ($return){
  449. echo 'success';
  450. }else{
  451. file_put_contents("rechargeorder_pay_error.txt", file_get_contents("php://input") . "\n" . json_encode($result) . "\n" . "\n", FILE_APPEND);
  452. }
  453. }
  454. }
  455. /**
  456. * 杉德支付--支付成功回调订单
  457. */
  458. public function shandeRechargeOrderNotify(){
  459. $data = stripslashes($_POST['data']); //支付数据
  460. file_put_contents("shandepay.txt", $data . "\n" , FILE_APPEND);
  461. $data = json_decode($data,true);
  462. if ($data['body']['orderStatus']==1){
  463. //$data['body']['orderCode']
  464. $return = $this->dealRechargeData($data,'sd');
  465. if ($return){
  466. return 'respCode=000000';
  467. }else{
  468. file_put_contents("shandepay_error.txt", $data . "\n" . json_encode($data) . "\n" . "\n", FILE_APPEND);
  469. }
  470. }
  471. }
  472. /**
  473. * 充值余额处理数据库信息
  474. * @param $result
  475. * @return bool
  476. */
  477. function dealRechargeData($result,$from=''){
  478. Db::startTrans();
  479. $com = true;
  480. if($from=='sd'){
  481. $orderCode = $result['body']['orderCode'];
  482. $orderCode_arr = explode('S',$orderCode);
  483. $result['out_trade_no'] = $orderCode_arr[0];
  484. }
  485. try {
  486. $order = Db::name('store_recharge_order')->where('order_no',$result['out_trade_no'])->find();
  487. if (isset($order) && $order['status']==1) return false;
  488. $orderUp['status'] = 1;
  489. $orderUp['pay_at'] = date('Y-m-d H:i:s');
  490. $orderUp['return_success_info'] = json_encode($result,true);
  491. $order_id = Db::name('store_recharge_order')->where('order_no',$result['out_trade_no'])->update($orderUp);
  492. //添加用户余额
  493. memberMoneyChange($order['real_money'],3,$order['uid'],'充值余额',1,$order_id,['order_id'=>$order_id,'source'=>2]);
  494. Db::commit();
  495. } catch (\Exception $e){
  496. $com = false;
  497. Db::rollback();
  498. }
  499. if ($com){
  500. //更新用户信息
  501. setMemberInfoHash($order['uid']);
  502. return true;
  503. }else{
  504. return false;
  505. }
  506. }
  507. /**
  508. * 数组转xml
  509. * @ApiInternal
  510. */
  511. public function arrayToXml($arr)
  512. {
  513. $xml = "<xml>";
  514. foreach ($arr as $key => $val) {
  515. if (is_numeric($val)) {
  516. $xml .= "<" . $key . ">" . $val . "</" . $key . ">";
  517. } else
  518. $xml .= "<" . $key . "><![CDATA[" . $val . "]]></" . $key . ">";
  519. }
  520. $xml .= "</xml>";
  521. return $xml;
  522. }
  523. }