截流自动化的商城平台
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.

ShopBase.php 7.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307
  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\common\server\ConfigServer;
  21. use app\common\server\UrlServer;
  22. use app\common\utils\Time;
  23. use app\shop\server\AuthServer;
  24. use think\App;
  25. use think\exception\HttpResponseException;
  26. use think\facade\Config;
  27. use think\facade\View;
  28. /**
  29. * 后台基类
  30. * Class ShopBase
  31. * @Author FZR
  32. * @package app\common\basics
  33. */
  34. abstract class ShopBase
  35. {
  36. /**
  37. * Request实例
  38. */
  39. protected $request;
  40. /**
  41. * 应用实例
  42. */
  43. protected $app;
  44. /**
  45. * 商家信息
  46. * @var
  47. */
  48. protected $shop;
  49. /**
  50. * 商家id
  51. * @var
  52. */
  53. protected $shop_id;
  54. /**
  55. * 商家名称
  56. * @var
  57. */
  58. protected $shop_name;
  59. /**
  60. * 管理员id
  61. * @var
  62. */
  63. protected $admin_id;
  64. /**
  65. * 管理员名称
  66. * @var
  67. */
  68. protected $admin_name;
  69. /**
  70. * 逻辑
  71. * @var
  72. */
  73. protected $logic;
  74. /**
  75. * 验证器
  76. * @var
  77. */
  78. protected $validate;
  79. /**
  80. * 不需要登录的方法
  81. * @var array
  82. */
  83. public $like_not_need_login = [];
  84. /**
  85. * js数据
  86. * @var array
  87. */
  88. protected $js_data = [];
  89. /**
  90. * 分页
  91. * @var int
  92. */
  93. public $page_no = 1;
  94. public $page_size = 15;
  95. /**
  96. * 模板颜色
  97. * @var string
  98. */
  99. public $view_theme_color = '';
  100. /**
  101. * 构造方法
  102. * @access public
  103. * @param App $app 应用对象
  104. */
  105. public function __construct(App $app)
  106. {
  107. $this->app = $app;
  108. $this->request = $this->app->request;
  109. // 控制器初始化
  110. $this->initialize();
  111. }
  112. /**
  113. * 初始化
  114. */
  115. protected function initialize()
  116. {
  117. //默认设置参数
  118. $this->initConfig();
  119. //验证登录
  120. $this->checkLogin();
  121. //验证权限
  122. $this->checkAuth();
  123. //默认页面参数
  124. $this->setViewValue();
  125. return true;
  126. }
  127. /**
  128. * Notes: 基础配置参数
  129. * @author 段誉(2021/4/9 14:18)
  130. */
  131. protected function initConfig()
  132. {
  133. $this->shop = session('shop_info');
  134. $this->shop_id = session('shop_info.shop_id');
  135. $this->shop_name = session('shop_info.shop_name');
  136. $this->admin_id = session('shop_info.id');
  137. $this->admin_name = session('shop_info.name');
  138. //分页参数
  139. $page_no = (int)$this->request->get('page_no');
  140. $this->page_no = $page_no && is_numeric($page_no) ? $page_no : $this->page_no;
  141. $page_size = (int)$this->request->get('page_size');
  142. $this->page_size = $page_size && is_numeric($page_size) ? $page_size : $this->page_size;
  143. $this->page_size = min($this->page_size, 100);
  144. }
  145. /**
  146. * 设置视图全局变量
  147. */
  148. private function setViewValue()
  149. {
  150. $app = Config::get('project');
  151. View::assign([
  152. 'view_env_name' => $app['env_name'],
  153. 'view_admin_name' => $app['admin_name'],
  154. 'view_theme_color' => $app['theme_color'],
  155. 'view_theme_button' => $app['theme_button'],
  156. 'front_version' => $app['front_version'],
  157. 'version' => $app['version'],
  158. 'dateTime' => Time::getTime(),
  159. 'storageUrl' => UrlServer::getFileUrl('/'),
  160. 'company_name' => ConfigServer::get('copyright', 'company_name')
  161. ]);
  162. $this->assignJs('image_upload_url', '');
  163. }
  164. /**
  165. * Notes: 检查登录
  166. * @author 段誉(2021/4/9 14:05)
  167. * @return bool
  168. */
  169. protected function checkLogin()
  170. {
  171. //已登录的访问登录页
  172. if ($this->shop && !$this->isNotNeedLogin()) {
  173. return true;
  174. }
  175. //已登录的访问非登录页
  176. if ($this->shop && $this->isNotNeedLogin()) {
  177. $this->redirect(url('index/index'));
  178. }
  179. //未登录的访问非登录页
  180. if (!$this->shop && $this->isNotNeedLogin()) {
  181. return true;
  182. }
  183. //未登录访问登录页
  184. $this->redirect(url('login/login'));
  185. }
  186. /**
  187. * Notes: 验证登录角色权限
  188. * @author 段誉(2021/4/13 11:34)
  189. * @return bool
  190. */
  191. protected function checkAuth()
  192. {
  193. //未登录的无需权限控制
  194. if (empty(session('shop_info'))) {
  195. return true;
  196. }
  197. //如果id为1,视为系统超级管理,无需权限控制
  198. if (session('shop_info.id') == 1) {
  199. return true;
  200. }
  201. //权限控制判断
  202. $controller_action = request()->controller() . '/' . request()->action();// 当前访问
  203. $controller_action = strtolower($controller_action);
  204. //没有的权限
  205. $none_auth = AuthServer::getRoleNoneAuthUris(session('shop_info.role_id'));
  206. if (empty($none_auth) || !in_array($controller_action, $none_auth)) {
  207. //通过权限控制
  208. return true;
  209. }
  210. $this->redirect(url('dispatch/dispatch_error',['msg' => '权限不足,无法访问']));
  211. return false;
  212. }
  213. /**
  214. * Notes: js
  215. * @param $name
  216. * @param $value
  217. * @author 段誉(2021/4/9 14:23)
  218. */
  219. protected function assignJs($name, $value)
  220. {
  221. $this->js_data[$name] = $value;
  222. $js_code = "<script>";
  223. foreach ($this->js_data as $name => $value) {
  224. if (is_array($value)) {
  225. $value = json_encode($value);
  226. } elseif (!is_integer($value)) {
  227. $value = '"' . $value . '"';
  228. }
  229. $js_code .= $name . '=' . $value . ';';
  230. }
  231. $js_code .= "</script>";
  232. View::assign('js_code', $js_code);
  233. }
  234. /**
  235. * Notes: 是否无需登录
  236. * @author 段誉(2021/4/9 14:03)
  237. * @return bool
  238. */
  239. private function isNotNeedLogin()
  240. {
  241. if (empty($this->like_not_need_login)) {
  242. return false;
  243. }
  244. $action = strtolower(request()->action());
  245. $data = array_map('strtolower', $this->like_not_need_login);
  246. if (!in_array($action, $data)) {
  247. return false;
  248. }
  249. return true;
  250. }
  251. /**
  252. * Notes: 自定义重定向
  253. * @param mixed ...$args
  254. * @author 段誉(2021/4/9 14:04)
  255. */
  256. public function redirect(...$args)
  257. {
  258. throw new HttpResponseException(redirect(...$args));
  259. }
  260. }