Nenhuma descrição
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

Base.php 13KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288
  1. <?php
  2. /**
  3. * 易优CMS
  4. * ============================================================================
  5. * 版权所有 2016-2028 海口快推科技有限公司,并保留所有权利。
  6. * 网站地址: http://www.eyoucms.com
  7. * ----------------------------------------------------------------------------
  8. * 如果商业用途务必到官方购买正版授权, 以免引起不必要的法律纠纷.
  9. * ============================================================================
  10. * Author: 小虎哥 <1105415366@qq.com>
  11. * Date: 2018-4-3
  12. */
  13. namespace app\admin\controller;
  14. use app\admin\logic\UpgradeLogic;
  15. use think\Controller;
  16. use think\Db;
  17. use think\response\Json;
  18. use think\Session;
  19. class Base extends Controller {
  20. public $session_id;
  21. public $php_servicemeal = 0;
  22. public $globalConfig = [];
  23. public $usersConfig = [];
  24. /**
  25. * 析构函数
  26. */
  27. function __construct()
  28. {
  29. if (!session_id()) {
  30. Session::start();
  31. }
  32. header("Cache-control: private"); // history.back返回后输入框值丢失问题
  33. parent::__construct();
  34. $this->editor = tpSetting('editor');
  35. if (empty($this->editor['editor_select'])) $this->editor['editor_select'] = 1;
  36. $this->assign('editor', $this->editor);
  37. }
  38. /*
  39. * 初始化操作
  40. */
  41. public function _initialize()
  42. {
  43. $this->session_id = session_id(); // 当前的 session_id
  44. !defined('SESSION_ID') && define('SESSION_ID', $this->session_id); //将当前的session_id保存为常量,供其它方法调用
  45. parent::_initialize();
  46. $this->global_assign();
  47. /*及时更新cookie中的admin_id,用于前台的可视化权限验证*/
  48. // $auth_role_info = model('AuthRole')->getRole(array('id' => session('admin_info.role_id')));
  49. // session('admin_info.auth_role_info', $auth_role_info);
  50. /*--end*/
  51. //过滤不需要登陆的行为
  52. $ctl_act = CONTROLLER_NAME.'@'.ACTION_NAME;
  53. $ctl_all = CONTROLLER_NAME.'@*';
  54. $filter_login_action = config('filter_login_action');
  55. $filter_login_action = empty($filter_login_action) ? [] : $filter_login_action;
  56. if (in_array($ctl_act, $filter_login_action) || in_array($ctl_all, $filter_login_action) || !in_array(MODULE_NAME, ['admin'])) {
  57. //return;
  58. }else{
  59. $web_login_expiretime = tpCache('global.web_login_expiretime');
  60. empty($web_login_expiretime) && $web_login_expiretime = config('login_expire');
  61. $admin_login_expire = session('admin_login_expire'); //最后登录时间
  62. $admin_info = session('admin_info');
  63. $isLogin = false; // 未登录
  64. if (!empty($admin_info['admin_id']) && (getTime() - intval($admin_login_expire)) < $web_login_expiretime) {
  65. $isLogin = $this->checkWechatLogin($admin_info); // 校验微信扫码登录
  66. if (!IS_AJAX_POST) {
  67. session('admin_login_expire', getTime()); // 登录有效期
  68. }
  69. $this->check_priv();//检查管理员菜单操作权限
  70. }
  71. if (!$isLogin) {
  72. /*自动退出*/
  73. adminLog('访问后台');
  74. session_unset();
  75. session::clear();
  76. cookie('admin-treeClicked', null); // 清除并恢复栏目列表的展开方式
  77. cookie('admin-treeClicked-1649642233', null); // 清除并恢复内容管理的展开方式
  78. /*--end*/
  79. if (IS_AJAX) {
  80. $this->error('登录超时!');
  81. } else {
  82. $url = request()->baseFile().'?s=Admin/login';
  83. $this->redirect($url);
  84. exit;
  85. }
  86. }
  87. }
  88. // 如果安装手机端后台管理插件并且在手机端访问时,自动重定向到手机端管理页面
  89. $weappAjax = input('param.weappAjax/d', 0);
  90. $actionArr = ['Weapp@execute', 'Admin@login', 'Admin@get_admin_wechat_users'];
  91. $mbackendData = Db::name('weapp')->where('code', 'Mbackend')->getField('data');
  92. $mbackendData = !empty($mbackendData) ? unserialize($mbackendData) : ['status'=>1];
  93. if (is_dir('./weapp/Mbackend/') && !empty($mbackendData['status']) && isMobile() && empty($weappAjax) && !in_array($ctl_act, $actionArr)) {
  94. $this->redirect(weapp_url('Mbackend/Mbackend/index'));
  95. }
  96. /* 增、改的跳转提示页,只限制于发布文档的模型和自定义模型 */
  97. $channeltype_list = config('global.channeltype_list');
  98. $controller_name = $this->request->controller();
  99. $this->assign('controller_name', $controller_name);
  100. if (isset($channeltype_list[strtolower($controller_name)]) || 'Custom' == $controller_name) {
  101. if (in_array($this->request->action(), ['add','edit'])) {
  102. $isMobile = input('param.isMobile/d', 0);
  103. if (is_dir('./weapp/Mbackend/') && (isMobile() || !empty($isMobile))) {
  104. \think\Config::set('dispatch_success_tmpl', 'public/dispatch_jump_m');
  105. } else {
  106. \think\Config::set('dispatch_success_tmpl', 'public/dispatch_jump');
  107. }
  108. $id = input('param.id/d', input('param.aid/d'));
  109. ('GET' == $this->request->method()) && cookie('ENV_IS_UPHTML', 0);
  110. // 解决没有从文档列表点击编辑的情况
  111. $ENV_GOBACK_URL = cookie('ENV_GOBACK_URL');
  112. empty($ENV_GOBACK_URL) && cookie('ENV_GOBACK_URL', url($controller_name.'/index'));
  113. $ENV_LIST_URL = cookie('ENV_LIST_URL');
  114. empty($ENV_LIST_URL) && cookie('ENV_LIST_URL', url($controller_name.'/index'));
  115. } else if (in_array($this->request->action(), ['index'])) {
  116. cookie('ENV_GOBACK_URL', $this->request->url());
  117. cookie('ENV_LIST_URL', request()->baseFile()."?m=admin&c={$controller_name}&a=index&lang=".$this->admin_lang);
  118. }
  119. } else if ('Archives' == $controller_name && in_array($this->request->action(), ['index_archives','index_draft'])) {
  120. cookie('ENV_GOBACK_URL', $this->request->url());
  121. cookie('ENV_LIST_URL', request()->baseFile()."?m=admin&c=Archives&a=".$this->request->action()."&lang=".$this->admin_lang);
  122. }
  123. if (empty($this->globalConfig['seo_uphtml_after_home']) && empty($this->globalConfig['seo_uphtml_after_channel']) && empty($this->globalConfig['seo_uphtml_after_pernext'])) {
  124. cookie('ENV_UPHTML_AFTER', null);
  125. } else {
  126. $seo_uphtml_after['seo_uphtml_after_home'] = !empty($this->globalConfig['seo_uphtml_after_home']) ? $this->globalConfig['seo_uphtml_after_home'] : 0;
  127. $seo_uphtml_after['seo_uphtml_after_channel'] = !empty($this->globalConfig['seo_uphtml_after_channel']) ? $this->globalConfig['seo_uphtml_after_channel'] : 0;
  128. $seo_uphtml_after['seo_uphtml_after_pernext'] = !empty($this->globalConfig['seo_uphtml_after_pernext']) ? $this->globalConfig['seo_uphtml_after_pernext'] : 0;
  129. cookie('ENV_UPHTML_AFTER', json_encode($seo_uphtml_after));
  130. }
  131. /* end */
  132. }
  133. /**
  134. * 校验微信扫码登录
  135. * @param array $admin_info [description]
  136. * @return [type] [description]
  137. */
  138. private function checkWechatLogin($admin_info = [])
  139. {
  140. $isLogin = true;
  141. if (is_dir('./weapp/Mbackend/') && isMobile()) {
  142. return $isLogin;
  143. }
  144. $login_type = 1; //仅账号密码登录 2-账号密码登录&微信扫码登录 3-仅微信扫码登录
  145. $thirdata = login_third_type();
  146. $third_login = !empty($thirdata['type']) ? $thirdata['type'] : '';
  147. $wx_map = ['admin_id'=>$admin_info['admin_id']];
  148. if ('EyouGzhLogin' == $third_login) {
  149. $wx_map['type'] = 1;
  150. if (empty($thirdata['data']['force'])){
  151. $login_type = 2; //2-账号密码登录&微信扫码登录
  152. } else {
  153. $login_type = 3; //仅微信扫码登录
  154. }
  155. } else if ('WechatLogin' == $third_login) {
  156. $wx_map['type'] = 2;
  157. if (empty($thirdata['data']['security_wechat_forcelogin'])) {
  158. $login_type = 2; //2-账号密码登录&微信扫码登录
  159. } else {
  160. $login_type = 3; //仅微信扫码登录
  161. }
  162. }
  163. if (!empty($third_login)) {
  164. if (3 == $login_type || (!empty($admin_info['openid']) && 2 == $login_type)) {
  165. $cacheKey = md5("admin_checkWechatLogin_".json_encode($wx_map));
  166. $wx_info = cache($cacheKey);
  167. if (empty($wx_info)) {
  168. $wx_info = Db::name('admin_wxlogin')->where($wx_map)->find();
  169. cache($cacheKey, $wx_info, null, "admin_wxlogin");
  170. }
  171. if (empty($admin_info['openid']) || empty($wx_info['openid']) || $admin_info['openid'] != $wx_info['openid']) {
  172. $isLogin = false;
  173. adminLog('重新登录验证');
  174. session_unset();
  175. session::clear();
  176. cookie('admin-treeClicked', null); // 清除并恢复栏目列表的展开方式
  177. cookie('admin-treeClicked-1649642233', null); // 清除并恢复内容管理的展开方式
  178. $url = request()->baseFile().'?s=Admin/login';
  179. $this->error('重新登录验证', $url);
  180. }
  181. }
  182. }
  183. return $isLogin;
  184. }
  185. /**
  186. * 检查管理员菜单操作权限
  187. * @return [type] [description]
  188. */
  189. private function check_priv()
  190. {
  191. $ctl = CONTROLLER_NAME;
  192. $act = ACTION_NAME;
  193. $ctl_act = $ctl.'@'.$act;
  194. $ctl_all = $ctl.'@*';
  195. //无需验证的操作
  196. $uneed_check_action = config('uneed_check_action');
  197. if (0 >= intval(session('admin_info.role_id'))) {
  198. //超级管理员无需验证
  199. return true;
  200. } else {
  201. $bool = false;
  202. /*检测是否有该权限*/
  203. if (is_check_access($ctl_act)) {
  204. $bool = true;
  205. }
  206. /*--end*/
  207. /*在列表中的操作不需要验证权限*/
  208. if (IS_AJAX || strpos($act,'ajax') !== false || in_array($ctl_act, $uneed_check_action) || in_array($ctl_all, $uneed_check_action)) {
  209. $bool = true;
  210. }
  211. /*--end*/
  212. if (is_dir('./weapp/Mbackend/') && isMobile()) {
  213. $bool = true;
  214. }
  215. //检查是否拥有此操作权限
  216. if (!$bool) {
  217. $this->error('您没有操作权限,请联系超级管理员分配权限');
  218. }
  219. }
  220. }
  221. /**
  222. * 保存系统设置
  223. */
  224. public function global_assign()
  225. {
  226. /*随时更新每页记录数*/
  227. $pagesize = input('get.pagesize/d');
  228. if (!empty($pagesize)) {
  229. $system_paginate_pagesize = config('tpcache.system_paginate_pagesize');
  230. if ($pagesize != intval($system_paginate_pagesize)) {
  231. tpCache('system', ['system_paginate_pagesize'=>$pagesize]);
  232. }
  233. }
  234. /*end*/
  235. $this->globalConfig = tpCache('global');
  236. $this->php_servicemeal = $this->globalConfig['php_servicemeal'];
  237. $this->globalConfig['web_loginlogo'] = handle_subdir_pic($this->globalConfig['web_loginlogo']);
  238. $this->globalConfig['web_loginbgimg'] = handle_subdir_pic($this->globalConfig['web_loginbgimg']);
  239. $this->globalConfig['web_adminlogo'] = handle_subdir_pic($this->globalConfig['web_adminlogo']);
  240. $security = tpSetting('security');
  241. empty($security) && $security = [];
  242. !empty($security['security_verifyfunc']) && $security['security_verifyfunc'] = json_decode($security['security_verifyfunc'], true);
  243. $this->globalConfig = array_merge($this->globalConfig, $security);
  244. $this->assign('global', $this->globalConfig);
  245. if (!empty($this->globalConfig['web_users_switch'])) {
  246. $this->usersConfig = getUsersConfigData('all');
  247. }
  248. $this->assign('usersConfig', $this->usersConfig);
  249. }
  250. /**
  251. * 多语言功能操作权限
  252. */
  253. public function language_access()
  254. {
  255. if (is_language() && $this->main_lang != $this->admin_lang) {
  256. $lang_title = model('Language')->where('mark',$this->main_lang)->value('title');
  257. $this->error('当前语言没有此功能,请切换到【'.$lang_title.'】语言');
  258. }
  259. }
  260. }