截流自动化的商城平台
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

AdminBase.php 7.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | likeshop开源商城系统
  4. // +----------------------------------------------------------------------
  5. // | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
  6. // | gitee下载:https://gitee.com/likeshop_gitee
  7. // | github下载:https://github.com/likeshop-github
  8. // | 访问官网:https://www.likeshop.cn
  9. // | 访问社区:https://home.likeshop.cn
  10. // | 访问手册:http://doc.likeshop.cn
  11. // | 微信公众号:likeshop技术社区
  12. // | likeshop系列产品在gitee、github等公开渠道开源版本可免费商用,未经许可不能去除前后端官方版权标识
  13. // | likeshop系列产品收费版本务必购买商业授权,购买去版权授权后,方可去除前后端官方版权标识
  14. // | 禁止对系统程序代码以任何目的,任何形式的再发布
  15. // | likeshop团队版权所有并拥有最终解释权
  16. // +----------------------------------------------------------------------
  17. // | author: likeshop.cn.team
  18. // +----------------------------------------------------------------------
  19. namespace app\common\basics;
  20. use app\admin\server\AuthServer;
  21. use app\common\server\ConfigServer;
  22. use app\common\server\UrlServer;
  23. use app\common\utils\Time;
  24. use think\App;
  25. use think\Controller;
  26. use think\exception\HttpResponseException;
  27. use think\facade\Config;
  28. use think\facade\Debug;
  29. use think\facade\View;
  30. use think\Response;
  31. use app\common\model\system\SystemLog;
  32. /**
  33. * 后台基类
  34. * Class AdminBase
  35. * @Author FZR
  36. * @package app\common\basics
  37. */
  38. abstract class AdminBase
  39. {
  40. /**
  41. * Request实例
  42. */
  43. protected $request;
  44. /**
  45. * 应用实例
  46. */
  47. protected $app;
  48. /**
  49. * 管理员ID
  50. * @var null
  51. */
  52. protected $adminId = null;
  53. /**
  54. * 管理员信息
  55. * @var null
  56. */
  57. protected $adminUser = null;
  58. /**
  59. * 逻辑
  60. * @var
  61. */
  62. protected $logic;
  63. /**
  64. * 验证器
  65. * @var
  66. */
  67. protected $validate;
  68. /**
  69. * 不需要登录的方法
  70. * @var array
  71. */
  72. public $like_not_need_login = [];
  73. /**
  74. * js数据
  75. * @var array
  76. */
  77. protected $js_data = [];
  78. /**
  79. * 分页
  80. * @var int
  81. */
  82. public $page_no = 1;
  83. public $page_size = 15;
  84. /**
  85. * 模板颜色
  86. * @var string
  87. */
  88. public $view_theme_color = '';
  89. /**
  90. * 构造方法
  91. * @access public
  92. * @param App $app 应用对象
  93. */
  94. public function __construct(App $app)
  95. {
  96. $this->app = $app;
  97. $this->request = $this->app->request;
  98. // 控制器初始化
  99. $this->initialize();
  100. }
  101. /**
  102. * 初始化
  103. */
  104. protected function initialize()
  105. {
  106. //默认设置参数
  107. $this->initConfig();
  108. //验证登录
  109. $this->checkLogin();
  110. //验证权限
  111. $this->checkAuth();
  112. //默认页面参数
  113. $this->setViewValue();
  114. // 系统日志
  115. $this->log();
  116. return true;
  117. }
  118. //系统日志
  119. protected function log()
  120. {
  121. if(request()->action() != 'login') {
  122. $data = [
  123. 'admin_id' => $this->adminId,
  124. 'name' => $this->adminUser['name'],
  125. 'account' => $this->adminUser['account'],
  126. 'create_time' => time(),
  127. 'uri' => request()->baseUrl(),
  128. 'type' => request()->method(),
  129. 'param' => json_encode(request()->param(),JSON_UNESCAPED_UNICODE),
  130. 'ip' => request()->ip()
  131. ];
  132. SystemLog::create($data);
  133. }
  134. }
  135. /**
  136. * Notes: 基础配置参数
  137. * @author 段誉(2021/4/9 14:18)
  138. */
  139. protected function initConfig()
  140. {
  141. $this->adminUser = session('admin_info');
  142. $this->adminId = session('admin_info.id');
  143. //分页参数
  144. $page_no = (int)$this->request->get('page_no');
  145. $this->page_no = $page_no && is_numeric($page_no) ? $page_no : $this->page_no;
  146. $page_size = (int)$this->request->get('page_size');
  147. $this->page_size = $page_size && is_numeric($page_size) ? $page_size : $this->page_size;
  148. $this->page_size = min($this->page_size, 100);
  149. }
  150. /**
  151. * 设置视图全局变量
  152. */
  153. private function setViewValue()
  154. {
  155. $app = Config::get('project');
  156. View::assign([
  157. 'view_env_name' => $app['env_name'],
  158. 'view_admin_name' => $app['admin_name'],
  159. 'view_theme_color' => $app['theme_color'],
  160. 'view_theme_button' => $app['theme_button'],
  161. 'front_version' => $app['front_version'],
  162. 'version' => $app['version'],
  163. 'dateTime' => Time::getTime(),
  164. 'storageUrl' => UrlServer::getFileUrl('/'),
  165. 'company_name' => ConfigServer::get('copyright', 'company_name')
  166. ]);
  167. $this->assignJs('image_upload_url', '');
  168. }
  169. /**
  170. * Notes: 检查登录
  171. * @author 段誉(2021/4/9 14:05)
  172. * @return bool
  173. */
  174. protected function checkLogin()
  175. {
  176. //已登录的访问登录页
  177. if ($this->adminUser && !$this->isNotNeedLogin()) {
  178. return true;
  179. }
  180. //已登录的访问非登录页
  181. if ($this->adminUser && $this->isNotNeedLogin()) {
  182. $this->redirect(url('index/index'));
  183. }
  184. //未登录的访问非登录页
  185. if (!$this->adminUser && $this->isNotNeedLogin()) {
  186. return true;
  187. }
  188. //未登录访问登录页
  189. $this->redirect(url('login/login'));
  190. }
  191. /**
  192. * Notes: 验证登录角色权限
  193. * @author 段誉(2021/4/13 11:34)
  194. * @return bool
  195. */
  196. protected function checkAuth()
  197. {
  198. //未登录的无需权限控制
  199. if (empty(session('admin_info'))) {
  200. return true;
  201. }
  202. //如果id为1,视为系统超级管理,无需权限控制
  203. if (session('admin_info.id') == 1) {
  204. return true;
  205. }
  206. //权限控制判断
  207. $controller_action = request()->controller() . '/' . request()->action();// 当前访问
  208. $controller_action = strtolower($controller_action);
  209. //没有的权限
  210. $none_auth = AuthServer::getRoleNoneAuthUris(session('admin_info.role_id'));
  211. if (empty($none_auth) || !in_array($controller_action, $none_auth)) {
  212. //通过权限控制
  213. return true;
  214. }
  215. $this->redirect(url('dispatch/dispatch_error',['msg' => '权限不足,无法访问']));
  216. return false;
  217. }
  218. /**
  219. * Notes: js
  220. * @param $name
  221. * @param $value
  222. * @author 段誉(2021/4/9 14:23)
  223. */
  224. protected function assignJs($name, $value)
  225. {
  226. $this->js_data[$name] = $value;
  227. $js_code = "<script>";
  228. foreach ($this->js_data as $name => $value) {
  229. if (is_array($value)) {
  230. $value = json_encode($value);
  231. } elseif (!is_integer($value)) {
  232. $value = '"' . $value . '"';
  233. }
  234. $js_code .= $name . '=' . $value . ';';
  235. }
  236. $js_code .= "</script>";
  237. View::assign('js_code', $js_code);
  238. }
  239. /**
  240. * Notes: 是否无需登录
  241. * @author 段誉(2021/4/9 14:03)
  242. * @return bool
  243. */
  244. private function isNotNeedLogin()
  245. {
  246. if (empty($this->like_not_need_login)) {
  247. return false;
  248. }
  249. $action = strtolower(request()->action());
  250. $data = array_map('strtolower', $this->like_not_need_login);
  251. if (!in_array($action, $data)) {
  252. return false;
  253. }
  254. return true;
  255. }
  256. /**
  257. * Notes: 自定义重定向
  258. * @param mixed ...$args
  259. * @author 段誉(2021/4/9 14:04)
  260. */
  261. public function redirect(...$args)
  262. {
  263. throw new HttpResponseException(redirect(...$args));
  264. }
  265. }