[更新]修改代码注释

This commit is contained in:
Anyon 2019-07-17 14:27:32 +08:00
parent a71c27862c
commit e4c4020c1a
8 changed files with 81 additions and 22 deletions

View File

@ -82,6 +82,11 @@ class Auth extends Controller
/** /**
* 添加系统权限 * 添加系统权限
* @auth true * @auth true
* @throws \think\Exception
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\ModelNotFoundException
* @throws \think\exception\DbException
* @throws \think\exception\PDOException
*/ */
public function add() public function add()
{ {
@ -92,6 +97,11 @@ class Auth extends Controller
/** /**
* 编辑系统权限 * 编辑系统权限
* @auth true * @auth true
* @throws \think\Exception
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\ModelNotFoundException
* @throws \think\exception\DbException
* @throws \think\exception\PDOException
*/ */
public function edit() public function edit()
{ {
@ -118,6 +128,8 @@ class Auth extends Controller
/** /**
* 禁用系统权限 * 禁用系统权限
* @auth true * @auth true
* @throws \think\Exception
* @throws \think\exception\PDOException
*/ */
public function forbid() public function forbid()
{ {
@ -128,6 +140,8 @@ class Auth extends Controller
/** /**
* 启用系统权限 * 启用系统权限
* @auth true * @auth true
* @throws \think\Exception
* @throws \think\exception\PDOException
*/ */
public function resume() public function resume()
{ {
@ -138,6 +152,8 @@ class Auth extends Controller
/** /**
* 删除系统权限 * 删除系统权限
* @auth true * @auth true
* @throws \think\Exception
* @throws \think\exception\PDOException
*/ */
public function remove() public function remove()
{ {

View File

@ -113,6 +113,11 @@ class Index extends Controller
/** /**
* 修改用户资料 * 修改用户资料
* @param integer $id 会员ID * @param integer $id 会员ID
* @throws \think\Exception
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\ModelNotFoundException
* @throws \think\exception\DbException
* @throws \think\exception\PDOException
*/ */
public function info($id = 0) public function info($id = 0)
{ {
@ -133,6 +138,9 @@ class Index extends Controller
*/ */
public function clearRuntime() public function clearRuntime()
{ {
if (!NodeService::islogin()) {
$this->error('需要登录才能操作哦!');
}
try { try {
Console::call('clear'); Console::call('clear');
Console::call('xclean:session'); Console::call('xclean:session');
@ -150,6 +158,9 @@ class Index extends Controller
*/ */
public function buildOptimize() public function buildOptimize()
{ {
if (!NodeService::islogin()) {
$this->error('需要登录才能操作哦!');
}
try { try {
Console::call('optimize:route'); Console::call('optimize:route');
Console::call('optimize:schema'); Console::call('optimize:schema');

View File

@ -38,6 +38,11 @@ class Menu extends Controller
* 系统菜单管理 * 系统菜单管理
* @auth true * @auth true
* @menu true * @menu true
* @throws \think\Exception
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\ModelNotFoundException
* @throws \think\exception\DbException
* @throws \think\exception\PDOException
*/ */
public function index() public function index()
{ {
@ -63,6 +68,11 @@ class Menu extends Controller
/** /**
* 添加系统菜单 * 添加系统菜单
* @auth true * @auth true
* @throws \think\Exception
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\ModelNotFoundException
* @throws \think\exception\DbException
* @throws \think\exception\PDOException
*/ */
public function add() public function add()
{ {
@ -73,6 +83,11 @@ class Menu extends Controller
/** /**
* 编辑系统菜单 * 编辑系统菜单
* @auth true * @auth true
* @throws \think\Exception
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\ModelNotFoundException
* @throws \think\exception\DbException
* @throws \think\exception\PDOException
*/ */
public function edit() public function edit()
{ {
@ -111,6 +126,8 @@ class Menu extends Controller
/** /**
* 启用系统菜单 * 启用系统菜单
* @auth true * @auth true
* @throws \think\Exception
* @throws \think\exception\PDOException
*/ */
public function resume() public function resume()
{ {
@ -121,6 +138,8 @@ class Menu extends Controller
/** /**
* 禁用系统菜单 * 禁用系统菜单
* @auth true * @auth true
* @throws \think\Exception
* @throws \think\exception\PDOException
*/ */
public function forbid() public function forbid()
{ {
@ -131,6 +150,8 @@ class Menu extends Controller
/** /**
* 删除系统菜单 * 删除系统菜单
* @auth true * @auth true
* @throws \think\Exception
* @throws \think\exception\PDOException
*/ */
public function remove() public function remove()
{ {

View File

@ -82,6 +82,8 @@ class Oplog extends Controller
/** /**
* 删除系统日志 * 删除系统日志
* @auth true * @auth true
* @throws \think\Exception
* @throws \think\exception\PDOException
*/ */
public function remove() public function remove()
{ {

View File

@ -20,7 +20,7 @@ use think\Console;
use think\Db; use think\Db;
/** /**
* 系统消息任务 * 系统系统任务
* Class Queue * Class Queue
* @package app\admin\controller * @package app\admin\controller
*/ */
@ -33,7 +33,7 @@ class Queue extends Controller
protected $table = 'SystemJobsLog'; protected $table = 'SystemJobsLog';
/** /**
* 系统消息任务 * 系统系统任务
* @auth true * @auth true
* @menu true * @menu true
* @throws \think\Exception * @throws \think\Exception
@ -44,7 +44,7 @@ class Queue extends Controller
*/ */
public function index() public function index()
{ {
$this->title = '消息任务管理'; $this->title = '系统任务管理';
if (session('admin_user.username') === 'admin') { if (session('admin_user.username') === 'admin') {
$this->cmd = 'php ' . env('root_path') . 'think xtask:start'; $this->cmd = 'php ' . env('root_path') . 'think xtask:start';
$this->message = Console::call('xtask:state')->fetch(); $this->message = Console::call('xtask:state')->fetch();
@ -75,7 +75,7 @@ class Queue extends Controller
} }
/** /**
* 删除消息任务 * 删除系统任务
* @auth true * @auth true
*/ */
public function remove() public function remove()

View File

@ -54,6 +54,11 @@ class User extends Controller
/** /**
* 添加系统用户 * 添加系统用户
* @auth true * @auth true
* @throws \think\Exception
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\ModelNotFoundException
* @throws \think\exception\DbException
* @throws \think\exception\PDOException
*/ */
public function add() public function add()
{ {
@ -64,6 +69,11 @@ class User extends Controller
/** /**
* 编辑系统用户 * 编辑系统用户
* @auth true * @auth true
* @throws \think\Exception
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\ModelNotFoundException
* @throws \think\exception\DbException
* @throws \think\exception\PDOException
*/ */
public function edit() public function edit()
{ {
@ -124,6 +134,8 @@ class User extends Controller
/** /**
* 禁用系统用户 * 禁用系统用户
* @auth true * @auth true
* @throws \think\Exception
* @throws \think\exception\PDOException
*/ */
public function forbid() public function forbid()
{ {
@ -137,6 +149,8 @@ class User extends Controller
/** /**
* 启用系统用户 * 启用系统用户
* @auth true * @auth true
* @throws \think\Exception
* @throws \think\exception\PDOException
*/ */
public function resume() public function resume()
{ {
@ -147,6 +161,8 @@ class User extends Controller
/** /**
* 删除系统用户 * 删除系统用户
* @auth true * @auth true
* @throws \think\Exception
* @throws \think\exception\PDOException
*/ */
public function remove() public function remove()
{ {

View File

@ -55,7 +55,7 @@ class Plugs extends Controller
if ($file->checkExt('php')) { if ($file->checkExt('php')) {
return json(['uploaded' => false, 'error' => ['message' => '可执行文件禁止上传到本地服务器']]); return json(['uploaded' => false, 'error' => ['message' => '可执行文件禁止上传到本地服务器']]);
} }
$this->safe = $this->getUploadSafe(); $this->safe = boolval(input('safe'));
$this->uptype = $this->getUploadType(); $this->uptype = $this->getUploadType();
$this->extend = pathinfo($file->getInfo('name'), PATHINFO_EXTENSION); $this->extend = pathinfo($file->getInfo('name'), PATHINFO_EXTENSION);
$name = File::name($file->getPathname(), $this->extend, '', 'md5_file'); $name = File::name($file->getPathname(), $this->extend, '', 'md5_file');
@ -82,15 +82,6 @@ class Plugs extends Controller
return $this->uptype; return $this->uptype;
} }
/**
* 获取上传安全模式
* @return boolean
*/
private function getUploadSafe()
{
return $this->safe = boolval(input('safe'));
}
/** /**
* 获取本地文件对象 * 获取本地文件对象
* @return \think\File * @return \think\File

View File

@ -15,7 +15,7 @@
namespace app\admin\controller\api; namespace app\admin\controller\api;
use library\command\Sync as UpdateLogic; use library\command\Sync;
use library\Controller; use library\Controller;
/** /**
@ -29,14 +29,14 @@ class Update extends Controller
* 基础URL地址 * 基础URL地址
* @var string * @var string
*/ */
protected $baseUri = 'https://framework.thinkadmin.top'; protected $baseUri = 'https://demo.thinkadmin.top';
/** /**
* 获取文件列表 * 获取文件列表
*/ */
public function tree() public function tree()
{ {
$this->success('获取当前文件列表成功!', UpdateLogic::build()); $this->success('获取当前文件列表成功!', Sync::build());
} }
/** /**
@ -46,11 +46,13 @@ class Update extends Controller
public function read($encode) public function read($encode)
{ {
$file = env('root_path') . decode($encode); $file = env('root_path') . decode($encode);
if (!file_exists($file)) $this->error('获取文件内容失败!'); if (!file_exists($file)) {
$this->success('获取文件内容成功!', [ $this->error('获取文件内容失败!');
'format' => 'base64', } else {
'content' => base64_encode(file_get_contents($file)), $this->success('获取文件内容成功!', [
]); 'format' => 'base64', 'content' => base64_encode(file_get_contents($file)),
]);
}
} }
} }