心理咨询网
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

ConfigController.php 8.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231
  1. <?php
  2. /**
  3. * @copyright (C)2016-2099 Hnaoyun Inc.
  4. * @author XingMeng
  5. * @email hnxsh@foxmail.com
  6. * @date 2018年01月03日
  7. * 应用配置控制器
  8. */
  9. namespace app\admin\controller\system;
  10. use core\basic\Controller;
  11. use app\admin\model\system\ConfigModel;
  12. use core\basic\Config;
  13. class ConfigController extends Controller
  14. {
  15. private $model;
  16. public function __construct()
  17. {
  18. $this->model = new ConfigModel();
  19. }
  20. // 应用配置列表
  21. public function index()
  22. {
  23. if (! ! $action = get('action')) {
  24. switch ($action) {
  25. case 'sendemail':
  26. $rs = sendmail($this->config(), get('to'), '【' . CMSNAME . '】测试邮件', '欢迎您使用' . CMSNAME . '网站开发管理系统!');
  27. if ($rs === true) {
  28. alert_back('测试邮件发送成功!');
  29. } else {
  30. error('发送失败:' . $rs);
  31. }
  32. break;
  33. }
  34. }
  35. // 修改参数配置
  36. if ($_POST) {
  37. unset($_POST['upload']); // 去除上传组件
  38. if (isset($_POST['sn'])) {
  39. $_POST['licensecode'] = base64_encode(post('sn') . '/' . post('sn_user')) . substr(post('sn'), 1, 1);
  40. }
  41. foreach ($_POST as $key => $value) {
  42. if (! preg_match('/^[\w\-]+$/', $key)) {
  43. continue;
  44. }
  45. $config = array(
  46. 'debug',
  47. // 'sn',
  48. // 'sn_user',
  49. 'pagenum',
  50. 'tpl_html_cache',
  51. 'tpl_html_cache_time',
  52. 'session_in_sitepath'
  53. );
  54. if (in_array($key, $config)) {
  55. if ($key == 'tpl_html_cache_time' && ! $value) {
  56. $value = 900;
  57. } else {
  58. $value = post($key);
  59. }
  60. $this->modConfig($key, $value);
  61. } else {
  62. $this->modDbConfig($key);
  63. }
  64. }
  65. $this->log('修改参数配置成功!');
  66. path_delete(RUN_PATH . '/config'); // 清理缓存的配置文件
  67. switch (post('submit')) {
  68. case 'email':
  69. success('修改成功!', url('/admin/Config/index' . get_tab('t2'), false));
  70. break;
  71. case 'baidu':
  72. success('修改成功!', url('/admin/Config/index' . get_tab('t3'), false));
  73. break;
  74. case 'api':
  75. success('修改成功!', url('/admin/Config/index' . get_tab('t4'), false));
  76. break;
  77. case 'watermark':
  78. success('修改成功!', url('/admin/Config/index' . get_tab('t5'), false));
  79. break;
  80. case 'security':
  81. success('修改成功!', url('/admin/Config/index' . get_tab('t6'), false));
  82. break;
  83. case 'urlrule':
  84. success('修改成功!', url('/admin/Config/index' . get_tab('t7'), false));
  85. break;
  86. case 'pagetitle':
  87. success('修改成功!', url('/admin/Config/index' . get_tab('t8'), false));
  88. break;
  89. case 'member':
  90. success('修改成功!', url('/admin/Config/index' . get_tab('t9'), false));
  91. break;
  92. case 'upgrade':
  93. success('修改成功!', url('/admin/Upgrade/index' . get_tab('t2'), false));
  94. break;
  95. default:
  96. success('修改成功!', url('/admin/Config/index', false));
  97. }
  98. }
  99. $configs = $this->model->getList();
  100. $configs['debug']['value'] = $this->config('debug');
  101. if (! $configs['sn']['value']) {
  102. $configs['sn']['value'] = $this->config('sn');
  103. $configs['sn_user']['value'] = $this->config('sn_user');
  104. }
  105. $configs['session_in_sitepath']['value'] = $this->config('session_in_sitepath');
  106. $configs['pagenum']['value'] = $this->config('pagenum');
  107. $configs['url_type']['value'] = $this->config('url_type');
  108. $configs['tpl_html_cache']['value'] = $this->config('tpl_html_cache');
  109. $configs['tpl_html_cache_time']['value'] = $this->config('tpl_html_cache_time');
  110. $this->assign('configs', $configs);
  111. $this->assign('groups', model('admin.member.MemberGroup')->getSelect());
  112. $this->display('system/config.html');
  113. }
  114. // 修改配置文件
  115. private function modConfig($key, $value)
  116. {
  117. $value = str_replace(' ', '', $value); // 去除空格
  118. $value = str_replace(',', ',', $value); // 转换可能输入的中文逗号
  119. if (! preg_match('/^[\w\s\,\-]+$/', $value)) {
  120. return;
  121. }
  122. $config = file_get_contents(CONF_PATH . '/config.php');
  123. if (preg_match("'$key'", $config)) {
  124. if (preg_match('/^[0-9]+$/', $value)) {
  125. $config = preg_replace('/(\'' . $key . '\'([\s]+)?=>([\s]+)?)[\w\'\"\s,]+,/', '${1}' . $value . ',', $config);
  126. } else {
  127. $config = preg_replace('/(\'' . $key . '\'([\s]+)?=>([\s]+)?)[\w\'\"\s,]+,/', '${1}\'' . $value . '\',', $config);
  128. }
  129. } else {
  130. $config = preg_replace('/(return array\()/', "$1\r\n\r\n\t'$key' => '$value',", $config); // 自动新增配置
  131. }
  132. return file_put_contents(CONF_PATH . '/config.php', $config);
  133. }
  134. // 修改数据库配置
  135. private function modDbConfig($key)
  136. {
  137. $value = post($key);
  138. // 如果开启伪静态时自动拷贝文件
  139. if ($key == 'url_rule_type' && $value == 2) {
  140. $soft = get_server_soft();
  141. if ($soft == 'iis') {
  142. if (! file_exists(ROOT_PATH . '/web.config')) {
  143. copy(ROOT_PATH . '/rewrite/web.config', ROOT_PATH . '/web.config');
  144. }
  145. } elseif ($soft == 'apache') {
  146. if (! file_exists(ROOT_PATH . '/web.config')) {
  147. copy(ROOT_PATH . '/rewrite/.htaccess', ROOT_PATH . '/.htaccess');
  148. }
  149. }
  150. }
  151. // 模板目录修改
  152. if (($key == 'tpl_html_dir') && $value) {
  153. // 不允许特殊字符
  154. if (! preg_match('/^\w+$/', $value)) {
  155. return;
  156. }
  157. $value = basename($value);
  158. $htmldir = $this->config('tpl_html_dir');
  159. $tpl_path = ROOT_PATH . current($this->config('tpl_dir')) . '/' . model('admin.content.ContentSort')->getTheme();
  160. if (! $htmldir || ! file_exists($tpl_path . '/' . $htmldir)) {
  161. if (! check_dir($tpl_path . '/' . $value, true)) {
  162. return;
  163. } // 原来没有目录时只创建目录,创建失败时直接不修改
  164. } else {
  165. if ($value != $htmldir) {
  166. if (file_exists($tpl_path . '/' . $value)) {
  167. if (dir_copy($tpl_path . '/' . $htmldir, $tpl_path . '/' . $value)) {
  168. path_delete($tpl_path . '/' . $htmldir, true); // 删除原来的
  169. } else {
  170. return; // 修改失败
  171. }
  172. } else {
  173. if (! rename($tpl_path . '/' . $htmldir, $tpl_path . '/' . $value)) {
  174. return; // 修改失败
  175. }
  176. }
  177. }
  178. }
  179. }
  180. if ($key == 'home_upload_ext') {
  181. // 不允许特殊扩展
  182. if (preg_match('/(php|jsp|asp|exe|sh|cmd|vb|vbs|phtml)/i', $value)) {
  183. return;
  184. }
  185. }
  186. // 数据分割处理
  187. $hander = array(
  188. 'content_keyword_replace',
  189. 'ip_deny',
  190. 'ip_allow'
  191. );
  192. if (in_array($key, $hander) && $value) {
  193. $value = str_replace("\r\n", ",", $value); // 替换回车
  194. $value = str_replace(",", ",", $value); // 替换中文逗号分割符
  195. }
  196. if ($this->model->checkConfig("name='$key'")) {
  197. $this->model->modValue($key, $value);
  198. } elseif ($key != 'submit' && $key != 'formcheck') {
  199. // 自动新增配置项
  200. $data = array(
  201. 'name' => $key,
  202. 'value' => $value,
  203. 'type' => 2,
  204. 'sorting' => 255,
  205. 'description' => ''
  206. );
  207. return $this->model->addConfig($data);
  208. }
  209. }
  210. }