Geen omschrijving
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.

ModuleInitBehavior.php 2.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. <?php
  2. namespace app\api\behavior;
  3. use think\Config;
  4. /**
  5. * 系统行为扩展:
  6. */
  7. class ModuleInitBehavior {
  8. protected static $actionName;
  9. protected static $controllerName;
  10. protected static $moduleName;
  11. protected static $method;
  12. /**
  13. * 构造方法
  14. * @param Request $request Request对象
  15. * @access public
  16. */
  17. public function __construct()
  18. {
  19. }
  20. // 行为扩展的执行入口必须是run
  21. public function run(&$params){
  22. self::$actionName = request()->action();
  23. self::$controllerName = request()->controller();
  24. self::$moduleName = request()->module();
  25. self::$method = request()->method();
  26. $this->_initialize();
  27. }
  28. private function _initialize() {
  29. $this->vertifyCode();
  30. }
  31. /**
  32. * 验证码
  33. * @param array $params 传入参数
  34. * @access public
  35. */
  36. private function vertifyCode()
  37. {
  38. /*只有相应的控制器和操作名才执行,以便提高性能*/
  39. $ctlActArr = array(
  40. 'api@Ajax@vertify',
  41. 'api@Diyajax@*',
  42. );
  43. $ctlActStr = self::$moduleName.'@'.self::$controllerName.'@'.self::$actionName;
  44. $ctlActStr2 = self::$moduleName.'@'.self::$controllerName.'@*';
  45. if (in_array($ctlActStr, $ctlActArr) || in_array($ctlActStr2, $ctlActArr)) {
  46. $row = tpSetting('system.system_vertify');
  47. // 获取验证码配置信息
  48. $row = json_decode($row, true);
  49. $baseConfig = Config::get("captcha");
  50. if (!empty($row)) {
  51. foreach ($row['captcha'] as $key => $val) {
  52. if ('default' == $key) {
  53. $baseConfig[$key] = array_merge($baseConfig[$key], $val);
  54. } else {
  55. $baseConfig[$key]['is_on'] = $val['is_on'];
  56. $baseConfig[$key]['config'] = array_merge($baseConfig['default'], $val['config']);
  57. }
  58. }
  59. }
  60. Config::set('captcha', $baseConfig);
  61. }
  62. }
  63. }