Нема описа
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.

ActionBeginBehavior.php 6.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179
  1. <?php
  2. namespace app\admin\behavior;
  3. use think\Db;
  4. /**
  5. * 系统行为扩展:新增/更新/删除之后的后置操作
  6. */
  7. load_trait('controller/Jump');
  8. class ActionBeginBehavior {
  9. use \traits\controller\Jump;
  10. protected static $actionName;
  11. protected static $controllerName;
  12. protected static $moduleName;
  13. protected static $method;
  14. /**
  15. * 构造方法
  16. * @param Request $request Request对象
  17. * @access public
  18. */
  19. public function __construct()
  20. {
  21. }
  22. // 行为扩展的执行入口必须是run
  23. public function run(&$params){
  24. self::$actionName = request()->action();
  25. self::$controllerName = request()->controller();
  26. self::$moduleName = request()->module();
  27. self::$method = request()->method();
  28. $this->_initialize();
  29. }
  30. private function _initialize() {
  31. $this->security_verify();
  32. if ('POST' == self::$method) {
  33. $this->clearWeapp();
  34. $this->instyes();
  35. } else {
  36. $this->unotice();
  37. $this->verifyfile();
  38. }
  39. $this->language_access();
  40. }
  41. /**
  42. * 多语言功能操作权限
  43. * @return [type] [description]
  44. */
  45. private function language_access()
  46. {
  47. $controllerArr = ['Weapp','Filemanager','Sitemap','Member','Seo','Channeltype','Tools'];
  48. $ctlActArr = ['Admin@index','Admin@add','Admin@del','System@water','System@thumb','System@api_conf'];
  49. if (in_array(self::$controllerName, $controllerArr) || in_array(self::$controllerName.'@'.self::$actionName, $ctlActArr)) {
  50. $main_lang = get_main_lang();
  51. $admin_lang = get_admin_lang();
  52. if (is_language() && $main_lang != $admin_lang) {
  53. $lang_title = model('Language')->where('mark',$main_lang)->value('title');
  54. $this->error('当前语言没有此功能,请切换到【'.$lang_title.'】语言');
  55. }
  56. }
  57. }
  58. private function security_verify()
  59. {
  60. $ctl_act = self::$controllerName.'@'.self::$actionName;
  61. if (in_array(self::$controllerName, ['Filemanager', 'Weapp']) || in_array($ctl_act, ['Arctype@ajax_newtpl','Archives@ajax_newtpl'])) {
  62. $security = tpSetting('security');
  63. /*---------强制必须开启密保问题认证 start----------*/
  64. if (in_array(self::$controllerName, ['Filemanager']) || in_array($ctl_act, ['Arctype@ajax_newtpl','Archives@ajax_newtpl'])) {
  65. if (empty($security['security_ask_open'])) {
  66. $this->error("<span style='display:none;'>__html__</span>需要开启密保问题设置", url('Security/index'), '', 3);
  67. }
  68. }
  69. /*---------强制必须开启密保问题认证 end----------*/
  70. $nosubmit = input('param.nosubmit/d');
  71. if ('POST' == self::$method && empty($nosubmit)) {
  72. if (empty($security['security_ask_open']) || !security_verify_func($ctl_act)) {
  73. return true;
  74. }
  75. $admin_id = session('?admin_id') ? (int)session('admin_id') : 0;
  76. $admin_info = Db::name('admin')->field('admin_id,last_ip')->where(['admin_id'=>$admin_id])->find();
  77. // 当前管理员密保问题验证过的IP地址
  78. $security_answerverify_ip = !empty($security['security_answerverify_ip']) ? $security['security_answerverify_ip'] : '-1';
  79. // 同IP不验证
  80. if ($admin_info['last_ip'] == $security_answerverify_ip) {
  81. return true;
  82. }
  83. $this->error("<span style='display:none;'>__html__</span>出于安全考虑<br/>请勿非法越过密保答案验证", null, '', 3);
  84. }
  85. }
  86. }
  87. private function verifyfile()
  88. {
  89. $tmp1 = 'cGhwLnBocF9zZXJ2aW'.'NlaW5mbw==';
  90. $tmp1 = base64_decode($tmp1);
  91. $data = tpCache($tmp1);
  92. $data = mchStrCode($data, 'DECODE');
  93. $data = json_decode($data, true);
  94. if (empty($data['pid']) || 2 > $data['pid']) return true;
  95. $file = "./data/conf/{$data['code']}.txt";
  96. $tmp2 = 'cGhwX3NlcnZpY2VtZWFs';
  97. $tmp2 = base64_decode($tmp2);
  98. if (!file_exists($file)) {
  99. /*多语言*/
  100. if (is_language()) {
  101. $langRow = \think\Db::name('language')->order('id asc')->select();
  102. foreach ($langRow as $key => $val) {
  103. tpCache('php', [$tmp2=>1], $val['mark']);
  104. }
  105. } else { // 单语言
  106. tpCache('php', [$tmp2=>1]);
  107. }
  108. /*--end*/
  109. } else {
  110. /*多语言*/
  111. if (is_language()) {
  112. $langRow = \think\Db::name('language')->order('id asc')->select();
  113. foreach ($langRow as $key => $val) {
  114. tpCache('php', [$tmp2=>$data['pid']], $val['mark']);
  115. }
  116. } else { // 单语言
  117. tpCache('php', [$tmp2=>$data['pid']]);
  118. }
  119. /*--end*/
  120. }
  121. }
  122. private function unotice(){
  123. $str = 'VXNlcnNOb3RpY2U=';
  124. if (self::$controllerName == base64_decode($str)) {
  125. $str = 'd2ViLndlYl9pc19hdXRob3J0b2tlbg==';
  126. $value = tpCache(base64_decode($str));
  127. if (-1 == $value) {
  128. $str = '6K+l5Yqf6IO95LuF6ZmQ5LqO5ZWG5Lia5o6I5p2D5Z+f5ZCN77yB';
  129. $this->error(base64_decode($str));
  130. }
  131. }
  132. }
  133. /**
  134. * 插件每次post提交都清除插件相关缓存
  135. * @access private
  136. */
  137. private function clearWeapp()
  138. {
  139. /*只有相应的控制器和操作名才执行,以便提高性能*/
  140. $ctlActArr = array(
  141. 'Weapp@*',
  142. );
  143. $ctlActStr = self::$controllerName.'@*';
  144. if (in_array($ctlActStr, $ctlActArr)) {
  145. \think\Cache::clear('hooks');
  146. }
  147. /*--end*/
  148. }
  149. /**
  150. * @access private
  151. */
  152. private function instyes()
  153. {
  154. $ca = md5(self::$actionName.'@'.self::$controllerName);
  155. if ('0e3e00da04fcf78cd9fd7dc763d956fc' == $ca) {
  156. $s = '5a6J'.'6KOF'.'5oiQ5'.'Yqf';
  157. if (1605110400 < getTime()) {
  158. sleep(5);
  159. $this->success(base64_decode($s));
  160. }
  161. }
  162. }
  163. }