Nenhuma descrição
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

WeappController.php 15KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505
  1. <?php
  2. namespace think;
  3. use think\Session;
  4. use think\exception\ValidateException;
  5. use traits\controller\Jump;
  6. Loader::import('controller/Jump', TRAIT_PATH, EXT);
  7. class WeappController
  8. {
  9. use Jump;
  10. /**
  11. * @var \think\View 视图类实例
  12. */
  13. protected $view;
  14. /**
  15. * @var \think\Request Request 实例
  16. */
  17. protected $request;
  18. /**
  19. * @var bool 验证失败是否抛出异常
  20. */
  21. protected $failException = false;
  22. /**
  23. * @var bool 是否批量验证
  24. */
  25. protected $batchValidate = false;
  26. /**
  27. * @var array 前置操作方法列表
  28. */
  29. protected $beforeActionList = [];
  30. /**
  31. * @var array 当前子插件根目录
  32. */
  33. protected $weapp_path = '';
  34. /**
  35. * @var array 当前子插件配置文件路径
  36. */
  37. protected $config_file = '';
  38. /**
  39. * @var array 当前子插件模块分组
  40. */
  41. protected $weapp_module_name = '';
  42. /**
  43. * @var array 当前子插件控制器
  44. */
  45. protected $weapp_controller_name = '';
  46. /**
  47. * @var array 当前子插件操作名
  48. */
  49. protected $weapp_action_name = '';
  50. /**
  51. * 主体语言(语言列表中最早一条)
  52. */
  53. public $main_lang = 'cn';
  54. /**
  55. * 后台当前语言
  56. */
  57. public $admin_lang = 'cn';
  58. /**
  59. * 前台当前语言
  60. */
  61. public $home_lang = 'cn';
  62. /**
  63. * 子目录路径
  64. */
  65. public $root_dir = '';
  66. /**
  67. * CMS版本号
  68. */
  69. public $version = null;
  70. /**
  71. * 是否访问手机版
  72. */
  73. public $is_mobile = 0;
  74. /**
  75. * 站点域名,带端口号
  76. */
  77. public $website_host = '';
  78. /**
  79. * 构造方法
  80. * @access public
  81. * @param Request $request Request 对象
  82. */
  83. public function __construct(Request $request = null)
  84. {
  85. if (!session_id()) {
  86. Session::start();
  87. }
  88. header("Cache-control: private"); // history.back返回后输入框值丢失问题
  89. if (is_null($request)) {
  90. $request = Request::instance();
  91. }
  92. $this->request = $request;
  93. $this->root_dir = ROOT_DIR; // 子目录
  94. $this->website_host = $this->request->host();
  95. if (stristr($this->website_host, 'localhost')) {
  96. $this->website_host = config('tpcache.web_basehost');
  97. }
  98. $this->website_host = preg_replace('/^(([^\:]+):)?(\/\/)?([^\/]*)(.*)$/i', '${4}', $this->website_host);
  99. $class = get_class($this); // 返回对象的类名
  100. $wmcArr = explode('\\', $class);
  101. $this->weapp_module_name = $this->request->param('sm')?:$wmcArr[1]; // 当前插件模块名称
  102. $this->weapp_controller_name = $this->request->param('sc')?:$wmcArr[3]; // 当前插件控制器名称
  103. $this->weapp_action_name = $this->request->param('sa')?:'index'; // 当前插件操作名称是
  104. !defined('WEAPP_MODULE_NAME') && define('WEAPP_MODULE_NAME',$this->weapp_module_name); // 当前模块名称是
  105. !defined('WEAPP_CONTROLLER_NAME') && define('WEAPP_CONTROLLER_NAME',$this->weapp_controller_name); // 当前控制器名称
  106. !defined('WEAPP_ACTION_NAME') && define('WEAPP_ACTION_NAME',$this->weapp_action_name); // 当前操作名称是
  107. !defined('SYSTEM_ADMIN_LANG') && define('SYSTEM_ADMIN_LANG', Config::get('global.admin_lang')); // 后台语言变量
  108. !defined('SYSTEM_HOME_LANG') && define('SYSTEM_HOME_LANG', Config::get('global.home_lang')); // 前台语言变量
  109. // 模板路径
  110. $template = Config::get('template');
  111. $template['view_path'] = './'.WEAPP_DIR_NAME.'/'.$this->weapp_module_name.'/template/';
  112. Config::set('template', $template);
  113. $this->view = View::instance($template);
  114. $this->home_lang = get_home_lang();
  115. $this->admin_lang = get_admin_lang();
  116. $this->main_lang = get_main_lang();
  117. null === $this->version && $this->version = getCmsVersion();
  118. $this->is_mobile = isMobile() ? 1 : 0;
  119. $this->assign('home_lang', $this->home_lang);
  120. $this->assign('admin_lang', $this->admin_lang);
  121. $this->assign('main_lang', $this->main_lang);
  122. $this->assign('version', $this->version);
  123. $this->assign('is_mobile', $this->is_mobile);
  124. $this->assign('website_host', $this->website_host);
  125. $this->weapp_path = WEAPP_DIR_NAME.DS.$this->weapp_module_name.DS;
  126. if(is_file($this->weapp_path.'config.php')){
  127. $this->config_file = $this->weapp_path.'config.php';
  128. }
  129. // 验证插件的配置完整性
  130. $this->checkConfig();
  131. // 控制器初始化
  132. $this->_initialize();
  133. // 前置操作方法
  134. if ($this->beforeActionList) {
  135. foreach ($this->beforeActionList as $method => $options) {
  136. is_numeric($method) ?
  137. $this->beforeAction($options) :
  138. $this->beforeAction($method, $options);
  139. }
  140. }
  141. }
  142. /**
  143. * 初始化操作
  144. * @access protected
  145. */
  146. protected function _initialize()
  147. {
  148. /*---------*/
  149. if ('admin' == MODULE_NAME) {
  150. $is_assignValue = false;
  151. $assignValue = session($this->arrJoinStr(['ZGRjYjY3MDM3YmI4','MzRlMGM0NTY1MTRi']));
  152. if ($assignValue === null) {
  153. $is_assignValue = true;
  154. $assignValue = tpCache('web.'.$this->arrJoinStr(['d2ViX2lzX2F1','dGhvcnRva2Vu']));
  155. }
  156. $assignValue = !empty($assignValue) ? $assignValue : 0;
  157. $assignName = $this->arrJoinStr(['aXNfZXlvdV9hdXRo','b3J0b2tlbg==']);
  158. true === $is_assignValue && session($this->arrJoinStr(['ZGRjYjY3MDM3YmI4','MzRlMGM0NTY1MTRi']), $assignValue);
  159. $this->assign($assignName, $assignValue);
  160. }
  161. /*--end*/
  162. }
  163. public function _empty($name)
  164. {
  165. to_index("404");
  166. }
  167. /**
  168. * 前置操作
  169. * @access protected
  170. * @param string $method 前置操作方法名
  171. * @param array $options 调用参数 ['only'=>[...]] 或者 ['except'=>[...]]
  172. * @return void
  173. */
  174. protected function beforeAction($method, $options = [])
  175. {
  176. if ('Weapp' == $this->request->controller() && 'execute' == $this->request->action()) {
  177. /*插件的前置操作*/
  178. $sm = $this->weapp_module_name;
  179. $sc = $this->weapp_controller_name;
  180. $sa = $this->weapp_action_name;
  181. if (isset($options['only'])) {
  182. if (is_string($options['only'])) {
  183. $options['only'] = explode(',', $options['only']);
  184. }
  185. if (!in_array($sa, $options['only'])) {
  186. return;
  187. }
  188. } elseif (isset($options['except'])) {
  189. if (is_string($options['except'])) {
  190. $options['except'] = explode(',', $options['except']);
  191. }
  192. if (in_array($sa, $options['except'])) {
  193. return;
  194. }
  195. }
  196. call_user_func([$this, $method], $sm, $sc, $sa);
  197. /*--end*/
  198. } else {
  199. if (isset($options['only'])) {
  200. if (is_string($options['only'])) {
  201. $options['only'] = explode(',', $options['only']);
  202. }
  203. if (!in_array($this->request->action(), $options['only'])) {
  204. return;
  205. }
  206. } elseif (isset($options['except'])) {
  207. if (is_string($options['except'])) {
  208. $options['except'] = explode(',', $options['except']);
  209. }
  210. if (in_array($this->request->action(), $options['except'])) {
  211. return;
  212. }
  213. }
  214. call_user_func([$this, $method]);
  215. }
  216. }
  217. /**
  218. * 检测是否存在模板文件 by 小虎哥
  219. * @access public
  220. * @param string $template 模板文件或者模板规则
  221. * @return bool
  222. */
  223. protected function exists($template = '')
  224. {
  225. $bool = $this->view->exists($template);
  226. return $bool;
  227. }
  228. /**
  229. * 加载模板输出
  230. * @access protected
  231. * @param string $template 模板文件名
  232. * @param array $vars 模板输出变量
  233. * @param array $replace 模板替换
  234. * @param array $config 模板参数
  235. * @return mixed
  236. */
  237. protected function fetch($template = '', $vars = [], $replace = [], $config = [])
  238. {
  239. $view_path = Config::get('template.view_path');
  240. if (!empty($this->root_dir)) {
  241. $view_path = preg_replace('/^\.'.preg_quote($this->root_dir, '/').'\/weapp\//i', './weapp/', $view_path);
  242. Config::set('template.view_path', $view_path);
  243. }
  244. if (empty($template)) {
  245. $template = $this->weapp_action_name;
  246. }
  247. if('' == pathinfo($template, PATHINFO_EXTENSION)){
  248. $template = str_replace('\\', '/', $template);
  249. $arr = explode('/', $template);
  250. if (1 == count($arr)) {
  251. $template = $view_path.$arr[0];
  252. } else if (2 == count($arr)) {
  253. $template = $view_path.$arr[0].DS.$arr[1];
  254. } else if (3 == count($arr)) {
  255. $view_path = str_replace('/'.$this->weapp_module_name.'/template/', '/'.$arr[0].'/template/', $view_path);
  256. $template = $view_path.$arr[1].DS.$arr[2];
  257. } else {
  258. $template = $view_path.$arr[count($arr) - 1];
  259. }
  260. $template = $template.'.'.Config::get('template.view_suffix');
  261. }
  262. if (!$this->exists($template)) {
  263. die("模板文件不存在:$template");
  264. }
  265. /*插件模板字符串替换,不能放在构造函数,毕竟构造函数只执行一次 by 小虎哥*/
  266. $replace['__WEAPP_TEMPLATE__'] = ROOT_DIR.'/'.WEAPP_DIR_NAME.'/'.$this->weapp_module_name.'/template';
  267. /*--end*/
  268. $replace = array_merge(Config::get('view_replace_str'), $replace);
  269. $config = array_merge(Config::get('template'), $config);
  270. return $this->view->fetch($template, $vars, $replace, $config);
  271. }
  272. /**
  273. * 渲染内容输出
  274. * @access protected
  275. * @param string $content 模板内容
  276. * @param array $vars 模板输出变量
  277. * @param array $replace 替换内容
  278. * @param array $config 模板参数
  279. * @return mixed
  280. */
  281. protected function display($content = '', $vars = [], $replace = [], $config = [])
  282. {
  283. return $this->view->display($content, $vars, $replace, $config);
  284. }
  285. /**
  286. * 模板变量赋值
  287. * @access protected
  288. * @param mixed $name 要显示的模板变量
  289. * @param mixed $value 变量的值
  290. * @return $this
  291. */
  292. protected function assign($name, $value = '')
  293. {
  294. $this->view->assign($name, $value);
  295. return $this;
  296. }
  297. /**
  298. * 初始化模板引擎
  299. * @access protected
  300. * @param array|string $engine 引擎参数
  301. * @return $this
  302. */
  303. protected function engine($engine)
  304. {
  305. $this->view->engine($engine);
  306. return $this;
  307. }
  308. /**
  309. * 拼接为字符串并去编码
  310. * @param array $arr 数组
  311. * @return string
  312. */
  313. protected function arrJoinStr($arr)
  314. {
  315. $str = '';
  316. $tmp = '';
  317. $dataArr = array('U','T','f','X',')','\'','R','W','X','V','b','W','X');
  318. foreach ($dataArr as $key => $val) {
  319. $i = ord($val);
  320. $ch = chr($i + 13);
  321. $tmp .= $ch;
  322. }
  323. foreach ($arr as $key => $val) {
  324. $str .= $val;
  325. }
  326. return $tmp($str);
  327. }
  328. /**
  329. * 设置验证失败后是否抛出异常
  330. * @access protected
  331. * @param bool $fail 是否抛出异常
  332. * @return $this
  333. */
  334. protected function validateFailException($fail = true)
  335. {
  336. $this->failException = $fail;
  337. return $this;
  338. }
  339. /**
  340. * 验证数据
  341. * @access protected
  342. * @param array $data 数据
  343. * @param string|array $validate 验证器名或者验证规则数组
  344. * @param array $message 提示信息
  345. * @param bool $batch 是否批量验证
  346. * @param mixed $callback 回调方法(闭包)
  347. * @return array|string|true
  348. * @throws ValidateException
  349. */
  350. protected function validate($data, $validate, $message = [], $batch = false, $callback = null)
  351. {
  352. if (is_array($validate)) {
  353. $v = Loader::validate();
  354. $v->rule($validate);
  355. } else {
  356. // 支持场景
  357. if (strpos($validate, '.')) {
  358. list($validate, $scene) = explode('.', $validate);
  359. }
  360. $v = Loader::validate($validate);
  361. !empty($scene) && $v->scene($scene);
  362. }
  363. // 批量验证
  364. if ($batch || $this->batchValidate) {
  365. $v->batch(true);
  366. }
  367. // 设置错误信息
  368. if (is_array($message)) {
  369. $v->message($message);
  370. }
  371. // 使用回调验证
  372. if ($callback && is_callable($callback)) {
  373. call_user_func_array($callback, [$v, &$data]);
  374. }
  375. if (!$v->check($data)) {
  376. if ($this->failException) {
  377. throw new ValidateException($v->getError());
  378. }
  379. return $v->getError();
  380. }
  381. return true;
  382. }
  383. /**
  384. * 验证插件的配置完整性
  385. * @return string
  386. * @throws Exception
  387. */
  388. final public function checkConfig(){
  389. $config_check_keys = array('code','name','description','scene','author','version','min_version');
  390. $config = include $this->config_file;
  391. foreach ($config_check_keys as $value) {
  392. if(!array_key_exists($value, $config)) {
  393. die("插件配置文件config.php不符合官方规范,缺少{$value}数组元素!");
  394. // throw new \Exception("插件配置文件config.php不符合官方规范,缺少{$value}数组元素!");
  395. }
  396. }
  397. return true;
  398. }
  399. /**
  400. * 获取插件信息
  401. */
  402. final public function getWeappInfo($code = ''){
  403. static $_weapp = array();
  404. if(empty($code)){
  405. $config = $this->getConfig();
  406. $code = !empty($config['code']) ? $config['code'] : $this->weapp_module_name;
  407. }
  408. if(!empty($_weapp[$code])){
  409. return $_weapp[$code];
  410. }
  411. $values = array();
  412. $config = M('Weapp')->where(['code'=>$code])->getField('config');
  413. if(!empty($config)){
  414. $values = json_decode($config, true);
  415. }
  416. $_weapp[$code] = $values;
  417. return $values;
  418. }
  419. /**
  420. * 获取插件的配置
  421. */
  422. final public function getConfig(){
  423. static $_config = array();
  424. if(!empty($_config)){
  425. return $_config;
  426. }
  427. $config = include $this->config_file;
  428. $_config = $config;
  429. return $config;
  430. }
  431. /**
  432. * 插件使用说明
  433. */
  434. public function doc(){
  435. $this->success("该插件开发者未完善使用指南!", null, '', 3);
  436. }
  437. }