123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599 |
- <?php
- /*
- * @Author: ZMH
- * @Email: zmhwork@qq.com
- * @Date: 2024-02-06 18:19:10
- * @LastEditTime: 2024-02-18 22:24:19
- * @LastEditors: xiaohai zmhwork@qq.com
- * @FilePath: \eyoucms\application\home\controller\City.php
- *
- * @Description: 城市控制器
- */
-
-
- namespace app\home\controller;
-
- use think\Db;
- use think\Verify;
-
- class City extends Base
- {
- // 模型标识
- public $nid = '';
- // 模型ID
- public $channel = '';
-
- public function _initialize()
- {
- parent::_initialize();
- }
-
- public function _empty($name)
- {
- return $this->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.'<br/>';
- }*/
- 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;
- }
- }
|