Pay.php 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427
  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. return $return;
  65. }else{
  66. file_put_contents("order_alipay_error.txt", file_get_contents("php://input") . "\n" . json_encode($result) . "\n" . "\n", FILE_APPEND);
  67. }
  68. }
  69. }
  70. /**
  71. * 杉德支付--支付成功回调订单
  72. */
  73. public function shandeOrderNotify(){
  74. $data = stripslashes($_POST['data']); //支付数据
  75. file_put_contents("shandepay.txt", $data . "\n" , FILE_APPEND);
  76. $data = json_decode($data,true);
  77. if ($data['body']['orderStatus']==1){
  78. $return = $this->dealData($data,'sd');
  79. if ($return){
  80. return 'respCode=000000';
  81. }else{
  82. file_put_contents("shandepay_error.txt", $data . "\n" . json_encode($data) . "\n" . "\n", FILE_APPEND);
  83. }
  84. }
  85. }
  86. /**
  87. * 处理数据库信息
  88. * @param $result
  89. * @return bool
  90. */
  91. function dealData($result,$from=''){
  92. Db::startTrans();
  93. $redis = new Redis();
  94. if($from=='sd'){
  95. $orderCode = $result['body']['orderCode'];
  96. $orderCode_arr = explode('S',$orderCode);
  97. $result['out_trade_no'] = $orderCode_arr[0];
  98. $key = 'order_not_pay_'.$orderCode_arr[1];
  99. }else{
  100. $key = 'order_not_pay_'.$result['attach'];
  101. }
  102. $com = true;
  103. try {
  104. $order = $redis->hGet($key,$result['out_trade_no']);
  105. if (!$order) return false;
  106. $order = json_decode($order,true);
  107. $is_order = Db::name('store_order')->where('order_no',$result['out_trade_no'])->find();
  108. if (isset($is_order) && $is_order['status']==1) return false;
  109. $order['status'] = 1;
  110. $order['pay_at'] = date('Y-m-d H:i:s');
  111. $order['return_success_info'] = json_encode($result,true);
  112. $order_id = Db::name('store_order')->insertGetId($order);
  113. $array = [];
  114. $pro_info = json_decode($order['pro_info'],true);
  115. for ($i=0;$i<$order['num'];$i++){
  116. //获取排名
  117. $rank = getRanking($order['c_id'])+1;
  118. $tag = getTag($order['c_id'],$rank,$order['inventory']);
  119. saveRanking($order['c_id']);
  120. $company = '象链数藏';
  121. $hash = getCompanyHash($order['c_id']);
  122. $company_hash = $hash['hash'];
  123. $company_hash_time = $hash['create_at'];
  124. $tokenid = $hash['tokenid'];
  125. Db::name('hash')->where('hash',$hash['hash'])->update(['status'=>1]);
  126. $collectors_hash = '';
  127. $type = Db::name('store_collection')->where('id',$order['c_id'])->value('type');
  128. $date = [
  129. 'order_id'=>$order_id,
  130. 'order_no'=>get_order_sn(),
  131. 'tag'=>$tag,
  132. 'mid'=>$order['mid'],
  133. 'c_id'=>$order['c_id'],
  134. 'name'=>$pro_info['name'],
  135. 'cover'=>$pro_info['cover'],
  136. 'pro_info'=>$order['pro_info'],
  137. 'company'=>$company,
  138. 'type' => $type,
  139. 'company_hash'=>$company_hash ? $company_hash:'',
  140. 'ddcid'=>$tokenid,
  141. 'company_hash_time'=>$company_hash_time,
  142. 'collectors_hash'=>$collectors_hash ? $collectors_hash : '',
  143. ];
  144. $array[] = $date;
  145. }
  146. $res = Db::name('store_order_info')->insertAll($array);
  147. Db::commit();
  148. } catch (\Exception $e){
  149. $com = false;
  150. Db::rollback();
  151. }
  152. if ($com){
  153. $redis->hdel($key,$result['out_trade_no']);
  154. return true;
  155. }else{
  156. return false;
  157. }
  158. }
  159. /**
  160. * 微信支付--充值盲盒成功回调订单
  161. */
  162. public function BlindRechargeNotify(){
  163. $payXml = file_get_contents("php://input");
  164. //将xml格式转化为json格式
  165. $jsonXml = json_encode(simplexml_load_string($payXml, 'SimpleXMLElement', LIBXML_NOCDATA));
  166. //将json格式转成数组格式 $result['out_trade_no']
  167. $result = json_decode($jsonXml, true);
  168. if ($result['return_code'] == 'SUCCESS' && $result['result_code'] == 'SUCCESS') {
  169. $return = $this->dealBox($result);
  170. if ($return){
  171. $arr = array(
  172. 'return_code' => 'SUCCESS',
  173. 'return_msg' => 'OK',
  174. );
  175. return $this->arrayToXml($arr);
  176. }else{
  177. file_put_contents("order_pay_error.txt", file_get_contents("php://input") . "\n" . json_encode($result) . "\n" . "\n", FILE_APPEND);
  178. }
  179. }
  180. }
  181. /**
  182. * 支付宝支付--充值盲盒回调订单
  183. */
  184. public function alipayBlindRechargeNotify(){
  185. $result = input('post.');
  186. if ($result['trade_status'] == 'TRADE_SUCCESS' || $result['trade_status'] == 'TRADE_FINISHED') {
  187. $return = $this->dealBox($result);
  188. if ($return){
  189. echo 'success';
  190. }else{
  191. file_put_contents("order_alipay_error.txt", file_get_contents("php://input") . "\n" . json_encode($result) . "\n" . "\n", FILE_APPEND);
  192. }
  193. }
  194. }
  195. /**
  196. * 盲盒充值次数处理数据库信息
  197. * @param $result
  198. * @return bool
  199. */
  200. function dealBox($result,$from=''){
  201. $com = true;
  202. Db::startTrans();
  203. try {
  204. $order = Db::name('store_blind_recharge')->where('order_no',$result['out_trade_no'])->find();
  205. if ($order['status']==1) return true;
  206. Db::name('store_blind_recharge')
  207. ->where('order_no',$result['out_trade_no'])
  208. ->update(['status'=>1,'pay_at'=>date('Y-m-d H:i:s'),'return_success_info'=>json_encode($result,true)]);
  209. //用户加次数
  210. Db::name('store_member')->where('id',$order['m_id'])->setInc('lottery_number',$order['num']);
  211. Db::commit();
  212. } catch (\Exception $e){
  213. $com = false;
  214. Db::rollback();
  215. }
  216. if ($com){
  217. setMemberInfoHash($order['m_id']);
  218. return true;
  219. }else{
  220. return false;
  221. }
  222. }
  223. /**
  224. * 微信支付--二级市场回调订单
  225. */
  226. public function SecondaryWxOrderNotify(){
  227. $payXml = file_get_contents("php://input");
  228. //将xml格式转化为json格式
  229. $jsonXml = json_encode(simplexml_load_string($payXml, 'SimpleXMLElement', LIBXML_NOCDATA));
  230. //将json格式转成数组格式 $result['out_trade_no']
  231. $result = json_decode($jsonXml, true);
  232. if ($result['return_code'] == 'SUCCESS' && $result['result_code'] == 'SUCCESS') {
  233. $return = $this->dealSecondary($result);
  234. if ($return){
  235. $arr = array(
  236. 'return_code' => 'SUCCESS',
  237. 'return_msg' => 'OK',
  238. );
  239. return $this->arrayToXml($arr);
  240. }else{
  241. file_put_contents("order_pay_error.txt", file_get_contents("php://input") . "\n" . json_encode($result) . "\n" . "\n", FILE_APPEND);
  242. }
  243. }
  244. }
  245. /**
  246. * 支付宝支付--二级市场回调订单
  247. */
  248. public function alipaySecondaryNotify(){
  249. $result = input('post.');
  250. if ($result['trade_status'] == 'TRADE_SUCCESS' || $result['trade_status'] == 'TRADE_FINISHED') {
  251. $return = $this->dealSecondary($result);
  252. if ($return){
  253. echo 'success';
  254. }else{
  255. file_put_contents("order_alipay_error.txt", file_get_contents("php://input") . "\n" . json_encode($result) . "\n" . "\n", FILE_APPEND);
  256. }
  257. }
  258. }
  259. /**
  260. * 杉德支付--二级市场回调订单
  261. */
  262. public function shandeSecondaryNotify(){
  263. $data = stripslashes($_POST['data']); //支付数据
  264. file_put_contents("shandepay.txt", $data . "\n" , FILE_APPEND);
  265. $data = json_decode($data,true);
  266. if ($data['body']['orderStatus']==1){
  267. //$data['body']['orderCode']
  268. $return = $this->dealSecondary($data,'sd');
  269. if ($return){
  270. return 'respCode=000000';
  271. }else{
  272. file_put_contents("shandepay_error.txt", $data . "\n" . json_encode($data) . "\n" . "\n", FILE_APPEND);
  273. }
  274. }
  275. }
  276. public function walletNotify()
  277. {
  278. $data = stripslashes($_POST['data']); //支付数据
  279. file_put_contents("walletNotify.txt", $data . "\n" , FILE_APPEND);
  280. $data = json_decode($data,true);
  281. if ($data['body']['orderStatus']==1){
  282. Db::startTrans();
  283. try {
  284. $out_trade_no = $data['body']['orderCode'];
  285. $order = Db::name('store_recharge_order')->where('order_no',$out_trade_no)->find();
  286. if (!$order) return false;
  287. if ($order['status']==1) return 'respCode=000000';
  288. Db::name('store_recharge_order')->where('order_no',$out_trade_no)->update(['status'=>1,'pay_at'=>date('Y-m-d H:i:s')]);
  289. memberMoneyChange($order['total_price'],3,$order['mid'],'余额充值',1,$order['id'],5);
  290. Db::commit();
  291. return 'respCode=000000';
  292. } catch (\Exception $e){
  293. Db::rollback();
  294. file_put_contents("walletNotify_error.txt", $data . "\n" . json_encode($data) . "\n" . "\n", FILE_APPEND);
  295. return false;
  296. }
  297. }
  298. }
  299. /**
  300. * 二级市场处理数据库信息
  301. * @param $result
  302. * @return bool
  303. */
  304. function dealSecondary($result,$from=''){
  305. $com = true;
  306. Db::startTrans();
  307. try {
  308. if ($from=='sd'){
  309. $out_trade_no = $result['body']['orderCode'];
  310. }else{
  311. $out_trade_no = $result['out_trade_no'];
  312. }
  313. $order = Db::name('store_order_info_order')->where('order_no',$out_trade_no)->find();
  314. if ($order['status']==1) return false;
  315. if (!$order) return false;
  316. $resale_status = Db::name('store_order_info')->where('id',$order['info_id'])->value('resale_status');
  317. if ($resale_status!=2){
  318. }else{
  319. Db::name('store_order_info_order')
  320. ->where('order_no',$out_trade_no)
  321. ->update(['status'=>1,'pay_at'=>date('Y-m-d H:i:s'),'return_success_info'=>json_encode($result,true)]);
  322. //藏品修改状态
  323. Db::name('store_order_info')->where('id',$order['info_id'])->update([
  324. 'status'=>2,
  325. 'resale_status'=>3,
  326. 'selling_time'=>date('Y-m-d H:i:s')
  327. ]);
  328. $info = Db::name('store_order_info')->where('id',$order['info_id'])->find();
  329. //增加一条记录
  330. $to_date = [
  331. 'order_id'=>$info['order_id'],
  332. 'order_no'=>get_order_sn(),
  333. 'tag'=>$info['tag'],
  334. 'mid'=>$order['mid'],
  335. 'c_id'=>$info['c_id'],
  336. 'name'=>$info['name'],
  337. 'cover'=>$info['cover'],
  338. 'pro_info'=>$info['pro_info'],
  339. 'status'=>3,
  340. 'from'=>2,
  341. 'to_mid'=>$info['mid'],
  342. 'over_time'=>date('Y-m-d H:i:s'),
  343. 'company'=>'象链数藏',
  344. 'company_hash'=>$info['company_hash'] ? $info['company_hash']: '',
  345. 'company_hash_time'=>$info['company_hash_time'],
  346. 'ddcid'=>$info['ddcid'],
  347. 'collectors_hash'=>'',
  348. 'collectors_hash_time'=>date('Y-m-d H:i:s')
  349. ];
  350. Db::name('store_order_info')->insert($to_date);
  351. //增加用户余额
  352. memberMoneyChange($order['to_account'],3,$info['mid'],'出售藏品',1,$order['id'],1);
  353. Db::commit();
  354. }
  355. } catch (\Exception $e){
  356. $com = false;
  357. Db::rollback();
  358. }
  359. if ($com){
  360. setMemberInfoHash($order['mid']);
  361. //商品信息
  362. $pro_info = json_decode($info['pro_info'],true);
  363. return true;
  364. }else{
  365. return false;
  366. }
  367. }
  368. /**
  369. * 数组转xml
  370. * @ApiInternal
  371. */
  372. public function arrayToXml($arr)
  373. {
  374. $xml = "<xml>";
  375. foreach ($arr as $key => $val) {
  376. if (is_numeric($val)) {
  377. $xml .= "<" . $key . ">" . $val . "</" . $key . ">";
  378. } else
  379. $xml .= "<" . $key . "><![CDATA[" . $val . "]]></" . $key . ">";
  380. }
  381. $xml .= "</xml>";
  382. return $xml;
  383. }
  384. }