心理咨询网
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.

ContentModel.php 9.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346
  1. <?php
  2. /**
  3. * @copyright (C)2016-2099 Hnaoyun Inc.
  4. * @author XingMeng
  5. * @email hnxsh@foxmail.com
  6. * @date 2017年12月15日
  7. * 列表文章模型类
  8. */
  9. namespace app\admin\model\content;
  10. use core\basic\Db;
  11. use core\basic\Model;
  12. class ContentModel extends Model
  13. {
  14. protected $scodes = array();
  15. // 获取文章列表
  16. public function getList($mcode, $where = array())
  17. {
  18. $field = array(
  19. 'a.id',
  20. 'b.name as sortname',
  21. 'a.scode',
  22. 'c.name as subsortname',
  23. 'a.subscode',
  24. 'a.title',
  25. 'a.subtitle',
  26. 'a.date',
  27. 'a.sorting',
  28. 'a.status',
  29. 'a.istop',
  30. 'a.isrecommend',
  31. 'a.isheadline',
  32. 'a.visits',
  33. 'a.ico',
  34. 'a.pics',
  35. 'a.filename',
  36. 'a.outlink',
  37. 'd.urlname',
  38. 'b.filename as sortfilename'
  39. );
  40. $join = array(
  41. array(
  42. 'ay_content_sort b',
  43. 'a.scode=b.scode',
  44. 'LEFT'
  45. ),
  46. array(
  47. 'ay_content_sort c',
  48. 'a.subscode=c.scode',
  49. 'LEFT'
  50. ),
  51. array(
  52. 'ay_model d',
  53. 'b.mcode=d.mcode',
  54. 'LEFT'
  55. )
  56. );
  57. return parent::table('ay_content a')->field($field)
  58. ->where("b.mcode='$mcode'")
  59. ->where('d.type=2 OR d.type is null ')
  60. ->where("a.acode='" . session('acode') . "'")
  61. ->where($where)
  62. ->join($join)
  63. ->order('a.sorting ASC,a.id DESC')
  64. ->page()
  65. ->select();
  66. }
  67. // 查找指定分类及子类文章
  68. public function findContent($mcode, $scode, $keyword)
  69. {
  70. $fields = array(
  71. 'a.id',
  72. 'b.name as sortname',
  73. 'a.scode',
  74. 'c.name as subsortname',
  75. 'a.subscode',
  76. 'a.title',
  77. 'a.subtitle',
  78. 'a.date',
  79. 'a.sorting',
  80. 'a.status',
  81. 'a.istop',
  82. 'a.isrecommend',
  83. 'a.isheadline',
  84. 'a.visits',
  85. 'a.ico',
  86. 'a.pics',
  87. 'a.filename',
  88. 'a.outlink',
  89. 'd.urlname',
  90. 'b.filename as sortfilename'
  91. );
  92. $join = array(
  93. array(
  94. 'ay_content_sort b',
  95. 'a.scode=b.scode',
  96. 'LEFT'
  97. ),
  98. array(
  99. 'ay_content_sort c',
  100. 'a.subscode=c.scode',
  101. 'LEFT'
  102. ),
  103. array(
  104. 'ay_model d',
  105. 'b.mcode=d.mcode',
  106. 'LEFT'
  107. )
  108. );
  109. $this->scodes = array(); // 先清空
  110. $scodes = $this->getSubScodes($scode);
  111. return parent::table('ay_content a')->field($fields)
  112. ->where("b.mcode='$mcode'")
  113. ->where('d.type=2 OR d.type is null ')
  114. ->where("a.acode='" . session('acode') . "'")
  115. ->in('a.scode', $scodes)
  116. ->like('a.title', $keyword)
  117. ->join($join)
  118. ->order('a.sorting ASC,a.id DESC')
  119. ->page()
  120. ->select();
  121. }
  122. // 在全部栏目查找文章
  123. public function findContentAll($mcode, $keyword)
  124. {
  125. $fields = array(
  126. 'a.id',
  127. 'b.name as sortname',
  128. 'a.scode',
  129. 'c.name as subsortname',
  130. 'a.subscode',
  131. 'a.title',
  132. 'a.subtitle',
  133. 'a.date',
  134. 'a.sorting',
  135. 'a.status',
  136. 'a.istop',
  137. 'a.isrecommend',
  138. 'a.isheadline',
  139. 'a.visits',
  140. 'a.ico',
  141. 'a.pics',
  142. 'a.filename',
  143. 'a.outlink',
  144. 'd.urlname',
  145. 'b.filename as sortfilename'
  146. );
  147. $join = array(
  148. array(
  149. 'ay_content_sort b',
  150. 'a.scode=b.scode',
  151. 'LEFT'
  152. ),
  153. array(
  154. 'ay_content_sort c',
  155. 'a.subscode=c.scode',
  156. 'LEFT'
  157. ),
  158. array(
  159. 'ay_model d',
  160. 'b.mcode=d.mcode',
  161. 'LEFT'
  162. )
  163. );
  164. return parent::table('ay_content a')->field($fields)
  165. ->where("b.mcode='$mcode'")
  166. ->where('d.type=2 OR d.type is null ')
  167. ->where("a.acode='" . session('acode') . "'")
  168. ->like('a.title', $keyword)
  169. ->join($join)
  170. ->order('a.sorting ASC,a.id DESC')
  171. ->page()
  172. ->select();
  173. }
  174. // 获取子栏目
  175. public function getSubScodes($scode)
  176. {
  177. if (! $scode) {
  178. return;
  179. }
  180. $this->scodes[] = $scode;
  181. $subs = parent::table('ay_content_sort')->where("pcode='$scode'")->column('scode');
  182. if ($subs) {
  183. foreach ($subs as $value) {
  184. $this->getSubScodes($value);
  185. }
  186. }
  187. return $this->scodes;
  188. }
  189. // 检查文章
  190. public function checkContent($where)
  191. {
  192. return parent::table('ay_content')->field('id')
  193. ->where($where)
  194. ->find();
  195. }
  196. // 获取文章详情
  197. public function getContent($id)
  198. {
  199. $field = array(
  200. 'a.*',
  201. 'b.name as sortname',
  202. 'c.name as subsortname',
  203. 'd.*'
  204. );
  205. $join = array(
  206. array(
  207. 'ay_content_sort b',
  208. 'a.scode=b.scode',
  209. 'LEFT'
  210. ),
  211. array(
  212. 'ay_content_sort c',
  213. 'a.subscode=c.scode',
  214. 'LEFT'
  215. ),
  216. array(
  217. 'ay_content_ext d',
  218. 'a.id=d.contentid',
  219. 'LEFT'
  220. )
  221. );
  222. return parent::table('ay_content a')->field($field)
  223. ->where("a.id=$id")
  224. ->where("a.acode='" . session('acode') . "'")
  225. ->join($join)
  226. ->find();
  227. }
  228. // 添加文章
  229. public function addContent(array $data)
  230. {
  231. return parent::table('ay_content')->autoTime()->insertGetId($data);
  232. }
  233. // 删除文章
  234. public function delContent($id)
  235. {
  236. return parent::table('ay_content')->where("id=$id")
  237. ->where("acode='" . session('acode') . "'")
  238. ->delete();
  239. }
  240. // 删除文章
  241. public function delContentList($ids)
  242. {
  243. return parent::table('ay_content')->where("acode='" . session('acode') . "'")->delete($ids);
  244. }
  245. // 修改文章
  246. public function modContent($id, $data)
  247. {
  248. return parent::table('ay_content')->autoTime()
  249. ->in('id', $id)
  250. ->where("acode='" . session('acode') . "'")
  251. ->update($data);
  252. }
  253. // 复制内容到指定栏目
  254. public function copyContent($ids, $scode)
  255. {
  256. // 查找出要复制的主内容
  257. $data = parent::table('ay_content')->in('id', $ids)->select(1);
  258. foreach ($data as $key => $value) {
  259. // 查找扩展内容
  260. $extdata = parent::table('ay_content_ext')->where('contentid=' . $value['id'])->find(1);
  261. // 去除主键并修改栏目
  262. unset($value['id']);
  263. $value['scode'] = $scode;
  264. // 插入主内容
  265. $id = parent::table('ay_content')->insertGetId($value);
  266. // 插入扩展内容
  267. if ($id && $extdata) {
  268. unset($extdata['extid']);
  269. $extdata['contentid'] = $id;
  270. $result = parent::table('ay_content_ext')->insert($extdata);
  271. } else {
  272. $result = $id;
  273. }
  274. }
  275. return $result;
  276. }
  277. // 查找文章扩展内容
  278. public function findContentExt($id)
  279. {
  280. return parent::table('ay_content_ext')->where("contentid=$id")->find();
  281. }
  282. // 添加文章扩展内容
  283. public function addContentExt(array $data)
  284. {
  285. return parent::table('ay_content_ext')->insert($data);
  286. }
  287. // 修改文章扩展内容
  288. public function modContentExt($id, $data)
  289. {
  290. return parent::table('ay_content_ext')->where("contentid=$id")->update($data);
  291. }
  292. // 删除文章扩展内容
  293. public function delContentExt($id)
  294. {
  295. return parent::table('ay_content_ext')->where("contentid=$id")->delete();
  296. }
  297. // 删除文章扩展内容
  298. public function delContentExtList($ids)
  299. {
  300. return parent::table('ay_content_ext')->delete($ids, 'contentid');
  301. }
  302. // 检查自定义URL名称
  303. public function checkFilename($filename, $where = array())
  304. {
  305. return parent::table('ay_content')->field('id')
  306. ->where("filename='$filename'")
  307. ->where($where)
  308. ->find();
  309. }
  310. public function getImage()
  311. {
  312. $list = parent::table('ay_content')->limit(2000)->column('ico,pics,content');
  313. foreach ($list as &$value){
  314. preg_match_all('/<img\s+.*?src=\s?[\'|\"](.*?(\.gif|\.jpg|\.png|\.jpeg))[\'|\"].*?[\/]?>/i', decode_string($value['content']), $match);
  315. $value['content_img'] = $match[1];
  316. $value['pics'] = explode(',',$value['pics']);
  317. unset($value['content']);
  318. }
  319. return $list;
  320. }
  321. }