Pay.php 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  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 EasyWeChat\Factory;
  16. use think\Controller;
  17. use think\Db;
  18. use think\Exception;
  19. use AlibabaCloud\Client\AlibabaCloud;
  20. use AlibabaCloud\Client\Exception\ClientException;
  21. use AlibabaCloud\Client\Exception\ServerException;
  22. use function AlibabaCloud\Client\value;
  23. /**
  24. * 支付管理类
  25. * Class Refund
  26. * @package app\api\controller\Refund
  27. */
  28. class Pay extends Controller
  29. {
  30. /**
  31. * 微信支付--商品支付成功回调订单
  32. */
  33. public function WxOrderNotify(){
  34. $payXml = file_get_contents("php://input");
  35. //将xml格式转化为json格式
  36. $jsonXml = json_encode(simplexml_load_string($payXml, 'SimpleXMLElement', LIBXML_NOCDATA));
  37. //将json格式转成数组格式 $result['out_trade_no']
  38. $result = json_decode($jsonXml, true);
  39. if ($result['return_code'] == 'SUCCESS' && $result['result_code'] == 'SUCCESS') {
  40. $return = $this->dealData($result);
  41. if ($return){
  42. $arr = array(
  43. 'return_code' => 'SUCCESS',
  44. 'return_msg' => 'OK',
  45. );
  46. return $this->arrayToXml($arr);
  47. }else{
  48. file_put_contents("order_pay_error.txt", file_get_contents("php://input") . "\n" . json_encode($result) . "\n" . "\n", FILE_APPEND);
  49. }
  50. }
  51. }
  52. /**
  53. * 支付宝支付--支付成功回调订单
  54. */
  55. public function alipayOrderNotify(){
  56. $result = input('post.');
  57. if ($result['trade_status'] == 'TRADE_SUCCESS' || $result['trade_status'] == 'TRADE_FINISHED') {
  58. $return = $this->dealData($result);
  59. if ($return){
  60. echo 'success';
  61. }else{
  62. file_put_contents("order_alipay_error.txt", file_get_contents("php://input") . "\n" . json_encode($result) . "\n" . "\n", FILE_APPEND);
  63. }
  64. }
  65. }
  66. /**
  67. * 处理数据库信息
  68. * @param $result
  69. * @return bool
  70. */
  71. function dealData($result){
  72. Db::startTrans();
  73. try {
  74. $order = Db::name('store_order')->where('order_no',$result['out_trade_no'])->find();
  75. Db::name('store_order')->where('order_no',$result['out_trade_no'])
  76. ->update(['status'=>1,'pay_at'=>date('Y-m-d H:i:s'),'return_success_info'=>json_encode($result,true)]);
  77. $array = [];
  78. for ($i=0;$i<$order['num'];$i++){
  79. //获取排名
  80. $rank = getRanking($order['c_id'])+1;
  81. $tag = getTag($order['c_id'],$rank,$order['inventory']);
  82. saveRanking($order['c_id']);
  83. $company = '象寻数字科技(上海)有限公司';
  84. $hash = getCompanyHash($order['c_id']);
  85. $company_hash = $hash['hash'];
  86. $ddcid = Db::name('hash')->where('hash',$hash['hash'])->value('ddcid');
  87. $company_hash_time = $hash['create_at'] ? $hash['create_at'] : date('Y-m-d H:i:s');
  88. Db::name('hash')->where('hash',$hash['hash'])->update(['status'=>1]);
  89. $collectors_hash = '';
  90. $date = [
  91. 'order_id'=>$order['id'],
  92. 'order_no'=>get_order_sn(),
  93. 'tag'=>$tag,
  94. 'mid'=>$order['mid'],
  95. 'c_id'=>$order['c_id'],
  96. 'pro_info'=>$order['pro_info'],
  97. 'company'=>$company,
  98. 'company_hash'=>$company_hash,
  99. 'company_hash_time'=>$company_hash_time,
  100. 'ddcid'=>$ddcid,
  101. 'collectors_hash'=>$collectors_hash,
  102. 'collectors_hash_time'=>''
  103. ];
  104. $array[] = $date;
  105. }
  106. Db::name('store_order_info')->insertAll($array);
  107. //送积分
  108. $by_collection_integral = getConfigValue('by_collection_integral');
  109. if ($by_collection_integral){
  110. $by_collection_integral = $by_collection_integral*$order['num'];
  111. memberMoneyChange($by_collection_integral,1,$order['mid'],'购买藏品',1,$order['id']);
  112. }
  113. Db::commit();
  114. return true;
  115. } catch (\Exception $e){
  116. Db::rollback();
  117. return false;
  118. }
  119. }
  120. /**
  121. * 数组转xml
  122. * @ApiInternal
  123. */
  124. public function arrayToXml($arr)
  125. {
  126. $xml = "<xml>";
  127. foreach ($arr as $key => $val) {
  128. if (is_numeric($val)) {
  129. $xml .= "<" . $key . ">" . $val . "</" . $key . ">";
  130. } else
  131. $xml .= "<" . $key . "><![CDATA[" . $val . "]]></" . $key . ">";
  132. }
  133. $xml .= "</xml>";
  134. return $xml;
  135. }
  136. }