MobileFlowProxy.php 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357
  1. <?php
  2. namespace app\admin\controller;
  3. use app\admin\library\Auth;
  4. use app\common\controller\Backend;
  5. use app\common\library\MobileConstant;
  6. use think\App;
  7. use think\Db;
  8. use think\Exception;
  9. use think\exception\PDOException;
  10. use think\Loader;
  11. use think\Url;
  12. use app\admin\model\Admin;
  13. use app\admin\model\MobileFlowAreaTemplate;
  14. /**
  15. *
  16. *
  17. * @icon fa fa-mobile
  18. */
  19. class MobileFlowProxy extends Backend
  20. {
  21. /**
  22. * Mobile模型对象
  23. * @var \app\admin\model\Mobile
  24. */
  25. protected $model = null;
  26. protected $relationSearch=true;
  27. protected $super = 0;
  28. public function _initialize()
  29. {
  30. parent::_initialize();
  31. $this->model = new \app\admin\model\Mobile;
  32. $flowStatus = \app\common\model\Mobile::flowStatus();
  33. $this->assign('status', $flowStatus);
  34. if(in_array(1, $this->auth->getGroupIds())){
  35. $this->super = 1;
  36. }
  37. $this->assign('super', $this->super);
  38. $this->assign('brands', $this->model::$flowBrand);
  39. }
  40. public function import()
  41. {
  42. //MobileImport::import(input('file'),$this->auth->id,2);
  43. $this->success();
  44. }
  45. /**
  46. * 默认生成的控制器所继承的父类中有index/add/edit/del/multi五个基础方法、destroy/restore/recyclebin三个回收站方法
  47. * 因此在当前控制器中可不用编写增删改查的代码,除非需要自己控制这部分逻辑
  48. * 需要将application/admin/library/traits/Backend.php中对应的方法复制到当前控制器,然后进行修改
  49. */
  50. /**
  51. * 查看
  52. */
  53. public function index()
  54. {
  55. $editAuth = false;
  56. $delAuth = false;
  57. $subs = '';
  58. $userId = $this->auth->id;
  59. if($this->super){
  60. $subs = ['-100'=>'全部代理商'];
  61. $tmpSubs = Admin::getSubs();
  62. $subs = $subs+$tmpSubs;
  63. }
  64. if($this->auth->check('mobile_flow/edit')) $editAuth = true;
  65. if($this->auth->check('mobile_flow/del')) $delAuth = true;
  66. //当前是否为关联查询
  67. $this->relationSearch = false;
  68. //设置过滤方法
  69. $this->request->filter(['strip_tags', 'trim']);
  70. if ($this->request->isAjax()) {
  71. //如果发送的来源是Selectpage,则转发到Selectpage
  72. if ($this->request->request('keyField')) {
  73. return $this->selectpage();
  74. }
  75. list($where, $sort, $order, $offset, $limit) = $this->buildindexparams();
  76. $filter = json_decode($this->request->param()['filter'], true);
  77. $condition = [];
  78. if(isset($filter['status'])){
  79. $condition['ps.proxy_status'] = $filter['status'];
  80. }
  81. $list = $this->model
  82. ->with(['info', 'proxy'])
  83. ->join('mobile_proxy_status ps', 'mobile.id=ps.mobile_id', 'LEFT')
  84. ->where('type',2)
  85. ->where($where)
  86. ->where('mobile.status', 0)->where('mobile.proxy_id is null')
  87. ->where('ps.proxy_id', $this->auth->id)
  88. ->where($condition)
  89. ->order($sort, $order)
  90. // ->fetchSql()
  91. // ->select();
  92. // dump($list);exit;
  93. ->paginate($limit);
  94. foreach ($list as $key=>$row) {
  95. $rules=[];
  96. foreach (MobileConstant::getFilters() as $rule=>$field){
  97. foreach (array_values($field) as $column){
  98. if($row[$column]==1){
  99. $rules[]=$rule;
  100. }
  101. }
  102. }
  103. $row['rules']=array_unique($rules);
  104. $row['editAuth'] = $editAuth;
  105. $row['delAuth'] = $delAuth;
  106. if(!$subs && $row['proxy_id'] != $userId){
  107. $row['editAuth'] = false;
  108. $row['delAuth'] = false;
  109. }
  110. //代理商
  111. if(!$this->super){
  112. $row['sort'] = $row['sort_proxy'];
  113. if(!$row['proxy_id']){
  114. $row['status'] = $row->proxyStatus()->where('proxy_id', $this->auth->id)->value('proxy_status') ?: 0;
  115. }
  116. }
  117. }
  118. $result = array("total" => $list->total(), "rows" => $list->items());
  119. $result['input']=input();
  120. return json($result);
  121. }
  122. $this->assign('subs',$subs);
  123. $this->assign('no_type',array_column(MobileConstant::getNoType(),'name','id'));
  124. $this->assign('network',array_column(MobileConstant::getNetwork(),'name','id'));
  125. $this->assign('filters',MobileConstant::getFilters());
  126. return $this->view->fetch();
  127. }
  128. public function constant(){
  129. return json([
  130. 'no_type'=>MobileConstant::getNoType(),
  131. ]);
  132. }
  133. public function status(){
  134. return \app\common\model\MobileOrder::flowStatus();
  135. }
  136. protected function buildindexparams($searchfields = null, $relationSearch = null)
  137. {
  138. $searchfields = is_null($searchfields) ? $this->searchFields : $searchfields;
  139. $relationSearch = is_null($relationSearch) ? $this->relationSearch : $relationSearch;
  140. $search = $this->request->get("search", '');
  141. $filter = $this->request->get("filter", '');
  142. $op = $this->request->get("op", '', 'trim');
  143. $sort = $this->request->get("sort", !empty($this->model) && $this->model->getPk() ? $this->model->getPk() : 'id');
  144. $order = $this->request->get("order", "DESC");
  145. $offset = $this->request->get("offset/d", 0);
  146. $limit = $this->request->get("limit/d", 999999);
  147. //新增自动计算页码
  148. $page = $limit ? intval($offset / $limit) + 1 : 1;
  149. if ($this->request->has("page")) {
  150. $page = $this->request->get("page/d", 1);
  151. }
  152. $this->request->get([config('paginate.var_page') => $page]);
  153. $filter = (array)json_decode($filter, true);
  154. $op = (array)json_decode($op, true);
  155. $filter = $filter ? $filter : [];
  156. $where = [];
  157. $alias = [];
  158. $bind = [];
  159. $name = '';
  160. $aliasName = '';
  161. if (!empty($this->model) && $this->relationSearch) {
  162. $name = $this->model->getTable();
  163. $alias[$name] = Loader::parseName(basename(str_replace('\\', '/', get_class($this->model))));
  164. $aliasName = $alias[$name] . '.';
  165. }
  166. $sortArr = explode(',', $sort);
  167. foreach ($sortArr as $index => & $item) {
  168. $item = stripos($item, ".") === false ? $aliasName . trim($item) : $item;
  169. }
  170. unset($item);
  171. $sort = implode(',', $sortArr);
  172. $adminIds = $this->getDataLimitAdminIds();
  173. if (is_array($adminIds)) {
  174. $where[] = [$aliasName . $this->dataLimitField, 'in', $adminIds];
  175. }
  176. if ($search) {
  177. $searcharr = is_array($searchfields) ? $searchfields : explode(',', $searchfields);
  178. foreach ($searcharr as $k => &$v) {
  179. $v = stripos($v, ".") === false ? $aliasName . $v : $v;
  180. }
  181. unset($v);
  182. $where[] = [implode("|", $searcharr), "LIKE", "%{$search}%"];
  183. }
  184. $index = 0;
  185. foreach ($filter as $k => $v) {
  186. if($k == 'proxy_id' && $v == '-100') continue;
  187. if($k=='rules'){
  188. continue;
  189. }
  190. if (!preg_match('/^[a-zA-Z0-9_\-\.]+$/', $k)) {
  191. continue;
  192. }
  193. if($k == 'status'){
  194. continue;
  195. }
  196. $sym = isset($op[$k]) ? $op[$k] : '=';
  197. if (stripos($k, ".") === false) {
  198. $k = $aliasName . $k;
  199. }
  200. $v = !is_array($v) ? trim($v) : $v;
  201. $sym = strtoupper(isset($op[$k]) ? $op[$k] : $sym);
  202. //null和空字符串特殊处理
  203. if (!is_array($v)) {
  204. if (in_array(strtoupper($v), ['NULL', 'NOT NULL'])) {
  205. $sym = strtoupper($v);
  206. }
  207. if (in_array($v, ['""', "''"])) {
  208. $v = '';
  209. $sym = '=';
  210. }
  211. }
  212. switch ($sym) {
  213. case '=':
  214. case '<>':
  215. $where[] = [$k, $sym, (string)$v];
  216. break;
  217. case 'LIKE':
  218. case 'NOT LIKE':
  219. case 'LIKE %...%':
  220. case 'NOT LIKE %...%':
  221. $where[] = [$k, trim(str_replace('%...%', '', $sym)), "%{$v}%"];
  222. break;
  223. case '>':
  224. case '>=':
  225. case '<':
  226. case '<=':
  227. $where[] = [$k, $sym, intval($v)];
  228. break;
  229. case 'FINDIN':
  230. case 'FINDINSET':
  231. case 'FIND_IN_SET':
  232. $v = is_array($v) ? $v : explode(',', str_replace(' ', ',', $v));
  233. $findArr = array_values($v);
  234. foreach ($findArr as $idx => $item) {
  235. $bindName = "item_" . $index . "_" . $idx;
  236. $bind[$bindName] = $item;
  237. $where[] = "FIND_IN_SET(:{$bindName}, `" . str_replace('.', '`.`', $k) . "`)";
  238. }
  239. break;
  240. case 'IN':
  241. case 'IN(...)':
  242. case 'NOT IN':
  243. case 'NOT IN(...)':
  244. $where[] = [$k, str_replace('(...)', '', $sym), is_array($v) ? $v : explode(',', $v)];
  245. break;
  246. case 'BETWEEN':
  247. case 'NOT BETWEEN':
  248. $arr = array_slice(explode(',', $v), 0, 2);
  249. if (stripos($v, ',') === false || !array_filter($arr)) {
  250. continue 2;
  251. }
  252. //当出现一边为空时改变操作符
  253. if ($arr[0] === '') {
  254. $sym = $sym == 'BETWEEN' ? '<=' : '>';
  255. $arr = $arr[1];
  256. } elseif ($arr[1] === '') {
  257. $sym = $sym == 'BETWEEN' ? '>=' : '<';
  258. $arr = $arr[0];
  259. }
  260. $where[] = [$k, $sym, $arr];
  261. break;
  262. case 'RANGE':
  263. case 'NOT RANGE':
  264. $v = str_replace(' - ', ',', $v);
  265. $arr = array_slice(explode(',', $v), 0, 2);
  266. if (stripos($v, ',') === false || !array_filter($arr)) {
  267. continue 2;
  268. }
  269. //当出现一边为空时改变操作符
  270. if ($arr[0] === '') {
  271. $sym = $sym == 'RANGE' ? '<=' : '>';
  272. $arr = $arr[1];
  273. } elseif ($arr[1] === '') {
  274. $sym = $sym == 'RANGE' ? '>=' : '<';
  275. $arr = $arr[0];
  276. }
  277. $tableArr = explode('.', $k);
  278. if (count($tableArr) > 1 && $tableArr[0] != $name && !in_array($tableArr[0], $alias) && !empty($this->model)) {
  279. //修复关联模型下时间无法搜索的BUG
  280. $relation = Loader::parseName($tableArr[0], 1, false);
  281. $alias[$this->model->$relation()->getTable()] = $tableArr[0];
  282. }
  283. $where[] = [$k, str_replace('RANGE', 'BETWEEN', $sym) . ' TIME', $arr];
  284. break;
  285. case 'NULL':
  286. case 'IS NULL':
  287. case 'NOT NULL':
  288. case 'IS NOT NULL':
  289. $where[] = [$k, strtolower(str_replace('IS ', '', $sym))];
  290. break;
  291. default:
  292. break;
  293. }
  294. $index++;
  295. }
  296. if (!empty($this->model)) {
  297. $this->model->alias($alias);
  298. }
  299. if(isset($filter['rules']) && $filter['rules']){
  300. $temp=[];
  301. foreach (MobileConstant::getFilters()[$filter['rules']] as $pos=>$column){
  302. $temp[]=$column;
  303. }
  304. $where[]=[implode("|",$temp),1];
  305. }
  306. $model = $this->model;
  307. $where = function ($query) use ($where, $alias, $bind, &$model) {
  308. if (!empty($model)) {
  309. $model->alias($alias);
  310. $model->bind($bind);
  311. }
  312. foreach ($where as $k => $v) {
  313. if (is_array($v)) {
  314. call_user_func_array([$query, 'where'], $v);
  315. } else {
  316. $query->where($v);
  317. }
  318. }
  319. };
  320. return [$where, $sort, $order, $offset, $limit, $page, $alias, $bind];
  321. }
  322. }