123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107 |
- <?php
- /**
- * @copyright (C)2016-2099 Hnaoyun Inc.
- * @author XingMeng
- * @email hnxsh@foxmail.com
- * @date 2018年2月14日
- * 标签解析引擎模型
- */
- namespace app\home\model;
-
- use core\basic\Db;
- use core\basic\Model;
-
- class ParserModel extends Model
- {
-
- // 存储分类及子编码
- protected $scodes = array();
-
- // 存储分类查询数据
- protected $sorts;
-
- // 存储栏目位置
- protected $position = array();
-
- // 上一篇
- protected $pre;
-
- // 下一篇
- protected $next;
-
- // 获取模型数据
- public function checkModelUrlname($urlname)
- {
- if ($urlname == 'list' || $urlname == 'about') {
- return true;
- }
- return parent::table('ay_model')->where("urlname='$urlname'")->find();
- }
-
- // 站点配置信息
- public function getSite()
- {
- return parent::table('ay_site')->where("acode='" . get_lg() . "'")->find();
- }
-
- // 公司信息
- public function getCompany()
- {
- return parent::table('ay_company')->where("acode='" . get_lg() . "'")->find();
- }
-
- // 自定义标签,不区分语言,兼容跨语言
- public function getLabel()
- {
- return parent::table('ay_label')->decode()->column('value,type', 'name');
- }
-
- // 单个分类信息,不区分语言,兼容跨语言
- public function getSort($scode)
- {
- $scode = escape_string($scode);
- $field = array(
- 'a.*',
- 'c.name AS parentname',
- 'b.type',
- 'b.urlname',
- 'd.gcode'
- );
- $join = array(
- array(
- 'ay_model b',
- 'a.mcode=b.mcode',
- 'LEFT'
- ),
- array(
- 'ay_content_sort c',
- 'a.pcode=c.scode',
- 'LEFT'
- ),
- array(
- 'ay_member_group d',
- 'a.gid=d.id',
- 'LEFT'
- )
- );
- return parent::table('ay_content_sort a')->field($field)
- ->where("a.scode='$scode' OR a.filename='$scode'")
- ->join($join)
- ->find();
- }
-
- // 多个分类信息,不区分语言,兼容跨语言
- public function getMultSort($scodes)
- {
- $field = array(
- 'a.*',
- 'c.name AS parentname',
- 'b.type',
- 'b.urlname'
- );
- $join = array(
- array(
- 'ay_model b',
- 'a.mcode=b.mcode',
- 'LEFT'
- ),
- array(
- 'ay_content_sort c',
- 'a.pcode=c.scode',
- 'LEFT'
- )
- );
- return parent::table('ay_content_sort a')->field($field)
- ->in('a.scode', $scodes)
- ->join($join)
- ->order('a.sorting,a.id')
- ->select();
- }
-
- // 指定分类数量
- public function getSortRows($scode)
- {
- $this->scodes = array(); // 先清空
-
- // 获取多分类子类
- $arr = explode(',', $scode);
- foreach ($arr as $value) {
- $scodes = $this->getSubScodes(trim($value));
- }
-
- // 拼接条件
- $where1 = array(
- "scode in (" . implode_quot(',', $scodes) . ")",
- "subscode='$scode'"
- );
- $where2 = array(
- "acode='" . get_lg() . "'",
- 'status=1',
- "date<'" . date('Y-m-d H:i:s') . "'"
- );
-
- $result = parent::table('ay_content')->where($where1, 'OR')
- ->where($where2)
- ->column('id');
- return count($result);
- }
-
- // 分类栏目列表关系树
- public function getSortsTree()
- {
- $fields = array(
- 'a.*',
- 'b.type',
- 'b.urlname'
- );
- $join = array(
- 'ay_model b',
- 'a.mcode=b.mcode',
- 'LEFT'
- );
- $result = parent::table('ay_content_sort a')->where("a.acode='" . get_lg() . "'")
- ->where('a.status=1')
- ->join($join)
- ->order('a.pcode,a.sorting,a.id')
- ->column($fields, 'scode');
-
- foreach ($result as $key => $value) {
- if ($value['pcode']) {
- $result[$value['pcode']]['son'][] = $value; // 记录到关系树
- } else {
- $data['top'][] = $value; // 记录顶级菜单
- }
- }
- $data['tree'] = $result;
- return $data;
- }
-
- // 获取分类名称
- public function getSortName($scode)
- {
- $result = $this->getSortList();
- return $result[$scode]['name'];
- }
-
- // 分类顶级编码
- public function getSortTopScode($scode)
- {
- $result = $this->getSortList();
- return $this->getTopParent($scode, $result);
- }
-
- // 获取位置
- public function getPosition($scode)
- {
- $result = $this->getSortList();
- $this->position = array(); // 重置
- $this->getTopParent($scode, $result);
- return array_reverse($this->position);
- }
-
- // 分类顶级编码
- private function getTopParent($scode, $sorts)
- {
- if (! $scode || ! $sorts) {
- return;
- }
- $this->position[] = $sorts[$scode];
- if ($sorts[$scode]['pcode']) {
- return $this->getTopParent($sorts[$scode]['pcode'], $sorts);
- } else {
- return $sorts[$scode]['scode'];
- }
- }
-
- // 分类子类集
- public function getSubScodes($scode)
- {
- if (! $scode) {
- return;
- }
- $this->scodes[] = $scode;
- $subs = parent::table('ay_content_sort')->where("pcode='$scode'")
- ->where("outlink=''")
- ->column('scode');
- if ($subs) {
- foreach ($subs as $value) {
- $this->getSubScodes($value);
- }
- }
- return $this->scodes;
- }
- // 清除静态缓存时,获取全部栏目编码
- public function getScodes($type)
- {
- $join = array(
- 'ay_model b',
- 'a.mcode=b.mcode',
- 'LEFT'
- );
- // 不包括外链
- return parent::table('ay_content_sort a')->join($join)
- ->in('b.type', $type)
- ->where("outlink=''")
- ->column('scode');
- }
- // 生成静态时,获取栏目全部内容ID
- public function getContentIds($scodes, $where = array())
- {
- return parent::table('ay_content')->in('scode', $scodes)
- ->where("outlink=''")
- ->where($where)
- ->column('id');
- }
-
- // 获取栏目清单
- private function getSortList()
- {
- if (! isset($this->sorts)) {
- $fields = array(
- 'a.id',
- 'a.pcode',
- 'a.scode',
- 'a.name',
- 'a.filename',
- 'a.outlink',
- 'b.type',
- 'b.urlname'
- );
- $join = array(
- 'ay_model b',
- 'a.mcode=b.mcode',
- 'LEFT'
- );
- $this->sorts = parent::table('ay_content_sort a')->where("a.acode='" . get_lg() . "'")
- ->join($join)
- ->column($fields, 'scode');
- }
- return $this->sorts;
- }
-
- // 获取筛选字段数据
- public function getSelect($field)
- {
- return parent::table('ay_extfield')->where("name='$field'")->value('value');
- }
-
- // 列表内容,带分页,不区分语言,兼容跨语言
- public function getLists($scode, $num, $order, $filter = array(), $tags = array(), $select = array(), $fuzzy = true, $start = 1, $lfield = null, $lg = null)
- {
- $scode = escape_string($scode);
- // $ext_table = false;
- if ($lfield) {
- $lfield .= ',id,outlink,type,scode,sortfilename,filename,urlname'; // 附加必须字段
- $fields = explode(',', $lfield);
- $fields = array_unique($fields); // 去重
- foreach ($fields as $key => $value) {
- // if (strpos($value, 'ext_') === 0) {
- // $ext_table = true;
- // $fields[$key] = 'e.' . $value;
- // } else
- if ($value == 'sortname') {
- $fields[$key] = 'b.name as sortname';
- } elseif ($value == 'sortfilename') {
- $fields[$key] = 'b.filename as sortfilename';
- } elseif ($value == 'subsortname') {
- $fields[$key] = 'c.name as subsortname';
- } elseif ($value == 'subfilename') {
- $fields[$key] = 'c.filename as subfilename';
- } elseif ($value == 'type' || $value == 'urlname') {
- $fields[$key] = 'd.' . $value;
- } elseif ($value == 'modelname') {
- $fields[$key] = 'd.name as modelname';
- } else {
- $fields[$key] = 'a.' . $value;
- }
- }
- } else {
- // $ext_table = true;
- $fields = array(
- 'a.*',
- 'b.name as sortname',
- 'b.filename as sortfilename',
- 'c.name as subsortname',
- 'c.filename as subfilename',
- 'd.type',
- 'd.name as modelname',
- 'd.urlname',
- // 'e.*',
- 'f.gcode'
- );
- }
- $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'
- ),
- array(
- 'ay_member_group f',
- 'a.gid=f.id',
- 'LEFT'
- )
- );
-
- // 加载扩展字段表
- // $join1 = [];
- // if ($ext_table) {
- // $join1 = array(
- // 'ay_content_ext e',
- // 'a.id=e.contentid',
- // 'LEFT'
- // );
- // }
-
- $scode_arr = array();
- if ($scode) {
- // 获取所有子类分类编码
- $this->scodes = array(); // 先清空
- $arr = explode(',', $scode); // 传递有多个分类时进行遍历
- foreach ($arr as $value) {
- $scodes = $this->getSubScodes(trim($value));
- }
- // 拼接条件
- $scode_arr = array(
- "a.scode in (" . implode_quot(',', $scodes) . ")",
- "a.subscode='$scode'"
- );
- }
-
- $where = array(
- 'a.status=1',
- 'd.type=2',
- "a.date<'" . date('Y-m-d H:i:s') . "'"
- );
-
- if ($lg) {
- $where['a.acode'] = $lg;
- }
- // todo:V3.2.4注释掉该代码观察优化反馈
- // $indexSql = '';
- // //todo:V3.1.5判断mysql是否设置了索引
- // if (get_db_type() == 'mysql') {
- // $checkIndex = parent::table('ay_content')->checkIndexSql();
- // foreach ($checkIndex as $item){
- // if($item[2] == 'ay_content_unique'){
- // $indexSql = 'FORCE INDEX ( ay_content_unique )';
- // break;
- // }
- // }
- // }
- $extWhere = [];
- foreach ($select as $key1 => $value1){
- if(strpos($key1, 'ext_') === 0){
- $extWhere[$key1] = $value1;
- unset($select[$key1]);
- }
- }
- if($extWhere) {
- $extTable = Db::table('ay_content_ext')
- ->where($extWhere)
- ->showSql()
- ->select(false);
- $sql = Db::table("({$extTable}) e")
- ->where($scode_arr, 'OR')
- ->where($select, 'AND', 'AND', $fuzzy)
- ->where($filter, 'OR')
- ->where($tags, 'OR')
- ->join(array('ay_content a', 'a.id = e.contentid', 'LEFT'))
- ->order($order)
- ->page(1,$num,$start)
- ->showSql()
- ->select(false);
- } else {
- $sql = Db::table("ay_content a")
- ->where($scode_arr, 'OR')
- ->where($select, 'AND', 'AND', $fuzzy)
- ->where($filter, 'OR')
- ->where($tags, 'OR')
- ->order($order)
- ->page(1,$num,$start)
- ->showSql()
- ->select(false);
- }
-
- return parent::table("({$sql}) a")
- ->field($fields)
- ->where($where)
- ->join($join)
- ->decode()
- ->select();
- }
-
- // 列表内容,不带分页,不区分语言,兼容跨语言
- public function getList($scode, $num, $order, $filter = array(), $tags = array(), $select = array(), $fuzzy = true, $start = 1, $lfield = null, $lg = null)
- {
- $scode = escape_string($scode);
- // $ext_table = false;
- if ($lfield) {
- $lfield .= ',id,outlink,type,scode,sortfilename,filename,urlname'; // 附加必须字段
- $fields = explode(',', $lfield);
- $fields = array_unique($fields); // 去重
- foreach ($fields as $key => $value) {
- // if (strpos($value, 'ext_') === 0) {
- // $ext_table = true;
- // $fields[$key] = 'e.' . $value;
- // } else
- if ($value == 'sortname') {
- $fields[$key] = 'b.name as sortname';
- } elseif ($value == 'sortfilename') {
- $fields[$key] = 'b.filename as sortfilename';
- } elseif ($value == 'subsortname') {
- $fields[$key] = 'c.name as subsortname';
- } elseif ($value == 'subfilename') {
- $fields[$key] = 'c.filename as subfilename';
- } elseif ($value == 'type' || $value == 'urlname') {
- $fields[$key] = 'd.' . $value;
- } elseif ($value == 'modelname') {
- $fields[$key] = 'd.name as modelname';
- } else {
- $fields[$key] = 'a.' . $value;
- }
- }
- } else {
- // $ext_table = true;
- $fields = array(
- 'a.*',
- 'b.name as sortname',
- 'b.filename as sortfilename',
- 'c.name as subsortname',
- 'c.filename as subfilename',
- 'd.type',
- 'd.name as modelname',
- 'd.urlname',
- // 'e.*',
- 'f.gcode'
- );
- }
- $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'
- ),
- array(
- 'ay_member_group f',
- 'a.gid=f.id',
- 'LEFT'
- )
- );
-
- // 加载扩展字段表
- // if ($ext_table) {
- // $join[] = array(
- // 'ay_content_ext e',
- // 'a.id=e.contentid',
- // 'LEFT'
- // );
- // }
-
- $scode_arr = array();
- if ($scode) {
- // 获取所有子类分类编码
- $this->scodes = array(); // 先清空
- $arr = explode(',', $scode); // 传递有多个分类时进行遍历
- foreach ($arr as $value) {
- $scodes = $this->getSubScodes(trim($value));
- }
- // 拼接条件
- $scode_arr = array(
- "a.scode in (" . implode_quot(',', $scodes) . ")",
- "a.subscode='$scode'"
- );
- }
-
- $where = array(
- 'a.status=1',
- 'd.type=2',
- "a.date<'" . date('Y-m-d H:i:s') . "'"
- );
-
- if ($lg) {
- $where['a.acode'] = $lg;
- }
- // todo:V3.2.4注释掉该代码观察优化反馈
- // $indexSql = '';
- // todo:V3.1.5判断mysql是否设置了索引
- // if (get_db_type() == 'mysql') {
- // $checkIndex = parent::table('ay_content')->checkIndexSql();
- // foreach ($checkIndex as $item){
- // if($item[2] == 'ay_content_unique'){
- // $indexSql = 'FORCE INDEX ( ay_content_unique )';
- // break;
- // }
- // }
- // }
- $extWhere = [];
- foreach ($select as $key1 => $value1){
- if(strpos($key1, 'ext_') === 0){
- $extWhere[$key1] = $value1;
- unset($select[$key1]);
- }
- }
- if($extWhere) {
- $extTable = Db::table('ay_content_ext')
- ->where($extWhere)
- ->showSql()
- ->select(false);
- $sql = Db::table("({$extTable}) e")
- ->where($scode_arr, 'OR')
- ->where($select, 'AND', 'AND', $fuzzy)
- ->where($filter, 'OR')
- ->where($tags, 'OR')
- ->join(array('ay_content a', 'a.id = e.contentid', 'LEFT'))
- ->order($order)
- ->limit($start - 1, $num)
- ->showSql()
- ->select(false);
- } else {
- $sql = Db::table("ay_content a")
- ->where($scode_arr, 'OR')
- ->where($select, 'AND', 'AND', $fuzzy)
- ->where($filter, 'OR')
- ->where($tags, 'OR')
- ->order($order)
- ->limit($start - 1, $num)
- ->showSql()
- ->select(false);
- }
- return parent::table("({$sql}) a")
- ->field($fields)
- ->where($where)
- ->join($join)
- ->decode()
- ->select();
-
- }
-
- // 内容详情,不区分语言,兼容跨语言
- public function getContent($id)
- {
- $id = escape_string($id);
- $field = array(
- 'a.*',
- 'b.name as sortname',
- 'b.filename as sortfilename',
- 'b.outlink as sortoutlink',
- 'c.name as subsortname',
- 'c.filename as subfilename',
- 'd.type',
- 'd.name as modelname',
- 'd.urlname',
- 'e.*',
- 'f.gcode'
- );
- $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'
- ),
- array(
- 'ay_content_ext e',
- 'a.id=e.contentid',
- 'LEFT'
- ),
- array(
- 'ay_member_group f',
- 'a.gid=f.id',
- 'LEFT'
- )
- );
- $result = parent::table('ay_content a')->field($field)
- ->where("a.id='$id' OR a.filename='$id'")
- ->where('a.status=1')
- ->where("a.date<'" . date('Y-m-d H:i:s') . "'")
- ->join($join)
- ->decode()
- ->find();
- return $result;
- }
-
- // 单篇详情,不区分语言,兼容跨语言
- public function getAbout($scode)
- {
- $scode = escape_string($scode);
- $field = array(
- 'a.*',
- 'b.name as sortname',
- 'b.filename as sortfilename',
- 'c.name as subsortname',
- 'c.filename as subfilename',
- 'd.type',
- 'd.name as modelname',
- 'd.urlname',
- 'e.*',
- 'f.gcode'
- );
- $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'
- ),
- array(
- 'ay_content_ext e',
- 'a.id=e.contentid',
- 'LEFT'
- ),
- array(
- 'ay_member_group f',
- 'a.gid=f.id',
- 'LEFT'
- )
- );
- $result = parent::table('ay_content a')->field($field)
- ->where("a.scode='$scode' OR b.filename='$scode'")
- ->where('a.status=1')
- ->join($join)
- ->decode()
- ->order('id DESC')
- ->find();
- return $result;
- }
-
- // 指定内容多图
- public function getContentPics($id, $field)
- {
- $join = array(
- 'ay_content_ext b',
- 'a.id=b.contentid',
- 'LEFT'
- );
- $result = parent::table('ay_content a')->field($field . ',picstitle')
- ->join($join)
- ->where("a.id='$id'")
- ->where('a.status=1')
- ->where("a.date<'" . date('Y-m-d H:i:s') . "'")
- ->find();
- return $result;
- }
-
- // 指定内容多选调用
- public function getContentCheckbox($id, $field)
- {
- $result = parent::table('ay_content_ext')->where("contentid='$id'")->value($field);
- return $result;
- }
-
- // 指定内容标签调用
- public function getContentTags($id)
- {
- $result = parent::table('ay_content')->field('scode,tags')
- ->where("id='$id'")
- ->where('status=1')
- ->where("date<'" . date('Y-m-d H:i:s') . "'")
- ->find();
- return $result;
- }
-
- // 指定分类标签调用
- public function getSortTags($scode)
- {
- $join = array(
- array(
- 'ay_content_sort b',
- 'a.scode=b.scode',
- 'LEFT'
- ),
- array(
- 'ay_model c',
- 'b.mcode=c.mcode',
- 'LEFT'
- )
- );
-
- $scode_arr = array();
- if ($scode) {
- // 获取所有子类分类编码
- $this->scodes = array(); // 先清空
- $scodes = $this->getSubScodes(trim($scode)); // 获取子类
-
- // 拼接条件
- $scode_arr = array(
- "a.scode in (" . implode_quot(',', $scodes) . ")",
- "a.subscode='$scode'"
- );
- }
-
- $result = parent::table('ay_content a')->where("c.type=2 AND a.tags<>''")
- ->where($scode_arr, 'OR')
- ->join($join)
- ->where('a.status=1')
- ->order('a.visits DESC')
- ->column('a.tags');
- return $result;
- }
-
- // 上一篇内容
- public function getContentPre($scode, $id)
- {
- if (! $this->pre) {
- $this->scodes = array();
- $scodes = $this->getSubScodes($scode);
-
- $field = array(
- 'a.id',
- 'a.title',
- 'a.filename',
- 'a.ico',
- 'a.scode',
- 'b.filename as sortfilename',
- 'c.type',
- 'c.urlname'
- );
-
- $join = array(
- array(
- 'ay_content_sort b',
- 'a.scode=b.scode',
- 'LEFT'
- ),
- array(
- 'ay_model c',
- 'b.mcode=c.mcode',
- 'LEFT'
- )
- );
-
- $this->pre = parent::table('ay_content a')->field($field)
- ->where("a.id<$id")
- ->join($join)
- ->in('a.scode', $scodes)
- ->where("a.acode='" . get_lg() . "'")
- ->where('a.status=1')
- ->where("a.date<'" . date('Y-m-d H:i:s') . "'")
- ->order('a.id DESC')
- ->find();
- }
- return $this->pre;
- }
-
- // 下一篇内容
- public function getContentNext($scode, $id)
- {
- if (! $this->next) {
- $this->scodes = array();
- $scodes = $this->getSubScodes($scode);
-
- $field = array(
- 'a.id',
- 'a.title',
- 'a.filename',
- 'a.ico',
- 'a.scode',
- 'b.filename as sortfilename',
- 'c.type',
- 'c.urlname'
- );
-
- $join = array(
- array(
- 'ay_content_sort b',
- 'a.scode=b.scode',
- 'LEFT'
- ),
- array(
- 'ay_model c',
- 'b.mcode=c.mcode',
- 'LEFT'
- )
- );
-
- $this->next = parent::table('ay_content a')->field($field)
- ->where("a.id>$id")
- ->join($join)
- ->in('a.scode', $scodes)
- ->where("a.acode='" . get_lg() . "'")
- ->where('a.status=1')
- ->where("a.date<'" . date('Y-m-d H:i:s') . "'")
- ->order('a.id ASC')
- ->find();
- }
- return $this->next;
- }
-
- // 幻灯片
- public function getSlides($gid, $num, $start = 1)
- {
- $result = parent::table('ay_slide')->where("gid='$gid'")
- ->order('sorting ASC,id ASC')
- ->limit($start - 1, $num)
- ->select();
- return $result;
- }
-
- // 友情链接
- public function getLinks($gid, $num, $start = 1)
- {
- $result = parent::table('ay_link')->where("gid='$gid'")
- ->order('sorting ASC,id ASC')
- ->limit($start - 1, $num)
- ->select();
- return $result;
- }
-
- // 获取留言
- public function getMessage($num, $page = true, $start = 1, $lg = null)
- {
- if ($lg == 'all') {
- $where = array();
- } elseif ($lg) {
- $where = array(
- 'a.acode' => $lg
- );
- } else {
- $where = array(
- 'a.acode' => get_lg()
- );
- }
-
- $field = array(
- 'a.*',
- 'b.username',
- 'b.nickname',
- 'b.headpic'
- );
- $join = array(
- 'ay_member b',
- 'a.uid=b.id',
- 'LEFT'
- );
-
- if ($page) {
- return parent::table('ay_message a')->field($field)
- ->join($join)
- ->where("a.status=1")
- ->where($where)
- ->order('a.id DESC')
- ->decode(false)
- ->page(1, $num, $start)
- ->select();
- } else {
- return parent::table('ay_message a')->field($field)
- ->join($join)
- ->where("a.status=1")
- ->where($where)
- ->order('a.id DESC')
- ->decode(false)
- ->limit($start - 1, $num)
- ->select();
- }
- }
-
- // 新增留言
- public function addMessage($data)
- {
- return parent::table('ay_message')->autoTime()->insert($data);
- }
-
- // 获取表单字段
- public function getFormField($fcode)
- {
- $field = array(
- 'a.table_name',
- 'a.form_name',
- 'b.name',
- 'b.required',
- 'b.description'
- );
-
- $join = array(
- 'ay_form_field b',
- 'a.fcode=b.fcode',
- 'LEFT'
- );
-
- return parent::table('ay_form a')->field($field)
- ->where("a.fcode='$fcode'")
- ->join($join)
- ->order('b.sorting ASC,b.id ASC')
- ->select();
- }
-
- // 获取表单表名称
- public function getFormTable($fcode)
- {
- return parent::table('ay_form')->where("fcode='$fcode'")->value('table_name');
- }
-
- // 获取表单数据
- public function getForm($table, $num, $page = true, $start = 1)
- {
- if ($page) {
- return parent::table($table)->order('id DESC')
- ->decode(false)
- ->page(1, $num, $start)
- ->select();
- } else {
- return parent::table($table)->order('id DESC')
- ->decode(false)
- ->limit($start - 1, $num)
- ->select();
- }
- }
-
- // 新增表单数据
- public function addForm($table, $data)
- {
- return parent::table($table)->insert($data);
- }
-
- // 文章内链
- public function getTags()
- {
- return parent::table('ay_tags')->field('name,link')
- ->where("acode='" . get_lg() . "'")
- ->order('length(name) desc')
- ->select();
- }
-
- // 新增评论
- public function addComment($data)
- {
- return parent::table('ay_member_comment')->insert($data);
- }
-
- // 文章评论
- public function getComment($contentid, $pid, $num, $order, $page = false, $start = 1)
- {
- $field = array(
- 'a.*',
- 'b.username',
- 'b.nickname',
- 'b.headpic',
- 'c.username as pusername',
- 'c.nickname as pnickname',
- 'c.headpic as pheadpic'
- );
- $join = array(
- array(
- 'ay_member b',
- 'a.uid=b.id',
- 'LEFT'
- ),
- array(
- 'ay_member c',
- 'a.puid=c.id',
- 'LEFT'
- )
- );
- if ($page) {
- return parent::table('ay_member_comment a')->field($field)
- ->join($join)
- ->where("a.contentid='$contentid'")
- ->where('a.pid=' . $pid)
- ->where("a.status=1")
- ->order($order)
- ->page(1, $num, $start)
- ->select();
- } else {
- return parent::table('ay_member_comment a')->field($field)
- ->join($join)
- ->where("a.contentid='$contentid'")
- ->where('a.pid=' . $pid)
- ->where("a.status=1")
- ->order($order)
- ->limit($start - 1, $num)
- ->select();
- }
- }
-
- // 我的评论
- public function getMyComment($num, $order, $page = false, $start = 1)
- {
- $field = array(
- 'a.*',
- 'b.username',
- 'b.nickname',
- 'b.headpic',
- 'c.username as pusername',
- 'c.nickname as pnickname',
- 'c.headpic as pheadpic',
- 'd.title'
- );
- $join = array(
- array(
- 'ay_member b',
- 'a.uid=b.id',
- 'LEFT'
- ),
- array(
- 'ay_member c',
- 'a.puid=c.id',
- 'LEFT'
- ),
- array(
- 'ay_content d',
- 'a.contentid=d.id',
- 'LEFT'
- )
- );
- if ($page) {
- return parent::table('ay_member_comment a')->field($field)
- ->join($join)
- ->where("uid='" . session('pboot_uid') . "'")
- ->order($order)
- ->page(1, $num, $start)
- ->select();
- } else {
- return parent::table('ay_member_comment a')->field($field)
- ->join($join)
- ->where("uid='" . session('pboot_uid') . "'")
- ->order($order)
- ->limit($start - 1, $num)
- ->select();
- }
- }
-
- // 删除评论
- public function delComment($id)
- {
- return parent::table('ay_member_comment')->where("uid='" . session('pboot_uid') . "'")
- ->where("id=$id")
- ->delete();
- }
- }
|