You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
57 lines
2.2 KiB
57 lines
2.2 KiB
9 months ago
|
<?php
|
||
|
// +----------------------------------------------------------------------
|
||
|
// | 天诚科技 [ 刘海东 17600099397赋能开发者,助力企业发展 ]
|
||
|
// +----------------------------------------------------------------------
|
||
|
// | Copyright (c) 2016~2020 https://www.tczxkj.com All rights reserved.
|
||
|
// +----------------------------------------------------------------------
|
||
|
// | Licensed 该系统并不是自由软件,未经许可不能去掉相关版权
|
||
|
// +----------------------------------------------------------------------
|
||
|
// | Author:甘肃天诚志信电子商务有限公司 刘海东 联系电话维系17600099397
|
||
|
// +----------------------------------------------------------------------
|
||
|
|
||
|
namespace app\wap\model\routine;
|
||
|
|
||
|
use service\SystemConfigService;
|
||
|
use think\Db;
|
||
|
use basic\AuthBasic;
|
||
|
|
||
|
/**微信公众号 model
|
||
|
* Class RoutineServer
|
||
|
* @package app\wap\model\routine
|
||
|
*/
|
||
|
class RoutineServer extends AuthBasic
|
||
|
{
|
||
|
/**
|
||
|
* 微信公众号
|
||
|
* @param string $routineAppId
|
||
|
* @param string $routineAppSecret
|
||
|
* @return mixed
|
||
|
*/
|
||
|
public static function getAccessToken()
|
||
|
{
|
||
|
$routineAppId = SystemConfigService::get('wechat_appid');
|
||
|
$routineAppSecret = SystemConfigService::get('wechat_appsecret');
|
||
|
$url = "https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=" . $routineAppId . "&secret=" . $routineAppSecret;
|
||
|
return json_decode(parent::curlGet($url), true);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* 获取access_token 数据库
|
||
|
* @return mixed
|
||
|
*/
|
||
|
public static function get_access_token()
|
||
|
{
|
||
|
$accessToken = Db::name('routine_access_token')->where('id', 1)->find();
|
||
|
if ($accessToken['stop_time'] > time()) return $accessToken['access_token'];
|
||
|
else {
|
||
|
$accessToken = self::getAccessToken();
|
||
|
if (isset($accessToken['access_token'])) {
|
||
|
$data['access_token'] = $accessToken['access_token'];
|
||
|
$data['stop_time'] = bcadd($accessToken['expires_in'], time(), 0);
|
||
|
Db::name('routine_access_token')->where('id', 1)->update($data);
|
||
|
}
|
||
|
return $accessToken['access_token'];
|
||
|
}
|
||
|
}
|
||
|
}
|