Backend.php 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631
  1. <?php
  2. namespace app\common\controller;
  3. use app\admin\library\Auth;
  4. use app\admin\model\Admin;
  5. use app\common\service\SubService;
  6. use think\Config;
  7. use think\Controller;
  8. use think\Hook;
  9. use think\Lang;
  10. use think\Loader;
  11. use think\Model;
  12. use think\Session;
  13. use fast\Tree;
  14. use think\Validate;
  15. /**
  16. * 后台控制器基类
  17. */
  18. class Backend extends Controller
  19. {
  20. protected $failException=true;
  21. /**
  22. * 无需登录的方法,同时也就不需要鉴权了
  23. * @var array
  24. */
  25. protected $noNeedLogin = [];
  26. /**
  27. * 无需鉴权的方法,但需要登录
  28. * @var array
  29. */
  30. protected $noNeedRight = [];
  31. /**
  32. * 布局模板
  33. * @var string
  34. */
  35. protected $layout = 'default';
  36. /**
  37. * 权限控制类
  38. * @var Auth
  39. */
  40. protected $auth = null;
  41. /**
  42. * 模型对象
  43. * @var \think\Model
  44. */
  45. protected $model = null;
  46. /**
  47. * 快速搜索时执行查找的字段
  48. */
  49. protected $searchFields = 'id';
  50. /**
  51. * 是否是关联查询
  52. */
  53. protected $relationSearch = false;
  54. /**
  55. * 是否开启数据限制
  56. * 支持auth/personal
  57. * 表示按权限判断/仅限个人
  58. * 默认为禁用,若启用请务必保证表中存在admin_id字段
  59. */
  60. protected $dataLimit = false;
  61. /**
  62. * 数据限制字段
  63. */
  64. protected $dataLimitField = 'admin_id';
  65. /**
  66. * 数据限制开启时自动填充限制字段值
  67. */
  68. protected $dataLimitFieldAutoFill = true;
  69. /**
  70. * 是否开启Validate验证
  71. */
  72. protected $modelValidate = false;
  73. /**
  74. * 是否开启模型场景验证
  75. */
  76. protected $modelSceneValidate = false;
  77. /**
  78. * Multi方法可批量修改的字段
  79. */
  80. protected $multiFields = 'status';
  81. /**
  82. * Selectpage可显示的字段
  83. */
  84. protected $selectpageFields = '*';
  85. /**
  86. * 前台提交过来,需要排除的字段数据
  87. */
  88. protected $excludeFields = "";
  89. /**
  90. * 导入文件首行类型
  91. * 支持comment/name
  92. * 表示注释或字段名
  93. */
  94. protected $importHeadType = 'comment';
  95. /**
  96. * 引入后台控制器的traits
  97. */
  98. use \app\admin\library\traits\Backend;
  99. public function _initialize()
  100. {
  101. $this->failException=true;
  102. $modulename = $this->request->module();
  103. $controllername = Loader::parseName($this->request->controller());
  104. $actionname = strtolower($this->request->action());
  105. $path = str_replace('.', '/', $controllername) . '/' . $actionname;
  106. // 定义是否Addtabs请求
  107. !defined('IS_ADDTABS') && define('IS_ADDTABS', input("addtabs") ? true : false);
  108. // 定义是否Dialog请求
  109. !defined('IS_DIALOG') && define('IS_DIALOG', input("dialog") ? true : false);
  110. // 定义是否AJAX请求
  111. !defined('IS_AJAX') && define('IS_AJAX', $this->request->isAjax());
  112. // 检测IP是否允许
  113. check_ip_allowed();
  114. $this->auth = Auth::instance();
  115. // 设置当前请求的URI
  116. $this->auth->setRequestUri($path);
  117. // 检测是否需要验证登录
  118. if (!$this->auth->match($this->noNeedLogin)) {
  119. //检测是否登录
  120. if (!$this->auth->isLogin()) {
  121. Hook::listen('admin_nologin', $this);
  122. $url = Session::get('referer');
  123. $url = $url ? $url : $this->request->url();
  124. if (in_array($this->request->pathinfo(), ['/', 'index/index'])) {
  125. $this->redirect('index/login', [], 302, ['referer' => $url]);
  126. exit;
  127. }
  128. $this->error(__('Please login first'), url('index/login', ['url' => $url]));
  129. }
  130. $_SERVER['admin']=Admin::get($this->auth->id);
  131. // 判断是否需要验证权限
  132. if (!$this->auth->match($this->noNeedRight)) {
  133. // 判断控制器和方法是否有对应权限
  134. if (!$this->auth->check($path)) {
  135. Hook::listen('admin_nopermission', $this);
  136. $this->error(__('You have no permission'), '');
  137. }
  138. }
  139. }
  140. // 非选项卡时重定向
  141. if (!$this->request->isPost() && !IS_AJAX && !IS_ADDTABS && !IS_DIALOG && input("ref") == 'addtabs') {
  142. $url = preg_replace_callback("/([\?|&]+)ref=addtabs(&?)/i", function ($matches) {
  143. return $matches[2] == '&' ? $matches[1] : '';
  144. }, $this->request->url());
  145. if (Config::get('url_domain_deploy')) {
  146. if (stripos($url, $this->request->server('SCRIPT_NAME')) === 0) {
  147. $url = substr($url, strlen($this->request->server('SCRIPT_NAME')));
  148. }
  149. $url = url($url, '', false);
  150. }
  151. $this->redirect('index/index', [], 302, ['referer' => $url]);
  152. exit;
  153. }
  154. // 设置面包屑导航数据
  155. $breadcrumb = [];
  156. if (!IS_DIALOG && !config('fastadmin.multiplenav') && config('fastadmin.breadcrumb')) {
  157. $breadcrumb = $this->auth->getBreadCrumb($path);
  158. array_pop($breadcrumb);
  159. }
  160. $this->view->breadcrumb = $breadcrumb;
  161. // 如果有使用模板布局
  162. if ($this->layout) {
  163. $this->view->engine->layout('layout/' . $this->layout);
  164. }
  165. // 语言检测
  166. $lang = strip_tags($this->request->langset());
  167. $site = Config::get("site");
  168. $upload = \app\common\model\Config::upload();
  169. // 上传信息配置后
  170. Hook::listen("upload_config_init", $upload);
  171. // 配置信息
  172. $config = [
  173. 'site' => array_intersect_key($site, array_flip(['name', 'indexurl', 'cdnurl', 'version', 'timezone', 'languages'])),
  174. 'upload' => $upload,
  175. 'modulename' => $modulename,
  176. 'controllername' => $controllername,
  177. 'actionname' => $actionname,
  178. 'jsname' => 'backend/' . str_replace('.', '/', $controllername),
  179. 'moduleurl' => rtrim(url("/{$modulename}", '', false), '/'),
  180. 'language' => $lang,
  181. 'referer' => Session::get("referer")
  182. ];
  183. $config = array_merge($config, Config::get("view_replace_str"));
  184. Config::set('upload', array_merge(Config::get('upload'), $upload));
  185. // 配置信息后
  186. Hook::listen("config_init", $config);
  187. //加载当前控制器语言包
  188. $this->loadlang($controllername);
  189. //渲染站点配置
  190. $this->assign('site', $site);
  191. //渲染配置信息
  192. $this->assign('config', $config);
  193. //渲染权限对象
  194. $this->assign('auth', $this->auth);
  195. //渲染管理员对象
  196. $this->assign('admin', $adminInfo=Session::get('admin'));
  197. unset($adminInfo['password'],$adminInfo['salt']);
  198. $this->assign('adminInfo', $adminInfo);
  199. }
  200. /**
  201. * 加载语言文件
  202. * @param string $name
  203. */
  204. protected function loadlang($name)
  205. {
  206. $name = Loader::parseName($name);
  207. Lang::load(APP_PATH . $this->request->module() . '/lang/' . $this->request->langset() . '/' . str_replace('.', '/', $name) . '.php');
  208. }
  209. /**
  210. * 渲染配置信息
  211. * @param mixed $name 键名或数组
  212. * @param mixed $value 值
  213. */
  214. protected function assignconfig($name, $value = '')
  215. {
  216. $this->view->config = array_merge($this->view->config ? $this->view->config : [], is_array($name) ? $name : [$name => $value]);
  217. }
  218. /**
  219. * 生成查询所需要的条件,排序方式
  220. * @param mixed $searchfields 快速查询的字段
  221. * @param boolean $relationSearch 是否关联查询
  222. * @return array
  223. */
  224. protected function buildparams($searchfields = null, $relationSearch = null)
  225. {
  226. $searchfields = is_null($searchfields) ? $this->searchFields : $searchfields;
  227. $relationSearch = is_null($relationSearch) ? $this->relationSearch : $relationSearch;
  228. $search = $this->request->get("search", '');
  229. $filter = $this->request->get("filter", '');
  230. $op = $this->request->get("op", '', 'trim');
  231. $sort = $this->request->get("sort", !empty($this->model) && $this->model->getPk() ? $this->model->getPk() : 'id');
  232. $order = $this->request->get("order", "DESC");
  233. $offset = $this->request->get("offset/d", 0);
  234. $limit = $this->request->get("limit/d", 999999);
  235. //新增自动计算页码
  236. $page = $limit ? intval($offset / $limit) + 1 : 1;
  237. if ($this->request->has("page")) {
  238. $page = $this->request->get("page/d", 1);
  239. }
  240. $this->request->get([config('paginate.var_page') => $page]);
  241. $filter = (array)json_decode($filter, true);
  242. $op = (array)json_decode($op, true);
  243. $filter = $filter ? $filter : [];
  244. $where = [];
  245. $alias = [];
  246. $bind = [];
  247. $name = '';
  248. $aliasName = '';
  249. if (!empty($this->model) && $this->relationSearch) {
  250. $name = $this->model->getTable();
  251. $alias[$name] = Loader::parseName(basename(str_replace('\\', '/', get_class($this->model))));
  252. $aliasName = $alias[$name] . '.';
  253. }
  254. $sortArr = explode(',', $sort);
  255. foreach ($sortArr as $index => & $item) {
  256. $item = stripos($item, ".") === false ? $aliasName . trim($item) : $item;
  257. }
  258. unset($item);
  259. $sort = implode(',', $sortArr);
  260. $adminIds = $this->getDataLimitAdminIds();
  261. if (is_array($adminIds)) {
  262. $where[] = [$aliasName . $this->dataLimitField, 'in', $adminIds];
  263. }
  264. if ($search) {
  265. $searcharr = is_array($searchfields) ? $searchfields : explode(',', $searchfields);
  266. foreach ($searcharr as $k => &$v) {
  267. $v = stripos($v, ".") === false ? $aliasName . $v : $v;
  268. }
  269. unset($v);
  270. $where[] = [implode("|", $searcharr), "LIKE", "%{$search}%"];
  271. }
  272. $index = 0;
  273. foreach ($filter as $k => $v) {
  274. if (!preg_match('/^[a-zA-Z0-9_\-\.]+$/', $k)) {
  275. continue;
  276. }
  277. $sym = isset($op[$k]) ? $op[$k] : '=';
  278. if (stripos($k, ".") === false) {
  279. $k = $aliasName . $k;
  280. }
  281. $v = !is_array($v) ? trim($v) : $v;
  282. $sym = strtoupper(isset($op[$k]) ? $op[$k] : $sym);
  283. //null和空字符串特殊处理
  284. if (!is_array($v)) {
  285. if (in_array(strtoupper($v), ['NULL', 'NOT NULL'])) {
  286. $sym = strtoupper($v);
  287. }
  288. if (in_array($v, ['""', "''"])) {
  289. $v = '';
  290. $sym = '=';
  291. }
  292. }
  293. switch ($sym) {
  294. case '=':
  295. case '<>':
  296. $where[] = [$k, $sym, (string)$v];
  297. break;
  298. case 'LIKE':
  299. case 'NOT LIKE':
  300. case 'LIKE %...%':
  301. case 'NOT LIKE %...%':
  302. $where[] = [$k, trim(str_replace('%...%', '', $sym)), "%{$v}%"];
  303. break;
  304. case '>':
  305. case '>=':
  306. case '<':
  307. case '<=':
  308. $where[] = [$k, $sym, intval($v)];
  309. break;
  310. case 'FINDIN':
  311. case 'FINDINSET':
  312. case 'FIND_IN_SET':
  313. $v = is_array($v) ? $v : explode(',', str_replace(' ', ',', $v));
  314. $findArr = array_values($v);
  315. foreach ($findArr as $idx => $item) {
  316. $bindName = "item_" . $index . "_" . $idx;
  317. $bind[$bindName] = $item;
  318. $where[] = "FIND_IN_SET(:{$bindName}, `" . str_replace('.', '`.`', $k) . "`)";
  319. }
  320. break;
  321. case 'IN':
  322. case 'IN(...)':
  323. case 'NOT IN':
  324. case 'NOT IN(...)':
  325. $where[] = [$k, str_replace('(...)', '', $sym), is_array($v) ? $v : explode(',', $v)];
  326. break;
  327. case 'BETWEEN':
  328. case 'NOT BETWEEN':
  329. $arr = array_slice(explode(',', $v), 0, 2);
  330. if (stripos($v, ',') === false || !array_filter($arr)) {
  331. continue 2;
  332. }
  333. //当出现一边为空时改变操作符
  334. if ($arr[0] === '') {
  335. $sym = $sym == 'BETWEEN' ? '<=' : '>';
  336. $arr = $arr[1];
  337. } elseif ($arr[1] === '') {
  338. $sym = $sym == 'BETWEEN' ? '>=' : '<';
  339. $arr = $arr[0];
  340. }
  341. $where[] = [$k, $sym, $arr];
  342. break;
  343. case 'RANGE':
  344. case 'NOT RANGE':
  345. $v = str_replace(' - ', ',', $v);
  346. $arr = array_slice(explode(',', $v), 0, 2);
  347. if (stripos($v, ',') === false || !array_filter($arr)) {
  348. continue 2;
  349. }
  350. //当出现一边为空时改变操作符
  351. if ($arr[0] === '') {
  352. $sym = $sym == 'RANGE' ? '<=' : '>';
  353. $arr = $arr[1];
  354. } elseif ($arr[1] === '') {
  355. $sym = $sym == 'RANGE' ? '>=' : '<';
  356. $arr = $arr[0];
  357. }
  358. $tableArr = explode('.', $k);
  359. if (count($tableArr) > 1 && $tableArr[0] != $name && !in_array($tableArr[0], $alias) && !empty($this->model)) {
  360. //修复关联模型下时间无法搜索的BUG
  361. $relation = Loader::parseName($tableArr[0], 1, false);
  362. $alias[$this->model->$relation()->getTable()] = $tableArr[0];
  363. }
  364. $where[] = [$k, str_replace('RANGE', 'BETWEEN', $sym) . ' TIME', $arr];
  365. break;
  366. case 'NULL':
  367. case 'IS NULL':
  368. case 'NOT NULL':
  369. case 'IS NOT NULL':
  370. $where[] = [$k, strtolower(str_replace('IS ', '', $sym))];
  371. break;
  372. default:
  373. break;
  374. }
  375. $index++;
  376. }
  377. if (!empty($this->model)) {
  378. $this->model->alias($alias);
  379. }
  380. $model = $this->model;
  381. $where = function ($query) use ($where, $alias, $bind, &$model) {
  382. if (!empty($model)) {
  383. $model->alias($alias);
  384. $model->bind($bind);
  385. }
  386. foreach ($where as $k => $v) {
  387. if (is_array($v)) {
  388. call_user_func_array([$query, 'where'], $v);
  389. } else {
  390. $query->where($v);
  391. }
  392. }
  393. };
  394. return [$where, $sort, $order, $offset, $limit, $page, $alias, $bind];
  395. }
  396. /**
  397. * 获取数据限制的管理员ID
  398. * 禁用数据限制时返回的是null
  399. * @return mixed
  400. */
  401. protected function getDataLimitAdminIds()
  402. {
  403. if (!$this->dataLimit) {
  404. return null;
  405. }
  406. if ($this->auth->isSuperAdmin()) {
  407. return null;
  408. }
  409. $adminIds = [];
  410. if (in_array($this->dataLimit, ['auth', 'personal'])) {
  411. $adminIds = $this->dataLimit == 'auth' ? $this->auth->getChildrenAdminIds(true) : [$this->auth->id];
  412. }
  413. return $adminIds;
  414. }
  415. /**
  416. * Selectpage的实现方法
  417. *
  418. * 当前方法只是一个比较通用的搜索匹配,请按需重载此方法来编写自己的搜索逻辑,$where按自己的需求写即可
  419. * 这里示例了所有的参数,所以比较复杂,实现上自己实现只需简单的几行即可
  420. *
  421. */
  422. protected function selectpage()
  423. {
  424. //设置过滤方法
  425. $this->request->filter(['trim', 'strip_tags', 'htmlspecialchars']);
  426. //搜索关键词,客户端输入以空格分开,这里接收为数组
  427. $word = (array)$this->request->request("q_word/a");
  428. //当前页
  429. $page = $this->request->request("pageNumber");
  430. //分页大小
  431. $pagesize = $this->request->request("pageSize");
  432. //搜索条件
  433. $andor = $this->request->request("andOr", "and", "strtoupper");
  434. //排序方式
  435. $orderby = (array)$this->request->request("orderBy/a");
  436. //显示的字段
  437. $field = $this->request->request("showField");
  438. //主键
  439. $primarykey = $this->request->request("keyField");
  440. //主键值
  441. $primaryvalue = $this->request->request("keyValue");
  442. //搜索字段
  443. $searchfield = (array)$this->request->request("searchField/a");
  444. //自定义搜索条件
  445. $custom = (array)$this->request->request("custom/a");
  446. //是否返回树形结构
  447. $istree = $this->request->request("isTree", 0);
  448. $ishtml = $this->request->request("isHtml", 0);
  449. if ($istree) {
  450. $word = [];
  451. $pagesize = 999999;
  452. }
  453. $order = [];
  454. foreach ($orderby as $k => $v) {
  455. $order[$v[0]] = $v[1];
  456. }
  457. $field = $field ? $field : 'name';
  458. //如果有primaryvalue,说明当前是初始化传值
  459. if ($primaryvalue !== null) {
  460. $where = [$primarykey => ['in', $primaryvalue]];
  461. $pagesize = 999999;
  462. } else {
  463. $where = function ($query) use ($word, $andor, $field, $searchfield, $custom) {
  464. $logic = $andor == 'AND' ? '&' : '|';
  465. $searchfield = is_array($searchfield) ? implode($logic, $searchfield) : $searchfield;
  466. $searchfield = str_replace(',', $logic, $searchfield);
  467. $word = array_filter(array_unique($word));
  468. if (count($word) == 1) {
  469. $query->where($searchfield, "like", "%" . reset($word) . "%");
  470. } else {
  471. $query->where(function ($query) use ($word, $searchfield) {
  472. foreach ($word as $index => $item) {
  473. $query->whereOr(function ($query) use ($item, $searchfield) {
  474. $query->where($searchfield, "like", "%{$item}%");
  475. });
  476. }
  477. });
  478. }
  479. if ($custom && is_array($custom)) {
  480. foreach ($custom as $k => $v) {
  481. if (is_array($v) && 2 == count($v)) {
  482. $query->where($k, trim($v[0]), $v[1]);
  483. } else {
  484. $query->where($k, '=', $v);
  485. }
  486. }
  487. }
  488. };
  489. }
  490. $adminIds = $this->getDataLimitAdminIds();
  491. if (is_array($adminIds)) {
  492. $this->model->where($this->dataLimitField, 'in', $adminIds);
  493. }
  494. $list = [];
  495. $total = $this->model->where($where)->count();
  496. if ($total > 0) {
  497. if (is_array($adminIds)) {
  498. $this->model->where($this->dataLimitField, 'in', $adminIds);
  499. }
  500. $fields = is_array($this->selectpageFields) ? $this->selectpageFields : ($this->selectpageFields && $this->selectpageFields != '*' ? explode(',', $this->selectpageFields) : []);
  501. //如果有primaryvalue,说明当前是初始化传值,按照选择顺序排序
  502. if ($primaryvalue !== null && preg_match("/^[a-z0-9_\-]+$/i", $primarykey)) {
  503. $primaryvalue = array_unique(is_array($primaryvalue) ? $primaryvalue : explode(',', $primaryvalue));
  504. //修复自定义data-primary-key为字符串内容时,给排序字段添加上引号
  505. $primaryvalue = array_map(function ($value) {
  506. return '\'' . $value . '\'';
  507. }, $primaryvalue);
  508. $primaryvalue = implode(',', $primaryvalue);
  509. $this->model->orderRaw("FIELD(`{$primarykey}`, {$primaryvalue})");
  510. } else {
  511. $this->model->order($order);
  512. }
  513. $datalist = $this->model->where($where)
  514. ->page($page, $pagesize)
  515. ->select();
  516. foreach ($datalist as $index => $item) {
  517. unset($item['password'], $item['salt']);
  518. if ($this->selectpageFields == '*') {
  519. $result = [
  520. $primarykey => isset($item[$primarykey]) ? $item[$primarykey] : '',
  521. $field => isset($item[$field]) ? $item[$field] : '',
  522. ];
  523. } else {
  524. $result = array_intersect_key(($item instanceof Model ? $item->toArray() : (array)$item), array_flip($fields));
  525. }
  526. $result['pid'] = isset($item['pid']) ? $item['pid'] : (isset($item['parent_id']) ? $item['parent_id'] : 0);
  527. $list[] = $result;
  528. }
  529. if ($istree && !$primaryvalue) {
  530. $tree = Tree::instance();
  531. $tree->init(collection($list)->toArray(), 'pid');
  532. $list = $tree->getTreeList($tree->getTreeArray(0), $field);
  533. if (!$ishtml) {
  534. foreach ($list as &$item) {
  535. $item = str_replace('&nbsp;', ' ', $item);
  536. }
  537. unset($item);
  538. }
  539. }
  540. }
  541. //这里一定要返回有list这个字段,total是可选的,如果total<=list的数量,则会隐藏分页按钮
  542. return json(['list' => $list, 'total' => $total]);
  543. }
  544. /**
  545. * 刷新Token
  546. */
  547. protected function token()
  548. {
  549. $token = $this->request->param('__token__');
  550. //验证Token
  551. if (!Validate::make()->check(['__token__' => $token], ['__token__' => 'require|token'])) {
  552. $this->error(__('Token verification error'), '', ['__token__' => $this->request->token()]);
  553. }
  554. //刷新Token
  555. $this->request->token();
  556. }
  557. protected function admin($field=null){
  558. static $admin;
  559. if(is_null($admin)){
  560. $admin=Admin::get($this->auth->id);
  561. }
  562. if($field){
  563. return $admin[$field];
  564. }
  565. return $admin;
  566. }
  567. protected function service(){
  568. return SubService::instance($this->auth->id,'admin');
  569. }
  570. protected function checkSubPower($ids){
  571. if($this->admin('is_sub') && !$this->model->where('admin_id',$this->auth->id)->find($ids)){
  572. $this->error('操作失败');
  573. }
  574. }
  575. }