* Date: 2018-4-3 */ namespace app\api\logic; use think\Model; use think\Db; /** * 逻辑定义 * Class CatsLogic * @package api\Logic */ class Sqldata extends Model { public function index(){ return "4444"; } /* * url 进行入库操作 统计 */ public function unsetHandle($list=[],$group_id=0,$type='xml'){ if($type == 'txt') { $temp = []; foreach ($list as $k => $value) { $data = []; $update_data = []; if (strpos($value, 'is_del') !== false) { $data['is_del'] = 1; $update_data['is_del'] = 1; } else { $data['is_del'] = 0; $update_data['is_del'] = 0; } if (strpos($value, 'is_arcrank') !== false) { $data['is_arcrank'] = 1; $update_data['is_arcrank'] = 1; } else { $data['is_arcrank'] = 0; $update_data['is_arcrank'] = 0; } if (strpos($value, 'is_status') !== false) { $data['is_status'] = 1; $update_data['is_status'] = 1; } else { $data['is_status'] = 0; $update_data['is_status'] = 0; } if (strpos($value, 'list_is_null') !== false) { $data['is_null'] = 1; $update_data['is_null'] = 1; //列表页为空 也要加入地图 $new_url = explode('---', $value); $new_url = $new_url[0]; $temp[] = $new_url; } else { $data['is_null'] = 0; $update_data['is_null'] = 0; } if (strpos($value, '---') !== false) { $new_url = explode('---', $value); $new_url = $new_url[0]; } else { $new_url = $value; //其他url加入地图 $temp[] = $value; } $one = Db::name('all_url')->where(['url' => $new_url])->find(); if (empty($one)) { $data['group_id'] = $group_id; $data['url'] = $new_url; $data['update_time'] = time(); $data['add_time'] = time(); Db::name('all_url')->insert($data); } else { $update_data['update_time'] = time(); $update_data['group_id'] = $group_id; Db::name('all_url')->where(['url' => $new_url])->update($update_data); } } return $temp; }else{ return $list; } } /* * 重复生成 xml 对象数据 */ public function buildXml($xmlWriter,$value,$time,$mod="hourly",$level="1.0") { /* * 循环 start */ // 添加你网站的URL $xmlWriter->startElement('url'); $xmlWriter->writeElement('loc', $value); $xmlWriter->writeElement('lastmod', $time); $xmlWriter->writeElement('changefreq', $mod); //always hourly daily weekly monthly yearly never $xmlWriter->writeElement('priority', $level); //优先级 0.0到1.0之间 $xmlWriter->startElement('mobile:mobile'); $xmlWriter->writeAttribute('type', 'htmladapt'); // // :移动网页 // :移动网页 //:代码适配 $xmlWriter->endElement(); $xmlWriter->endElement(); /* * 循环 end */ return $xmlWriter; } public function gethtml(){ return ' 职称E家_网站地图

职称E家

分类

    '; } public function gethtmlend(){ $taglist = Db::name('archives')->where(['typeid'=>371,'status'=>1,'is_del'=>0])->select(); $html = ''; foreach($taglist as $k=>$v){ $html .= '
  • '.$v['title'].'
  • '; } return '

    最新tags

      '.$html.'
    '; } public function add_1($type,$data){ $list = [ 'https://www.zc10000.com', //主页 'https://www.zc10000.com/zx', //栏目 + 分页 + 详情 'https://www.zc10000.com/zc', //栏目 + 分页 + 详情 'https://www.zc10000.com/cl', //栏目 + 分页 + 详情 'https://www.zc10000.com/cp', //栏目 + 分页 + 详情 //'https://www.zc10000.com/area', //区域 + 省级主页 + 城市主页 + 结合栏目 'https://www.zc10000.com/taglist', //标签 + 结合栏目 + 结合区域 ]; $html_a = ['职称E家','申报资讯','评审政策','业绩材料','一键测评','标签列表']; $list = $this->unsetHandle($list,0,$type); switch ($type) { case 'xml': foreach ($list as $k=>$value){ $data = $this->buildXml($data,$value,date('Y-m-d',time())); } break; case 'txt': foreach ($list as $k=>$value){ $data .= $value."\r\n"; } break; case 'html': foreach ($list as $k=>$value){ $data .= '
  • '.$html_a[$k].'
  • '; } $data .= "
"; break; default: // 如果没有匹配的值 } return $data; } public function add_2($type,$data,$list,$groupid,$is_html,$hourly,$level,$htmldata){ $list_1 = $this->unsetHandle($list,$groupid,$type); //$list = array_merge($list,$list_1); switch ($type) { case 'xml': foreach ($list_1 as $k=>$value){ $data = $this->buildXml($data,$value,date('Y-m-d',time()),$hourly,$level); } break; case 'txt': foreach ($list_1 as $k=>$value){ $data .= $value."\r\n"; } break; case 'html': //html 需要 name //需要的时候再 独立场景处理即可 if((int)$is_html === 1){ if((int)$htmldata === 1){ $one_data = $this->gethtml_1($data,$list); $data = $data.$one_data; } } break; default: // 如果没有匹配的值 } return $data; } public function gethtml_1($data,$list){ $data = '

评审政策区域分类

    '; //dump($list_1);die; foreach ($list as $k=>$value){ $value1 = explode('/',$value); $value2 = end($value1); $name = Db::name('citysite')->where('domain','=',$value2)->value('name'); $data .= '
  • '.$name.'职称
  • '; } $data .= '
'; return $data; } /* * 无区域 主页或列表页 * 已手动填写 根据业务场景 固定数量 * 例如 / * 栏目 /zx * 标签 /taglist * 区域 /area * * 其他 结合序列号 生成所有url 分层级 tree列表 * 对于xml更新优先级 主页1.0 列表页0.9 详情页0.8 * * 具体路由规则根据变量自由组合 * 有些是主域名或二级域名开头 * 不同规则组合结果不同 */ /* * 无区域 栏目列表页 分页 * /zx-2 * 具体路由规则根据变量自由组合 */ public function get_url_list($str="zx",$typeid=1231,$pasize=12) { $list = Db::name('archives')->where(['typeid'=>$typeid,'status'=>1,'is_del'=>0,'arcrank'=>0])->count(); $desc = ''; if((int)$list === 0){ $list = 1; //假设有一条数据 $desc = '---(list_is_null)'; } $page = ceil($list/$pasize); $url = []; for ($i=2;$i<=$page;$i++){ $url[] = 'https://www.zc10000.com/'.$str.'-'.$i.$desc; } return $url; } /* * 无区域 文档详情链接 * /zx/1 * 具体路由规则根据变量自由组合 */ public function get_url_detail($str="zclw/lunwen",$typeid=116,$ty=4) { $list_1 = Db::name('seo_number')->where(['type'=>$ty,'tid'=>$typeid,'is_del'=>0,'area_id'=>0])->select(); foreach ($list_1 as $key=>$item) { //判断文档是否已删除 $op = Db::name('archives')->where(['aid'=>$item['aid']])->find(); $desc = ''; if((int)$op['is_del'] === 1){ $desc .= '---ID: '.$item['aid']."(is_del)"; } if((int)$op['arcrank'] === 1){ $desc .= '---ID: '.$item['aid']."(is_arcrank)"; } if((int)$op['status'] === 0){ $desc .= '---ID: '.$item['aid']."(is_status)"; } $url[] = 'https://www.zc10000.com/'.$str.$item['number'].$desc; } return $url; } /* * 纯区域分页 (如果细分到区县 数量多就存在) * /area-2 */ /* * 纯具体区域主页 * /guangdong */ /* * 纯具体区域 列表页 分页 (显示城市) (不存在) * /guangdong-2 */ /* * 具体城市主页 * /guangdong/guangzhou * 具体路由规则根据变量自由组合 */ /* * 生成栏目结合区域 列表页 * /zx/guangdong * 区域设置多级就继续遍历 /zx/guangdong/guangzhou * 具体路由规则根据变量自由组合 */ public function get_cat_area_list($str="zhengce",$typeid=115,$pasize=10) { $area = Db::name('citysite')->where(['is_open'=>1,'status'=>1,'level'=>1])->select(); $url = []; foreach ($area as $index=>$row){ //城市再遍历一次 //$collect = Db::name('citysite')->where(['parent_id'=>$row['id']])->select(); //根据路由规则处理 $url[] = 'https://www.zc10000.com/'.$str.'/'.$row['domain']; } return $url; } /* * 生成栏目区域 列表页 分页 * /zx/guangdong-2 * 区域设置多级就继续遍历 /zx/guangdong/guangzhou-2 * 具体路由规则根据变量自由组合 */ public function get_cat_area_list_page($str="zhengce",$typeid=115,$pasize=10) { $area = Db::name('citysite')->where(['is_open'=>1,'status'=>1,'level'=>1])->select(); $url = []; foreach ($area as $index=>$row){ //$collect = Db::name('citysite')->where(['parent_id'=>$row['id']])->select(); //foreach ($collect as $key=>$item){ //seo_number 并没有这个字段 arcrank 假设没有 先不管了 $list = Db::name('archives')->where([ 'typeid'=>$typeid,'status'=>1,'is_del'=>0,'arcrank'=>0,'area_tag_id'=>$row['id'] ])->count(); $desc = ''; if((int)$list === 0){ $list = 1; //假设有一条数据 $desc = '---list_is_null)'; } $page = ceil($list/$pasize); for ($i=2;$i<=$page;$i++){ $url[] = 'https://www.zc10000.com/'.$str.'/'.$row['domain'].'-'.$i.$desc; } //} } return $url; } /* * 纯标签列表页 分页 * /taglist-2 * 具体路由规则根据变量自由组合 */ /* * 纯具体标签列表页 * /tag1200 * 具体路由规则根据变量自由组合 */ public function get_tag_list(){ $taglist = Db::name('archives')->where(['typeid'=>371,'status'=>1,'is_del'=>0])->select(); $url = []; foreach ($taglist as $index=>$row){ //城市再遍历一次 //$collect = Db::name('citysite')->where(['parent_id'=>$row['id']])->select(); //根据路由规则处理 $url[] = 'https://www.zc10000.com/tag'.$row['number']; } return $url; } /* * 纯标签列表页 分页 * /tag1200-2 * 具体路由规则根据变量自由组合 */ public function get_tag_list_page($str,$pasize){ $taglist = Db::name('archives')->where(['typeid'=>371,'status'=>1,'is_del'=>0])->select(); $url = []; foreach ($taglist as $index=>$row){ //$collect = Db::name('citysite')->where(['parent_id'=>$row['id']])->select(); //foreach ($collect as $key=>$item){ //seo_number 并没有这个字段 arcrank 假设没有 先不管了 $list = Db::name('archives')->where([ 'status'=>1,'is_del'=>0,'arcrank'=>0,'area_tag_id'=>$row['aid'] ])->where('typeid','in','1231,1232,1233')->count(); $desc = ''; if((int)$list === 0){ $list = 1; //假设有一条数据 $desc = '---list_is_null)'; } $page = ceil($list/$pasize); for ($i=2;$i<=$page;$i++){ $url[] = 'https://www.zc10000.com/'.$str.$row['number'].'-'.$i.$desc; } //} } return $url; } /* * 生成栏目标签 列表页 (无区域) * /zx/tag1200 * 具体路由规则根据变量自由组合 */ /* * 生成栏目标签 列表页 分页 (无区域) * /zx/tag1200-2 * 具体路由规则根据变量自由组合 */ /* * 生成栏目区域+标签 列表页 * /zx/guangdong/tag1200 * 区域设置多级就继续遍历 /zx/guangdong/guangzhou/tag1200 * 具体路由规则根据变量自由组合 */ /* * 生成栏目区域+标签 列表页 分页 * /zx/guangdong/tag1200-2 * 区域设置多级就继续遍历 /zx/guangdong/guangzhou/tag1200-2 * 具体路由规则根据变量自由组合 */ /* * 带区域 栏目详情页 (详情页跟标签无关) * /zx/guangdong/3 * 区域设置多级就继续遍历 /zx/guangdong/guangzhou/3 * 具体路由规则根据变量自由组合 */ public function get_url_area_detail($str="zhengce/cms",$typeid=115,$ty=2,$area_id=0,$city_id=0) { $area = Db::name('citysite')->where(['is_open'=>1,'status'=>1,'level'=>1])->select(); $url = []; foreach ($area as $index=>$row){ $list_1 = Db::name('seo_number')->where([ 'type'=>$ty,'tid'=>$typeid,'is_del'=>0,"area_id"=>$row['id'],"city_id"=>$city_id ])->select(); foreach ($list_1 as $key=>$item) { //判断文档是否已删除 $op = Db::name('archives')->where(['aid'=>$item['aid']])->find(); $desc = ''; if((int)$op['is_del'] === 1){ $desc .= '---ID: '.$item['aid']."(is_del)"; } if((int)$op['arcrank'] === 1){ $desc .= '---ID: '.$item['aid']."(is_arcrank)"; } if((int)$op['status'] === 0){ $desc .= '---ID: '.$item['aid']."(is_status)"; } $url[] = 'https://www.zc10000.com/'.$str.'/'.$row['domain'].'/'.$item['number'].$desc; } } return $url; } }