123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245 |
- <?php
- // +----------------------------------------------------------------------
- // | 萤火商城系统 [ 致力于通过产品和服务,帮助商家高效化开拓市场 ]
- // +----------------------------------------------------------------------
- // | Copyright (c) 2017~2021 https://www.yiovo.com All rights reserved.
- // +----------------------------------------------------------------------
- // | Licensed 这不是一个自由软件,不允许对程序代码以任何形式任何目的的再发行
- // +----------------------------------------------------------------------
- // | Author: 萤火科技 <admin@yiovo.com>
- // +----------------------------------------------------------------------
- declare (strict_types=1);
- namespace app\store\controller;
- use cores\BaseController;
- use app\store\service\Auth as AuthService;
- use app\common\service\store\User as StoreUserService;
- use app\common\exception\BaseException;
- use think\response\Json;
- /**
- * 商户后台控制器基类
- * Class Controller
- * @package app\store\controller
- */
- class Controller extends BaseController
- {
- // 商家登录信息
- protected $store;
- // 当前商城ID
- protected $storeId;
- // 当前控制器名称
- protected $controller = '';
- // 当前方法名称
- protected $action = '';
- // 当前路由uri
- protected $routeUri = '';
- // 当前路由:分组名称
- protected $group = '';
- // 登录验证白名单
- protected $allowAllAction = [
- 'passport/login',
- 'passport/logout',
- ];
- /**
- * 强制验证当前访问的控制器方法method
- * 例: [ 'login' => 'POST' ]
- * @var array
- */
- protected $methodRules = [];
- /**
- * 后台初始化
- * @throws BaseException
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- */
- public function initialize()
- {
- // 当前商城id
- $this->storeId = $this->getStoreId();
- // 设置管理员登录信息
- $this->setStoreInfo();
- // 当前路由信息
- $this->getRouteInfo();
- // 验证登录状态
- $this->checkLogin();
- // 验证当前API权限
- $this->checkPrivilege();
- // 强制验证当前访问的控制器方法method
- $this->checkMethodRules();
- }
- /**
- * 设置管理员登录信息
- */
- private function setStoreInfo()
- {
- $this->store = StoreUserService::getLoginInfo();
- }
- /**
- * 验证当前路由权限
- * @return bool
- * @throws BaseException
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- */
- private function checkPrivilege(): bool
- {
- // 在开发模式下, 建议把此处代码暂时屏蔽, 开发完成后在超管后台新增菜单和api
- if (!AuthService::getInstance()->checkPrivilege('/' . $this->routeUri)) {
- throwError('很抱歉,没有当前api的访问权限 ' . $this->routeUri);
- }
- return true;
- }
- /**
- * 解析当前路由参数 (分组名称、控制器名称、方法名)
- */
- protected function getRouteInfo()
- {
- // 控制器名称
- $this->controller = uncamelize($this->request->controller());
- // 方法名称
- $this->action = $this->request->action();
- // 控制器分组 (用于定义所属模块)
- $group = strstr($this->controller, '.', true);
- $this->group = $group !== false ? $group : $this->controller;
- // 当前uri
- $this->routeUri = "{$this->controller}/$this->action";
- }
- /**
- * 验证登录状态
- * @return bool
- * @throws BaseException
- */
- private function checkLogin(): bool
- {
- // 验证当前请求是否在白名单
- if (in_array($this->routeUri, $this->allowAllAction)) {
- return true;
- }
- // 验证登录状态
- if (empty($this->store) || (int)$this->store['is_login'] !== 1) {
- throwError('请先登录后再访问', config('status.not_logged'));
- }
- return true;
- }
- /**
- * 获取当前store_id
- * @return int|null
- */
- protected function getStoreId(): ?int
- {
- // app/store/common.php
- return getStoreId();
- }
- /**
- * 返回封装后的 API 数据到客户端
- * @param int|null $status 状态码
- * @param string $message
- * @param array $data
- * @return Json
- */
- protected function renderData(int $status = null, string $message = '', array $data = []): Json
- {
- is_null($status) && $status = config('status.success');
- return json(compact('status', 'message', 'data'));
- }
- /**
- * 返回操作成功json
- * @param array|string $data
- * @param string $message
- * @return Json
- */
- protected function renderSuccess($data = [], string $message = 'success'): Json
- {
- if (is_string($data)) {
- $message = $data;
- $data = [];
- }
- return $this->renderData(config('status.success'), $message, $data);
- }
- /**
- * 返回操作失败json
- * @param string $message
- * @param array $data
- * @return Json
- */
- protected function renderError(string $message = 'error', array $data = []): Json
- {
- return $this->renderData(config('status.error'), $message, $data);
- }
- /**
- * 获取post数据 (数组)
- * @param $key
- * @return mixed
- */
- protected function postData($key = null)
- {
- return $this->request->post(empty($key) ? '' : "{$key}/a");
- }
- /**
- * 获取post数据 (数组)
- * @param string $key
- * @return mixed
- */
- protected function postForm(string $key = 'form')
- {
- return $this->postData($key);
- }
- /**
- * 获取post数据 (数组)
- * @param $key
- * @return mixed
- */
- protected function getData($key = null)
- {
- return $this->request->get(is_null($key) ? '' : $key);
- }
- /**
- * 强制验证当前访问的控制器方法method
- * @return bool
- * @throws BaseException
- */
- private function checkMethodRules(): bool
- {
- if (!isset($this->methodRules[$this->action])) {
- return true;
- }
- $methodRule = $this->methodRules[$this->action];
- $currentMethod = $this->request->method();
- if (empty($methodRule)) {
- return true;
- }
- if (is_array($methodRule) && in_array($currentMethod, $methodRule)) {
- return true;
- }
- if (is_string($methodRule) && $methodRule == $currentMethod) {
- return true;
- }
- throwError('illegal request method');
- return false;
- }
- }
|