mirror of
https://github.com/cedar2025/Xboard.git
synced 2025-01-23 11:08:13 -05:00
82 lines
3.0 KiB
PHP
82 lines
3.0 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Controllers\V1\Admin;
|
|
|
|
use App\Exceptions\ApiException;
|
|
use App\Http\Controllers\Controller;
|
|
use App\Services\ThemeService;
|
|
use Illuminate\Http\Request;
|
|
use Illuminate\Support\Facades\File;
|
|
|
|
class ThemeController extends Controller
|
|
{
|
|
private $themes;
|
|
private $path;
|
|
|
|
public function __construct()
|
|
{
|
|
$this->path = $path = public_path('theme/');
|
|
$this->themes = array_map(function ($item) use ($path) {
|
|
return str_replace($path, '', $item);
|
|
}, glob($path . '*'));
|
|
}
|
|
|
|
public function getThemes()
|
|
{
|
|
$themeConfigs = [];
|
|
foreach ($this->themes as $theme) {
|
|
$themeConfigFile = $this->path . "{$theme}/config.json";
|
|
if (!File::exists($themeConfigFile)) continue;
|
|
$themeConfig = json_decode(File::get($themeConfigFile), true);
|
|
if (!isset($themeConfig['configs']) || !is_array($themeConfig)) continue;
|
|
$themeConfigs[$theme] = $themeConfig;
|
|
if (admin_setting("theme_{$theme}")) continue;
|
|
$themeService = new ThemeService($theme);
|
|
$themeService->init();
|
|
}
|
|
$data = [
|
|
'themes' => $themeConfigs,
|
|
'active' => admin_setting('frontend_theme', 'Xboard')
|
|
];
|
|
return $this->success($data);
|
|
}
|
|
|
|
public function getThemeConfig(Request $request)
|
|
{
|
|
$payload = $request->validate([
|
|
'name' => 'required|in:' . join(',', $this->themes)
|
|
]);
|
|
return $this->success(admin_setting("theme_{$payload['name']}") ?? config("theme.{$payload['name']}"));
|
|
}
|
|
|
|
public function saveThemeConfig(Request $request)
|
|
{
|
|
$payload = $request->validate([
|
|
'name' => 'required|in:' . join(',', $this->themes),
|
|
'config' => 'required'
|
|
]);
|
|
$payload['config'] = json_decode(base64_decode($payload['config']), true);
|
|
if (!$payload['config'] || !is_array($payload['config'])) return $this->fail([422,'参数不正确']);
|
|
$themeConfigFile = public_path("theme/{$payload['name']}/config.json");
|
|
if (!File::exists($themeConfigFile)) return $this->fail([400202,'主题不存在']);
|
|
$themeConfig = json_decode(File::get($themeConfigFile), true);
|
|
if (!isset($themeConfig['configs']) || !is_array($themeConfig)) return $this->fail([422,'主题配置文件有误']);
|
|
$validateFields = array_column($themeConfig['configs'], 'field_name');
|
|
$config = [];
|
|
foreach ($validateFields as $validateField) {
|
|
$config[$validateField] = isset($payload['config'][$validateField]) ? $payload['config'][$validateField] : '';
|
|
}
|
|
|
|
File::ensureDirectoryExists(base_path() . '/config/theme/');
|
|
// $data = var_export($config, 1);
|
|
|
|
try {
|
|
admin_setting(["theme_{$payload['name']}" => $config]);
|
|
// sleep(2);
|
|
} catch (\Exception $e) {
|
|
return $this->fail([200002, '保存失败']);
|
|
}
|
|
return $this->success($config);
|
|
}
|
|
}
|