123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346 |
- <?php
- /**
- * @copyright (C)2016-2099 Hnaoyun Inc.
- * @author XingMeng
- * @email hnxsh@foxmail.com
- * @date 2017年12月15日
- * 列表文章模型类
- */
- namespace app\admin\model\content;
-
- use core\basic\Db;
- use core\basic\Model;
-
- class ContentModel extends Model
- {
-
- protected $scodes = array();
-
- // 获取文章列表
- public function getList($mcode, $where = array())
- {
- $field = array(
- 'a.id',
- 'b.name as sortname',
- 'a.scode',
- 'c.name as subsortname',
- 'a.subscode',
- 'a.title',
- 'a.subtitle',
- 'a.date',
- 'a.sorting',
- 'a.status',
- 'a.istop',
- 'a.isrecommend',
- 'a.isheadline',
- 'a.visits',
- 'a.ico',
- 'a.pics',
- 'a.filename',
- 'a.outlink',
- 'd.urlname',
- 'b.filename as sortfilename'
- );
- $join = array(
- array(
- 'ay_content_sort b',
- 'a.scode=b.scode',
- 'LEFT'
- ),
- array(
- 'ay_content_sort c',
- 'a.subscode=c.scode',
- 'LEFT'
- ),
- array(
- 'ay_model d',
- 'b.mcode=d.mcode',
- 'LEFT'
- )
- );
- return parent::table('ay_content a')->field($field)
- ->where("b.mcode='$mcode'")
- ->where('d.type=2 OR d.type is null ')
- ->where("a.acode='" . session('acode') . "'")
- ->where($where)
- ->join($join)
- ->order('a.sorting ASC,a.id DESC')
- ->page()
- ->select();
- }
-
- // 查找指定分类及子类文章
- public function findContent($mcode, $scode, $keyword)
- {
- $fields = array(
- 'a.id',
- 'b.name as sortname',
- 'a.scode',
- 'c.name as subsortname',
- 'a.subscode',
- 'a.title',
- 'a.subtitle',
- 'a.date',
- 'a.sorting',
- 'a.status',
- 'a.istop',
- 'a.isrecommend',
- 'a.isheadline',
- 'a.visits',
- 'a.ico',
- 'a.pics',
- 'a.filename',
- 'a.outlink',
- 'd.urlname',
- 'b.filename as sortfilename'
- );
- $join = array(
- array(
- 'ay_content_sort b',
- 'a.scode=b.scode',
- 'LEFT'
- ),
- array(
- 'ay_content_sort c',
- 'a.subscode=c.scode',
- 'LEFT'
- ),
- array(
- 'ay_model d',
- 'b.mcode=d.mcode',
- 'LEFT'
- )
- );
- $this->scodes = array(); // 先清空
- $scodes = $this->getSubScodes($scode);
- return parent::table('ay_content a')->field($fields)
- ->where("b.mcode='$mcode'")
- ->where('d.type=2 OR d.type is null ')
- ->where("a.acode='" . session('acode') . "'")
- ->in('a.scode', $scodes)
- ->like('a.title', $keyword)
- ->join($join)
- ->order('a.sorting ASC,a.id DESC')
- ->page()
- ->select();
- }
-
- // 在全部栏目查找文章
- public function findContentAll($mcode, $keyword)
- {
- $fields = array(
- 'a.id',
- 'b.name as sortname',
- 'a.scode',
- 'c.name as subsortname',
- 'a.subscode',
- 'a.title',
- 'a.subtitle',
- 'a.date',
- 'a.sorting',
- 'a.status',
- 'a.istop',
- 'a.isrecommend',
- 'a.isheadline',
- 'a.visits',
- 'a.ico',
- 'a.pics',
- 'a.filename',
- 'a.outlink',
- 'd.urlname',
- 'b.filename as sortfilename'
- );
- $join = array(
- array(
- 'ay_content_sort b',
- 'a.scode=b.scode',
- 'LEFT'
- ),
- array(
- 'ay_content_sort c',
- 'a.subscode=c.scode',
- 'LEFT'
- ),
- array(
- 'ay_model d',
- 'b.mcode=d.mcode',
- 'LEFT'
- )
- );
- return parent::table('ay_content a')->field($fields)
- ->where("b.mcode='$mcode'")
- ->where('d.type=2 OR d.type is null ')
- ->where("a.acode='" . session('acode') . "'")
- ->like('a.title', $keyword)
- ->join($join)
- ->order('a.sorting ASC,a.id DESC')
- ->page()
- ->select();
- }
-
- // 获取子栏目
- public function getSubScodes($scode)
- {
- if (! $scode) {
- return;
- }
- $this->scodes[] = $scode;
- $subs = parent::table('ay_content_sort')->where("pcode='$scode'")->column('scode');
- if ($subs) {
- foreach ($subs as $value) {
- $this->getSubScodes($value);
- }
- }
- return $this->scodes;
- }
-
- // 检查文章
- public function checkContent($where)
- {
- return parent::table('ay_content')->field('id')
- ->where($where)
- ->find();
- }
-
- // 获取文章详情
- public function getContent($id)
- {
- $field = array(
- 'a.*',
- 'b.name as sortname',
- 'c.name as subsortname',
- 'd.*'
- );
- $join = array(
- array(
- 'ay_content_sort b',
- 'a.scode=b.scode',
- 'LEFT'
- ),
- array(
- 'ay_content_sort c',
- 'a.subscode=c.scode',
- 'LEFT'
- ),
- array(
- 'ay_content_ext d',
- 'a.id=d.contentid',
- 'LEFT'
- )
- );
- return parent::table('ay_content a')->field($field)
- ->where("a.id=$id")
- ->where("a.acode='" . session('acode') . "'")
- ->join($join)
- ->find();
- }
-
- // 添加文章
- public function addContent(array $data)
- {
- return parent::table('ay_content')->autoTime()->insertGetId($data);
- }
-
- // 删除文章
- public function delContent($id)
- {
- return parent::table('ay_content')->where("id=$id")
- ->where("acode='" . session('acode') . "'")
- ->delete();
- }
-
- // 删除文章
- public function delContentList($ids)
- {
- return parent::table('ay_content')->where("acode='" . session('acode') . "'")->delete($ids);
- }
-
- // 修改文章
- public function modContent($id, $data)
- {
- return parent::table('ay_content')->autoTime()
- ->in('id', $id)
- ->where("acode='" . session('acode') . "'")
- ->update($data);
- }
-
- // 复制内容到指定栏目
- public function copyContent($ids, $scode)
- {
- // 查找出要复制的主内容
- $data = parent::table('ay_content')->in('id', $ids)->select(1);
-
- foreach ($data as $key => $value) {
- // 查找扩展内容
- $extdata = parent::table('ay_content_ext')->where('contentid=' . $value['id'])->find(1);
-
- // 去除主键并修改栏目
- unset($value['id']);
- $value['scode'] = $scode;
-
- // 插入主内容
- $id = parent::table('ay_content')->insertGetId($value);
-
- // 插入扩展内容
- if ($id && $extdata) {
- unset($extdata['extid']);
- $extdata['contentid'] = $id;
- $result = parent::table('ay_content_ext')->insert($extdata);
- } else {
- $result = $id;
- }
- }
- return $result;
- }
-
- // 查找文章扩展内容
- public function findContentExt($id)
- {
- return parent::table('ay_content_ext')->where("contentid=$id")->find();
- }
-
- // 添加文章扩展内容
- public function addContentExt(array $data)
- {
- return parent::table('ay_content_ext')->insert($data);
- }
-
- // 修改文章扩展内容
- public function modContentExt($id, $data)
- {
- return parent::table('ay_content_ext')->where("contentid=$id")->update($data);
- }
-
- // 删除文章扩展内容
- public function delContentExt($id)
- {
- return parent::table('ay_content_ext')->where("contentid=$id")->delete();
- }
-
- // 删除文章扩展内容
- public function delContentExtList($ids)
- {
- return parent::table('ay_content_ext')->delete($ids, 'contentid');
- }
-
- // 检查自定义URL名称
- public function checkFilename($filename, $where = array())
- {
- return parent::table('ay_content')->field('id')
- ->where("filename='$filename'")
- ->where($where)
- ->find();
- }
-
- public function getImage()
- {
- $list = parent::table('ay_content')->limit(2000)->column('ico,pics,content');
- foreach ($list as &$value){
- preg_match_all('/<img\s+.*?src=\s?[\'|\"](.*?(\.gif|\.jpg|\.png|\.jpeg))[\'|\"].*?[\/]?>/i', decode_string($value['content']), $match);
- $value['content_img'] = $match[1];
- $value['pics'] = explode(',',$value['pics']);
- unset($value['content']);
- }
- return $list;
- }
- }
|