Base.php 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184
  1. <?php
  2. namespace app\admin\controller\shopro;
  3. use app\common\controller\Backend;
  4. /**
  5. * shopro 基础控制器
  6. *
  7. * @icon fa fa-circle-o
  8. */
  9. class Base extends Backend
  10. {
  11. protected $noNeedRight = [];
  12. protected $model = null;
  13. public function _initialize()
  14. {
  15. parent::_initialize();
  16. }
  17. /**
  18. * 可自定义组合的条件 生成查询所需要的条件,排序方式
  19. * @param mixed $searchfields 快速查询的字段
  20. * @param mixed $nobuildfields 不参与buildParams 的字段
  21. * @param boolean $relationSearch 是否关联查询
  22. * @return array
  23. */
  24. protected function custombuildparams($searchfields = null, $nobuildfields = [], $relationSearch = null)
  25. {
  26. $searchfields = is_null($searchfields) ? $this->searchFields : $searchfields;
  27. $relationSearch = is_null($relationSearch) ? $this->relationSearch : $relationSearch;
  28. $search = $this->request->get("search", '');
  29. $filter = $this->request->get("filter", '');
  30. $op = $this->request->get("op", '', 'trim');
  31. $sort = $this->request->get("sort", !empty($this->model) && $this->model->getPk() ? $this->model->getPk() : 'id');
  32. $order = $this->request->get("order", "DESC");
  33. $offset = $this->request->get("offset", 0);
  34. $limit = $this->request->get("limit", 0);
  35. $filter = (array)json_decode($filter, true);
  36. $op = (array)json_decode($op, true);
  37. $filter = $filter ? $this->filterParams($filter, $nobuildfields) : []; // 过滤掉不参与 buildParams 的参数
  38. $where = [];
  39. $tableName = '';
  40. if ($relationSearch) {
  41. if (!empty($this->model)) {
  42. $name = \think\Loader::parseName(basename(str_replace('\\', '/', get_class($this->model))));
  43. $name = $this->model->getTable();
  44. $tableName = $name . '.';
  45. }
  46. $sortArr = explode(',', $sort);
  47. foreach ($sortArr as $index => &$item) {
  48. $item = stripos($item, ".") === false ? $tableName . trim($item) : $item;
  49. }
  50. unset($item);
  51. $sort = implode(',', $sortArr);
  52. }
  53. $adminIds = $this->getDataLimitAdminIds();
  54. if (is_array($adminIds)) {
  55. $where[] = [$tableName . $this->dataLimitField, 'in', $adminIds];
  56. }
  57. if ($search) {
  58. $searcharr = is_array($searchfields) ? $searchfields : explode(',', $searchfields);
  59. foreach ($searcharr as $k => &$v) {
  60. $v = stripos($v, ".") === false ? $tableName . $v : $v;
  61. }
  62. unset($v);
  63. $where[] = [implode("|", $searcharr), "LIKE", "%{$search}%"];
  64. }
  65. foreach ($filter as $k => $v) {
  66. $sym = isset($op[$k]) ? $op[$k] : '=';
  67. if (stripos($k, ".") === false) {
  68. $k = $tableName . $k;
  69. }
  70. $v = !is_array($v) ? trim($v) : $v;
  71. $sym = strtoupper(isset($op[$k]) ? $op[$k] : $sym);
  72. switch ($sym) {
  73. case '=':
  74. case '<>':
  75. $where[] = [$k, $sym, (string)$v];
  76. break;
  77. case 'LIKE':
  78. case 'NOT LIKE':
  79. case 'LIKE %...%':
  80. case 'NOT LIKE %...%':
  81. $where[] = [$k, trim(str_replace('%...%', '', $sym)), "%{$v}%"];
  82. break;
  83. case '>':
  84. case '>=':
  85. case '<':
  86. case '<=':
  87. $where[] = [$k, $sym, intval($v)];
  88. break;
  89. case 'FINDIN':
  90. case 'FINDINSET':
  91. case 'FIND_IN_SET':
  92. $where[] = "FIND_IN_SET('{$v}', " . ($relationSearch ? $k : '`' . str_replace('.', '`.`', $k) . '`') . ")";
  93. break;
  94. case 'IN':
  95. case 'IN(...)':
  96. case 'NOT IN':
  97. case 'NOT IN(...)':
  98. $where[] = [$k, str_replace('(...)', '', $sym), is_array($v) ? $v : explode(',', $v)];
  99. break;
  100. case 'BETWEEN':
  101. case 'NOT BETWEEN':
  102. $arr = array_slice(explode(',', $v), 0, 2);
  103. if (stripos($v, ',') === false || !array_filter($arr)) {
  104. continue 2;
  105. }
  106. //当出现一边为空时改变操作符
  107. if ($arr[0] === '') {
  108. $sym = $sym == 'BETWEEN' ? '<=' : '>';
  109. $arr = $arr[1];
  110. } elseif ($arr[1] === '') {
  111. $sym = $sym == 'BETWEEN' ? '>=' : '<';
  112. $arr = $arr[0];
  113. }
  114. $where[] = [$k, $sym, $arr];
  115. break;
  116. case 'RANGE':
  117. case 'NOT RANGE':
  118. $v = str_replace(' - ', ',', $v);
  119. $arr = array_slice(explode(',', $v), 0, 2);
  120. if (stripos($v, ',') === false || !array_filter($arr)) {
  121. continue 2;
  122. }
  123. //当出现一边为空时改变操作符
  124. if ($arr[0] === '') {
  125. $sym = $sym == 'RANGE' ? '<=' : '>';
  126. $arr = $arr[1];
  127. } elseif ($arr[1] === '') {
  128. $sym = $sym == 'RANGE' ? '>=' : '<';
  129. $arr = $arr[0];
  130. }
  131. $where[] = [$k, str_replace('RANGE', 'BETWEEN', $sym) . ' time', $arr];
  132. break;
  133. case 'LIKE':
  134. case 'LIKE %...%':
  135. $where[] = [$k, 'LIKE', "%{$v}%"];
  136. break;
  137. case 'NULL':
  138. case 'IS NULL':
  139. case 'NOT NULL':
  140. case 'IS NOT NULL':
  141. $where[] = [$k, strtolower(str_replace('IS ', '', $sym))];
  142. break;
  143. default:
  144. break;
  145. }
  146. }
  147. $where = function ($query) use ($where) {
  148. foreach ($where as $k => $v) {
  149. if (is_array($v)) {
  150. call_user_func_array([$query, 'where'], $v);
  151. } else {
  152. $query->where($v);
  153. }
  154. }
  155. };
  156. return [$where, $sort, $order, $offset, $limit];
  157. }
  158. /**
  159. * 过滤原始的不能用buildParams 的条件
  160. */
  161. public function filterParams($filter, $nobuildfields = []) {
  162. if ($nobuildfields) {
  163. foreach ($filter as $k => $f) {
  164. if (in_array($k, $nobuildfields)) {
  165. unset($filter[$k]);
  166. }
  167. }
  168. }
  169. return $filter;
  170. }
  171. }