1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063 |
- <?php
- /**
- * @copyright (C)2016-2099 Hnaoyun Inc.
- * @author XingMeng
- * @email hnxsh@foxmail.com
- * @date 2018年2月14日
- * 标签解析引擎模型
- */
- namespace app\home\model;
-
- 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 getCityListTree($where=''){
- $where = 'status=1';
- $list = parent::table('ay_city')->order('sorting asc')->where($where)->select(1);
- foreach ($list as $key => $value) {
- if ($value['pid']) {
- $result[$value['pid']]['son'][] = $value; // 记录到关系树
- } else {
- $result[$value['id']] = $value;
- $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'];
- }
- }
-
- // 分类子类集
- private 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;
- }
-
- // 获取栏目清单
- 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;
- } elseif ($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;
- }
-
- $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;
- }
- }
- }
-
- // 筛选条件支持模糊匹配
- return parent::table('ay_content a ' . $indexSql)->field($fields)
- ->where($scode_arr, 'OR')
- ->where($where)
- ->where($select, 'AND', 'AND', $fuzzy)
- ->where($filter, 'OR')
- ->where($tags, 'OR')
- ->join($join)
- ->order($order)
- ->page(1, $num, $start)
- ->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;
- } elseif ($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;
- }
-
- $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;
- }
- }
- }
-
- // 筛选条件支持模糊匹配
- return parent::table('ay_content a ' . $indexSql)->field($fields)
- ->where($scode_arr, 'OR')
- ->where($where)
- ->where($select, 'AND', 'AND', $fuzzy)
- ->where($filter, 'OR')
- ->where($tags, 'OR')
- ->join($join)
- ->order($order)
- ->limit($start - 1, $num)
- ->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();
- }
-
- public function getBlockContent($id){
- //return parent::table('ay_block')->where(['id'=>$id])->decode()->find(1);
- return '1+1';
- }
-
- public function getCityId($name){
- return parent::table('ay_city')->where(['etitle'=>$name])->value('id');
- }
- public function getCityLogo($name){
- return parent::table('ay_city')->where(['etitle'=>$name])->value('logo');
- }
- public function getSiteLogo(){
- return parent::table('ay_site')->where(['id'=>1])->value('logo');
- }
-
- public function getCityDomain($name){
- return parent::table('ay_city')->where(['etitle'=>$name])->value('id');
- }
-
-
- }
|