Без опису
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224
  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\model;
  14. use think\Db;
  15. use think\Model;
  16. /**
  17. * 文档主表
  18. */
  19. class Archives extends Model
  20. {
  21. //初始化
  22. protected function initialize()
  23. {
  24. // 需要调用`Model`的`initialize`方法
  25. parent::initialize();
  26. }
  27. /**
  28. * 统计每个栏目文档数
  29. * @param int $aid 产品id
  30. */
  31. public function afterSave($aid, $post)
  32. {
  33. if (isset($post['aid']) && intval($post['aid']) > 0) {
  34. $opt = 'edit';
  35. Db::name('article_content')->where('aid', $aid)->update($post);
  36. } else {
  37. $opt = 'add';
  38. $post['aid'] = $aid;
  39. Db::name('article_content')->insert($post);
  40. }
  41. // --处理TAG标签
  42. model('Taglist')->savetags($aid, $post['typeid'], $post['tags'],$post['arcrank']);
  43. }
  44. /**
  45. * 获取单条记录
  46. * @author wengxianhu by 2017-7-26
  47. */
  48. public function getInfo($aid, $field = '', $isshowbody = true)
  49. {
  50. $result = array();
  51. $field = !empty($field) ? $field : 'a.*';
  52. $result = Db::name('archives')->field($field)
  53. ->alias('a')
  54. ->find($aid);
  55. if ($isshowbody) {
  56. $tableName = Db::name('channeltype')->where('id','eq',$result['channel'])->getField('table');
  57. $addonFieldExt = Db::name($tableName.'_content')->where('aid',$aid)->find();
  58. if (!empty($addonFieldExt)) {
  59. $result = array_merge($addonFieldExt, $result);
  60. }
  61. }
  62. // 文章TAG标签
  63. if (!empty($result)) {
  64. $typeid = isset($result['typeid']) ? $result['typeid'] : 0;
  65. $tags = model('Taglist')->getListByAid($aid, $typeid);
  66. $result['tags'] = $tags['tag_arr'];
  67. $result['tag_id'] = $tags['tid_arr'];
  68. }
  69. return $result;
  70. }
  71. /**
  72. * 伪删除栏目下所有文档
  73. */
  74. public function pseudo_del($typeidArr)
  75. {
  76. // 伪删除文档
  77. Db::name('archives')->where([
  78. 'typeid' => ['IN', $typeidArr],
  79. 'is_del' => 0,
  80. ])
  81. ->update([
  82. 'is_del' => 1,
  83. 'del_method' => 2,
  84. 'update_time' => getTime(),
  85. ]);
  86. return true;
  87. }
  88. /**
  89. * 删除栏目下所有文档
  90. */
  91. public function del($typeidArr)
  92. {
  93. /*获取栏目下所有文档,并取得每个模型下含有的文档ID集合*/
  94. $channelAidList = array(); // 模型下的文档ID列表
  95. $arcrow =Db::name('archives')->where(array('typeid'=>array('IN', $typeidArr)))
  96. ->order('channel asc')
  97. ->select();
  98. foreach ($arcrow as $key => $val) {
  99. if (!isset($channelAidList[$val['channel']])) {
  100. $channelAidList[$val['channel']] = array();
  101. }
  102. array_push($channelAidList[$val['channel']], $val['aid']);
  103. }
  104. /*--end*/
  105. /*在相关模型下删除文档残余的关联记录*/
  106. $sta =Db::name('archives')->where(array('typeid'=>array('IN', $typeidArr)))->delete(); // 删除文档
  107. if ($sta) {
  108. foreach ($channelAidList as $key => $val) {
  109. $aidArr = $val;
  110. /*删除其余相关联的表记录*/
  111. switch ($key) {
  112. case '1': // 文章模型
  113. model('Article')->afterDel($aidArr);
  114. break;
  115. case '2': // 产品模型
  116. model('Product')->afterDel($aidArr);
  117. Db::name('product_attribute')->where(array('typeid'=>array('IN', $typeidArr)))->delete();
  118. break;
  119. case '3': // 图集模型
  120. model('Images')->afterDel($aidArr);
  121. break;
  122. case '4': // 下载模型
  123. model('Download')->afterDel($aidArr);
  124. break;
  125. case '6': // 单页模型
  126. model('Single')->afterDel($typeidArr);
  127. break;
  128. default:
  129. # code...
  130. break;
  131. }
  132. /*--end*/
  133. }
  134. }
  135. /*--end*/
  136. /*删除留言模型下的关联内容*/
  137. $guestbookList =Db::name('guestbook')->where(array('typeid'=>array('IN', $typeidArr)))->select();
  138. if (!empty($guestbookList)) {
  139. $aidArr = get_arr_column($guestbookList, 'aid');
  140. $typeidArr = get_arr_column($guestbookList, 'typeid');
  141. if ($aidArr && $typeidArr) {
  142. $sta =Db::name('guestbook')->where(array('typeid'=>array('IN', $typeidArr)))->delete();
  143. if ($sta) {
  144. Db::name('guestbook_attribute')->where(array('typeid'=>array('IN', $typeidArr)))->delete();
  145. model('Guestbook')->afterDel($aidArr);
  146. }
  147. }
  148. }
  149. /*--end*/
  150. return true;
  151. }
  152. /**
  153. * 获取单条记录
  154. * @author 陈风任 by 2020-06-08
  155. */
  156. public function UnifiedGetInfo($aid, $field = '', $isshowbody = true)
  157. {
  158. $result = array();
  159. $field = !empty($field) ? $field : '*';
  160. $result = Db::name('archives')->field($field)
  161. ->where([
  162. 'aid' => $aid,
  163. 'lang' => get_admin_lang(),
  164. ])
  165. ->find();
  166. if ($isshowbody) {
  167. $tableName = Db::name('channeltype')->where('id','eq',$result['channel'])->getField('table');
  168. $result['addonFieldExt'] = Db::name($tableName.'_content')->where('aid',$aid)->find();
  169. }
  170. // 产品TAG标签
  171. if (!empty($result)) {
  172. $typeid = isset($result['typeid']) ? $result['typeid'] : 0;
  173. $tags = model('Taglist')->getListByAid($aid, $typeid);
  174. $result['tags'] = $tags;
  175. }
  176. return $result;
  177. }
  178. //自动远程图片本地化/自动清除非本站链接 type = 'type' 是栏目 ,否则是内容
  179. public function editor_auto_210607(&$post = [])
  180. {
  181. if (!empty($post['editor_addonFieldExt'])) {
  182. if (!empty($post['editor_remote_img_local']) || !empty($post['editor_img_clear_link'])) {
  183. $editor_addonFieldExt_arr = explode(',', $post['editor_addonFieldExt']);
  184. foreach ($editor_addonFieldExt_arr as $key => $val) {
  185. $html = htmlspecialchars_decode($post['addonFieldExt'][$val]);
  186. if (!empty($post['editor_remote_img_local'])) {
  187. $html = preg_replace('/(\s+)src=("|\')\/\//i', '${1}src=${2}http://', $html);
  188. $html = remote_to_local($html);
  189. }
  190. if (!empty($post['editor_img_clear_link'])) {
  191. $html = replace_links($html);
  192. }
  193. $post['addonFieldExt'][$val] = htmlspecialchars($html);
  194. }
  195. // unset($post['editor_remote_img_local']);
  196. // unset($post['editor_img_clear_link']);
  197. unset($post['editor_addonFieldExt']);
  198. }
  199. }
  200. }
  201. }