HEX
Server: nginx/1.28.1
System: Linux 10-41-63-61 6.8.0-31-generic #31-Ubuntu SMP PREEMPT_DYNAMIC Sat Apr 20 00:40:06 UTC 2024 x86_64
User: www (1001)
PHP: 7.4.33
Disabled: passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv
Upload Files
File: /www/wwwroot/cms.smpolia.com/application/pay/model/Account.php
<?php
// +----------------------------------------------------------------------
// | Yzncms [ 御宅男工作室 ]
// +----------------------------------------------------------------------
// | Copyright (c) 2018 http://yzncms.com All rights reserved.
// +----------------------------------------------------------------------
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
// +----------------------------------------------------------------------
// | Author: 御宅男 <530765310@qq.com>
// +----------------------------------------------------------------------

// +----------------------------------------------------------------------
// | 支付模块模型
// +----------------------------------------------------------------------
namespace app\pay\model;

use app\member\model\Member;
use app\member\service\User as home_user;
use think\Db;
use think\Model;

class Account extends Model
{
    protected $name = 'pay_account';
    // 定义时间戳字段名
    protected $autoWriteTimestamp = true;
    protected $createTime = 'addtime';
    protected $updateTime = false;

    public function getStatusAttr($value)
    {
        $status = ['succ' => '交易成功', 'failed' => '交易失败', 'error' => '交易错误', 'progress' => '交易处理中', 'timeout' => '交易超时', 'cancel' => '交易取消', 'waitting' => '等待付款', 'unpay' => '未付款'];
        return $status[$value];
    }

    public function getPayTypeAttr($value)
    {
        $status = ['offline' => '线下支付', 'recharge' => '后台充值', 'selfincome' => '自助获取', 'online' => '在线支付'];
        return $status[$value];
    }

    public function getPaytimeAttr($value)
    {
        if (!empty($value)) {
            return date('Y-m-d H:i:s', $value);
        } else {
            return '';
        }
    }

    /**
     * 发起订单支付
     * @param float  $money
     * @param string $paytype
     */
    public function submitOrder($money, $pay_type = 'wechat')
    {
        $epay = cache('Pay_Config');
        if ($epay[$pay_type] && $epay[$pay_type]['status']) {
            $uid = home_user::instance()->isLogin() ? home_user::instance()->id : 0;
            $username = home_user::instance()->isLogin() ? home_user::instance()->username : '未知';
            $data = [
                'trade_sn' => date("Ymdhis") . sprintf("%08d", $uid) . mt_rand(1000, 9999),
                'uid' => $uid,
                'username' => $username,
                'type' => 1,
                'money' => $money,
                'payamount' => 0,
                'pay_type' => 'online',
                'payment' => trim($epay[$pay_type]['title']),
                'ip' => request()->ip(),
                'status' => 'unpay',
            ];
            $order = self::create($data);
            $notifyurl = request()->root(true) . '/pay/index/epay/type/notify/pay_type/' . $pay_type;
            $returnurl = request()->root(true) . '/pay/index/epay/type/return/pay_type/' . $pay_type;
            \app\pay\library\Service::submitOrder($money, $order->trade_sn, $pay_type, "充值{$money}元", $notifyurl, $returnurl);
            exit;
        } else {
            throw new Exception("支付方式不存在");
        }

    }

    /**
     * 添加积分/金钱记录
     */
    public function _add($type, $money, $pay_type, $uid, $username, $usernote = '', $adminnote = '', $status = 'succ')
    {
        $data = array();
        $data['type'] = isset($type) && intval($type) ? intval($type) : 0;
        $data['trade_sn'] = date("Ymdhis") . sprintf("%08d", $uid) . mt_rand(1000, 9999);
        $data['uid'] = isset($uid) && intval($uid) ? intval($uid) : 0;
        $data['username'] = isset($username) ? trim($username) : '';
        $data['money'] = isset($money) && floatval($money) ? floatval($money) : 0;
        $data['paytime'] = time();
        $data['usernote'] = $usernote;
        $data['pay_type'] = isset($pay_type) ? trim($pay_type) : 'selfincome';
        $data['payment'] = '后台充值';
        $data['ip'] = request()->ip();
        $data['adminnote'] = isset($adminnote) ? trim($adminnote) : '';
        $data['status'] = isset($status) ? trim($status) : 'succ';
        if (self::create($data)) {
            if ($data['type'] == 1) {
                //金钱方式充值
                Db::name('member')->where(['id' => $data['uid'], 'username' => $data['username']])->setInc('amount', $data['money']);
            } else {
                //积分方式充值
                Db::name('member')->where(['id' => $data['uid'], 'username' => $data['username']])->setInc('point', $data['money']);
            }
            return true;
        }
        return false;
    }

    /**
     * 订单结算
     * @param int    $orderid
     * @param string $payamount
     * @param string $memo
     * @return bool
     */
    public function settle($orderid, $payamount = null, $memo = '')
    {
        $order = self::getByTradeSn($orderid);
        if (!$order) {
            return false;
        }
        if ($order->getData('status') != 'succ') {
            $order->money = $payamount ? $payamount : $order->money;
            $order->paytime = time();
            $order->status = 'succ';
            $order->save();
            // 更新会员余额
            $user = Member::get($order->uid);
            if ($user) {
                $before = $user->amount;
                $after = $user->amount + $order->money;
                //更新会员信息
                $user->save(['amount' => $after]);
                //写入日志
                //MoneyLog::create(['user_id' => $order->user_id, 'money' => $order->amount, 'before' => $before, 'after' => $after, 'memo' => '充值']);
            }
        }
        return true;
    }

}