No Description
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.

SqlCacheTable.php 27KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634
  1. <?php
  2. /**
  3. * 易优CMS
  4. * ============================================================================
  5. * 版权所有 2016-2028 海南赞赞网络科技有限公司,并保留所有权利。
  6. * 网站地址: http://www.eyoucms.com
  7. * ----------------------------------------------------------------------------
  8. * 如果商业用途务必到官方购买正版授权, 以免引起不必要的法律纠纷.
  9. * ============================================================================
  10. * Author: 陈风任 <491085389@qq.com>
  11. * Date: 2021-04-27
  12. */
  13. namespace app\common\model;
  14. use think\Db;
  15. use think\Model;
  16. /**
  17. * mysql缓存表
  18. */
  19. class SqlCacheTable extends Model
  20. {
  21. //初始化
  22. protected function initialize()
  23. {
  24. // 需要调用`Model`的`initialize`方法
  25. parent::initialize();
  26. }
  27. // 更新已发布的正式缓存数据
  28. public function UpdateSqlCacheTable($post = [], $opt = '', $table = 'article', $users_release = false)
  29. {
  30. $citysiteArr = [];
  31. $citysite = ['province_id', 'city_id', 'area_id'];
  32. $attr = ['is_recom', 'is_special', 'is_b', 'is_head', 'is_litpic', 'is_jump', 'is_slide', 'is_roll', 'is_diyattr'];
  33. if ('add' == $opt) {
  34. // 添加时操作
  35. $SqlNameStr = '|' . $table . '|' . $post['channel'] . '|';
  36. $SqlName_1 = $SqlName_2 = [$SqlNameStr];
  37. foreach ($post as $key => $value) {
  38. // 处理属性条件,存在且选中则执行追加数组
  39. if (in_array($key, $attr) && !empty($value) && 1 == $value) array_push($SqlName_1, $SqlNameStr . $key . '|');
  40. // 处理栏目条件,查询当前栏目的父级栏目配合属性追加数组
  41. if (!empty($post['typeid']) && ('typeid' == $key || in_array($key, $attr) || in_array($key, $citysite))) {
  42. $AllPid = model('Arctype')->getAllPid($post['typeid']);
  43. $AllPid = get_arr_column($AllPid, 'id');
  44. if (!empty($AllPid)) {
  45. foreach ($AllPid as $vv) {
  46. array_push($SqlName_2, $SqlNameStr . $vv . '|');
  47. if (in_array($key, $attr) && !empty($value) && 1 == $value) {
  48. array_push($SqlName_2, $SqlNameStr . $key . '|' . $vv . '|');
  49. }
  50. // 城市分站处理
  51. if (in_array($key, $citysite)) {
  52. if (!empty($value)) {
  53. if (!in_array($value, $citysiteArr)) array_push($citysiteArr, $value);
  54. array_push($SqlName_2, $SqlNameStr . $vv . '|' . 'citysite_' . implode('_', $citysiteArr) . '|');
  55. }
  56. }
  57. }
  58. }
  59. }
  60. }
  61. // 合并两个数组 并 去除重复数据 再 重排键序
  62. $SqlName = array_merge(array_unique(array_merge($SqlName_1, $SqlName_2)), $this->ContentManageCache($post, $attr));
  63. // 会员投稿时,若设置了自动审核则调用,添加会员列表的数据
  64. if (!empty($users_release)) {
  65. $SqlName = array_merge($SqlName, $this->UsersReleaseSqlCache($post['users_id'], $post['typeid']));
  66. }
  67. // dump($SqlName);
  68. // dump(array_unique($SqlName));
  69. // exit;
  70. if (!empty($SqlName)) {
  71. // 更新数据
  72. $Data = [
  73. 'sql_result' => Db::raw('sql_result+1'),
  74. 'update_time' => getTime()
  75. ];
  76. // 执行更新
  77. Db::name('sql_cache_table')->where('sql_name', 'IN', $SqlName)->update($Data);
  78. }
  79. } else if ('edit' == $opt) {
  80. if ($post['arcrank'] > $post['old_arcrank'] && $post['old_arcrank'] == -1 && !empty($post['users_id'])) {
  81. // 将文章改为已审核文章
  82. $this->ReviewArticleHandle($post, $table, true);
  83. } else if ($post['old_arcrank'] > $post['arcrank'] && $post['arcrank'] == -1 && !empty($post['users_id'])) {
  84. // 将文章改为未审核文章
  85. $this->ReviewArticleHandle($post, $table, false);
  86. } else {
  87. // 编辑时操作
  88. $CutsDown = $Increase = $SqlName_1 = $SqlName_2 = $SqlName_3 = $SqlName_4 = $TypeID = [];
  89. foreach ($post['attr'] as $key => $value) {
  90. if (($post[$key] != $value && 0 == $post[$key]) || ($post['typeid'] != $post['attr']['typeid'])) {
  91. $SqlNameStr = '|' . $table . '|' . $post['channel'] . '|';
  92. // 已取消选择该属性,处理属性条件,存在且选中则执行追加数组
  93. if ($post[$key] != $value && 0 == $post[$key] && in_array($key, $attr)) {
  94. array_push($SqlName_1, $SqlNameStr . $key . '|');
  95. }
  96. if ($post['typeid'] != $post['attr']['typeid']) {
  97. $AllPid = [];
  98. if (!empty($post['old_typeid']) && !empty($users_release)) {
  99. $ArctypeModel = $this->GetArctypeModel($post['old_typeid']);
  100. $AllPid = $ArctypeModel['AllPid'];
  101. $SqlNameStr = $ArctypeModel['SqlNameStr'];
  102. array_push($SqlName_2, $SqlNameStr);
  103. } else {
  104. // 获取 typeid 的所有父级 typeid
  105. $AllPid = $this->GetAllPid($TypeID, $post['attr']['typeid']);
  106. }
  107. // 处理栏目条件,配合属性追加数组
  108. if (!empty($AllPid)) {
  109. foreach ($AllPid as $vvv) {
  110. array_push($SqlName_2, $SqlNameStr . $vvv . '|');
  111. if ($post[$key] != $value && 0 == $post[$key] && in_array($key, $attr)) {
  112. array_push($SqlName_2, $SqlNameStr . $key . '|' . $vvv . '|');
  113. }
  114. }
  115. }
  116. }
  117. $CutsDown = array_merge(array_unique(array_merge($SqlName_1, $SqlName_2)));
  118. }
  119. if (($post[$key] != $value && 1 == $post[$key]) || ($post['typeid'] != $post['attr']['typeid'])) {
  120. $SqlNameStr = '|' . $table . '|' . $post['channel'] . '|';
  121. // 已重新选择该属性,处理属性条件,存在且选中则执行追加数组
  122. if ($post[$key] != $value && 1 == $post[$key] && in_array($key, $attr)) {
  123. array_push($SqlName_3, $SqlNameStr . $key . '|');
  124. }
  125. if ($post['typeid'] != $post['attr']['typeid']) {
  126. // 前台投稿操作时执行处理
  127. if (!empty($post['old_typeid']) && !empty($users_release)) array_push($SqlName_4, $SqlNameStr);
  128. // 获取 typeid 的所有父级 typeid
  129. $AllPid = $this->GetAllPid($TypeID, $post['typeid']);
  130. // 处理栏目条件,配合属性追加数组
  131. if (!empty($AllPid)) {
  132. foreach ($AllPid as $vvv) {
  133. array_push($SqlName_4, $SqlNameStr . $vvv . '|');
  134. if ($post[$key] != $value && 1 == $post[$key] && in_array($key, $attr)) {
  135. array_push($SqlName_4, $SqlNameStr . $key . '|' . $vvv . '|');
  136. }
  137. }
  138. }
  139. }
  140. $Increase = array_merge(array_unique(array_merge($SqlName_3, $SqlName_4)));
  141. }
  142. }
  143. // 减少和增加指定缓存标识的缓存结果数据
  144. $this->CutsDownAndIncreaseSqlCacheTable($CutsDown, $Increase);
  145. }
  146. } else if ('del' == $opt) {
  147. // 删除时操作
  148. $SqlName_1 = $SqlName_2 = $TypeID = [];
  149. $post = array_merge($post);
  150. foreach ($post as $key => $value) {
  151. $SqlNameStr = '|' . $value['table'] . '|' . $value['channel'] . '|';
  152. array_push($SqlName_1, $SqlNameStr);
  153. $AllPid = [];
  154. foreach ($value as $kkk => $vvv) {
  155. // 处理属性条件,存在且选中则执行追加数组
  156. if (in_array($kkk, $attr) && !empty($vvv) && 1 == $vvv) array_push($SqlName_1, $SqlNameStr . $kkk . '|');
  157. // 查询当前栏目ID的父级栏目ID
  158. if ($kkk == 'typeid' && !empty($value['typeid'])) {
  159. // 获取 typeid 的所有父级 typeid
  160. $AllPid = $this->GetAllPid($TypeID, $value['typeid']);
  161. }
  162. }
  163. // 处理栏目条件,配合属性追加数组
  164. if (!empty($AllPid)) {
  165. foreach ($AllPid as $vv) {
  166. array_push($SqlName_2, $SqlNameStr . $vv . '|');
  167. if (in_array($kkk, $attr) && !empty($vvv) && 1 == $vvv) {
  168. array_push($SqlName_2, $SqlNameStr . $kkk . '|' . $vv . '|');
  169. }
  170. }
  171. }
  172. }
  173. // 合并两个数组
  174. $SqlName = array_merge($SqlName_1, $SqlName_2, $this->ContentManageCache($post, $attr, 'del'));
  175. // 若删除会员投稿则执行
  176. $PostUsersID = !empty($post[0]['users_id']) ? $post[0]['users_id'] : 0;
  177. if (!empty($PostUsersID)) {
  178. $PostTypeID = get_arr_column($post, 'typeid');
  179. $SqlName = array_merge($SqlName, $this->UsersReleaseSqlCache($PostUsersID, $PostTypeID));
  180. }
  181. // 根据 SqlName 执行更新指定缓存的文章数量
  182. $this->CutsDownSqlCacheTable($SqlName);
  183. }
  184. // 删除缓存表中首页内容统计和栏目管理文档统计数据
  185. $this->DeleteSqlCacheTable($table);
  186. }
  187. // 更新投稿缓存数据
  188. public function UpdateDraftSqlCacheTable($post = [], $opt = '', $users_release = false)
  189. {
  190. if ('add' == $opt) {
  191. // 添加时操作
  192. $Archives = '|archives|draft|';
  193. $UsersRelease = '|users_release|' . $post['users_id'] . '|';
  194. $SqlName = array_merge([$UsersRelease . 'all|'], [$Archives]);
  195. // 处理栏目条件,查询当前栏目的父级栏目配合属性追加数组
  196. $AllPid = [];
  197. if (!empty($post['typeid'])) {
  198. $AllPid = model('Arctype')->getAllPid($post['typeid']);
  199. $AllPid = get_arr_column($AllPid, 'id');
  200. if (!empty($AllPid)) {
  201. foreach ($AllPid as $vv) {
  202. array_push($SqlName, $UsersRelease . $vv . '|');
  203. array_push($SqlName, $Archives . $vv . '|');
  204. }
  205. }
  206. }
  207. if (!empty($SqlName)) {
  208. // 更新数据
  209. $Data = [
  210. 'sql_result' => Db::raw('sql_result+1'),
  211. 'update_time' => getTime()
  212. ];
  213. // 执行更新
  214. Db::name('sql_cache_table')->where('sql_name', 'IN', $SqlName)->update($Data);
  215. }
  216. } else if ('edit' == $opt) {
  217. // 编辑时操作
  218. $CutsDown = $Increase = [];
  219. if ($post['old_typeid'] != $post['typeid']) {
  220. $Archives = '|archives|draft|';
  221. $UsersID = !empty($post['users_id']) ? $post['users_id'] : session('users_id');
  222. $UsersRelease = '|users_release|' . $UsersID . '|';
  223. $TypeID = [];
  224. $typeids = array_merge([$post['old_typeid']], [$post['typeid']]);
  225. foreach ($typeids as $key => $value) {
  226. $SqlName = [];
  227. // 获取 typeid 的所有父级 typeid
  228. $AllPid = $this->GetAllPid($TypeID, $value);
  229. // 根据 typeid 追加数组
  230. if (!empty($AllPid)) {
  231. foreach ($AllPid as $vv) {
  232. array_push($SqlName, $UsersRelease . $vv . '|');
  233. array_push($SqlName, $Archives . $vv . '|');
  234. }
  235. }
  236. // 赋值数组
  237. if (0 == $key) {
  238. $CutsDown = $SqlName;
  239. } else {
  240. $Increase = $SqlName;
  241. }
  242. }
  243. } else {
  244. if (!empty($users_release)) {
  245. $Archives = '|archives|draft|';
  246. array_push($Increase, $Archives);
  247. array_push($Increase, $Archives . $post['typeid'] . '|');
  248. }
  249. }
  250. // 减少和增加指定缓存标识的缓存结果数据
  251. $this->CutsDownAndIncreaseSqlCacheTable($CutsDown, $Increase);
  252. } else if ('del' == $opt) {
  253. // 删除时操作
  254. $UsersID = session('users_id');
  255. $Archives = '|archives|draft|';
  256. $UsersRelease = '|users_release|' . $UsersID . '|';
  257. $TypeID = $SqlName = [];
  258. foreach ($post as $key => $value) {
  259. // 初始化 SqlName
  260. array_push($SqlName, $UsersRelease . 'all|');
  261. array_push($SqlName, $Archives);
  262. // 获取 typeid 的所有父级 typeid
  263. $AllPid = $this->GetAllPid($TypeID, $value);
  264. // 根据 typeid 追加数组
  265. if (!empty($AllPid)) {
  266. foreach ($AllPid as $vv) {
  267. array_push($SqlName, $UsersRelease . $vv . '|');
  268. array_push($SqlName, $Archives . $vv . '|');
  269. }
  270. }
  271. }
  272. // 根据 SqlName 执行更新指定缓存的文章数量
  273. $this->CutsDownSqlCacheTable($SqlName);
  274. } else if ('admin_del' == $opt) {
  275. // 删除时操作
  276. $TypeID = $SqlName = [];
  277. foreach ($post['TypeID'] as $key => $value) {
  278. $UsersID = $post['UsersID'][$key];
  279. // 初始化 SqlName
  280. $Archives = '|archives|draft|';
  281. $UsersRelease = '|users_release|' . $UsersID . '|';
  282. array_push($SqlName, $UsersRelease . 'all|');
  283. array_push($SqlName, $Archives);
  284. // 获取 typeid 的所有父级 typeid
  285. $AllPid = $this->GetAllPid($TypeID, $value);
  286. // 根据 typeid 追加数组
  287. if (!empty($AllPid)) {
  288. foreach ($AllPid as $vv) {
  289. array_push($SqlName, $UsersRelease . $vv . '|');
  290. array_push($SqlName, $Archives . $vv . '|');
  291. }
  292. }
  293. }
  294. // 根据 SqlName 执行更新指定缓存的文章数量
  295. $this->CutsDownSqlCacheTable($SqlName);
  296. }
  297. }
  298. // 筛选出投稿文档,若为投稿文档则进行审核后续处理
  299. public function ScreeningArchives($aid = 0, $arcrank = 0)
  300. {
  301. $field = 'a.typeid, a.channel, a.users_id, b.table';
  302. $where = [
  303. 'a.aid' => $aid,
  304. 'a.status' => 1,
  305. 'a.is_del' => 0,
  306. 'a.users_id' => ['>', 0]
  307. ];
  308. $Archives = Db::name('archives')->alias('a')->field($field)->join('__CHANNELTYPE__ b', 'a.channel = b.id', 'LEFT')->where($where)->find();
  309. if (!empty($Archives)) {
  310. $Archives['old_typeid'] = $Archives['typeid'];
  311. if (1 == $arcrank) {
  312. // 文档设置已审核
  313. $this->ReviewArticleHandle($Archives, $Archives['table'], true);
  314. } else if (0 == $arcrank) {
  315. // 文档设置未审核
  316. $this->ReviewArticleHandle($Archives, $Archives['table'], false);
  317. }
  318. // 删除缓存表中首页内容统计和栏目管理文档统计数据
  319. $this->DeleteSqlCacheTable($table);
  320. return true;
  321. } else {
  322. return false;
  323. }
  324. }
  325. // 文档已审核/未审核处理 handle=true 为已审核处理
  326. public function ReviewArticleHandle($post = [], $table = '', $handle = true)
  327. {
  328. $CutsDown = [];
  329. $ArchivesDraft = '|archives|draft|';
  330. array_push($CutsDown, $ArchivesDraft);
  331. // 只显示允许发布文档的模型,且是开启状态
  332. $channelIds = Db::name('channeltype')->where('status', 0)->whereOr('id', 'IN', [6,8])->column('id');
  333. $Increase = [];
  334. $ArchivesNot = '|archives|!=' . implode(',', $channelIds) . '|';
  335. $TableChannel = '|' . $table . '|' . $post['channel'] . '|';
  336. array_push($Increase, $ArchivesNot);
  337. array_push($Increase, $TableChannel);
  338. if ($post['old_typeid'] == $post['typeid']) {
  339. // 获取 typeid 的所有父级 typeid
  340. $AllPid = model('Arctype')->getAllPid($post['typeid']);
  341. $AllPid = get_arr_column($AllPid, 'id');
  342. // 根据 typeid 追加数组
  343. if (!empty($AllPid)) {
  344. foreach ($AllPid as $vv) {
  345. array_push($CutsDown, $ArchivesDraft . $vv . '|');
  346. array_push($Increase, $TableChannel . $vv . '|');
  347. }
  348. }
  349. } else if ($post['old_typeid'] != $post['typeid']) {
  350. $TypeID = [];
  351. if (!empty($handle)) {
  352. $typeids = [$post['old_typeid'], $post['typeid']];
  353. } else {
  354. $typeids = [$post['typeid'], $post['old_typeid']];
  355. }
  356. foreach ($typeids as $key => $value) {
  357. // 获取 typeid 的所有父级 typeid
  358. $AllPid = $this->GetAllPid($TypeID, $value);
  359. // 根据 typeid 追加数组
  360. if (!empty($AllPid)) {
  361. foreach ($AllPid as $vv) {
  362. if (0 == $key) {
  363. array_push($CutsDown, $UsersRelease . $vv . '|');
  364. array_push($CutsDown, $ArchivesDraft . $vv . '|');
  365. } else {
  366. array_push($Increase, $TableChannel . $vv . '|');
  367. }
  368. }
  369. }
  370. }
  371. }
  372. if (!empty($handle)) {
  373. // 减少和增加指定缓存标识的缓存结果数据
  374. $this->CutsDownAndIncreaseSqlCacheTable($CutsDown, $Increase);
  375. } else {
  376. // 减少和增加指定缓存标识的缓存结果数据
  377. $this->CutsDownAndIncreaseSqlCacheTable($Increase, $CutsDown);
  378. }
  379. }
  380. // 获取当前栏目ID的所有父级栏目ID
  381. private function GetAllPid(&$TypeID = [], $value = 0)
  382. {
  383. $AllPid = [];
  384. if (!empty($TypeID[$value])) {
  385. // 若已存在则直接读取
  386. $AllPid = $TypeID[$value];
  387. } else {
  388. // 若不存在则查询数据库
  389. $AllPid = model('Arctype')->getAllPid($value);
  390. $AllPid = get_arr_column($AllPid, 'id');
  391. $TypeID[$value] = $AllPid;
  392. }
  393. // 返回结果
  394. return $AllPid;
  395. }
  396. // 查询栏目及模型信息
  397. private function GetArctypeModel($old_typeid = 0)
  398. {
  399. $field = 'a.id, a.parent_id, a.topid, b.id as channel_id, b.table';
  400. $where = [
  401. 'a.is_del' => 0,
  402. 'b.is_del' => 0,
  403. 'a.status' => 1,
  404. 'b.status' => 1,
  405. 'a.is_release' => 1,
  406. 'b.is_release' => 1,
  407. 'a.id' => $old_typeid,
  408. ];
  409. $ArctypeModel = Db::name('arctype')->alias('a')->join('__CHANNELTYPE__ b', 'a.current_channel = b.id', 'LEFT')->field($field)->where($where)->find();
  410. // 处理栏目ID
  411. $AllPid = [];
  412. array_push($AllPid, $ArctypeModel['id'], $ArctypeModel['parent_id']);
  413. if ($ArctypeModel['parent_id'] !== $ArctypeModel['topid']) array_push($AllPid, $ArctypeModel['topid']);
  414. sort($AllPid);
  415. // 处理缓存标识
  416. $SqlNameStr = '|' . $ArctypeModel['table'] . '|' . $ArctypeModel['channel_id'] . '|';
  417. // 返回处理的数据
  418. return ['AllPid' => $AllPid, 'SqlNameStr' => $SqlNameStr];
  419. }
  420. // 减少和增加指定缓存标识的缓存结果数据
  421. private function CutsDownAndIncreaseSqlCacheTable($CutsDown = [], $Increase = [])
  422. {
  423. if (!empty($CutsDown)) {
  424. // 更新数据
  425. $CutsDownData = [
  426. 'sql_result' => Db::raw('sql_result-1'),
  427. 'update_time' => getTime()
  428. ];
  429. // 执行更新
  430. Db::name('sql_cache_table')->where('sql_name', 'IN', $CutsDown)->update($CutsDownData);
  431. }
  432. if (!empty($Increase)) {
  433. // 更新数据
  434. $IncreaseData = [
  435. 'sql_result' => Db::raw('sql_result+1'),
  436. 'update_time' => getTime()
  437. ];
  438. // 执行更新
  439. Db::name('sql_cache_table')->where('sql_name', 'IN', $Increase)->update($IncreaseData);
  440. }
  441. }
  442. // 会员投稿时,文章自动审核则调用
  443. private function UsersReleaseSqlCache($users_id = 0, $typeid = 0)
  444. {
  445. $SqlName = $TypeID = [];
  446. $UsersRelease = '|users_release|' . $users_id . '|';
  447. // 处理栏目条件,查询当前栏目的父级栏目配合属性追加数组
  448. if (!empty($typeid)) {
  449. $typeid = is_array($typeid) ? $typeid : [$typeid];
  450. foreach ($typeid as $value) {
  451. array_push($SqlName, $UsersRelease . 'all|');
  452. $AllPid = [];
  453. if (!empty($TypeID[$value])) {
  454. // 若已存在则直接读取
  455. $AllPid = $TypeID[$value];
  456. } else {
  457. // 若不存在则查询数据库
  458. $AllPid = model('Arctype')->getAllPid($value);
  459. $AllPid = get_arr_column($AllPid, 'id');
  460. $TypeID[$value] = $AllPid;
  461. }
  462. if (!empty($AllPid)) {
  463. foreach ($AllPid as $vv) {
  464. array_push($SqlName, $UsersRelease . $vv . '|');
  465. }
  466. }
  467. }
  468. }
  469. return $SqlName;
  470. }
  471. // 内容管理缓存标识统计返回
  472. private function ContentManageCache($post = [], $attr = [], $opt = 'add')
  473. {
  474. // 只显示允许发布文档的模型,且是开启状态
  475. $channelIds = Db::name('channeltype')->where('status', 0)->whereOr('id', 'IN', [6,8])->column('id');
  476. $citysiteNew = '';
  477. $ContentManage = [];
  478. $ContentManageStr = '|archives|!=' . implode(',', $channelIds) . '|';
  479. foreach ($post as $key => $value) {
  480. if ('add' == $opt) {
  481. array_push($ContentManage, $ContentManageStr);
  482. if (in_array($key, $attr) && !empty($value) && 1 == $value) array_push($ContentManage, $ContentManageStr.$key.'|');
  483. }
  484. if ('del' == $opt) {
  485. array_push($ContentManage, $ContentManageStr);
  486. foreach ($value as $kkk => $vvv) {
  487. if (in_array($kkk, $attr) && !empty($vvv) && 1 == $vvv) array_push($ContentManage, $ContentManageStr.$kkk.'|');
  488. }
  489. }
  490. // 城市分站处理
  491. if (in_array($key, ['province_id', 'city_id', 'area_id'])) {
  492. if (!empty($value)) {
  493. $citysiteNew .= !empty($citysiteNew) ? '_' . $value : $value;
  494. array_push($ContentManage, $ContentManageStr . 'citysite_' . $citysiteNew . '|');
  495. }
  496. }
  497. }
  498. return $ContentManage;
  499. }
  500. // 添加或更新sql缓存表中记录的文档最大ID值
  501. public function InsertSqlCacheTable($Insert = false)
  502. {
  503. $ArchivesMaxID = Db::name('archives')->max('aid');
  504. $SqlQuery = Db::name('archives')->fetchSql()->max('aid');
  505. $SqlCacheTable = [
  506. 'sql_name' => 'ArchivesMaxID',
  507. 'sql_result' => $ArchivesMaxID,
  508. 'sql_md5' => md5($SqlQuery),
  509. 'sql_query' => $SqlQuery,
  510. 'add_time' => getTime(),
  511. 'update_time' => getTime(),
  512. ];
  513. if (!empty($Insert)) {
  514. Db::name('sql_cache_table')->insertGetId($SqlCacheTable);
  515. } else {
  516. unset($SqlCacheTable['add_time']);
  517. Db::name('sql_cache_table')->where('sql_name', 'ArchivesMaxID')->update($SqlCacheTable);
  518. }
  519. }
  520. // 减少指定缓存标识的缓存结果数据
  521. private function CutsDownSqlCacheTable($SqlName)
  522. {
  523. $UpdateData = [];
  524. if (!empty($SqlName)) {
  525. // 去除重复数据 再 重排键序 并查询mysql缓存表对应数据
  526. $ArrayUnique = array_merge(array_unique($SqlName));
  527. $Cache = Db::name('sql_cache_table')->field('cache_id, sql_name')->where('sql_name', 'IN', $ArrayUnique)->select();
  528. // 获取 重复数据条数
  529. $SqlName = array_count_values($SqlName);
  530. foreach ($Cache as $key => $value) {
  531. // 更新数据
  532. $Data = [
  533. 'cache_id' => $value['cache_id'],
  534. 'sql_result' => Db::raw('sql_result-'.($SqlName[$value['sql_name']])),
  535. 'update_time' => getTime()
  536. ];
  537. array_push($UpdateData, $Data);
  538. }
  539. }
  540. // 执行更新
  541. if (!empty($UpdateData)) $this->saveAll($UpdateData);
  542. }
  543. // 删除指定缓存标识(首页内容统计、栏目管理文档统计数据、指定模型搜索统计)
  544. private function DeleteSqlCacheTable($table = null)
  545. {
  546. $SqlName = [
  547. '|model|all|count|',
  548. '|arctype|all|count|',
  549. ];
  550. if (!empty($table) && 'archives' == $table) {
  551. $SqlName = [
  552. '|model|all|count|',
  553. '|arctype|all|count|',
  554. '|article|keywords|',
  555. '|product|keywords|',
  556. '|images|keywords|',
  557. '|download|keywords|',
  558. '|media|keywords|',
  559. '|special|keywords|',
  560. '|custom|keywords|'
  561. ];
  562. } else if (!empty($table) && 'archives' != $table) {
  563. $SqlName = [
  564. '|model|all|count|',
  565. '|arctype|all|count|',
  566. '|' . $table . '|keywords|'
  567. ];
  568. }
  569. Db::name('sql_cache_table')->where('sql_name', 'IN', $SqlName)->delete();
  570. }
  571. }