city($name); } protected function city($name) { //和$name这个城市相关的处理 return '当前城市' . $name; // return action('home/Lists/index', $tid); } public function index($city) { // var_dump($city); exit(0); return action('home/Lists/index', 139); } public function view($city, $aid = 0) { return action('home/View/index', $aid); } /** * 省级首页 */ public function provincial($tid = '') { $param = input('param.'); /*获取当前栏目ID以及模型ID*/ $page_tmp = input('param.page/s', 0); if (empty($tid) || !is_numeric($page_tmp)) { to_index("404"); } $map = []; /*URL上参数的校验*/ /* $seo_pseudo = config('ey_config.seo_pseudo'); $url_screen_var = config('global.url_screen_var'); if (!isset($param[$url_screen_var]) && 3 == $seo_pseudo) { if (stristr($this->request->url(), '&c=Lists&a=index&')) { to_index(); } $map = array('a.dirname'=>$tid); } else if (isset($param[$url_screen_var]) || 1 == $seo_pseudo || (2 == $seo_pseudo && isMobile())) { $seo_dynamic_format = config('ey_config.seo_dynamic_format'); if (1 == $seo_pseudo && 2 == $seo_dynamic_format && stristr($this->request->url(), '&c=Lists&a=index&')) { to_index(); } else if (!is_numeric($tid) || strval(intval($tid)) !== strval($tid)) { to_index(); } $map = array('a.id'=>$tid); }else if (2 == $seo_pseudo){ // 生成静态页面代码 $map = array('a.id'=>$tid); }*/ /*--end*/ if (!is_numeric($tid) || strval(intval($tid)) !== strval($tid)) { $map = array('a.dirname' => $tid); } else { $map = array('a.id' => intval($tid)); } $map['a.is_del'] = 0; // 回收站功能 $map['a.lang'] = $this->home_lang; // 多语言 $row = Db::name('arctype')->field('a.id, a.current_channel, b.nid') ->alias('a') ->join('__CHANNELTYPE__ b', 'a.current_channel = b.id', 'LEFT') ->where($map) ->find(); if (empty($row)) { to_index("404"); } $tid = $row['id']; $this->nid = $row['nid']; $this->channel = intval($row['current_channel']); /*--end*/ $result = $this->logic($tid); // 模型对应逻辑 $eyou = array( 'field' => $result, ); $this->eyou = array_merge($this->eyou, $eyou); $this->assign('eyou', $this->eyou); /*模板文件*/ // $viewfile = !empty($result['templist']) // ? str_replace('.' . $this->view_suffix, '', $result['templist']) // : 'lists_' . $this->nid; $viewfile = 'index_1'; /*--end*/ if (config('city_switch_on') && !empty($this->home_site)) { // 多站点内置模板文件名 $viewfilepath = TEMPLATE_PATH . $this->theme_style_path . DS . $this->home_site; $viewfilepath2 = TEMPLATE_PATH . $this->theme_style_path . DS . 'city' . DS . $this->home_site; if (!empty($this->eyou['global']['site_template'])) { if (file_exists($viewfilepath2)) { $viewfile = "city/{$this->home_site}/{$viewfile}"; } else if (file_exists($viewfilepath)) { $viewfile = "{$this->home_site}/{$viewfile}"; } } } else if (config('lang_switch_on') && !empty($this->home_lang)) { // 多语言内置模板文件名 $viewfilepath = TEMPLATE_PATH . $this->theme_style_path . DS . $viewfile . "_{$this->home_lang}." . $this->view_suffix; if (file_exists($viewfilepath)) { $viewfile .= "_{$this->home_lang}"; } } $users_id = (int)session('users_id'); $emptyhtml = $this->check_arcrank($this->eyou['field'], $users_id); // /*模板文件*/ // $viewfile = $filename = !empty($result['templist']) // ? str_replace('.'.$this->view_suffix, '',$result['templist']) // : 'lists_'.$this->nid; // /*--end*/ // /*每个栏目内置模板文件名*/ // $viewfilepath = TEMPLATE_PATH.$this->theme_style_path.DS.$filename."_{$result['id']}.".$this->view_suffix; // if (file_exists($viewfilepath)) { // $viewfile = $filename."_{$result['id']}"; // } // /*--end*/ // /*多语言内置模板文件名*/ // if (!empty($this->home_lang)) { // $viewfilepath = TEMPLATE_PATH.$this->theme_style_path.DS.$filename."_{$this->home_lang}.".$this->view_suffix; // if (file_exists($viewfilepath)) { // $viewfile = $filename."_{$this->home_lang}"; // } // /*每个栏目内置模板文件名*/ // $viewfilepath = TEMPLATE_PATH.$this->theme_style_path.DS.$filename."_{$result['id']}_{$this->home_lang}.".$this->view_suffix; // if (file_exists($viewfilepath)) { // $viewfile = $filename."_{$result['id']}_{$this->home_lang}"; // } // /*--end*/ // } // /*--end*/ // 区域 $sub_doman = request()->subDomain(); $subcity = Db::name('citysite')->field('id, name, domain')->where("domain", $sub_doman)->find(); $this->assign("subcity", $subcity); if (!empty($emptyhtml)) { /*尝试写入静态缓存*/ // write_html_cache($emptyhtml, $result); /*--end*/ return $this->fetch("./public/html/empty_view.htm"); } else { $view = ":{$viewfile}"; if (51 == $this->channel) { // 问答模型 $Ask = new \app\home\controller\Ask; return $Ask->index(); } else { return $this->fetch($view); } } } /** * 市级首页 * * */ public function chenshi($tid = '') { $param = input('param.'); //dump($param);die; /*获取当前栏目ID以及模型ID*/ $page_tmp = input('param.page/s', 0); if (empty($tid) || !is_numeric($page_tmp)) { to_index("404"); } $map = []; /*URL上参数的校验*/ /* $seo_pseudo = config('ey_config.seo_pseudo'); $url_screen_var = config('global.url_screen_var'); if (!isset($param[$url_screen_var]) && 3 == $seo_pseudo) { if (stristr($this->request->url(), '&c=Lists&a=index&')) { to_index(); } $map = array('a.dirname'=>$tid); } else if (isset($param[$url_screen_var]) || 1 == $seo_pseudo || (2 == $seo_pseudo && isMobile())) { $seo_dynamic_format = config('ey_config.seo_dynamic_format'); if (1 == $seo_pseudo && 2 == $seo_dynamic_format && stristr($this->request->url(), '&c=Lists&a=index&')) { to_index(); } else if (!is_numeric($tid) || strval(intval($tid)) !== strval($tid)) { to_index(); } $map = array('a.id'=>$tid); }else if (2 == $seo_pseudo){ // 生成静态页面代码 $map = array('a.id'=>$tid); }*/ /*--end*/ if (!is_numeric($tid) || strval(intval($tid)) !== strval($tid)) { $map = array('a.dirname' => $tid); } else { $map = array('a.id' => intval($tid)); } $map['a.is_del'] = 0; // 回收站功能 $map['a.lang'] = $this->home_lang; // 多语言 $row = Db::name('arctype')->field('a.id, a.current_channel, b.nid') ->alias('a') ->join('__CHANNELTYPE__ b', 'a.current_channel = b.id', 'LEFT') ->where($map) ->find(); if (empty($row)) { to_index("404"); } $tid = $row['id']; $this->nid = $row['nid']; $this->channel = intval($row['current_channel']); /*--end*/ $result = $this->logic($tid); // 模型对应逻辑 $eyou = array( 'field' => $result, ); $this->eyou = array_merge($this->eyou, $eyou); $this->assign('eyou', $this->eyou); /*模板文件*/ // $viewfile = !empty($result['templist']) // ? str_replace('.' . $this->view_suffix, '', $result['templist']) // : 'lists_' . $this->nid; $viewfile = 'index_2'; /*--end*/ if (config('city_switch_on') && !empty($this->home_site)) { // 多站点内置模板文件名 $viewfilepath = TEMPLATE_PATH . $this->theme_style_path . DS . $this->home_site; $viewfilepath2 = TEMPLATE_PATH . $this->theme_style_path . DS . 'city' . DS . $this->home_site; if (!empty($this->eyou['global']['site_template'])) { if (file_exists($viewfilepath2)) { $viewfile = "city/{$this->home_site}/{$viewfile}"; } else if (file_exists($viewfilepath)) { $viewfile = "{$this->home_site}/{$viewfile}"; } } } else if (config('lang_switch_on') && !empty($this->home_lang)) { // 多语言内置模板文件名 $viewfilepath = TEMPLATE_PATH . $this->theme_style_path . DS . $viewfile . "_{$this->home_lang}." . $this->view_suffix; if (file_exists($viewfilepath)) { $viewfile .= "_{$this->home_lang}"; } } $users_id = (int)session('users_id'); $emptyhtml = $this->check_arcrank($this->eyou['field'], $users_id); // /*模板文件*/ // $viewfile = $filename = !empty($result['templist']) // ? str_replace('.'.$this->view_suffix, '',$result['templist']) // : 'lists_'.$this->nid; // /*--end*/ // /*每个栏目内置模板文件名*/ // $viewfilepath = TEMPLATE_PATH.$this->theme_style_path.DS.$filename."_{$result['id']}.".$this->view_suffix; // if (file_exists($viewfilepath)) { // $viewfile = $filename."_{$result['id']}"; // } // /*--end*/ // /*多语言内置模板文件名*/ // if (!empty($this->home_lang)) { // $viewfilepath = TEMPLATE_PATH.$this->theme_style_path.DS.$filename."_{$this->home_lang}.".$this->view_suffix; // if (file_exists($viewfilepath)) { // $viewfile = $filename."_{$this->home_lang}"; // } // /*每个栏目内置模板文件名*/ // $viewfilepath = TEMPLATE_PATH.$this->theme_style_path.DS.$filename."_{$result['id']}_{$this->home_lang}.".$this->view_suffix; // if (file_exists($viewfilepath)) { // $viewfile = $filename."_{$result['id']}_{$this->home_lang}"; // } // /*--end*/ // } // /*--end*/ // 区域 $sub_doman = request()->subDomain(); $subcity = Db::name('citysite')->field('id, name, domain')->where("domain", $sub_doman)->find(); $this->assign("subcity", $subcity); if (!empty($emptyhtml)) { /*尝试写入静态缓存*/ // write_html_cache($emptyhtml, $result); /*--end*/ return $this->fetch("./public/html/empty_view.htm"); } else { $view = ":{$viewfile}"; if (51 == $this->channel) { // 问答模型 $Ask = new \app\home\controller\Ask; return $Ask->index(); } else { return $this->fetch($view); } } } /* * 判断阅读权限 */ private function check_arcrank($eyou_field, $users_id) { $emptyhtml = ""; $eyou_field['page_limit'] = empty($eyou_field['page_limit']) ? [] : explode(',', $eyou_field['page_limit']); if ($eyou_field['typearcrank'] > 0 && in_array(1, $eyou_field['page_limit'])) { // 若需要会员权限则执行 if (empty($users_id)) { $url = url('user/Users/login'); if (stristr($url, '?')) { $url = $url . "&referurl=" . urlencode($eyou_field['arcurl']); } else { $url = $url . "?referurl=" . urlencode($eyou_field['arcurl']); } $this->redirect($url); } $msg = action('api/Ajax/get_arcrank', ['tid' => $eyou_field['id'], 'vars' => 1]); if (true !== $msg) { $this->error($msg); } } return $emptyhtml; } /* * 301 */ public function tourl(){ $post = request()->route(); //var_dump($post);die; if(!empty($post['site'])){ //查找省级域名 $one = Db::name('citysite')->where("domain",'=',$post['site'])->find(); if($post['site'] == 'shandong'){ //省站url return action('home/City/provincial', 138); }else if((int)$one['parent_id'] === 5290){ //山东城市 return action('home/City/chenshi', 139); } $two = Db::name('citysite')->where("id",'=',$one['parent_id'])->find(); if(!empty($two['domain'])){ header('HTTP/1.1 301 Moved Permanently'); header('Location: https://'.$two['domain'].'.zc10000.com/'.$post['site']); exit(); } } if(!empty($post['aid'])){ $one = Db::name('web_ur')->where("aid",'=',$post['aid'])->find(); //查找序列号 $two = Db::name('seo_number')->where(['tid'=>$one['to_tid'],'aid'=>$one['to_aid']])->find(); //去除数字 $cleanString = preg_replace('/\d/', '', $one['to_url']); $url = 'https://www.zc10000.com'.$cleanString.$two['number']; if($cleanString === '/gonglve' || $cleanString === '/zhengce/cms'){ if($cleanString === '/gonglve'){ $cleanString = '/gonglve1-'; } //var_dump($cleanString);die; $url = 'https://www.zc10000.com'.$cleanString.$two['number']; //查找区域 $three = Db::name('archives')->where(['aid'=>$one['to_aid']])->find(); if((int)$three['province_id'] > 0){ //查找 $domain = Db::name('citysite')->where(['id'=>$three['province_id']])->value('domain'); $url = 'https://'.$domain.'.zc10000.com'.$cleanString.$two['number']; } if((int)$three['city_id'] > 0){ //查找 $domain2 = Db::name('citysite')->where(['id'=>$three['city_id']])->value('domain'); $url = 'https://'.$domain.'.zc10000.com'.'/'.$domain2.''.$cleanString.$two['number']; } } if(!empty($one)){ header('HTTP/1.1 301 Moved Permanently'); header('Location: '.$url.''); exit(); } } $url = 'https://'.$domain.'.zc10000.com'; header('HTTP/1.1 301 Moved Permanently'); header('Location: '.$url.''); exit(); //return "656565"; } public function fileHandle() { $post = request()->route(); //var_dump($post); $name = 'baidu_verify_codeva-'.$post['number'].'.html'; //var_dump($name); $content = file_get_contents("./".$name); echo $content; } public function fileMapHandle() { $ext_url = request()->url(); //var_dump($ext_url);die; if($ext_url == '/sitemap'){ //没有后缀 默认显示所有的url txt $content = file_get_contents("./sitemaps/".$ext_url.'.txt'); //echo $content; // 实例化一个文件响应对象 $response = response($content)->contentType('text/plain'); // 设置浏览器文件下载 //$response->header(['Content-Disposition' => "attachment;filename=\"sitemap.txt\""]); //return response($content)->contentType('text/plain')->download('filename.txt'); // 发送响应并结束脚本 $response->send(); /*$newfile=file("./sitemaps/".$ext_url.'.txt'); //返回数组的内容 foreach($newfile as $v){ echo $v.'
'; }*/ exit; }else{ $domain = request()->domain().$ext_url; $ext = explode('.',$ext_url); $ext = $ext[1]; $url = explode('.',$domain); $domain = str_replace('https://','',$url[0]); //var_dump($domain);die; //var_dump($name); $content = file_get_contents("./sitemaps/".$domain.$ext_url); if($ext == 'txt'){ return response($content)->contentType('text/plain'); }else if($ext == 'xml'){ //return xml($content, 200); // 设置响应类型为XML并输出 return response($content)->contentType('text/xml'); }else{ echo $content; } } //return json([]); } /** * 模型对应逻辑 * @param intval $tid 栏目ID * @return array */ private function logic($tid = '') { $result = array(); if (empty($tid)) { return $result; } switch ($this->channel) { case '6': // 单页模型 { $arctype_info = model('Arctype')->getInfo($tid); if ($arctype_info) { // 读取当前栏目的内容,否则读取每一级第一个子栏目的内容,直到有内容或者最后一级栏目为止。 $archivesModel = new \app\home\model\Archives; $result_new = $archivesModel->readContentFirst($tid); // 阅读权限 if ($result_new['arcrank'] == -1) { $this->success('待审核稿件,你没有权限阅读!'); exit; } // 外部链接跳转 if ($result_new['is_part'] == 1) { $result_new['typelink'] = htmlspecialchars_decode($result_new['typelink']); if (!is_http_url($result_new['typelink'])) { $typeurl = '//' . $this->request->host(); if (!preg_match('#^' . ROOT_DIR . '(.*)$#i', $result_new['typelink'])) { $typeurl .= ROOT_DIR; } $typeurl .= '/' . trim($result_new['typelink'], '/'); $result_new['typelink'] = $typeurl; } $this->redirect($result_new['typelink']); exit; } /*自定义字段的数据格式处理*/ $result_new = $this->fieldLogic->getChannelFieldList($result_new, $this->channel); /*--end*/ $result = array_merge($arctype_info, $result_new); $result['templist'] = !empty($arctype_info['templist']) ? $arctype_info['templist'] : 'lists_' . $arctype_info['nid']; $result['dirpath'] = $arctype_info['dirpath']; $result['diy_dirpath'] = $arctype_info['diy_dirpath']; $result['typeid'] = $arctype_info['typeid']; $result['rulelist'] = $arctype_info['rulelist']; } break; } default: { $result = model('Arctype')->getInfo($tid); /*外部链接跳转*/ if ($result['is_part'] == 1) { $result['typelink'] = htmlspecialchars_decode($result['typelink']); if (!is_http_url($result['typelink'])) { $result['typelink'] = '//' . $this->request->host() . ROOT_DIR . '/' . trim($result['typelink'], '/'); } $this->redirect($result['typelink']); exit; } /*end*/ break; } } if (!empty($result)) { /*自定义字段的数据格式处理*/ $result = $this->fieldLogic->getTableFieldList($result, config('global.arctype_channel_id')); /*--end*/ } /*是否有子栏目,用于标记【全部】选中状态*/ $result['has_children'] = model('Arctype')->hasChildren($tid); /*--end*/ // seo $result['seo_title'] = set_typeseotitle($result['typename'], $result['seo_title'], $this->eyou['site']); $result['pageurl'] = typeurl('home/' . $result['ctl_name'] . '/lists', $result, true, true); $result['pageurl'] = get_list_only_pageurl($result['pageurl'], $result['typeid'], $result['rulelist']); $result['pageurl_m'] = pc_to_mobile_url($result['pageurl'], $result['typeid']); // 获取当前页面对应的移动端URL // 移动端域名 $result['mobile_domain'] = ''; if (!empty($this->eyou['global']['web_mobile_domain_open']) && !empty($this->eyou['global']['web_mobile_domain'])) { $result['mobile_domain'] = $this->eyou['global']['web_mobile_domain'] . '.' . $this->request->rootDomain(); } /*给没有type前缀的字段新增一个带前缀的字段,并赋予相同的值*/ foreach ($result as $key => $val) { if (!preg_match('/^type/i', $key)) { $key_new = 'type' . $key; !array_key_exists($key_new, $result) && $result[$key_new] = $val; } } /*--end*/ return $result; } }