You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
zhishifufei_php/application/agent/controller/AuthController.php

127 lines
4.2 KiB

<?php
// +----------------------------------------------------------------------
// | 天诚科技 [ 刘海东 17600099397赋能开发者,助力企业发展 ]
// +----------------------------------------------------------------------
// | Copyright (c) 2016~2020 https://www.tczxkj.com All rights reserved.
// +----------------------------------------------------------------------
// | Licensed 该系统并不是自由软件,未经许可不能去掉相关版权
// +----------------------------------------------------------------------
// | Author:甘肃天诚志信电子商务有限公司 刘海东 联系电话维系17600099397
// +----------------------------------------------------------------------
namespace app\agent\controller;
use app\merchant\model\merchant\Merchant;
use app\agent\model\agent\AgentUser;
use app\agent\model\agent\AgentMenus;
use app\merchant\model\merchant\InstitutionMenus;
use basic\AuthBasic;
use service\HookService;
use think\Url;
/**
* 基类 所有控制器继承的类
* Class AuthController
* @package app\merchant\controller
*/
class AuthController extends AuthBasic
{
/**
* 当前登陆管理员信息
* @var
*/
protected $adminInfo;
/**
* 当前登陆管理员ID
* @var
*/
protected $adminId;
/**
* 是否需要审核
* @var
*/
protected $isAudit;
/**
* 讲师id
* @var
*/
protected $merchantId;
/**
* 讲师id
* @var
*/
protected $lecturerId;
/**
* 商户信息
* @var
*/
protected $merchantInfo;
/**
* 当前管理员权限
* @var array
*/
protected $auth = [];
protected $skipLogController = ['index', 'common'];
protected function _initialize()
{
parent::_initialize();
if (!AgentUser::hasActiveAdmin()) return $this->redirect('Login/index');
try {
$adminInfo = AgentUser::activeAdminInfoOrFail();
$merchantInfo = AgentUser::activeMerchantInfoOrFail();
} catch (\Exception $e) {
return $this->failed(AgentUser::getErrorInfo($e->getMessage()), Url::build('Login/index'));
}
$this->adminInfo = $adminInfo;
$this->adminId = $adminInfo['id'];
$this->merchantInfo = $merchantInfo;
$this->merchantId = $merchantInfo['id'];
// $this->isAudit = AgentUser::where('id', $merchantInfo['id'])->value('is_audit');
$this->getActiveAdminInfo();
$this->auth = AgentMenus::rulesByAuth($this->adminInfo['rules']);
$this->checkAuth();
$this->assign('_admin', $this->adminInfo);
if ($merchantInfo['is_del'] == 1 || $merchantInfo['status'] == 0) {
$this->failed('代理后台删除或者已被禁止登陆', Url::build('Login/index'));
}
}
protected function checkAuth($action = null, $controller = null, $module = null, array $route = [])
{
static $allAuth = null;
if ($allAuth === null) $allAuth = AgentMenus::getAllAuth();
if ($module === null) $module = $this->request->module();
if ($controller === null) $controller = $this->request->controller();
if ($action === null) $action = $this->request->action();
if (!count($route)) $route = $this->request->route();
if (in_array(strtolower($controller), $this->skipLogController, true)) return true;
$nowAuthName = AgentMenus::getAuthName($action, $controller, $module, $route);
$baseNowAuthName = AgentMenus::getAuthName($action, $controller, $module, []);
if ((in_array($nowAuthName, $allAuth) && !in_array($nowAuthName, $this->auth)) || (in_array($baseNowAuthName, $allAuth) && !in_array($baseNowAuthName, $this->auth)))
exit($this->authFail('没有权限访问!'));
return true;
}
/**
* 获得当前用户最新信息
* @return AgentUser
*/
protected function getActiveAdminInfo()
{
$adminId = $this->adminId;
$adminInfo = AgentUser::getValidAdminInfoOrFail($adminId);
if (!$adminInfo) $this->failed(AgentUser::getErrorInfo('请登陆!'));
$this->adminInfo = $adminInfo;
AgentUser::setLoginInfo($adminInfo->toArray());
return $adminInfo;
}
}