Nessuna descrizione
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.

Vertify.php 3.1KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  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\admin\controller;
  14. use think\Config;
  15. class Vertify extends Base
  16. {
  17. public function _initialize() {
  18. parent::_initialize();
  19. }
  20. /**
  21. * 验证码管理
  22. */
  23. public function index()
  24. {
  25. // 获取插件数据
  26. $row = tpSetting('system.system_vertify');
  27. if (IS_POST) {
  28. // 获取post参数
  29. $inc_type = input('inc_type/s', 'admin_login');
  30. $param = $this->request->only('captcha');
  31. $config = json_decode($row, true);
  32. if ('default' == $inc_type) {
  33. if (isset($config[$inc_type])) {
  34. $config['captcha'][$inc_type] = array_merge($config['captcha'][$inc_type], $param['captcha'][$inc_type]);
  35. } else {
  36. $config['captcha'][$inc_type] = $param['captcha'][$inc_type];
  37. }
  38. } else {
  39. $config['captcha'][$inc_type]['is_on'] = $param['captcha'][$inc_type]['is_on'];
  40. if (isset($config['captcha'][$inc_type]['config'])) {
  41. $config['captcha'][$inc_type]['config'] = array_merge($config['captcha'][$inc_type]['config'], $param['captcha'][$inc_type]['config']);
  42. } else {
  43. $config['captcha'][$inc_type]['config'] = $param['captcha'][$inc_type]['config'];
  44. }
  45. }
  46. // 转json赋值
  47. $row = json_encode($config);
  48. $r = tpSetting('system',['system_vertify'=>$row]);
  49. if ($r !== false) {
  50. adminLog('编辑验证码配置'); // 写入操作日志
  51. $this->success("操作成功!", url('Vertify/index', ['inc_type'=>$inc_type]));
  52. }
  53. $this->error("操作失败!");
  54. }
  55. $inc_type = input('param.inc_type/s', 'admin_login');
  56. $inc_type = preg_replace('/([^\w\-]+)/i', '', $inc_type);
  57. // 获取配置JSON信息转数组
  58. $config = json_decode($row, true);
  59. $baseConfig = Config::get("captcha");
  60. if ('default' == $inc_type) {
  61. $row = isset($config['captcha']) ? $config['captcha'] : $baseConfig;
  62. } else {
  63. if (isset($config['captcha'][$inc_type])) {
  64. $row = $config['captcha'][$inc_type];
  65. } else {
  66. $baseConfig[$inc_type]['config'] = !empty($config['captcha']['default']) ? $config['captcha']['default'] : $baseConfig['default'];
  67. $row = $baseConfig[$inc_type];
  68. }
  69. }
  70. $this->assign('row', $row);
  71. $this->assign('inc_type', $inc_type);
  72. return $this->fetch($inc_type);
  73. }
  74. }