修改网站 ico 处理

This commit is contained in:
Anyon 2022-01-07 14:37:09 +08:00
parent 30dd80b7dc
commit 8d9ecc779c

View File

@ -60,27 +60,34 @@ class Config extends Controller
$this->title = '修改系统参数'; $this->title = '修改系统参数';
$this->fetch(); $this->fetch();
} else { } else {
// 修改网站后台入口路径 $post = $this->request->post();
if ($xpath = $this->request->post('xpath')) { // 修改网站后台入口路径,配置运行环境变量
if (!preg_match('/^[a-zA-Z_][a-zA-Z0-9_]*$/', $xpath)) { if (!empty($post['xpath'])) {
if (!preg_match('/^[a-zA-Z_][a-zA-Z0-9_]*$/', $post['xpath'])) {
$this->error('后台入口名称需要是由英文字母开头!'); $this->error('后台入口名称需要是由英文字母开头!');
} }
if ($xpath !== 'admin' && file_exists($this->app->getBasePath() . $xpath)) { if ($post['xpath'] !== 'admin' && file_exists($this->app->getBasePath() . $post['xpath'])) {
$this->error("后台入口名称{$xpath}已经存在应用!"); $this->error("后台入口名称{$post['xpath']}已经存在应用!");
} }
SystemService::instance()->setRuntime(null, [$xpath => 'admin']); SystemService::instance()->setRuntime(null, [$post['xpath'] => 'admin']);
} }
// 修改网站 ICON 图标文件 // 修改网站 ICON 图标文件,替换 public/favicon.ico 文件
if (($icon = $this->request->post('site_icon')) && preg_match('#^https?://#', $icon)) { if (preg_match('#^https?://#', $icon = $post['site_icon'] ?? '')) try {
if (($info = LocalStorage::down($icon)) && !empty($info['file'])) try { if (preg_match('#/upload/(\w{2}/\w{30}.\w+)$#', $icon, $vars)) {
$info = LocalStorage::instance()->info($vars[1]);
}
if (empty($info) || empty($info['file'])) {
$info = LocalStorage::down($icon);
}
if (!empty($info) && !empty($info['file'])) {
$favicon = new FaviconExtend($info['file']); $favicon = new FaviconExtend($info['file']);
$favicon->saveIco($this->app->getRootPath() . 'public/favicon.ico'); $favicon->saveIco($this->app->getRootPath() . 'public/favicon.ico');
} catch (\Exception $exception) {
trace_file($exception);
} }
} catch (\Exception $exception) {
trace_file($exception);
} }
// 数据数据到系统配置表 // 数据数据到系统配置表
foreach ($this->request->post() as $name => $value) sysconf($name, $value); foreach ($post as $k => $v) sysconf($k, $v);
sysoplog('系统配置管理', "修改系统参数成功"); sysoplog('系统配置管理', "修改系统参数成功");
$this->success('修改系统参数成功!', 'javascript:location.reload()'); $this->success('修改系统参数成功!', 'javascript:location.reload()');
} }
@ -119,4 +126,4 @@ class Config extends Controller
$this->success('修改文件存储成功!'); $this->success('修改文件存储成功!');
} }
} }
} }