mirror of
https://gitee.com/niucloud-team/niucloud-admin.git
synced 2026-03-26 07:13:08 +00:00
63 lines
1.8 KiB
PHP
63 lines
1.8 KiB
PHP
<?php
|
||
// +----------------------------------------------------------------------
|
||
// | Niucloud-admin 企业快速开发的saas管理平台
|
||
// +----------------------------------------------------------------------
|
||
// | 官方网址:https://www.niucloud-admin.com
|
||
// +----------------------------------------------------------------------
|
||
// | niucloud团队 版权所有 开源版本可自由商用
|
||
// +----------------------------------------------------------------------
|
||
// | Author: Niucloud Team
|
||
// +----------------------------------------------------------------------
|
||
|
||
namespace app\service\admin\niucloud;
|
||
|
||
use app\dict\sys\ConfigKeyDict;
|
||
use app\service\core\sys\CoreConfigService;
|
||
use core\base\BaseAdminService;
|
||
|
||
/**
|
||
* 消息管理服务层
|
||
*/
|
||
class NiucloudService extends BaseAdminService
|
||
{
|
||
public $core_config_service;
|
||
|
||
public function __construct()
|
||
{
|
||
parent::__construct();
|
||
$this->core_config_service = new CoreConfigService();
|
||
|
||
}
|
||
|
||
/**
|
||
* 设置 授权信息
|
||
* @param $data
|
||
* @return \app\model\sys\SysConfig|bool|\think\Model
|
||
*/
|
||
public function setAuthorize($data){
|
||
|
||
$data = [
|
||
'auth_code' => $data['auth_code'],
|
||
'auth_secret' => $data['auth_secret']
|
||
];
|
||
return $this->core_config_service->setConfig(0,ConfigKeyDict::NIUCLOUD_CONFIG, $data);
|
||
}
|
||
|
||
/**
|
||
* 获取授权信息
|
||
* @return mixed|string[]
|
||
*/
|
||
public function getAuthorize(){
|
||
$info = $this->core_config_service->getConfig(0, ConfigKeyDict::NIUCLOUD_CONFIG);
|
||
if(empty($info))
|
||
{
|
||
$info = [];
|
||
$info['value'] = [
|
||
'auth_code' => '',
|
||
'auth_secret' => ''
|
||
];
|
||
}
|
||
return $info['value'];
|
||
}
|
||
|
||
} |