暫無描述
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Controller.php 31KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkPHP [ WE CAN DO IT JUST THINK ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2006~2018 http://thinkphp.cn All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
  8. // +----------------------------------------------------------------------
  9. // | Author: liu21st <liu21st@gmail.com>
  10. // +----------------------------------------------------------------------
  11. namespace think;
  12. use think\exception\ValidateException;
  13. use traits\controller\Jump;
  14. Loader::import('controller/Jump', TRAIT_PATH, EXT);
  15. class Controller
  16. {
  17. use Jump;
  18. /**
  19. * @var \think\View 视图类实例
  20. */
  21. protected $view;
  22. /**
  23. * @var \think\Request Request 实例
  24. */
  25. protected $request;
  26. /**
  27. * @var bool 验证失败是否抛出异常
  28. */
  29. protected $failException = false;
  30. /**
  31. * @var bool 是否批量验证
  32. */
  33. protected $batchValidate = false;
  34. /**
  35. * @var array 前置操作方法列表
  36. */
  37. protected $beforeActionList = [];
  38. /**
  39. * 主体语言(语言列表中最早一条)
  40. */
  41. public $main_lang = 'cn';
  42. /**
  43. * 后台当前语言
  44. */
  45. public $admin_lang = 'cn';
  46. /**
  47. * 前台当前语言
  48. */
  49. public $home_lang = 'cn';
  50. /**
  51. * 子目录路径
  52. */
  53. public $root_dir = '';
  54. /**
  55. * CMS版本号
  56. */
  57. public $version = null;
  58. /**
  59. * 模板风格
  60. */
  61. public $tpl_theme = null;
  62. /**
  63. * 是否访问手机版
  64. */
  65. public $is_mobile = 0;
  66. /**
  67. * 前台当前站点
  68. */
  69. public $home_site = '';
  70. /**
  71. * 站点域名,带端口号
  72. */
  73. public $website_host = '';
  74. /**
  75. * 构造方法
  76. * @access public
  77. * @param Request $request Request 对象
  78. */
  79. public function __construct(Request $request = null)
  80. {
  81. if (is_null($request)) {
  82. $request = Request::instance();
  83. }
  84. $this->request = $request;
  85. $this->root_dir = ROOT_DIR; // 子目录
  86. $this->website_host = $this->request->host();
  87. if (stristr($this->website_host, 'localhost')) {
  88. $web_basehost = preg_replace('/^(([^\:\.]+):)?(\/\/)?([^\/\:]*)(.*)$/i', '${4}', config('tpcache.web_basehost'));
  89. if (!empty($web_basehost)) {
  90. $host_port = !stristr($this->website_host, ':') ? '' : $request->port();
  91. $this->website_host = $web_basehost;
  92. if (!empty($host_port) && !stristr($this->website_host, ':')) {
  93. $this->website_host .= ":{$host_port}";
  94. }
  95. }
  96. }
  97. // 运营状态下,检验阅读权限
  98. $aid = input('param.aid/s', '');
  99. if (Config::get('app_debug') != true && !empty($aid) && $this->request->module() == 'home' && ($this->request->controller() == 'View' || $this->request->action() == 'view') ) {
  100. $map = [];
  101. if (!is_numeric($aid) || strval(intval($aid)) !== strval($aid)) {
  102. $map = array('a.htmlfilename' => $aid);
  103. } else {
  104. $map = array('a.aid' => intval($aid));
  105. }
  106. $map['a.is_del'] = 0; // 回收站功能
  107. $field = 'a.aid,a.arcrank,a.users_id, a.typeid, a.channel, c.typearcrank,c.dirname,c.page_limit';
  108. $archivesInfo = Db::name('archives')->field($field)
  109. ->alias('a')
  110. ->join('arctype c', 'a.typeid = c.id', 'LEFT')
  111. ->where($map)
  112. ->find();
  113. $users_id = (int)session('users_id');
  114. $archivesInfo['page_limit'] = empty($archivesInfo['page_limit']) ? [] : explode(',', $archivesInfo['page_limit']);
  115. // 若需要会员权限则执行
  116. if (($archivesInfo['arcrank'] > 0 || ( $archivesInfo['typearcrank'] > 0 && in_array(2,$archivesInfo['page_limit']) ) ) && empty($users_id)) {
  117. $url = url('user/Users/login');
  118. $arcurl = $this->request->domain().$this->root_dir."/index.php?m=home&c=Ajax&a=toView&aid={$aid}";
  119. if (stristr($url, '?')) {
  120. $url = $url."&referurl=".urlencode($arcurl);
  121. } else {
  122. $url = $url."?referurl=".urlencode($arcurl);
  123. }
  124. $this->redirect($url);
  125. exit;
  126. }
  127. }
  128. /*多语言*/
  129. $this->home_lang = get_home_lang();
  130. $this->admin_lang = get_admin_lang();
  131. $this->main_lang = get_main_lang();
  132. /*多城市*/
  133. if (config('city_switch_on')) {
  134. $this->home_site = get_home_site();
  135. }
  136. null === $this->version && $this->version = getCmsVersion();
  137. $returnData = $this->pc_to_mobile($this->request);
  138. $this->is_mobile = $returnData['is_mobile'];
  139. if (!defined('IS_AJAX')) {
  140. $this->request->isAjax() ? define('IS_AJAX',true) : define('IS_AJAX',false); //
  141. }
  142. if (!defined('IS_GET')) {
  143. ($this->request->method() == 'GET') ? define('IS_GET',true) : define('IS_GET',false); //
  144. }
  145. if (!defined('IS_POST')) {
  146. ($this->request->method() == 'POST') ? define('IS_POST',true) : define('IS_POST',false); //
  147. }
  148. if (!defined('IS_AJAX_POST')) {
  149. ($this->request->isAjax() && $this->request->method() == 'POST') ? define('IS_AJAX_POST',true) : define('IS_AJAX_POST',false); //
  150. }
  151. // 前台模板目录切换
  152. null === $this->tpl_theme && $this->tpl_theme = config('ey_config.web_tpl_theme');
  153. if (empty($this->tpl_theme)) {
  154. if (file_exists(ROOT_PATH.'template/default')) {
  155. $this->tpl_theme = 'default/';
  156. } else {
  157. $this->tpl_theme = '';
  158. }
  159. } else {
  160. if ('default' == $this->tpl_theme && !file_exists(ROOT_PATH.'template/default')) {
  161. $this->tpl_theme = '';
  162. } else if ('default' != $this->tpl_theme && !file_exists(ROOT_PATH.'template/'.$this->tpl_theme)) {
  163. if (in_array($this->request->module(), ['home','user'])) {
  164. $this->error("模板目录【{$this->tpl_theme}】不存在!");
  165. }
  166. } else {
  167. $this->tpl_theme .= '/';
  168. }
  169. }
  170. !defined('TPL_THEME') && define('TPL_THEME', $this->tpl_theme); // 模板目录
  171. $param = input('param.');
  172. if (isset($param['uiset']) && !session('?admin_id')) {
  173. if (!file_exists(ROOT_PATH.'template/'.TPL_THEME.'pc/uiset.txt') && !file_exists(ROOT_PATH.'template/'.TPL_THEME.'mobile/uiset.txt')) {
  174. to_index();
  175. }
  176. }
  177. !defined('MODULE_NAME') && define('MODULE_NAME',$this->request->module()); // 当前模块名称是
  178. !defined('CONTROLLER_NAME') && define('CONTROLLER_NAME',$this->request->controller()); // 当前控制器名称
  179. !defined('ACTION_NAME') && define('ACTION_NAME',$this->request->action()); // 当前操作名称是
  180. !defined('PREFIX') && define('PREFIX',Config::get('database.prefix')); // 数据库表前缀
  181. !defined('SYSTEM_ADMIN_LANG') && define('SYSTEM_ADMIN_LANG', Config::get('global.admin_lang')); // 后台语言变量
  182. !defined('SYSTEM_HOME_LANG') && define('SYSTEM_HOME_LANG', Config::get('global.home_lang')); // 前台语言变量
  183. if (stristr($this->request->url(), '?')) {
  184. $module = $this->request->param('m');
  185. if (!empty($module)) {
  186. $module_dir = glob(APP_PATH.'*', GLOB_ONLYDIR);
  187. foreach ($module_dir as $key => $val) {
  188. $val = str_replace('\\', '/', $val);
  189. $module_dir[$key] = preg_replace('/^(.*)\/([^\/]+)$/i', '${2}', $val);
  190. }
  191. if (!in_array($module, $module_dir)) {
  192. to_index();
  193. }
  194. }
  195. }
  196. $web_anti_brushing = config('tpcache.web_anti_brushing');
  197. if (!empty($web_anti_brushing)) {
  198. if ('home' == MODULE_NAME && 'Index' == CONTROLLER_NAME && 'index' == ACTION_NAME) {
  199. $varsarr = ['clear','lang','site','templet','uiset','v','bd_vid','clickid'];
  200. if (1 == config('ey_config.seo_pseudo') || isset($params['uiset'])) {
  201. $varsarr = array_merge($varsarr, ['m','c','a']);
  202. }
  203. $agentcode = config('tpcache.php_agentcode');
  204. if (1 == $agentcode) {
  205. $varsarr[] = 'aid';
  206. }
  207. $params = $this->request->param();
  208. if (empty($params['a']) || !in_array($params['a'], ['wechat_return','alipay_return','Express100','ey_agent'])) {
  209. foreach ($params as $key => $val) {
  210. if (!in_array($key, $varsarr)) {
  211. to_index();
  212. } else if ('clear' == $key) {
  213. if ($val != 1) {
  214. to_index();
  215. }
  216. } else if ('lang' == $key) {
  217. if ((isset($params['uiset']) || is_language()) && 2 == strlen($val)) {
  218. } else {
  219. to_index();
  220. }
  221. }
  222. }
  223. }
  224. } else {
  225. if ((stristr($this->request->url(true), '/home/View/index/') || stristr($this->request->url(true), '/home/Lists/index/')) && 'Buildhtml' != CONTROLLER_NAME) {
  226. to_index();
  227. }
  228. }
  229. }
  230. // 自动判断手机端和PC,以及PC/手机自适应模板 by 小虎哥 2018-05-10
  231. $v = I('param.v/s', 'pc');
  232. $v = trim($v, '/');
  233. if ($v == 'mobile') {
  234. $this->is_mobile = 1;
  235. }
  236. if($this->is_mobile == 1 && file_exists(ROOT_PATH.'template/'.$this->tpl_theme.'mobile/index.htm')) {
  237. !defined('THEME_STYLE') && define('THEME_STYLE', 'mobile'); // 手机端标识
  238. !defined('THEME_STYLE_PATH') && define('THEME_STYLE_PATH', $this->tpl_theme.THEME_STYLE); // 手机端模板根目录
  239. } else {
  240. !defined('THEME_STYLE') && define('THEME_STYLE', 'pc'); // pc端标识
  241. !defined('THEME_STYLE_PATH') && define('THEME_STYLE_PATH', $this->tpl_theme.THEME_STYLE); // PC端模板根目录
  242. }
  243. if (in_array($this->request->module(), ['home','user'])) {
  244. Config::set('template.view_path', './template/'.THEME_STYLE_PATH.'/');
  245. } else if (in_array($this->request->module(), array('admin'))) {
  246. if ('weapp' == strtolower($this->request->controller()) && 'execute' == strtolower($this->request->action())) {
  247. Config::set('template.view_path', '.'.ROOT_DIR.'/'.WEAPP_DIR_NAME.'/'.$this->request->param('sm').'/template/');
  248. }
  249. }
  250. // -------end
  251. $this->view = View::instance(Config::get('template'), Config::get('view_replace_str'));
  252. $this->assign('home_lang', $this->home_lang);
  253. $this->assign('admin_lang', $this->admin_lang);
  254. $this->assign('main_lang', $this->main_lang);
  255. $this->assign('version', $this->version);
  256. $this->assign('is_mobile', $this->is_mobile);
  257. $this->assign('tpl_theme', $this->tpl_theme);
  258. $this->assign('home_site', $this->home_site);
  259. $this->assign('website_host', $this->website_host);
  260. $param = $this->request->param();
  261. if ( (CONTROLLER_NAME == 'Lists' && isset($param['sort'])) || isset($param['clear']) || Config::get('app_debug') === true) {
  262. } else {
  263. //var_dump("开始读取缓存");
  264. read_html_cache(); // 尝试从缓存中读取
  265. }
  266. // 控制器初始化
  267. $this->_initialize();
  268. //var_dump("还会读取缓存吗"); //不会了 ,已执行 exit();
  269. if ('admin' == MODULE_NAME) {
  270. $assignName2 = $this->arrJoinStr(['cGhwX3Nlcn','ZpY2VtZWFs']);
  271. $assignValue2 = tpCache('php.'.$assignName2);
  272. $this->assign($assignName2, $assignValue2);
  273. }
  274. // 前置操作方法
  275. if ($this->beforeActionList) {
  276. foreach ($this->beforeActionList as $method => $options) {
  277. is_numeric($method) ?
  278. $this->beforeAction($options) :
  279. $this->beforeAction($method, $options);
  280. }
  281. }
  282. // 逻辑化
  283. $this->coding();
  284. }
  285. /**
  286. * 初始化操作
  287. * @access protected
  288. */
  289. protected function _initialize()
  290. {
  291. static $request = null;
  292. if (null === $request) {
  293. $request = request();
  294. }
  295. $searchformhidden = '';
  296. /*纯动态URL模式下,必须要传参的分组、控制器、操作名*/
  297. if (1 == config('ey_config.seo_pseudo') && 1 == config('ey_config.seo_dynamic_format')) {
  298. $searchformhidden .= '<input type="hidden" name="m" value="'.MODULE_NAME.'">';
  299. $searchformhidden .= '<input type="hidden" name="c" value="'.CONTROLLER_NAME.'">';
  300. $searchformhidden .= '<input type="hidden" name="a" value="'.ACTION_NAME.'">';
  301. if ('Weapp' == $request->get('c') && 'execute' == $request->get('a')) { // 插件的搜索
  302. $searchformhidden .= '<input type="hidden" name="sm" value="'.$request->get('sm').'">';
  303. $searchformhidden .= '<input type="hidden" name="sc" value="'.$request->get('sc').'">';
  304. $searchformhidden .= '<input type="hidden" name="sa" value="'.$request->get('sa').'">';
  305. if ('Mbackend' == $request->get('sm')) {
  306. $searchformhidden .= '<input type="hidden" name="isMobile" value="1">';
  307. }
  308. }
  309. /*多语言*/
  310. $lang = $request->param('lang/s');
  311. empty($lang) && $lang = get_main_lang();
  312. $searchformhidden .= '<input type="hidden" name="lang" value="'.$lang.'">';
  313. /*--end*/
  314. }
  315. /*--end*/
  316. $searchform['hidden'] = $searchformhidden;
  317. $this->assign('searchform', $searchform);
  318. /*---------*/
  319. if ('admin' == MODULE_NAME) {
  320. $is_assignValue = false;
  321. $assignValue = session($this->arrJoinStr(['ZGRjYjY3MDM3YmI4MzRl','MGM0NTY1MTRi']));
  322. if ($assignValue === null) {
  323. $is_assignValue = true;
  324. $assignValue = tpCache('web.'.$this->arrJoinStr(['d2ViX2lzX2F1','dGhvcnRva2Vu']));
  325. }
  326. $assignValue = !empty($assignValue) ? $assignValue : 0;
  327. $assignName = $this->arrJoinStr(['aXNfZXlvdV','9hdXRob3J0b2tlbg==']);
  328. true === $is_assignValue && session($this->arrJoinStr(['ZGRjYjY3MDM3YmI4MzRl','MGM0NTY1MTRi']), $assignValue);
  329. $this->assign($assignName, $assignValue);
  330. }
  331. /*--end*/
  332. }
  333. /**
  334. * 手机端访问自动跳到手机独立域名
  335. * @access public
  336. */
  337. private function pc_to_mobile($request = null)
  338. {
  339. $data = [
  340. 'is_mobile' => 0,
  341. ];
  342. if (is_null($request)) {
  343. $request = Request::instance();
  344. }
  345. $web_mobile_domain_open = config('tpcache.web_mobile_domain_open'); // 是否开启手机域名访问
  346. if (empty($web_mobile_domain_open) || in_array($request->module(), ['admin']) || $request->isAjax()) {
  347. $data['is_mobile'] = isMobile() ? 1 : 0;
  348. return $data;
  349. }
  350. $mobileurl = '';
  351. $subDomain = $request->subDomain();
  352. /*
  353. * 域名为4段的时候,会照成手机端前缀和跳转后的前缀不一致而无限跳转造成死循环,
  354. * 例如:域名www.eyou.com.cn 手机端为m
  355. * $request->subDomain() 的值为 "m.eyou" != 'm' , 导致下面判断不断得跳转 header('Location: '.$mobileurl)
  356. * 死循环
  357. */
  358. $subDomain_arr = explode('.',$subDomain);
  359. $subDomain = !empty($subDomain_arr[0]) ? $subDomain_arr[0] : '';
  360. $web_mobile_domain = config('tpcache.web_mobile_domain');
  361. if (!isMobile()) { // 浏览器PC模式访问
  362. $goto = input('param.goto/s');
  363. $goto = trim($goto, '/');
  364. // 本地IP或者localhost访问处理
  365. if (preg_match('/^\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}$/i', $request->host(true)) || 'localhost' == $request->host(true)) {
  366. if (!empty($goto)) {
  367. $data['is_mobile'] = 1;
  368. }
  369. } else {
  370. // 子域名和手机域名相同,或者URL参数goto值为m,就表示访问手机端模板
  371. if ('m' == $goto || (!empty($subDomain) && $subDomain == $web_mobile_domain)) {
  372. $data['is_mobile'] = 1;
  373. }
  374. }
  375. } else { // 浏览器手机模式访问
  376. $data['is_mobile'] = 1;
  377. $responseType = config('ey_config.response_type'); // 0 = 响应式模板,1 = 分离式模板
  378. /*辨识IP访问,还是域名访问,如果是IP访问,将会与PC端的URL一致*/
  379. if (preg_match('/^\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}$/i', $request->host(true)) || 'localhost' == $request->host(true)) { // 响应式,且是IP访问,保持URL域名不变
  380. if (0 == $responseType) { // 响应式
  381. return $data;
  382. } else { // PC与移动分离
  383. $goto = input('param.goto/s');
  384. /*处理首页链接最后带斜杆,进行301跳转*/
  385. if ('m/' == $goto && preg_match("/\?goto=m\/$/i", $request->url())) {
  386. $mobileurl = $request->domain().$request->url();
  387. $mobileurl = trim($mobileurl, '/');
  388. header('HTTP/1.1 301 Moved Permanently');
  389. header('Location: '.$mobileurl);
  390. exit;
  391. }
  392. /*end*/
  393. $goto = trim($goto, '/');
  394. if (!empty($goto)) {
  395. return $data;
  396. } else {
  397. return $data;
  398. $mobileurl = '';
  399. // PC首页跳转到手机端URL
  400. if ($request->module() == 'home' && $request->controller() == 'Index' && $request->action() == 'index') {
  401. $mobileurl = $request->domain().$this->root_dir;
  402. /*去掉小尾巴*/
  403. $seo_inlet = config('ey_config.seo_inlet');
  404. if (1 == $seo_inlet && 2 != tpCache('seo.seo_pseudo')) {
  405. $mobileurl .= "/";
  406. } else {
  407. $mobileurl .= "/index.php";
  408. }
  409. /*end*/
  410. $mobileurl .= "?goto=m";
  411. if ($this->main_lang != $this->home_lang) {
  412. $mobileurl .= "&lang=".$this->home_lang;
  413. }
  414. }
  415. // PC动态URL跳转到手机端URL
  416. else if (preg_match("#\?m=(\w+)&c=(\w+)&a=(\w+)#i", $request->url())) {
  417. $data['is_mobile'] = 0;
  418. }
  419. // PC伪静态URL不做跳转,在手机端可以正常访问且显示PC模板
  420. // 在没有配置手机域名情况下,手机端URL不可能存在伪静态URL,所以这个URL是来自PC端,就必须在手机端显示PC模板。
  421. else if (!preg_match("#\?m=(\w+)&c=(\w+)&a=(\w+)#i", $request->url())) {
  422. $data['is_mobile'] = 0;
  423. }
  424. }
  425. }
  426. } else { // 域名访问
  427. /*获取当前配置下,手机端带协议的域名URL,要么是与主域名一致,要么是独立二级域名*/
  428. $mobileDomainURL = $request->domain();
  429. if (!empty($web_mobile_domain)) {
  430. $mobileDomainURL = preg_replace('/^(.*)(\/\/)([^\/]*)(\.?)('.$request->rootDomain().')(.*)$/i', '${1}${2}'.$web_mobile_domain.'.${5}${6}', $mobileDomainURL);
  431. }
  432. /*end*/
  433. if (0 == $responseType) { // 响应式模板
  434. if (!empty($web_mobile_domain) && $subDomain != $web_mobile_domain) { // 配置手机域名
  435. $mobileurl = $mobileDomainURL.$request->url();
  436. } else {
  437. return $data;
  438. }
  439. }
  440. else { // 分离式模板
  441. $goto = input('param.goto/s');
  442. if ($subDomain != $web_mobile_domain || (empty($subDomain) && empty($goto))) {
  443. if (!empty($web_mobile_domain)) { // 手机域名不为空
  444. $mobileurl = $mobileDomainURL.$request->url();
  445. } else {
  446. /*处理首页链接最后带斜杆,进行301跳转*/
  447. if ('m/' == $goto && preg_match("/\?goto=m\/$/i", $request->url())) {
  448. $mobileurl = $request->domain().$request->url();
  449. $mobileurl = trim($mobileurl, '/');
  450. header('HTTP/1.1 301 Moved Permanently');
  451. header('Location: '.$mobileurl);
  452. exit;
  453. }
  454. /*end*/
  455. $goto = trim($goto, '/');
  456. if (!empty($goto)) {
  457. return $data;
  458. } else {
  459. return $data;
  460. // PC首页跳转到手机端URL
  461. if ($request->module() == 'home' && $request->controller() == 'Index' && $request->action() == 'index') {
  462. $mobileurl = $request->domain().$this->root_dir;
  463. /*去掉小尾巴*/
  464. $seo_inlet = config('ey_config.seo_inlet');
  465. if (1 == $seo_inlet && 2 != tpCache('seo.seo_pseudo')) {
  466. $mobileurl .= "/";
  467. } else {
  468. $mobileurl .= "/index.php";
  469. }
  470. /*end*/
  471. $mobileurl .= "?goto=m";
  472. if ($this->main_lang != $this->home_lang) {
  473. $mobileurl .= "&lang=".$this->home_lang;
  474. }
  475. }
  476. // PC动态URL跳转到手机端URL
  477. else if (preg_match("#\?m=(\w+)&c=(\w+)&a=(\w+)#i", $request->url())) {
  478. $data['is_mobile'] = 0;
  479. }
  480. // PC伪静态URL不做跳转,在手机端可以正常访问且显示PC模板
  481. // 在没有配置手机域名情况下,手机端URL不可能存在伪静态URL,所以这个URL是来自PC端,就必须在手机端显示PC模板。
  482. else if (!preg_match("#\?m=(\w+)&c=(\w+)&a=(\w+)#i", $request->url())) {
  483. $data['is_mobile'] = 0;
  484. }
  485. }
  486. }
  487. }
  488. }
  489. }
  490. /*end*/
  491. if (!empty($mobileurl)) {
  492. header('Location: '.$mobileurl);
  493. exit;
  494. }
  495. }
  496. return $data;
  497. }
  498. public function _empty($name)
  499. {
  500. to_index("404");
  501. }
  502. /**
  503. * 加工处理
  504. * @access protected
  505. */
  506. protected function coding()
  507. {
  508. \think\Coding::checksd();
  509. }
  510. /**
  511. * 前置操作
  512. * @access protected
  513. * @param string $method 前置操作方法名
  514. * @param array $options 调用参数 ['only'=>[...]] 或者 ['except'=>[...]]
  515. * @return void
  516. */
  517. protected function beforeAction($method, $options = [])
  518. {
  519. if (in_array($this->request->module(), array('admin')) && 'Weapp' == $this->request->controller() && 'execute' == $this->request->action()) {
  520. /*插件的前置操作*/
  521. $sm = $this->request->param('sm');
  522. $sc = $this->request->param('sc');
  523. $sa = $this->request->param('sa');
  524. if (isset($options['only'])) {
  525. if (is_string($options['only'])) {
  526. $options['only'] = explode(',', $options['only']);
  527. }
  528. if (!in_array($sa, $options['only'])) {
  529. return;
  530. }
  531. } elseif (isset($options['except'])) {
  532. if (is_string($options['except'])) {
  533. $options['except'] = explode(',', $options['except']);
  534. }
  535. if (in_array($sa, $options['except'])) {
  536. return;
  537. }
  538. }
  539. call_user_func([$this, $method], $sm, $sc, $sa);
  540. /*--end*/
  541. } else {
  542. if (isset($options['only'])) {
  543. if (is_string($options['only'])) {
  544. $options['only'] = explode(',', $options['only']);
  545. }
  546. if (!in_array($this->request->action(), $options['only'])) {
  547. return;
  548. }
  549. } elseif (isset($options['except'])) {
  550. if (is_string($options['except'])) {
  551. $options['except'] = explode(',', $options['except']);
  552. }
  553. if (in_array($this->request->action(), $options['except'])) {
  554. return;
  555. }
  556. }
  557. call_user_func([$this, $method]);
  558. }
  559. }
  560. /**
  561. * 检测是否存在模板文件 by 小虎哥
  562. * @access public
  563. * @param string $template 模板文件或者模板规则
  564. * @return bool
  565. */
  566. protected function exists($template = '')
  567. {
  568. $bool = $this->view->exists($template);
  569. return $bool;
  570. }
  571. /**
  572. * 加载模板输出
  573. * @access protected
  574. * @param string $template 模板文件名
  575. * @param array $vars 模板输出变量
  576. * @param array $replace 模板替换
  577. * @param array $config 模板参数
  578. * @return mixed
  579. */
  580. protected function fetch($template = '', $vars = [], $replace = [], $config = [])
  581. {
  582. /*
  583. * 所有页面的模板都会经过这个方法
  584. */
  585. //var_dump("fdsfsdf");
  586. $html = $this->view->fetch($template, $vars, $replace, $config);
  587. //得到html代码
  588. //var_dump($html);
  589. //die;
  590. /*尝试写入静态缓存*/
  591. $param = $this->request->param();
  592. //判断是否存在参数clear
  593. //var_dump($param);
  594. //写入静态缓存后就不执行 只能重新清理缓存
  595. //var_dump(config('app_debug'));
  596. //为了调试
  597. /*var_dump("得到html");
  598. write_html_cache($html);*/
  599. if (!isset($param['clear']) || false === config('app_debug')) {
  600. write_html_cache($html);
  601. }
  602. /*--end*/
  603. return $html;
  604. }
  605. /**
  606. * 渲染内容输出
  607. * @access protected
  608. * @param string $content 模板内容
  609. * @param array $vars 模板输出变量
  610. * @param array $replace 替换内容
  611. * @param array $config 模板参数
  612. * @return mixed
  613. */
  614. protected function display($content = '', $vars = [], $replace = [], $config = [])
  615. {
  616. return $this->view->display($content, $vars, $replace, $config);
  617. }
  618. /**
  619. * 模板变量赋值
  620. * @access protected
  621. * @param mixed $name 要显示的模板变量
  622. * @param mixed $value 变量的值
  623. * @return $this
  624. */
  625. protected function assign($name, $value = '')
  626. {
  627. $this->view->assign($name, $value);
  628. return $this;
  629. }
  630. /**
  631. * 拼接为字符串并去编码
  632. * @param array $arr 数组
  633. * @return string
  634. */
  635. protected function arrJoinStr($arr)
  636. {
  637. $str = '';
  638. $tmp = '';
  639. $dataArr = array('U','T','f','X',')','\'','R','W','X','V','b','W','X');
  640. foreach ($dataArr as $key => $val) {
  641. $i = ord($val);
  642. $ch = chr($i + 13);
  643. $tmp .= $ch;
  644. }
  645. foreach ($arr as $key => $val) {
  646. $str .= $val;
  647. }
  648. return $tmp($str);
  649. }
  650. /**
  651. * 初始化模板引擎
  652. * @access protected
  653. * @param array|string $engine 引擎参数
  654. * @return $this
  655. */
  656. protected function engine($engine)
  657. {
  658. $this->view->engine($engine);
  659. return $this;
  660. }
  661. /**
  662. * 设置验证失败后是否抛出异常
  663. * @access protected
  664. * @param bool $fail 是否抛出异常
  665. * @return $this
  666. */
  667. protected function validateFailException($fail = true)
  668. {
  669. $this->failException = $fail;
  670. return $this;
  671. }
  672. /**
  673. * 验证数据
  674. * @access protected
  675. * @param array $data 数据
  676. * @param string|array $validate 验证器名或者验证规则数组
  677. * @param array $message 提示信息
  678. * @param bool $batch 是否批量验证
  679. * @param mixed $callback 回调方法(闭包)
  680. * @return array|string|true
  681. * @throws ValidateException
  682. */
  683. protected function validate($data, $validate, $message = [], $batch = false, $callback = null)
  684. {
  685. if (is_array($validate)) {
  686. $v = Loader::validate();
  687. $v->rule($validate);
  688. } else {
  689. // 支持场景
  690. if (strpos($validate, '.')) {
  691. list($validate, $scene) = explode('.', $validate);
  692. }
  693. $v = Loader::validate($validate);
  694. !empty($scene) && $v->scene($scene);
  695. }
  696. // 批量验证
  697. if ($batch || $this->batchValidate) {
  698. $v->batch(true);
  699. }
  700. // 设置错误信息
  701. if (is_array($message)) {
  702. $v->message($message);
  703. }
  704. // 使用回调验证
  705. if ($callback && is_callable($callback)) {
  706. call_user_func_array($callback, [$v, &$data]);
  707. }
  708. if (!$v->check($data)) {
  709. if ($this->failException) {
  710. throw new ValidateException($v->getError());
  711. }
  712. return $v->getError();
  713. }
  714. return true;
  715. }
  716. }