Pay.php 16 KB

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