73 lines
1.4 KiB
PHP
73 lines
1.4 KiB
PHP
<?php
|
|
|
|
|
|
namespace app\common\service\pay;
|
|
|
|
|
|
use app\common\enum\PayEnum;
|
|
use app\common\enum\user\UserTerminalEnum;
|
|
use app\common\logic\PayNotifyLogic;
|
|
use app\common\model\recharge\RechargeOrder;
|
|
use app\common\model\retail\Cashierclass;
|
|
use app\common\model\user\UserAuth;
|
|
use app\common\service\wechat\WeChatConfigService;
|
|
use app\Request;
|
|
use EasyWeChat\Pay\Application;
|
|
use EasyWeChat\Pay\Message;
|
|
use support\Log;
|
|
use Webman\Config;
|
|
use Yansongda\Pay\Pay;
|
|
|
|
/**
|
|
* 微信支付
|
|
* Class WeChatPayService
|
|
* @package app\common\server
|
|
*/
|
|
class WeChatPayService extends BasePayService
|
|
{
|
|
/**
|
|
* 授权信息
|
|
* @var UserAuth|array|\think\Model
|
|
*/
|
|
protected $auth;
|
|
|
|
|
|
/**
|
|
* 微信配置
|
|
* @var
|
|
*/
|
|
protected $config;
|
|
|
|
|
|
/**
|
|
* easyWeChat实例
|
|
* @var
|
|
*/
|
|
protected $app;
|
|
|
|
|
|
/**
|
|
* 当前使用客户端
|
|
* @var
|
|
*/
|
|
protected $terminal;
|
|
|
|
|
|
/**
|
|
* 初始化微信支付配置
|
|
* @param $terminal //用户终端
|
|
* @param null $userId //用户id(获取授权openid)
|
|
*/
|
|
public function __construct($terminal, $userId = null)
|
|
{
|
|
$this->terminal = $terminal;
|
|
$this->config = WeChatConfigService::getPayConfigByTerminal($terminal);
|
|
$this->app = new Application($this->config);
|
|
if ($userId !== null) {
|
|
$this->auth = UserAuth::where(['user_id' => $userId, 'terminal' => $terminal])->findOrEmpty();
|
|
}
|
|
}
|
|
|
|
|
|
|
|
} |