推进管理员管理和权限管理

This commit is contained in:
augushong
2019-09-04 13:25:48 +08:00
parent 0ddbf60878
commit ee2c8bf106
16 changed files with 658 additions and 23 deletions

View File

@@ -68,4 +68,22 @@ class Admin extends Common
return $this->success('保存成功','Admin/edit');
}
public function index()
{
$admin_list = AppAdmin::where('id','<>',1)->paginate();
View::assign('list',$admin_list);
return View::fetch();
}
public function create()
{
return View::fetch();
}
public function save()
{
}
}

View File

@@ -0,0 +1,92 @@
<?php
namespace app\admin\controller;
use app\model\AdminGroup as AppAdminGroup;
use think\facade\View;
use think\Request;
class AdminGroup extends Common
{
/**
* 显示资源列表
*
* @return \think\Response
*/
public function index()
{
//
$list = AppAdminGroup::select();
View::assign('list',$list);
return View::fetch();
}
/**
* 显示创建资源表单页.
*
* @return \think\Response
*/
public function create()
{
//
return View::fetch();
}
/**
* 保存新建的资源
*
* @param \think\Request $request
* @return \think\Response
*/
public function save(Request $request)
{
//
}
/**
* 显示指定的资源
*
* @param int $id
* @return \think\Response
*/
public function read($id)
{
//
}
/**
* 显示编辑资源表单页.
*
* @param int $id
* @return \think\Response
*/
public function edit($id)
{
//
}
/**
* 保存更新的资源
*
* @param \think\Request $request
* @param int $id
* @return \think\Response
*/
public function update(Request $request, $id)
{
//
}
/**
* 删除指定资源
*
* @param int $id
* @return \think\Response
*/
public function delete($id)
{
//
}
}

View File

@@ -0,0 +1,67 @@
<?php
namespace app\admin\controller;
use app\model\AdminPermission as AppAdminPermission;
use think\facade\View;
use think\Request;
class AdminPermission extends Common
{
/**
* 显示资源列表
*
* @return \think\Response
*/
public function index()
{
//
$list = AppAdminPermission::paginate();
View::assign('list',$list);
return View::fetch();
}
/**
* 保存更新的资源
*
* @param \think\Request $request
* @param int $id
* @return \think\Response
*/
public function update(Request $request, $id)
{
//
$post_data = $request->post();
$model_permission = AppAdminPermission::find($id);
if(isset($post_data['url'])){
$url_info = \explode('/',$post_data['url']);
$post_data['app'] = $url_info[0];
$post_data['controller'] = $url_info[1];
$post_data['action'] = $url_info[2];
}
$model_permission->data($post_data);
$model_permission->save();
return json_message();
}
/**
* 删除指定资源
*
* @param int $id
* @return \think\Response
*/
public function delete($id)
{
//
}
}

5
app/admin/middleware.php Normal file
View File

@@ -0,0 +1,5 @@
<?php
return [
'\app\middleware\PermissionRecord'
];

View File

@@ -0,0 +1,27 @@
<?php
namespace app\middleware;
use app\model\AdminPermission;
use app\Request;
class PermissionRecord
{
public function handle(Request $request, \Closure $next)
{
$current_access_info = [
'app'=>$request->app(),
'controller'=>$request->controller(),
'action'=>$request->action()
];
$model_permission = AdminPermission::where($current_access_info)->find();
if(empty($model_permission)){
AdminPermission::create($current_access_info);
}
return $next($request);
}
}

View File

@@ -15,4 +15,11 @@ class Admin extends Model
{
return \get_source_link($value);
}
public function getGroupAttr()
{
if(empty($this->getData('group_id'))){
return '未分组';
}
}
}

16
app/model/AdminGroup.php Normal file
View File

@@ -0,0 +1,16 @@
<?php
namespace app\model;
use think\Model;
use think\model\concern\SoftDelete;
/**
* @mixin think\Model
*/
class AdminGroup extends Model
{
//
use SoftDelete;
protected $defaultSoftDelete = 0;
}

View File

@@ -0,0 +1,14 @@
<?php
namespace app\model;
use think\Model;
/**
* 权限表
* @mixin think\Model
*/
class AdminPermission extends Model
{
//
}