110 lines
2.9 KiB
PHP
110 lines
2.9 KiB
PHP
|
<?php
|
|||
|
// +----------------------------------------------------------------------
|
|||
|
// | Niucloud-admin 企业快速开发的saas管理平台
|
|||
|
// +----------------------------------------------------------------------
|
|||
|
// | 官方网址:https://www.niucloud-admin.com
|
|||
|
// +----------------------------------------------------------------------
|
|||
|
// | niucloud团队 版权所有 开源版本可自由商用
|
|||
|
// +----------------------------------------------------------------------
|
|||
|
// | Author: Niucloud Team
|
|||
|
// +----------------------------------------------------------------------
|
|||
|
|
|||
|
namespace app\adminapi\controller\auth;
|
|||
|
|
|||
|
use app\service\admin\auth\AuthService;
|
|||
|
use app\service\admin\auth\AuthSiteService;
|
|||
|
use core\base\BaseAdminController;
|
|||
|
use think\db\exception\DataNotFoundException;
|
|||
|
use think\db\exception\DbException;
|
|||
|
use think\db\exception\ModelNotFoundException;
|
|||
|
use think\Response;
|
|||
|
|
|||
|
|
|||
|
class Auth extends BaseAdminController
|
|||
|
{
|
|||
|
|
|||
|
/**
|
|||
|
* 登录用户菜单列表的接口
|
|||
|
*/
|
|||
|
public function authMenuList()
|
|||
|
{
|
|||
|
$data = $this->request->params([
|
|||
|
['addon', 'all'],
|
|||
|
]);
|
|||
|
return success((new AuthService())->getAuthMenuList(1, $data['addon']));
|
|||
|
}
|
|||
|
|
|||
|
/**
|
|||
|
* 获取当前站点支持的应用
|
|||
|
* @return Response
|
|||
|
* @throws DataNotFoundException
|
|||
|
* @throws DbException
|
|||
|
* @throws ModelNotFoundException
|
|||
|
*/
|
|||
|
public function getAuthAddonList(){
|
|||
|
return success((new AuthSiteService())->getAuthAddonList());
|
|||
|
}
|
|||
|
/**
|
|||
|
* 获取登录用户信息
|
|||
|
* @return Response
|
|||
|
*/
|
|||
|
public function get()
|
|||
|
{
|
|||
|
return success((new AuthService())->getAuthInfo());
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
/**
|
|||
|
* 修改登录用户信息
|
|||
|
* @param $field
|
|||
|
* @return Response
|
|||
|
*/
|
|||
|
public function modify($field)
|
|||
|
{
|
|||
|
$data = $this->request->params([
|
|||
|
['value', ''],
|
|||
|
['field', $field]
|
|||
|
]);
|
|||
|
// $this->validate($data, 'app\validate\sys\User.modify');
|
|||
|
(new AuthService())->modifyAuth($field, $data['value']);
|
|||
|
return success('MODIFY_SUCCESS');
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
/**
|
|||
|
* 更新用户
|
|||
|
*/
|
|||
|
public function edit()
|
|||
|
{
|
|||
|
$data = $this->request->params([
|
|||
|
['real_name', ''],
|
|||
|
['head_img', ''],
|
|||
|
['password', ''],
|
|||
|
['original_password', '']
|
|||
|
]);
|
|||
|
(new AuthService())->editAuth($data);
|
|||
|
return success('MODIFY_SUCCESS');
|
|||
|
}
|
|||
|
|
|||
|
/**
|
|||
|
* 获取当前登录站点信息
|
|||
|
* @return Response
|
|||
|
*/
|
|||
|
public function site()
|
|||
|
{
|
|||
|
return success((new AuthSiteService())->getSiteInfo());
|
|||
|
}
|
|||
|
|
|||
|
/**
|
|||
|
* 选择可以选择的页面
|
|||
|
* @return Response
|
|||
|
* @throws DataNotFoundException
|
|||
|
* @throws DbException
|
|||
|
* @throws ModelNotFoundException
|
|||
|
*/
|
|||
|
public function getShowMenuList()
|
|||
|
{
|
|||
|
return success((new AuthSiteService())->getShowMenuList());
|
|||
|
}
|
|||
|
}
|