123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145 |
- <?php
- namespace app\admin\controller\auth;
- use app\admin\model\AuthGroup;
- use app\common\controller\Backend;
- /**
- * 管理员日志
- *
- * @icon fa fa-users
- * @remark 管理员可以查看自己所拥有的权限的管理员日志
- */
- class Adminlog extends Backend
- {
- /**
- * @var \app\admin\model\AdminLog
- */
- protected $model = null;
- protected $childrenGroupIds = [];
- protected $childrenAdminIds = [];
- public function _initialize()
- {
- parent::_initialize();
- $this->model = model('AdminLog');
- $this->childrenAdminIds = $this->auth->getChildrenAdminIds(true);
- $this->childrenGroupIds = $this->auth->getChildrenGroupIds(true);
- $groupName = AuthGroup::where('id', 'in', $this->childrenGroupIds)
- ->column('id,name');
- $this->view->assign('groupdata', $groupName);
- }
- /**
- * 查看
- */
- public function index()
- {
- //设置过滤方法
- $this->request->filter(['strip_tags', 'trim']);
- if ($this->request->isAjax()) {
- list($where, $sort, $order, $offset, $limit) = $this->buildparams();
- $isSuperAdmin = $this->auth->isSuperAdmin();
- $childrenAdminIds = $this->childrenAdminIds;
- $list = $this->model
- ->where($where)
- ->where(function ($query) use ($isSuperAdmin, $childrenAdminIds) {
- if (!$isSuperAdmin) {
- $query->where('admin_id', 'in', $childrenAdminIds);
- }
- })
- ->order($sort, $order)
- ->paginate($limit);
- $result = array("total" => $list->total(), "rows" => $list->items());
- return json($result);
- }
- return $this->view->fetch();
- }
- /**
- * 详情
- */
- public function detail($ids)
- {
- $row = $this->model->get(['id' => $ids]);
- if (!$row) {
- $this->error(__('No Results were found'));
- }
- if (!$this->auth->isSuperAdmin()) {
- if (!$row['admin_id'] || !in_array($row['admin_id'], $this->childrenAdminIds)) {
- $this->error(__('You have no permission'));
- }
- }
- $this->view->assign("row", $row->toArray());
- return $this->view->fetch();
- }
- /**
- * 添加
- * @internal
- */
- public function add()
- {
- $this->error();
- }
- /**
- * 编辑
- * @internal
- */
- public function edit($ids = null)
- {
- $this->error();
- }
- /**
- * 删除
- */
- public function del($ids = "")
- {
- if (!$this->request->isPost()) {
- $this->error(__("Invalid parameters"));
- }
- $ids = $ids ? $ids : $this->request->post("ids");
- if ($ids) {
- $isSuperAdmin = $this->auth->isSuperAdmin();
- $childrenAdminIds = $this->childrenAdminIds;
- $adminList = $this->model->where('id', 'in', $ids)
- ->where(function ($query) use ($isSuperAdmin, $childrenAdminIds) {
- if (!$isSuperAdmin) {
- $query->where('admin_id', 'in', $childrenAdminIds);
- }
- })
- ->select();
- if ($adminList) {
- $deleteIds = [];
- foreach ($adminList as $k => $v) {
- $deleteIds[] = $v->id;
- }
- if ($deleteIds) {
- $this->model->destroy($deleteIds);
- $this->success();
- }
- }
- }
- $this->error();
- }
- /**
- * 批量更新
- * @internal
- */
- public function multi($ids = "")
- {
- // 管理员禁止批量操作
- $this->error();
- }
- }
|