설명 없음
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.

RecycleBin.php 50KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246
  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 think\Page;
  15. use think\Db;
  16. use think\Cache;
  17. use app\common\logic\ArctypeLogic;
  18. // use app\admin\logic\RecycleBinLogic;
  19. /**
  20. * 模型字段控制器
  21. */
  22. class RecycleBin extends Base
  23. {
  24. public $recyclebinLogic;
  25. public $arctype_channel_id;
  26. public $arctypeLogic;
  27. public function _initialize() {
  28. parent::_initialize();
  29. if (empty($this->globalConfig['language_split'])) {
  30. if (!preg_match('/^(arctype_)/i', ACTION_NAME)) {
  31. $this->language_access(); // 多语言功能操作权限
  32. }
  33. }
  34. $this->arctypeLogic = new ArctypeLogic();
  35. // $this->recyclebinLogic = new RecycleBinLogic();
  36. $this->arctype = Db::name('arctype'); // 栏目数据表
  37. $this->archives = Db::name('archives'); // 内容数据表
  38. $this->config = Db::name('config'); // 配置数据表
  39. $this->config_attribute = Db::name('config_attribute'); // 自定义变量数据表
  40. $this->product_attribute = Db::name('product_attribute'); // 产品属性数据表
  41. $this->product_attr = Db::name('product_attr'); // 产品属性内容表
  42. $this->guestbook_attribute = Db::name('guestbook_attribute'); // 留言表单数据表
  43. $this->guestbook_attr = Db::name('guestbook_attr'); // 留言表单内容表
  44. $this->arctype_channel_id = config('global.arctype_channel_id');
  45. /*产品参数 - 新旧兼容*/
  46. $is_old_product_attr = tpSetting('system.system_old_product_attr', [], 'cn');
  47. $this->assign('is_old_product_attr',$is_old_product_attr);
  48. /*--end*/
  49. $menu = input('param.menu/d', 0);
  50. $this->assign('menu',$menu);
  51. }
  52. /**
  53. * 回收站管理 - 栏目列表
  54. */
  55. public function arctype_index()
  56. {
  57. $list = array();
  58. $keywords = input('keywords/s');
  59. $condition = array();
  60. // 应用搜索条件
  61. if (!empty($keywords)) {
  62. $condition['a.typename'] = array('LIKE', "%{$keywords}%");
  63. }
  64. $condition['a.is_del'] = 1;
  65. $condition['a.lang'] = $this->admin_lang;
  66. $count = $this->arctype->alias('a')->where($condition)->count();// 查询满足要求的总记录数
  67. $pageObj = new Page($count, config('paginate.list_rows'));// 实例化分页类 传入总记录数和每页显示的记录数
  68. $list = $this->arctype->alias('a')
  69. ->field('a.id, a.typename, a.current_channel, a.update_time')
  70. ->where($condition)
  71. ->order('a.update_time desc')
  72. ->limit($pageObj->firstRow.','.$pageObj->listRows)
  73. ->select();
  74. $pageStr = $pageObj->show();// 分页显示输出
  75. $this->assign('page',$pageStr);// 赋值分页输出
  76. $this->assign('list',$list);// 赋值数据集
  77. $this->assign('pager',$pageObj);// 赋值分页对象
  78. // 模型列表
  79. $channeltype_list = getChanneltypeList();
  80. $this->assign('channeltype_list', $channeltype_list);
  81. return $this->fetch();
  82. }
  83. /**
  84. * 回收站管理 - 栏目还原
  85. */
  86. public function arctype_recovery()
  87. {
  88. if (IS_POST) {
  89. $del_id = input('post.del_id/d', 0);
  90. if(!empty($del_id)){
  91. // 当前栏目信息
  92. $row = $this->arctype->field('id, parent_id, current_channel, typename')
  93. ->where([
  94. 'id' => $del_id,
  95. 'is_del'=> 1,
  96. ])
  97. ->find();
  98. if ($row) {
  99. $id_arr = [$row['id']];
  100. // 多语言处理逻辑
  101. $attr_name_arr = 'tid'.$row['id'];
  102. if (is_language() && empty($this->globalConfig['language_split'])) {
  103. $id_arr = Db::name('language_attr')->where([
  104. 'attr_name' => $attr_name_arr,
  105. 'attr_group' => 'arctype',
  106. ])->column('attr_value');
  107. $list = $this->arctype->field('id,del_method,parent_id')
  108. ->where([
  109. 'id' => ['IN', $id_arr],
  110. ])
  111. ->whereOr([
  112. 'parent_id' => ['IN', $id_arr],
  113. ])->select();
  114. }else{
  115. $list = $this->arctype->field('id,del_method,parent_id')
  116. ->where([
  117. 'parent_id' => ['IN', $id_arr],
  118. ])
  119. ->select();
  120. }
  121. }else{
  122. $this->error('参数错误');
  123. }
  124. // 需要更新的数据
  125. $data['is_del'] = 0; // is_del=0为正常数据
  126. $data['update_time']= getTime(); // 更新修改时间
  127. $data['del_method'] = 0; // 恢复删除方式为默认
  128. // 还原数据条件逻辑
  129. // 栏目逻辑
  130. $map = 'is_del=1';
  131. // 多语言处理逻辑
  132. if (is_language() && empty($this->globalConfig['language_split'])) {
  133. $where = $map.' and (';
  134. $ids = get_arr_column($list, 'id');
  135. !empty($ids) && $where .= 'id IN ('.implode(',', $ids).') OR parent_id IN ('.implode(',', $ids).')';
  136. }else{
  137. $where = $map.' and (id='.$del_id.' or parent_id='.$del_id;
  138. if (0 == intval($row['parent_id'])) {
  139. foreach ($list as $value) {
  140. if (2 == intval($value['del_method'])) {
  141. $where .= ' or parent_id='.$value['id'];
  142. }
  143. }
  144. }
  145. }
  146. $where .= ')';
  147. // 文章逻辑
  148. $where1 = $map.' and typeid in (';
  149. // 栏目数据更新
  150. $arctype = $this->arctype->where($where)->select();
  151. foreach ($arctype as $key => $value) {
  152. $where = 'is_del=1 and ';
  153. if (0 == intval($value['parent_id'])) {
  154. $where .= 'id='.$value['id'];
  155. }else if(0 < intval($value['parent_id'])){
  156. $where .= '(id='.$value['id'].' or id='.$value['parent_id'].')';
  157. }
  158. if (!in_array($value['id'], $id_arr)) {
  159. $where .= ' and del_method=2'; // 不是当前栏目或对应的多语言栏目,则只还原被动删除栏目
  160. }
  161. $this->arctype->where($where)->update($data);
  162. // 还原父级栏目,不还原主动删除的子栏目下的文档
  163. if (in_array($value['id'], $id_arr) || 2 == intval($value['del_method'])) {
  164. $where1 .= $value['id'].',';
  165. }
  166. }
  167. $where1 = rtrim($where1,',');
  168. $where1 .= ') and del_method=2';
  169. // 还原三级栏目时需要一并还原顶级栏目
  170. // 多语言处理逻辑
  171. if (is_language() && empty($this->globalConfig['language_split'])) {
  172. foreach ($list as $key => $value) {
  173. $parent_id = intval($value['parent_id']);
  174. if (0 < $parent_id) {
  175. $where = 'id='.$parent_id;
  176. $r1 = $this->arctype->where($where)->find();
  177. $parent_id = intval($r1['parent_id']);
  178. if (0 < $parent_id) {
  179. $where = 'is_del=1 and id='.$parent_id;
  180. $this->arctype->where($where)->update($data);
  181. }
  182. }
  183. }
  184. }else{
  185. $parent_id = intval($arctype['0']['parent_id']);
  186. if (0 < $parent_id) {
  187. $where = 'id='.$parent_id;
  188. $r1 = $this->arctype->where($where)->find();
  189. $parent_id = intval($r1['parent_id']);
  190. if (0 < $parent_id) {
  191. $where = 'is_del=1 and id='.$parent_id;
  192. $this->arctype->where($where)->update($data);
  193. }
  194. }
  195. }
  196. // 内容数据更新 - 还原父级栏目,不还原主动删除的子栏目下的文档
  197. $r = $this->archives->where($where1)->update($data);
  198. if (false !== $r) {
  199. // 还原多语言栏目关联绑定
  200. if (!empty($attr_name_arr)) {
  201. Db::name('language_attribute')->where([
  202. 'attr_name' => ['IN',$attr_name_arr],
  203. 'attr_group' => 'arctype',
  204. ])->update([
  205. 'is_del' => 0,
  206. 'update_time' => getTime(),
  207. ]);
  208. }
  209. /*--end*/
  210. Cache::clear();
  211. adminLog('还原栏目:'.$row['typename']);
  212. /*清空sql_cache_table数据缓存表 并 添加查询执行语句到mysql缓存表*/
  213. Db::name('sql_cache_table')->execute('TRUNCATE TABLE '.config('database.prefix').'sql_cache_table');
  214. model('SqlCacheTable')->InsertSqlCacheTable(true);
  215. /* END */
  216. $this->success('操作成功');
  217. }
  218. }
  219. $this->error('操作失败');
  220. }
  221. $this->error('非法访问');
  222. }
  223. /**
  224. * 回收站管理 - 栏目批量还原
  225. */
  226. public function batch_arctype_recovery()
  227. {
  228. if (IS_POST) {
  229. $post = input('post.');
  230. if (!isset($post['del_id']) || empty($post['del_id'])) $this->error('未选择栏目');
  231. $post['del_id'] = eyIntval($post['del_id']);
  232. $typename = '';
  233. foreach($post['del_id'] as $k=>$v){
  234. // 当前栏目信息
  235. $row = $this->arctype->field('id, parent_id, current_channel, typename')
  236. ->where([
  237. 'id' => $v,
  238. // 'is_del'=> 1,
  239. ])
  240. ->find();
  241. if ($row) {
  242. $id_arr = [$row['id']];
  243. // 多语言处理逻辑
  244. $attr_name_arr = 'tid'.$row['id'];
  245. if (is_language() && empty($this->globalConfig['language_split'])) {
  246. $id_arr = Db::name('language_attr')->where([
  247. 'attr_name' => $attr_name_arr,
  248. 'attr_group' => 'arctype',
  249. ])->column('attr_value');
  250. $list = $this->arctype->field('id,del_method,parent_id')
  251. ->where([
  252. 'id' => ['IN', $id_arr],
  253. ])
  254. ->whereOr([
  255. 'parent_id' => ['IN', $id_arr],
  256. ])->select();
  257. }else{
  258. $list = $this->arctype->field('id,del_method,parent_id')
  259. ->where([
  260. 'parent_id' => ['IN', $id_arr],
  261. ])
  262. ->select();
  263. }
  264. }else{
  265. $this->error('参数错误');
  266. }
  267. // 需要更新的数据
  268. $data['is_del'] = 0; // is_del=0为正常数据
  269. $data['update_time']= getTime(); // 更新修改时间
  270. $data['del_method'] = 0; // 恢复删除方式为默认
  271. // 还原数据条件逻辑
  272. // 栏目逻辑
  273. //$map = 'is_del=1';
  274. $map = '1=1';
  275. // 多语言处理逻辑
  276. if (is_language() && empty($this->globalConfig['language_split'])) {
  277. $where = $map.' and (';
  278. $ids = get_arr_column($list, 'id');
  279. !empty($ids) && $where .= 'id IN ('.implode(',', $ids).') OR parent_id IN ('.implode(',', $ids).')';
  280. }else{
  281. $where = $map.' and (id='.$v.' or parent_id='.$v;
  282. if (0 == intval($row['parent_id'])) {
  283. foreach ($list as $value) {
  284. if (2 == intval($value['del_method'])) {
  285. $where .= ' or parent_id='.$value['id'];
  286. }
  287. }
  288. }
  289. }
  290. $where .= ')';
  291. // 文章逻辑
  292. $where1 = $map.' and typeid in (';
  293. // 栏目数据更新
  294. $arctype = $this->arctype->where($where)->select();
  295. foreach ($arctype as $key => $value) {
  296. // $where = 'is_del=1 and ';
  297. $where = '1=1 and ';
  298. if (0 == intval($value['parent_id'])) {
  299. $where .= 'id='.$value['id'];
  300. }else if(0 < intval($value['parent_id'])){
  301. $where .= '(id='.$value['id'].' or id='.$value['parent_id'].')';
  302. }
  303. if (!in_array($value['id'], $id_arr)) {
  304. $where .= ' and del_method=2'; // 不是当前栏目或对应的多语言栏目,则只还原被动删除栏目
  305. }
  306. $this->arctype->where($where)->update($data);
  307. // 还原父级栏目,不还原主动删除的子栏目下的文档
  308. if (in_array($value['id'], $id_arr) || 2 == intval($value['del_method'])) {
  309. $where1 .= $value['id'].',';
  310. }
  311. }
  312. $where1 = rtrim($where1,',');
  313. $where1 .= ') and del_method=2';
  314. // 还原三级栏目时需要一并还原顶级栏目
  315. // 多语言处理逻辑
  316. if (is_language() && empty($this->globalConfig['language_split'])) {
  317. foreach ($list as $key => $value) {
  318. $parent_id = intval($value['parent_id']);
  319. if (0 < $parent_id) {
  320. $where = 'id='.$parent_id;
  321. $r1 = $this->arctype->where($where)->find();
  322. $parent_id = intval($r1['parent_id']);
  323. if (0 < $parent_id) {
  324. $where = '1=1 and id='.$parent_id;
  325. $this->arctype->where($where)->update($data);
  326. }
  327. }
  328. }
  329. }else{
  330. $parent_id = intval($arctype['0']['parent_id']);
  331. if (0 < $parent_id) {
  332. $where = 'id='.$parent_id;
  333. $r1 = $this->arctype->where($where)->find();
  334. $parent_id = intval($r1['parent_id']);
  335. if (0 < $parent_id) {
  336. $where = '1=1 and id='.$parent_id;
  337. $this->arctype->where($where)->update($data);
  338. }
  339. }
  340. }
  341. // 内容数据更新 - 还原父级栏目,不还原主动删除的子栏目下的文档
  342. $r = $this->archives->where($where1)->update($data);
  343. if (false !== $r) {
  344. // 还原多语言栏目关联绑定
  345. if (!empty($attr_name_arr)) {
  346. Db::name('language_attribute')->where([
  347. 'attr_name' => ['IN',$attr_name_arr],
  348. 'attr_group' => 'arctype',
  349. ])->update([
  350. 'is_del' => 0,
  351. 'update_time' => getTime(),
  352. ]);
  353. }
  354. /*--end*/
  355. Cache::clear();
  356. }
  357. $typename .= $row['typename'].',';
  358. }
  359. adminLog('还原栏目:'.trim($typename,','));
  360. /*清空sql_cache_table数据缓存表 并 添加查询执行语句到mysql缓存表*/
  361. Db::name('sql_cache_table')->execute('TRUNCATE TABLE '.config('database.prefix').'sql_cache_table');
  362. model('SqlCacheTable')->InsertSqlCacheTable(true);
  363. /* END */
  364. $this->success('操作成功');
  365. }
  366. $this->error('非法访问');
  367. }
  368. /**
  369. * 回收站管理 - 栏目删除
  370. */
  371. public function arctype_del()
  372. {
  373. if (IS_POST) {
  374. $del_id = input('post.del_id/d', 0);
  375. if(!empty($del_id)){
  376. // 当前栏目信息
  377. $row = $this->arctype->field('id, parent_id, current_channel, typename')
  378. ->where([
  379. 'id' => $del_id,
  380. 'is_del'=> 1,
  381. ])
  382. ->find();
  383. if ($row) {
  384. $id_arr = $row['id'];
  385. $attr_name_arr = [];
  386. $attr_name_arr[] = 'tid'.$row['id'];
  387. // 多语言处理逻辑
  388. if (is_language() && empty($this->globalConfig['language_split'])) {
  389. $id_arr_tmp = Db::name('language_attr')->where([
  390. 'attr_name' => ['IN',$attr_name_arr],
  391. 'attr_group' => 'arctype',
  392. ])->column('attr_value');
  393. if (!empty($id_arr_tmp)) {
  394. $id_arr = $id_arr_tmp;
  395. }
  396. $list = $this->arctype->field('id,del_method')
  397. ->where([
  398. 'id' => ['IN', $id_arr],
  399. ])
  400. ->whereOr([
  401. 'parent_id' => ['IN', $id_arr],
  402. ])->select();
  403. }else{
  404. $list = $this->arctype->field('id,del_method')
  405. ->where([
  406. 'parent_id' => ['IN', $id_arr],
  407. ])
  408. ->select();
  409. }
  410. }else{
  411. $this->error('参数错误');
  412. }
  413. // 删除条件逻辑
  414. // 栏目逻辑
  415. $map = 'is_del=1';
  416. // 多语言处理逻辑
  417. if (is_language() && empty($this->globalConfig['language_split'])) {
  418. $where = $map.' and (';
  419. $ids = get_arr_column($list, 'id');
  420. !empty($ids) && $where .= 'id IN ('.implode(',', $ids).') OR parent_id IN ('.implode(',', $ids).')';
  421. }else{
  422. $ids = [$del_id];
  423. $where = $map.' and (id='.$del_id.' or parent_id='.$del_id;
  424. if (0 == intval($row['parent_id'])) {
  425. foreach ($list as $value) {
  426. if (2 == intval($value['del_method'])) {
  427. $where .= ' or parent_id='.$value['id'];
  428. }
  429. }
  430. }
  431. }
  432. $where .= ')';
  433. // 文章逻辑
  434. $where1 = $map.' and typeid in (';
  435. // 查询栏目回收站数据并拼装删除文章逻辑
  436. $arctype = $this->arctype->field('id')->where($where)->select();
  437. foreach ($arctype as $key => $value) {
  438. $where1 .= $value['id'].',';
  439. }
  440. $where1 = rtrim($where1,',');
  441. $where1 .= ')';
  442. // 栏目数据删除
  443. $r = $this->arctype->where($where)->delete();
  444. if($r !== false){
  445. model('Archives')->del($ids); // 删除文档
  446. // 删除多语言栏目关联绑定
  447. if (!empty($attr_name_arr)) {
  448. if (get_admin_lang() == get_main_lang()) {
  449. Db::name('language_attribute')->where([
  450. 'attr_name' => ['IN', $attr_name_arr],
  451. 'attr_group' => 'arctype',
  452. ])->delete();
  453. }
  454. if (empty($this->globalConfig['language_split'])) {
  455. Db::name('language_attr')->where([
  456. 'attr_name' => ['IN', $attr_name_arr],
  457. 'attr_group' => 'arctype',
  458. ])->delete();
  459. } else {
  460. Db::name('language_attr')->where([
  461. 'attr_value' => ['IN', $ids],
  462. 'attr_group' => 'arctype',
  463. ])->delete();
  464. }
  465. }
  466. /*--end*/
  467. \think\Cache::clear('taglist');
  468. \think\Cache::clear('archives');
  469. \think\Cache::clear('arctype');
  470. adminLog('删除栏目:'.$row['typename']);
  471. $this->success("操作成功");
  472. }
  473. }
  474. }
  475. $this->error('操作失败');
  476. }
  477. /**
  478. * 回收站管理 - 栏目批量删除
  479. */
  480. public function batch_arctype_del()
  481. {
  482. if (IS_POST) {
  483. $post = input('post.');
  484. if (!isset($post['del_id']) || empty($post['del_id'])) $this->error('未选择栏目');
  485. $post['del_id'] = eyIntval($post['del_id']);
  486. $typename = '';
  487. foreach($post['del_id'] as $k=>$v){
  488. // 当前栏目信息
  489. $row = $this->arctype->field('id, parent_id, current_channel, typename')
  490. ->where([
  491. 'id' => $v,
  492. // 'is_del'=> 1,
  493. ])
  494. ->find();
  495. if ($row) {
  496. $id_arr = $row['id'];
  497. $attr_name_arr = [];
  498. $attr_name_arr[] = 'tid'.$row['id'];
  499. // 多语言处理逻辑
  500. if (is_language() && empty($this->globalConfig['language_split'])) {
  501. $id_arr_tmp = Db::name('language_attr')->where([
  502. 'attr_name' => $attr_name_arr,
  503. 'attr_group' => 'arctype',
  504. ])->column('attr_value');
  505. if (!empty($id_arr_tmp)) {
  506. $id_arr = $id_arr_tmp;
  507. }
  508. $list = $this->arctype->field('id,del_method')
  509. ->where([
  510. 'id' => ['IN', $id_arr],
  511. ])
  512. ->whereOr([
  513. 'parent_id' => ['IN', $id_arr],
  514. ])->select();
  515. }else{
  516. $list = $this->arctype->field('id,del_method')
  517. ->where([
  518. 'parent_id' => ['IN', $id_arr],
  519. ])
  520. ->select();
  521. }
  522. // 删除条件逻辑
  523. // 栏目逻辑
  524. // $map = 'is_del=1';
  525. $map = '1=1';
  526. // 多语言处理逻辑
  527. if (is_language() && empty($this->globalConfig['language_split'])) {
  528. $where = $map.' and (';
  529. $ids = get_arr_column($list, 'id');
  530. !empty($ids) && $where .= 'id IN ('.implode(',', $ids).') OR parent_id IN ('.implode(',', $ids).')';
  531. }else{
  532. $ids = [$v];
  533. $where = $map.' and (id='.$v.' or parent_id='.$v;
  534. if (0 == intval($row['parent_id'])) {
  535. foreach ($list as $value) {
  536. if (2 == intval($value['del_method'])) {
  537. $where .= ' or parent_id='.$value['id'];
  538. }
  539. }
  540. }
  541. }
  542. $where .= ')';
  543. // 文章逻辑
  544. $where1 = $map.' and typeid in (';
  545. // 查询栏目回收站数据并拼装删除文章逻辑
  546. $arctype = $this->arctype->field('id')->where($where)->select();
  547. foreach ($arctype as $key => $value) {
  548. $where1 .= $value['id'].',';
  549. }
  550. $where1 = rtrim($where1,',');
  551. $where1 .= ')';
  552. // 栏目数据删除
  553. $r = $this->arctype->where($where)->delete();
  554. if($r !== false){
  555. // Tag标签删除
  556. Db::name('taglist')->where([
  557. 'typeid' => ['IN', $ids],
  558. ])->delete();
  559. // 内容数据删除
  560. $this->archives->where($where1)->delete();
  561. // 删除多语言栏目关联绑定
  562. if (!empty($attr_name_arr)) {
  563. if (get_admin_lang() == get_main_lang()) {
  564. Db::name('language_attribute')->where([
  565. 'attr_name' => ['IN', $attr_name_arr],
  566. 'attr_group' => 'arctype',
  567. ])->delete();
  568. }
  569. if (empty($this->globalConfig['language_split'])) {
  570. Db::name('language_attr')->where([
  571. 'attr_name' => ['IN', $attr_name_arr],
  572. 'attr_group' => 'arctype',
  573. ])->delete();
  574. } else {
  575. Db::name('language_attr')->where([
  576. 'attr_value' => ['IN', $ids],
  577. 'attr_group' => 'arctype',
  578. ])->delete();
  579. }
  580. }
  581. /*--end*/
  582. }
  583. $typename .= $row['typename'].',';
  584. }
  585. }
  586. \think\Cache::clear('taglist');
  587. \think\Cache::clear('archives');
  588. \think\Cache::clear('arctype');
  589. adminLog('删除栏目:'.trim($typename,','));
  590. $this->success('操作成功');
  591. }
  592. $this->error('非法访问');
  593. }
  594. /**
  595. * 回收站管理 - 内容列表
  596. */
  597. public function archives_index()
  598. {
  599. $assign_data = array();
  600. $condition = array();
  601. // 获取到所有URL参数
  602. $param = input('param.');
  603. // 应用搜索条件
  604. foreach (['keywords','typeid'] as $key) {
  605. if (isset($param[$key]) && $param[$key] !== '') {
  606. if ($key == 'keywords') {
  607. $condition['a.title'] = array('LIKE', "%{$param[$key]}%");
  608. } else {
  609. $condition['a.'.$key] = array('eq', $param[$key]);
  610. }
  611. }
  612. }
  613. $condition['a.channel'] = array('neq', 6); // 排除单页模型
  614. /*多语言*/
  615. $condition['a.lang'] = array('eq', $this->admin_lang);
  616. /*--end*/
  617. $condition['a.is_del'] = array('eq', 1); // 回收站功能
  618. /**
  619. * 数据查询,搜索出主键ID的值
  620. */
  621. $count = $this->archives->alias('a')->where($condition)->count('aid');// 查询满足要求的总记录数
  622. $pageObj = new Page($count, config('paginate.list_rows'));// 实例化分页类 传入总记录数和每页显示的记录数
  623. $list = $this->archives->field("a.aid,a.channel")
  624. ->alias('a')
  625. ->where($condition)
  626. ->order('a.aid desc')
  627. ->limit($pageObj->firstRow.','.$pageObj->listRows)
  628. ->getAllWithIndex('aid');
  629. /**
  630. * 完善数据集信息
  631. * 在数据量大的情况下,经过优化的搜索逻辑,先搜索出主键ID,再通过ID将其他信息补充完整;
  632. */
  633. if ($list) {
  634. $aids = array_keys($list);
  635. $fields = "a.aid, a.title, a.typeid, a.litpic, a.update_time, b.typename";
  636. $row = DB::name('archives')
  637. ->field($fields)
  638. ->alias('a')
  639. ->join('__ARCTYPE__ b', 'a.typeid = b.id', 'LEFT')
  640. ->where('a.aid', 'in', $aids)
  641. ->getAllWithIndex('aid');
  642. foreach ($list as $key => $val) {
  643. $row[$val['aid']]['litpic'] = handle_subdir_pic($row[$val['aid']]['litpic']); // 支持子目录
  644. $list[$key] = $row[$val['aid']];
  645. }
  646. }
  647. $pageStr = $pageObj->show(); // 分页显示输出
  648. $assign_data['page'] = $pageStr; // 赋值分页输出
  649. $assign_data['list'] = $list; // 赋值数据集
  650. $assign_data['pager'] = $pageObj; // 赋值分页对象
  651. $this->assign($assign_data);
  652. return $this->fetch();
  653. }
  654. /**
  655. * 回收站管理 - 内容还原
  656. */
  657. public function archives_recovery()
  658. {
  659. $id_arr = input('del_id/a');
  660. $id_arr = eyIntval($id_arr);
  661. if(IS_POST && !empty($id_arr)) {
  662. // 当前文档信息
  663. $row = $this->archives->field('aid, title, typeid')
  664. ->where([
  665. 'aid' => ['IN', $id_arr],
  666. 'is_del' => 1,
  667. 'lang' => $this->admin_lang,
  668. ])
  669. ->select();
  670. if (!empty($row)) {
  671. $id_arr = get_arr_column($row, 'aid');
  672. // 关联的栏目ID集合
  673. $typeids = [];
  674. $typeidArr = get_arr_column($row, 'typeid');
  675. $typeidArr = array_unique($typeidArr);
  676. foreach ($typeidArr as $key => $val) {
  677. $pidArr = model('Arctype')->getAllPid($val, true);
  678. $typeids = array_merge($typeids, get_arr_column($pidArr, 'id'));
  679. }
  680. $typeids = array_unique($typeids);
  681. if (!empty($typeids)) {
  682. // 多语言处理逻辑
  683. if (is_language() && empty($this->globalConfig['language_split'])) {
  684. $attr_name_arr = [];
  685. foreach ($typeids as $key => $val) {
  686. array_push($attr_name_arr, 'tid'.$val);
  687. }
  688. $attr_value = Db::name('language_attr')->where([
  689. 'attr_name' => ['IN', $attr_name_arr],
  690. 'attr_group' => 'arctype',
  691. ])->column('attr_value');
  692. $attr_value && $typeids = $attr_value;
  693. }
  694. // 还原数据
  695. $r = $this->arctype->where([
  696. 'id' => ['IN', $typeids],
  697. ])
  698. ->update([
  699. 'is_del' => 0,
  700. 'del_method' => 0,
  701. 'update_time' => getTime(),
  702. ]);
  703. if ($r) {
  704. $r2 = $this->archives->where([
  705. 'aid' => ['IN', $id_arr],
  706. ])
  707. ->update([
  708. 'is_del' => 0,
  709. 'del_method' => 0,
  710. 'update_time' => getTime(),
  711. ]);
  712. if ($r2) {
  713. $_POST['aids'] = $id_arr;
  714. Cache::clear();
  715. adminLog('还原文档:'.implode('|', get_arr_column($row, 'title')));
  716. /*清空sql_cache_table数据缓存表 并 添加查询执行语句到mysql缓存表*/
  717. Db::name('sql_cache_table')->execute('TRUNCATE TABLE '.config('database.prefix').'sql_cache_table');
  718. model('SqlCacheTable')->InsertSqlCacheTable(true);
  719. /* END */
  720. $this->success('操作成功');
  721. } else {
  722. $this->success('关联栏目还原成功,文档还原失败!');
  723. }
  724. }
  725. $this->error('操作失败');
  726. }
  727. }
  728. $this->error('参数有误');
  729. }
  730. $this->error('非法访问');
  731. }
  732. /**
  733. * 回收站管理 - 内容删除
  734. */
  735. public function archives_del()
  736. {
  737. $id_arr = input('del_id/a');
  738. $id_arr = eyIntval($id_arr);
  739. if(IS_POST && !empty($id_arr)){
  740. // 当前文档信息
  741. $row = $this->archives->field('aid, title, channel')
  742. ->where([
  743. 'aid' => ['IN', $id_arr],
  744. 'is_del' => 1,
  745. 'lang' => $this->admin_lang,
  746. ])
  747. ->select();
  748. if (!empty($row)) {
  749. $id_arr = get_arr_column($row, 'aid');
  750. // 内容数据删除
  751. $r = $this->archives->where([
  752. 'aid' => ['IN', $id_arr],
  753. ])
  754. ->delete();
  755. if($r){
  756. /*按模型分组,然后进行分组删除*/
  757. $row2Group = group_same_key($row, 'channel');
  758. if (!empty($row2Group)) {
  759. $channelids = array_keys($row2Group);
  760. $channeltypeRow = Db::name('channeltype')->field('id,table,ifsystem')
  761. ->where([
  762. 'id' => ['IN', $channelids],
  763. ])->getAllWithIndex('id');
  764. foreach ($row2Group as $key => $val) {
  765. $table = $channeltypeRow[$key]['table'];
  766. $aidarr_tmp = get_arr_column($val, 'aid');
  767. if (!empty($channeltypeRow[$key]['ifsystem'])){
  768. model($table)->afterDel($id_arr);
  769. }else{
  770. model("Custom")->afterDel($id_arr,$table);
  771. }
  772. }
  773. }
  774. /*--end*/
  775. adminLog('删除文档:'.implode('|', get_arr_column($row, 'title')));
  776. $this->success("操作成功!");
  777. }
  778. $this->error("操作失败!");
  779. }
  780. }
  781. $this->error("参数有误!");
  782. }
  783. /**
  784. * 回收站管理 - 自定义变量列表
  785. */
  786. public function customvar_index()
  787. {
  788. $list = array();
  789. $keywords = input('keywords/s');
  790. $condition = array();
  791. // 应用搜索条件
  792. if (!empty($keywords)) {
  793. $condition['a.attr_name'] = array('LIKE', "%{$keywords}%");
  794. }
  795. $attr_var_names = Db::name('config')->field('name')
  796. ->where([
  797. 'is_del' => 1,
  798. 'lang' => $this->admin_lang,
  799. ])->getAllWithIndex('name');
  800. $condition['a.attr_var_name'] = array('IN', array_keys($attr_var_names));
  801. $condition['a.lang'] = $this->admin_lang;
  802. $count = Db::name('config_attribute')->alias('a')->where($condition)->count();// 查询满足要求的总记录数
  803. $pageObj = new Page($count, config('paginate.list_rows'));// 实例化分页类 传入总记录数和每页显示的记录数
  804. $list = Db::name('config_attribute')->alias('a')
  805. ->field('a.*, b.id')
  806. ->join('__CONFIG__ b', 'b.name = a.attr_var_name AND a.lang = b.lang', 'LEFT')
  807. ->where($condition)
  808. ->order('a.update_time desc')
  809. ->limit($pageObj->firstRow.','.$pageObj->listRows)
  810. ->select();
  811. $pageStr = $pageObj->show();// 分页显示输出
  812. $this->assign('page',$pageStr);// 赋值分页输出
  813. $this->assign('list',$list);// 赋值数据集
  814. $this->assign('pager',$pageObj);// 赋值分页对象
  815. return $this->fetch();
  816. }
  817. /**
  818. * 回收站管理 - 自定义变量还原
  819. */
  820. public function customvar_recovery()
  821. {
  822. if (IS_POST) {
  823. $id_arr = input('del_id/a');
  824. $id_arr = eyIntval($id_arr);
  825. if(!empty($id_arr)){
  826. $attr_var_name = $this->config->where([
  827. 'id' => ['IN', $id_arr],
  828. 'lang' => $this->admin_lang,
  829. 'is_del' => 1,
  830. ])->column('name');
  831. $r = $this->config->where('name', 'IN', $attr_var_name)->update([
  832. 'is_del' => 0,
  833. 'update_time' => getTime(),
  834. ]);
  835. if($r){
  836. delFile(CACHE_PATH, true);
  837. adminLog('还原自定义变量:'.implode(',', $attr_var_name));
  838. $this->success("操作成功!");
  839. }else{
  840. $this->error("操作失败!");
  841. }
  842. }
  843. }
  844. $this->error("参数有误!");
  845. }
  846. /**
  847. * 回收站管理 - 自定义变量删除
  848. */
  849. public function customvar_del()
  850. {
  851. if (IS_POST) {
  852. $id_arr = input('del_id/a');
  853. $id_arr = eyIntval($id_arr);
  854. if(!empty($id_arr)){
  855. $attr_var_name = $this->config->where([
  856. 'id' => ['IN', $id_arr],
  857. 'lang' => $this->admin_lang,
  858. 'is_del' => 1,
  859. ])->column('name');
  860. $r = $this->config->where('name', 'IN', $attr_var_name)->delete();
  861. if($r){
  862. // 同时删除
  863. $this->config_attribute->where('attr_var_name', 'IN', $attr_var_name)->delete();
  864. adminLog('彻底删除自定义变量:'.implode(',', $attr_var_name));
  865. $this->success("操作成功!");
  866. }else{
  867. $this->error("操作失败!");
  868. }
  869. }
  870. }
  871. $this->error("参数有误!");
  872. }
  873. /**
  874. * 回收站管理 - 产品属性列表
  875. */
  876. public function proattr_index()
  877. {
  878. $list = array();
  879. $condition = array();
  880. // 获取到所有URL参数
  881. $param = input('param.');
  882. // 应用搜索条件
  883. foreach (['keywords','typeid'] as $key) {
  884. if (isset($param[$key]) && $param[$key] !== '') {
  885. if ($key == 'keywords') {
  886. $condition['a.attr_name'] = array('LIKE', "%{$param[$key]}%");
  887. } else {
  888. $condition['a.'.$key] = array('eq', $param[$key]);
  889. }
  890. }
  891. }
  892. /*多语言*/
  893. $condition['a.lang'] = $this->admin_lang;
  894. /*--end*/
  895. $condition['a.is_del'] = array('eq', 1); // 回收站功能
  896. $count = $this->product_attribute->alias('a')->where($condition)->count();// 查询满足要求的总记录数
  897. $pageObj = new Page($count, config('paginate.list_rows'));// 实例化分页类 传入总记录数和每页显示的记录数
  898. $list = $this->product_attribute->alias('a')
  899. ->field('a.*, b.typename')
  900. ->join('__ARCTYPE__ b', 'a.typeid = b.id', 'LEFT')
  901. ->where($condition)
  902. ->order('a.update_time desc')
  903. ->limit($pageObj->firstRow.','.$pageObj->listRows)
  904. ->select();
  905. $pageStr = $pageObj->show();// 分页显示输出
  906. $this->assign('page',$pageStr);// 赋值分页输出
  907. $this->assign('list',$list);// 赋值数据集
  908. $this->assign('pager',$pageObj);// 赋值分页对象
  909. return $this->fetch();
  910. }
  911. /**
  912. * 回收站管理 - 产品属性还原
  913. */
  914. public function proattr_recovery()
  915. {
  916. $id_arr = input('del_id/a');
  917. $id_arr = eyIntval($id_arr);
  918. if(IS_POST && !empty($id_arr)){
  919. /*检测关联栏目是否已被伪删除*/
  920. $row1 = $this->product_attribute->field('attr_id, typeid')
  921. ->where([
  922. 'attr_id' => ['IN', $id_arr],
  923. ])->select();
  924. $row2 = $this->arctype->field('typename')
  925. ->where([
  926. 'id' => ['IN', get_arr_column($row1, 'typeid')],
  927. 'is_del' => 1,
  928. ])
  929. ->select();
  930. if (!empty($row2)) {
  931. $this->error('请先还原关联栏目:<font color="red">'.implode(' , ', get_arr_column($row2, 'typename')).'</font>');
  932. }
  933. /*--end*/
  934. // 多语言处理逻辑
  935. if (is_language() && empty($this->globalConfig['language_split'])) {
  936. $attr_name_arr = [];
  937. foreach ($id_arr as $key => $val) {
  938. array_push($attr_name_arr, 'attr_'.$val);
  939. }
  940. $id_arr = Db::name('language_attr')->where([
  941. 'attr_name' => ['IN', $attr_name_arr],
  942. 'attr_group' => 'product_attribute',
  943. ])->column('attr_value');
  944. }
  945. $row = $this->product_attribute->field('attr_id, attr_name')
  946. ->where([
  947. 'attr_id' => ['IN', $id_arr],
  948. ])->select();
  949. $id_arr = get_arr_column($row, 'attr_id');
  950. // 更新数据
  951. $r = $this->product_attribute->where([
  952. 'attr_id' => ['IN', $id_arr],
  953. ])->update([
  954. 'is_del' => 0,
  955. 'update_time' => getTime(),
  956. ]);
  957. if($r){
  958. adminLog('还原产品参数:'.implode(',', get_arr_column($row, 'attr_name')));
  959. $this->success("操作成功!");
  960. }
  961. $this->error("操作失败!");
  962. }
  963. $this->error("参数有误!");
  964. }
  965. /**
  966. * 回收站管理 - 产品属性删除
  967. */
  968. public function proattr_del()
  969. {
  970. $id_arr = input('del_id/a');
  971. $id_arr = eyIntval($id_arr);
  972. if(IS_POST && !empty($id_arr)){
  973. // 多语言处理逻辑
  974. if (is_language() && empty($this->globalConfig['language_split'])) {
  975. $attr_name_arr = [];
  976. foreach ($id_arr as $key => $val) {
  977. array_push($attr_name_arr, 'attr_'.$val);
  978. }
  979. $id_arr_tmp = Db::name('language_attr')->where([
  980. 'attr_name' => ['IN', $attr_name_arr],
  981. 'attr_group' => 'product_attribute',
  982. ])->column('attr_value');
  983. if (!empty($id_arr_tmp)) {
  984. $id_arr = $id_arr_tmp;
  985. }
  986. }
  987. $row = $this->product_attribute->field('attr_id, attr_name')
  988. ->where([
  989. 'attr_id' => ['IN', $id_arr],
  990. ])->select();
  991. $id_arr = get_arr_column($row, 'attr_id');
  992. // 产品属性删除
  993. $r = $this->product_attribute->where([
  994. 'attr_id' => ['IN', $id_arr],
  995. ])->delete();
  996. if($r){
  997. // 同时删除
  998. $this->product_attr->where([
  999. 'attr_id' => ['IN', $id_arr],
  1000. ])->delete();
  1001. adminLog('删除产品参数:'.implode(',', get_arr_column($row, 'attr_name')));
  1002. $this->success("操作成功!");
  1003. }
  1004. $this->error("操作失败!");
  1005. }
  1006. $this->error("参数有误!");
  1007. }
  1008. /**
  1009. * 回收站管理 - 留言属性列表
  1010. */
  1011. public function gbookattr_index()
  1012. {
  1013. $list = array();
  1014. $condition = array();
  1015. // 获取到所有URL参数
  1016. $param = input('param.');
  1017. // 应用搜索条件
  1018. foreach (['keywords','typeid'] as $key) {
  1019. if (isset($param[$key]) && $param[$key] !== '') {
  1020. if ($key == 'keywords') {
  1021. $condition['a.attr_name'] = array('LIKE', "%{$param[$key]}%");
  1022. } else {
  1023. $condition['a.'.$key] = array('eq', $param[$key]);
  1024. }
  1025. }
  1026. }
  1027. /*多语言*/
  1028. $condition['a.lang'] = $this->admin_lang;
  1029. /*--end*/
  1030. $condition['a.is_del'] = array('eq', 1); // 回收站功能
  1031. $count = $this->guestbook_attribute->alias('a')->where($condition)->count();// 查询满足要求的总记录数
  1032. $pageObj = new Page($count, config('paginate.list_rows'));// 实例化分页类 传入总记录数和每页显示的记录数
  1033. $list = $this->guestbook_attribute->alias('a')
  1034. ->field('a.*, b.typename')
  1035. ->join('__ARCTYPE__ b', 'a.typeid = b.id', 'LEFT')
  1036. ->where($condition)
  1037. ->order('a.update_time desc')
  1038. ->limit($pageObj->firstRow.','.$pageObj->listRows)
  1039. ->select();
  1040. $pageStr = $pageObj->show();// 分页显示输出
  1041. $this->assign('page',$pageStr);// 赋值分页输出
  1042. $this->assign('list',$list);// 赋值数据集
  1043. $this->assign('pager',$pageObj);// 赋值分页对象
  1044. return $this->fetch();
  1045. }
  1046. /**
  1047. * 回收站管理 - 留言属性还原
  1048. */
  1049. public function gbookattr_recovery()
  1050. {
  1051. $id_arr = input('del_id/a');
  1052. $id_arr = eyIntval($id_arr);
  1053. if(IS_POST && !empty($id_arr)){
  1054. /*检测关联栏目是否已被伪删除*/
  1055. $row1 = $this->guestbook_attribute->field('attr_id, typeid')
  1056. ->where([
  1057. 'attr_id' => ['IN', $id_arr],
  1058. ])->select();
  1059. $row2 = $this->arctype->field('typename')
  1060. ->where([
  1061. 'id' => ['IN', get_arr_column($row1, 'typeid')],
  1062. 'is_del' => 1,
  1063. ])
  1064. ->select();
  1065. if (!empty($row2)) {
  1066. $this->error('请先还原关联栏目:<font color="red">'.implode(' , ', get_arr_column($row2, 'typename')).'</font>');
  1067. }
  1068. /*--end*/
  1069. // 多语言处理逻辑
  1070. if (is_language() && empty($this->globalConfig['language_split'])) {
  1071. $attr_name_arr = [];
  1072. foreach ($id_arr as $key => $val) {
  1073. array_push($attr_name_arr, 'attr_'.$val);
  1074. }
  1075. $id_arr = Db::name('language_attr')->where([
  1076. 'attr_name' => ['IN', $attr_name_arr],
  1077. 'attr_group' => 'guestbook_attribute',
  1078. ])->column('attr_value');
  1079. }
  1080. $row = $this->guestbook_attribute->field('attr_id, attr_name')
  1081. ->where([
  1082. 'attr_id' => ['IN', $id_arr],
  1083. ])->select();
  1084. $id_arr = get_arr_column($row, 'attr_id');
  1085. // 更新数据
  1086. $r = $this->guestbook_attribute->where([
  1087. 'attr_id' => ['IN', $id_arr],
  1088. ])->update([
  1089. 'is_showlist' => 0,
  1090. 'is_del' => 0,
  1091. 'update_time' => getTime(),
  1092. ]);
  1093. if($r){
  1094. adminLog('还原留言表单:'.implode(',', get_arr_column($row, 'attr_name')));
  1095. $this->success("操作成功!");
  1096. }
  1097. }
  1098. $this->error("操作失败!");
  1099. }
  1100. /**
  1101. * 回收站管理 - 留言属性删除
  1102. */
  1103. public function gbookattr_del()
  1104. {
  1105. $id_arr = input('del_id/a');
  1106. $id_arr = eyIntval($id_arr);
  1107. if(IS_POST && !empty($id_arr)){
  1108. // 多语言处理逻辑
  1109. if (is_language() && empty($this->globalConfig['language_split'])) {
  1110. $attr_name_arr = [];
  1111. foreach ($id_arr as $key => $val) {
  1112. array_push($attr_name_arr, 'attr_'.$val);
  1113. }
  1114. $id_arr_tmp = Db::name('language_attr')->where([
  1115. 'attr_name' => ['IN', $attr_name_arr],
  1116. 'attr_group' => 'guestbook_attribute',
  1117. ])->column('attr_value');
  1118. if (!empty($id_arr_tmp)) {
  1119. $id_arr = $id_arr_tmp;
  1120. }
  1121. }
  1122. $row = $this->guestbook_attribute->field('attr_id, attr_name')
  1123. ->where([
  1124. 'attr_id' => ['IN', $id_arr],
  1125. ])->select();
  1126. $id_arr = get_arr_column($row, 'attr_id');
  1127. // 产品属性删除
  1128. $r = $this->guestbook_attribute->where([
  1129. 'attr_id' => ['IN', $id_arr],
  1130. ])->delete();
  1131. if($r){
  1132. // 同时删除
  1133. $this->guestbook_attr->where([
  1134. 'attr_id' => ['IN', $id_arr],
  1135. ])->delete();
  1136. adminLog('删除留言表单:'.implode(',', get_arr_column($row, 'attr_name')));
  1137. $this->success("操作成功!");
  1138. }
  1139. }
  1140. $this->error("操作失败!");
  1141. }
  1142. }