123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575 |
- <?php
- // +----------------------------------------------------------------------
- // | ThinkAdmin
- // +----------------------------------------------------------------------
- // | 版权所有 2014~2019 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
- // +----------------------------------------------------------------------
- // | 官方网站: http://demo.thinkadmin.top
- // +----------------------------------------------------------------------
- // | 开源协议 ( https://mit-license.org )
- // +----------------------------------------------------------------------
- // | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
- // | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
- // +----------------------------------------------------------------------
- namespace app\api\controller;
- use think\cache\driver\Redis;
- use EasyWeChat\Factory;
- use think\Controller;
- use think\Db;
- use think\Exception;
- use AlibabaCloud\Client\AlibabaCloud;
- use AlibabaCloud\Client\Exception\ClientException;
- use AlibabaCloud\Client\Exception\ServerException;
- use function AlibabaCloud\Client\value;
- /**
- * 支付管理类
- * Class Refund
- * @package app\api\controller\Refund
- */
- class Pay extends Controller
- {
- /**
- * 微信支付--商品支付成功回调订单
- */
- public function WxOrderNotify(){
- $payXml = file_get_contents("php://input");
- //将xml格式转化为json格式
- $jsonXml = json_encode(simplexml_load_string($payXml, 'SimpleXMLElement', LIBXML_NOCDATA));
- //将json格式转成数组格式 $result['out_trade_no']
- $result = json_decode($jsonXml, true);
- //file_put_contents("wx_pay_return.txt", json_encode($result) . "\n" . "\n", FILE_APPEND);
- if ($result['return_code'] == 'SUCCESS' && $result['result_code'] == 'SUCCESS') {
- $return = $this->dealData($result);
- if ($return){
- $arr = array(
- 'return_code' => 'SUCCESS',
- 'return_msg' => 'OK',
- );
- return $this->arrayToXml($arr);
- }else{
- file_put_contents("order_pay_error.txt", file_get_contents("php://input") . "\n" . json_encode($result) . "\n" . "\n", FILE_APPEND);
- }
- }
- }
- /**
- * 支付宝支付--支付成功回调订单
- */
- public function alipayOrderNotify(){
- $result = input('post.');
- file_put_contents("ali_pay_return.txt", json_encode($result) . "\n" . "\n", FILE_APPEND);
- if ($result['trade_status'] == 'TRADE_SUCCESS' || $result['trade_status'] == 'TRADE_FINISHED') {
- $return = $this->dealData($result);
- if ($return){
- echo 'success';
- }else{
- file_put_contents("order_alipay_error.txt", file_get_contents("php://input") . "\n" . json_encode($result) . "\n" . "\n", FILE_APPEND);
- }
- }
- }
- /**
- * 余额支付--支付成功回调订单
- */
- public static function balanceOrderNotify($result){
- file_put_contents("balance_pay_return.txt", json_encode($result) . "\n" . "\n", FILE_APPEND);
- Db::startTrans();
- $redis = new Redis();
- $key = 'order_not_pay_'.$result['attach'];
- $com = true;
- try {
- $order = $redis->hGet($key,$result['out_trade_no']);
- if (!$order) return '木有订单';
- $order = json_decode($order,true);
- $is_order = Db::name('store_order')->where('order_no',$result['out_trade_no'])->find();
- if (isset($is_order) && $is_order['status']==1) return '又订单id';
- $order['status'] = 1;
- $order['pay_at'] = date('Y-m-d H:i:s');
- $order['return_success_info'] = json_encode($result,true);
- $order_id = Db::name('store_order')->insertGetId($order);
- $array = [];
- $pro_info = json_decode($order['pro_info'],true);
- for ($i=0;$i<$order['num'];$i++){
- //获取排名
- $rank = getRanking($order['c_id'])+1;
- $tag = getTag($order['c_id'],$rank,$order['inventory']);
- saveRanking($order['c_id']);
- $company = '南宁中科数艺科技有限公司';
- $hash = getCompanyHash($order['c_id']);
- $company_hash = $hash['hash'];
- $company_hash_time = $hash['create_at'];
- $tokenid = $hash['tokenid'];
- Db::name('hash')->where('hash',$hash['hash'])->update(['status'=>1]);
- $collectors_hash = '';
- $date = [
- 'order_id'=>$order_id,
- 'order_no'=>get_order_sn(),
- 'tag'=>$tag,
- 'mid'=>$order['mid'],
- 'c_id'=>$order['c_id'],
- 'name'=>$pro_info['name'],
- 'cover'=>$pro_info['cover'],
- 'pro_info'=>$order['pro_info'],
- 'company'=>$company,
- 'company_hash'=>$company_hash,
- 'ddcid'=>$tokenid,
- 'company_hash_time'=>$company_hash_time,
- 'collectors_hash'=>$collectors_hash,
- 'collectors_hash_time'=>''
- ];
- $array[] = $date;
- }
- Db::name('store_order_info')->insertAll($array);
- //减少用户余额
- $ret = memberMoneyChange($order['pay_price'],3,$order['mid'],'购买数字藏品',0,$order_id,['order_id'=>$order_id,'source'=>1]);
- Db::commit();
- } catch (\Exception $e){
- $com = false;
- Db::rollback();
- }
- if ($com){
- $redis->hdel($key,$result['out_trade_no']);
- return '成功';
- }else{
- return '失败';
- }
- }
- /**
- * 杉德支付--支付成功回调订单
- */
- public function shandeOrderNotify(){
- $data = stripslashes($_POST['data']); //支付数据
- file_put_contents("shandepay.txt", $data . "\n" , FILE_APPEND);
- $data = json_decode($data,true);
- if ($data['body']['orderStatus']==1){
- //$data['body']['orderCode']
- $return = $this->dealData($data,'sd');
- if ($return){
- return 'respCode=000000';
- }else{
- file_put_contents("shandepay_error.txt", $data . "\n" . json_encode($data) . "\n" . "\n", FILE_APPEND);
- }
- }
- }
- /**
- * 处理数据库信息
- * @param $result
- * @return bool
- */
- function dealData($result,$from=''){
- Db::startTrans();
- $redis = new Redis();
- if($from=='sd'){
- $orderCode = $result['body']['orderCode'];
- $orderCode_arr = explode('S',$orderCode);
- $key = 'order_not_pay_'.$orderCode_arr[1];
- $out_trade_no = $orderCode_arr[0];
- }else{
- $key = 'order_not_pay_'.$result['attach'];
- $out_trade_no = $result['out_trade_no'];
- }
- $com = true;
- try {
- $order = $redis->hGet($key,$out_trade_no);
- if (!$order) return false;
- $order = json_decode($order,true);
- $is_order = Db::name('store_order')->where('order_no',$out_trade_no)->find();
- if (isset($is_order) && $is_order['status']==1) return false;
- $order['status'] = 1;
- $order['pay_at'] = date('Y-m-d H:i:s');
- $order['return_success_info'] = json_encode($result,true);
- $order_id = Db::name('store_order')->insertGetId($order);
- $array = [];
- $pro_info = json_decode($order['pro_info'],true);
- $type = Db::name('store_collection')->where('id',$order['c_id'])->value('type');
- for ($i=0;$i<$order['num'];$i++){
- //获取排名
- $rank = getRanking($order['c_id'])+1;
- $tag = getTag($order['c_id'],$rank,$order['inventory']);
- saveRanking($order['c_id']);
- $company = '南宁中科数艺科技有限公司';
- $hash = getCompanyHash($order['c_id']);
- $company_hash = $hash['hash'];
- $company_hash_time = $hash['create_at'];
- $tokenid = $hash['tokenid'];
- Db::name('hash')->where('hash',$hash['hash'])->update(['status'=>1]);
- $collectors_hash = '';
- $date = [
- 'order_id'=>$order_id,
- 'order_no'=>get_order_sn(),
- 'tag'=>$tag,
- 'mid'=>$order['mid'],
- 'c_id'=>$order['c_id'],
- 'name'=>$pro_info['name'],
- 'cover'=>$pro_info['cover'],
- 'pro_info'=>$order['pro_info'],
- 'type' => $type,
- 'company'=>$company,
- 'company_hash'=>$company_hash,
- 'ddcid'=>$tokenid,
- 'company_hash_time'=>$company_hash_time,
- 'collectors_hash'=>$collectors_hash,
- 'collectors_hash_time'=>''
- ];
- $array[] = $date;
- }
- Db::name('store_order_info')->insertAll($array);
- //送积分
- // $by_collection_integral = getConfigValue('by_collection_integral');
- // if ($by_collection_integral){
- // $by_collection_integral = bcmul($by_collection_integral,$order['num']);
- // memberMoneyChange($by_collection_integral,1,$order['mid'],'购买藏品',1,$order['id']);
- // }
- Db::commit();
- } catch (\Exception $e){
- $com = false;
- Db::rollback();
- }
- if ($com){
- $redis->hdel($key,$result['out_trade_no']);
- return true;
- }else{
- return false;
- }
- }
- /**
- * 微信支付--充值盲盒成功回调订单
- */
- public function BlindRechargeNotify(){
- $payXml = file_get_contents("php://input");
- //将xml格式转化为json格式
- $jsonXml = json_encode(simplexml_load_string($payXml, 'SimpleXMLElement', LIBXML_NOCDATA));
- //将json格式转成数组格式 $result['out_trade_no']
- $result = json_decode($jsonXml, true);
- if ($result['return_code'] == 'SUCCESS' && $result['result_code'] == 'SUCCESS') {
- $return = $this->dealBox($result);
- if ($return){
- $arr = array(
- 'return_code' => 'SUCCESS',
- 'return_msg' => 'OK',
- );
- return $this->arrayToXml($arr);
- }else{
- file_put_contents("order_pay_error.txt", file_get_contents("php://input") . "\n" . json_encode($result) . "\n" . "\n", FILE_APPEND);
- }
- }
- }
- /**
- * 支付宝支付--充值盲盒回调订单
- */
- public function alipayBlindRechargeNotify(){
- $result = input('post.');
- if ($result['trade_status'] == 'TRADE_SUCCESS' || $result['trade_status'] == 'TRADE_FINISHED') {
- $return = $this->dealBox($result);
- if ($return){
- echo 'success';
- }else{
- file_put_contents("order_alipay_error.txt", file_get_contents("php://input") . "\n" . json_encode($result) . "\n" . "\n", FILE_APPEND);
- }
- }
- }
- /**
- * 盲盒充值次数处理数据库信息
- * @param $result
- * @return bool
- */
- function dealBox($result){
- $com = true;
- Db::startTrans();
- try {
- $order = Db::name('store_blind_recharge')->where('order_no',$result['out_trade_no'])->find();
- if ($order['status']==1) return true;
- Db::name('store_blind_recharge')
- ->where('order_no',$result['out_trade_no'])
- ->update(['status'=>1,'pay_at'=>date('Y-m-d H:i:s'),'return_success_info'=>json_encode($result,true)]);
- //用户加次数
- Db::name('store_member')->where('id',$order['m_id'])->setInc('lottery_number',$order['num']);
- Db::commit();
- } catch (\Exception $e){
- $com = false;
- Db::rollback();
- }
- if ($com){
- setMemberInfoHash($order['m_id']);
- return true;
- }else{
- return false;
- }
- }
- /**
- * 微信支付--二级市场回调订单
- */
- public function SecondaryWxOrderNotify(){
- $payXml = file_get_contents("php://input");
- //将xml格式转化为json格式
- $jsonXml = json_encode(simplexml_load_string($payXml, 'SimpleXMLElement', LIBXML_NOCDATA));
- //将json格式转成数组格式 $result['out_trade_no']
- $result = json_decode($jsonXml, true);
- if ($result['return_code'] == 'SUCCESS' && $result['result_code'] == 'SUCCESS') {
- $return = $this->dealSecondary($result);
- if ($return){
- $arr = array(
- 'return_code' => 'SUCCESS',
- 'return_msg' => 'OK',
- );
- return $this->arrayToXml($arr);
- }else{
- file_put_contents("order_pay_error.txt", file_get_contents("php://input") . "\n" . json_encode($result) . "\n" . "\n", FILE_APPEND);
- }
- }
- }
- /**
- * 支付宝支付--二级市场回调订单
- */
- public function alipaySecondaryNotify(){
- $result = input('post.');
- if ($result['trade_status'] == 'TRADE_SUCCESS' || $result['trade_status'] == 'TRADE_FINISHED') {
- $return = $this->dealSecondary($result);
- if ($return){
- echo 'success';
- }else{
- file_put_contents("order_alipay_error.txt", file_get_contents("php://input") . "\n" . json_encode($result) . "\n" . "\n", FILE_APPEND);
- }
- }
- }
- /**
- * 杉德支付--二级市场回调订单
- */
- public function shandeSecondaryNotify(){
- $data = stripslashes($_POST['data']); //支付数据
- file_put_contents("shandepay.txt", $data . "\n" , FILE_APPEND);
- $data = json_decode($data,true);
- if ($data['body']['orderStatus']==1){
- //$data['body']['orderCode']
- $return = $this->dealSecondary($data,'sd');
- if ($return){
- return 'respCode=000000';
- }else{
- file_put_contents("shandepay_error.txt", $data . "\n" . json_encode($data) . "\n" . "\n", FILE_APPEND);
- }
- }
- }
- /**
- * 二级市场处理数据库信息
- * @param $result
- * @return bool
- */
- function dealSecondary($result,$from=''){
- $com = true;
- Db::startTrans();
- try {
- if ($from=='sd'){
- $out_trade_no = $result['body']['orderCode'];
- }else{
- $out_trade_no = $result['out_trade_no'];
- }
- $order = Db::name('store_order_info_order')->where('order_no',$out_trade_no)->find();
- if ($order['status']==1) return false;
- if (!$order) return false;
- $resale_status = Db::name('store_order_info')->where('id',$order['info_id'])->value('resale_status');
- if ($resale_status!=2){
- }else{
- Db::name('store_order_info_order')
- ->where('order_no',$out_trade_no)
- ->update(['status'=>1,'pay_at'=>date('Y-m-d H:i:s'),'return_success_info'=>json_encode($result,true)]);
- //藏品修改状态
- Db::name('store_order_info')->where('id',$order['info_id'])->update([
- 'status'=>2,
- 'resale_status'=>3,
- 'selling_time'=>date('Y-m-d H:i:s')
- ]);
- $info = Db::name('store_order_info')->where('id',$order['info_id'])->find();
- //增加一条记录
- $to_date = [
- 'order_id'=>$info['order_id'],
- 'order_no'=>get_order_sn(),
- 'tag'=>$info['tag'],
- 'mid'=>$order['mid'],
- 'c_id'=>$info['c_id'],
- 'name'=>$info['name'],
- 'cover'=>$info['cover'],
- 'pro_info'=>$info['pro_info'],
- 'status'=>3,
- 'from'=>2,
- 'to_mid'=>$info['mid'],
- 'over_time'=>date('Y-m-d H:i:s'),
- 'company'=>'南宁中科数艺科技有限公司',
- 'company_hash'=>$info['company_hash'],
- 'company_hash_time'=>$info['company_hash_time'],
- 'ddcid'=>$info['ddcid'],
- 'collectors_hash'=>'',
- 'collectors_hash_time'=>date('Y-m-d H:i:s')
- ];
- Db::name('store_order_info')->insert($to_date);
- //增加用户余额
- memberMoneyChange($order['to_account'],3,$info['mid'],'出售藏品',1,$order['id'],['source'=>4]);
- Db::commit();
- }
- } catch (\Exception $e){
- $com = false;
- Db::rollback();
- }
- if ($com){
- setMemberInfoHash($order['mid']);
- return true;
- }else{
- return false;
- }
- }
- /**
- * 微信支付--充值余额支付成功回调订单
- */
- public function WxRechargeOrderNotify(){
- $payXml = file_get_contents("php://input");
- //将xml格式转化为json格式
- $jsonXml = json_encode(simplexml_load_string($payXml, 'SimpleXMLElement', LIBXML_NOCDATA));
- //将json格式转成数组格式 $result['out_trade_no']
- $result = json_decode($jsonXml, true);
- file_put_contents("wx_recharge_pay_return.txt", json_encode($result) . "\n" . "\n", FILE_APPEND);
- if ($result['return_code'] == 'SUCCESS' && $result['result_code'] == 'SUCCESS') {
- $return = $this->dealRechargeData($result);
- if ($return){
- $arr = array(
- 'return_code' => 'SUCCESS',
- 'return_msg' => 'OK',
- );
- return $this->arrayToXml($arr);
- }else{
- file_put_contents("rechargeorder_pay_error.txt", file_get_contents("php://input") . "\n" . json_encode($result) . "\n" . "\n", FILE_APPEND);
- }
- }
- }
- /**
- * 支付宝支付--支付成功回调订单
- */
- public function alipayRechargeOrderNotify(){
- $result = input('post.');
- file_put_contents("ali_pay_return.txt", json_encode($result) . "\n" . "\n", FILE_APPEND);
- if ($result['trade_status'] == 'TRADE_SUCCESS' || $result['trade_status'] == 'TRADE_FINISHED') {
- $return = $this->dealRechargeData($result);
- if ($return){
- echo 'success';
- }else{
- file_put_contents("rechargeorder_pay_error.txt", file_get_contents("php://input") . "\n" . json_encode($result) . "\n" . "\n", FILE_APPEND);
- }
- }
- }
- /**
- * 杉德支付--支付成功回调订单
- */
- public function shandeRechargeOrderNotify(){
- $data = stripslashes($_POST['data']); //支付数据
- file_put_contents("shandepay.txt", $data . "\n" , FILE_APPEND);
- $data = json_decode($data,true);
- if ($data['body']['orderStatus']==1){
- //$data['body']['orderCode']
- $return = $this->dealRechargeData($data,'sd');
- if ($return){
- return 'respCode=000000';
- }else{
- file_put_contents("shandepay_error.txt", $data . "\n" . json_encode($data) . "\n" . "\n", FILE_APPEND);
- }
- }
- }
- /**
- * 充值余额处理数据库信息
- * @param $result
- * @return bool
- */
- function dealRechargeData($result,$from=''){
- Db::startTrans();
- $com = true;
- if($from=='sd'){
- $orderCode = $result['body']['orderCode'];
- $orderCode_arr = explode('S',$orderCode);
- $result['out_trade_no'] = $orderCode_arr[0];
- }
- try {
- $order = Db::name('store_recharge_order')->where('order_no',$result['out_trade_no'])->find();
- if (isset($order) && $order['status']==1) return false;
- $orderUp['status'] = 1;
- $orderUp['pay_at'] = date('Y-m-d H:i:s');
- $orderUp['return_success_info'] = json_encode($result,true);
- $order_id = Db::name('store_recharge_order')->where('order_no',$result['out_trade_no'])->update($orderUp);
- //添加用户余额
- memberMoneyChange($order['real_money'],3,$order['uid'],'充值余额',1,$order_id,['order_id'=>$order_id,'source'=>2]);
- Db::commit();
- } catch (\Exception $e){
- $com = false;
- Db::rollback();
- }
- if ($com){
- //更新用户信息
- setMemberInfoHash($order['uid']);
- return true;
- }else{
- return false;
- }
- }
- /**
- * 数组转xml
- * @ApiInternal
- */
- public function arrayToXml($arr)
- {
- $xml = "<xml>";
- foreach ($arr as $key => $val) {
- if (is_numeric($val)) {
- $xml .= "<" . $key . ">" . $val . "</" . $key . ">";
- } else
- $xml .= "<" . $key . "><![CDATA[" . $val . "]]></" . $key . ">";
- }
- $xml .= "</xml>";
- return $xml;
- }
- }
|