暂无描述
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

Index.php 12KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358
  1. <?php
  2. /**
  3. * 易优CMS
  4. * ============================================================================
  5. * 版权所有 2016-2028 海口快推科技有限公司,并保留所有权利。
  6. * 网站地址: http://www.eyoucms.com
  7. * ----------------------------------------------------------------------------
  8. * 如果商业用途务必到官方购买正版授权, 以免引起不必要的法律纠纷.
  9. * ============================================================================
  10. * Author: 小虎哥 <1105415366@qq.com>
  11. * Date: 2018-4-3
  12. */
  13. namespace app\home\controller;
  14. use think\Db;
  15. use app\user\logic\PayLogic;
  16. class Index extends Base
  17. {
  18. public function _initialize()
  19. {
  20. parent::_initialize();
  21. $this->wechat_return();
  22. $this->alipay_return();
  23. $this->Express100();
  24. $this->ey_agent();
  25. $this->tikTok_return();
  26. }
  27. public function index()
  28. {
  29. // 获取二级域名 ZMH 2024-02-18
  30. $sub_doman = request()->subDomain();
  31. $home_site = get_home_site();
  32. if (empty($sub_doman) || $sub_doman == "www" || $sub_doman == "zc.dev") {
  33. $this->assign("city_domain_name", $sub_doman);
  34. } else {
  35. if ($sub_doman == $home_site) {
  36. //是存在的二级域名
  37. //判断是否是 省级还是城市
  38. return action('home/City/provincial', 138);
  39. }else{
  40. //var_dump($sub_doman);die;
  41. //判断是否存在
  42. $city = Db::name('citysite')->where(['domain'=>$sub_doman])->find();
  43. //var_dump($city);die;
  44. if(empty($city)){
  45. //301回主页
  46. header('HTTP/1.1 301 Moved Permanently');
  47. // 设置新的位置为主页URL
  48. header('Location: https://www.zc10000.com');
  49. // 确保之后的代码不会执行
  50. exit();
  51. }else{
  52. //判断是否是城市域名 跳转到省级域名下的城市链接 这个先不管 之前也没有这个的收录
  53. //全部跳主页
  54. //是否未开启
  55. if((int)$city['status'] === 0 || (int)$city['is_open'] === 0){
  56. header('HTTP/1.1 301 Moved Permanently');
  57. // 设置新的位置为主页URL
  58. header('Location: https://www.zc10000.com');
  59. // 确保之后的代码不会执行
  60. exit();
  61. }else{
  62. //没有开启城市二级域名 $home_site是空的
  63. //也不会执行到这
  64. return action('home/City/chenshi', 139);
  65. }
  66. }
  67. }
  68. }
  69. $preview_templet = input('param.templet/s');
  70. /*处理多语言首页链接最后带斜杆,进行301跳转*/
  71. $lang = input('param.lang/s');
  72. if (preg_match("/\?lang=" . $this->home_lang . "\/$/i", $this->request->url(true)) && $lang == $this->home_lang . '/') {
  73. $langurl = $this->request->url(true);
  74. $langurl = rtrim($langurl, '/');
  75. header('HTTP/1.1 301 Moved Permanently');
  76. header('Location: ' . $langurl);
  77. exit;
  78. }
  79. /*end*/
  80. /*首页焦点*/
  81. $m = input('param.m/s');
  82. if (empty($m)) {
  83. $this->request->get(['m' => 'Index']);
  84. }
  85. /*end*/
  86. $filename = 'index.html';
  87. $seo_pseudo = config('ey_config.seo_pseudo');
  88. if (!isset($_GET['clear']) && file_exists($filename) && 2 == $seo_pseudo) {
  89. if ((isMobile() && !file_exists('./template/' . TPL_THEME . 'mobile')) || !isMobile()) {
  90. header('HTTP/1.1 301 Moved Permanently');
  91. header('Location:' . $filename);
  92. exit;
  93. }
  94. } else if (!isset($_GET['clear']) && 2 == $seo_pseudo && !empty($this->eyou['global']['seo_showmod']) && !empty($this->eyou['global']['seo_html_position'])) {
  95. $seo_html_position_arr = explode('/', $this->eyou['global']['seo_html_position']);
  96. $filename = end($seo_html_position_arr);
  97. if (file_exists($filename)) {
  98. $html = @file_get_contents($filename);
  99. if (!empty($html)) {
  100. echo $html;
  101. exit;
  102. }
  103. }
  104. }
  105. $result['pageurl'] = $this->request->url(true); // 获取当前页面URL
  106. $result['pageurl_m'] = pc_to_mobile_url($result['pageurl']); // 获取当前页面对应的移动端URL
  107. if (!config('city_switch_on')) {
  108. if (3 != $seo_pseudo && stristr($result['pageurl'], '/Index/index')) {
  109. to_index("404");
  110. } else if (3 == $seo_pseudo && preg_match('/m=([^&]+)&c=([^&]+)&a=([^&]+)/i', $result['pageurl'])) {
  111. to_index("404");
  112. }
  113. }
  114. // 移动端域名
  115. $result['mobile_domain'] = '';
  116. if (!empty($this->eyou['global']['web_mobile_domain_open']) && !empty($this->eyou['global']['web_mobile_domain'])) {
  117. $result['mobile_domain'] = $this->eyou['global']['web_mobile_domain'] . '.' . $this->request->rootDomain();
  118. }
  119. $eyou = array(
  120. 'field' => $result,
  121. );
  122. $this->eyou = array_merge($this->eyou, $eyou);
  123. $this->assign('eyou', $this->eyou);
  124. /*模板文件*/
  125. $viewfile = 'index';
  126. if (config('city_switch_on') && !empty($this->home_site)) { // 多站点内置模板文件名
  127. $viewfilepath = TEMPLATE_PATH . $this->theme_style_path . DS . $this->home_site;
  128. $viewfilepath2 = TEMPLATE_PATH . $this->theme_style_path . DS . 'city' . DS . $this->home_site;
  129. if (!empty($this->eyou['global']['site_template'])) {
  130. if (file_exists($viewfilepath2)) {
  131. $viewfile = "city/{$this->home_site}/{$viewfile}";
  132. } else if (file_exists($viewfilepath)) {
  133. $viewfile = "{$this->home_site}/{$viewfile}";
  134. }
  135. }
  136. } else if (config('lang_switch_on') && !empty($this->home_lang)) { // 多语言内置模板文件名
  137. $viewfilepath = TEMPLATE_PATH . $this->theme_style_path . DS . $viewfile . "_{$this->home_lang}." . $this->view_suffix;
  138. if (file_exists($viewfilepath)) {
  139. $viewfile .= "_{$this->home_lang}";
  140. }
  141. }
  142. // var_dump($viewfile); exit(1);
  143. $html = '';
  144. // 招聘插件内置代码 start
  145. if (file_exists('./weapp/Recruits/model/RecruitsModel.php')) {
  146. $recruitsModel = new \weapp\Recruits\model\RecruitsModel;
  147. $recruitsViewfile = $recruitsModel->setHome($this->eyou);
  148. if (!empty($recruitsViewfile)) {
  149. $this->assign('eyou', $this->eyou);
  150. $html = $this->fetch($recruitsViewfile);
  151. return $html;
  152. }
  153. }
  154. // 招聘插件内置代码 end
  155. // 预览主页
  156. if (!empty($preview_templet)) {
  157. $viewfile = preg_replace('/\.(.*)$/i', '', $preview_templet);
  158. }
  159. $html = $this->fetch(":{$viewfile}");
  160. return $html;
  161. }
  162. /**
  163. * 微信支付回调
  164. */
  165. private function wechat_return()
  166. {
  167. // 获取回调的参数
  168. $InputXml = file_get_contents("php://input");
  169. if (!empty($InputXml)) {
  170. $pay_info = Db::name('pay_api_config')->where('pay_mark', 'wechat')->value('pay_info');
  171. if (!empty($pay_info)) {
  172. $pay_info = unserialize($pay_info);
  173. if (empty($pay_info['appid']) || !stristr($InputXml, "[{$pay_info['appid']}]")) {
  174. return true;
  175. }
  176. } else {
  177. return true;
  178. }
  179. // 解析参数
  180. $JsonXml = json_encode(simplexml_load_string($InputXml, 'SimpleXMLElement', LIBXML_NOCDATA));
  181. // 转换数组
  182. $JsonArr = json_decode($JsonXml, true);
  183. // 是否与支付成功
  184. if (!empty($JsonArr) && 'SUCCESS' == $JsonArr['result_code'] && 'SUCCESS' == $JsonArr['return_code']) {
  185. // 解析判断参数是否为微信支付
  186. $attach = explode('|,|', $JsonArr['attach']);
  187. if (!empty($attach) && 'wechat' == $attach[0] && 'is_notify' == $attach[1] && !empty($attach[2])) {
  188. // 跳转处理回调信息
  189. $pay_logic = new PayLogic();
  190. $pay_logic->wechat_return($JsonArr);
  191. }
  192. }
  193. }
  194. }
  195. /**
  196. * 抖音支付回调
  197. */
  198. private function tikTok_return()
  199. {
  200. $inputData = file_get_contents("php://input");
  201. if (!empty($inputData)) {
  202. $inputData = json_decode($inputData, true);
  203. $inputData['msg'] = !empty($inputData['msg']) ? json_decode($inputData['msg'], true) : [];
  204. if (!empty($inputData['msg'])) model('TikTok')->tikTokAppletsPayDealWith($inputData, true);
  205. }
  206. }
  207. /**
  208. * 支付宝支付回调
  209. */
  210. private function alipay_return()
  211. {
  212. $param = input('param.');
  213. if (isset($param['transaction_type']) && isset($param['is_notify'])) {
  214. // 跳转处理回调信息
  215. $pay_logic = new PayLogic();
  216. $pay_logic->alipay_return();
  217. }
  218. }
  219. /**
  220. * 快递100返回时,重定向关闭父级弹框
  221. */
  222. private function Express100()
  223. {
  224. $coname = input('param.coname/s', '');
  225. $m = input('param.m/s', '');
  226. if (!empty($coname) || 'user' == $m) {
  227. if (isWeixin()) {
  228. $this->redirect(url('user/Shop/shop_centre'));
  229. exit;
  230. } else {
  231. $this->redirect(url('api/Rewrite/close_parent_layer'));
  232. exit;
  233. }
  234. }
  235. }
  236. /**
  237. * 无效链接跳转404
  238. */
  239. private function ey_agent()
  240. {
  241. $ey_agent = input('param.ey_agent/d', 0);
  242. if (!IS_AJAX && !empty($ey_agent) && 'home' == MODULE_NAME) {
  243. to_index("404");
  244. }
  245. }
  246. /**
  247. * @description: 获取模板文件路径
  248. * @return {*}
  249. */
  250. private function getViewFile($viewfile = "index")
  251. {
  252. /*模板文件*/
  253. if (config('city_switch_on') && !empty($this->home_site)) { // 多站点内置模板文件名
  254. $viewfilepath = TEMPLATE_PATH . $this->theme_style_path . DS . $this->home_site;
  255. $viewfilepath2 = TEMPLATE_PATH . $this->theme_style_path . DS . 'city' . DS . $this->home_site;
  256. if (!empty($this->eyou['global']['site_template'])) {
  257. if (file_exists($viewfilepath2)) {
  258. $viewfile = "city/{$this->home_site}/{$viewfile}";
  259. } else if (file_exists($viewfilepath)) {
  260. $viewfile = "{$this->home_site}/{$viewfile}";
  261. }
  262. }
  263. } else if (config('lang_switch_on') && !empty($this->home_lang)) { // 多语言内置模板文件名
  264. $viewfilepath = TEMPLATE_PATH . $this->theme_style_path . DS . $viewfile . "_{$this->home_lang}." . $this->view_suffix;
  265. if (file_exists($viewfilepath)) {
  266. $viewfile .= "_{$this->home_lang}";
  267. }
  268. }
  269. return $viewfile;
  270. }
  271. /**
  272. * @description: 栏目
  273. * @author ZMH
  274. * @date 2024-01-22
  275. * @return {*}
  276. */
  277. public function category()
  278. {
  279. $viewfile = $this->getViewFile($this->request->action());
  280. $html = '';
  281. $html = $this->fetch(":{$viewfile}");
  282. return $html;
  283. }
  284. /**
  285. * @description: 产品
  286. * @author ZMH
  287. * @date 2024-01-22
  288. * @return {*}
  289. */
  290. public function goods()
  291. {
  292. $viewfile = $this->getViewFile($this->request->action());
  293. $html = '';
  294. $html = $this->fetch(":{$viewfile}");
  295. return $html;
  296. }
  297. /**
  298. * @description: 文章页
  299. * @author ZMH
  300. * @date 2024-01-22
  301. * @return {*}
  302. */
  303. public function article()
  304. {
  305. $viewfile = $this->getViewFile($this->request->action());
  306. $html = '';
  307. $html = $this->fetch(":{$viewfile}");
  308. return $html;
  309. }
  310. /**
  311. * @description: 省级聚合页
  312. * @author ZMH
  313. * @date 2024-01-22
  314. * @return {*}
  315. */
  316. public function categoryall()
  317. {
  318. $viewfile = $this->getViewFile($this->request->action());
  319. $html = '';
  320. $html = $this->fetch(":{$viewfile}");
  321. return $html;
  322. }
  323. }