All checks were successful
Build Multi-Platform Binaries / build-frontend (push) Successful in 31s
Build Multi-Platform Binaries / build-binaries (amd64, linux, client, true) (push) Successful in 1m30s
Build Multi-Platform Binaries / build-binaries (amd64, darwin, server, false) (push) Successful in 1m39s
Build Multi-Platform Binaries / build-binaries (amd64, windows, client, true) (push) Successful in 1m19s
Build Multi-Platform Binaries / build-binaries (amd64, linux, server, true) (push) Successful in 1m43s
Build Multi-Platform Binaries / build-binaries (arm, 7, linux, client, true) (push) Successful in 1m18s
Build Multi-Platform Binaries / build-binaries (amd64, windows, server, true) (push) Successful in 1m38s
Build Multi-Platform Binaries / build-binaries (arm64, darwin, server, false) (push) Successful in 1m50s
Build Multi-Platform Binaries / build-binaries (arm, 7, linux, server, true) (push) Successful in 2m6s
Build Multi-Platform Binaries / build-binaries (arm64, linux, client, true) (push) Successful in 1m18s
Build Multi-Platform Binaries / build-binaries (arm64, linux, server, true) (push) Successful in 1m57s
Build Multi-Platform Binaries / build-binaries (arm64, windows, server, false) (push) Successful in 1m25s
- 从 App.vue 中移除 naive-ui 组件及其主题配置 - 从组件声明中移除 NIcon 和 NTag 组件引用 - 将 JSPluginConfig 从 ServerConfig 中分离 - 在 ServerSettings 中整合 PluginStore 配置 - 更新配置 DTO 结构以支持 PluginStore 配置 - 移除 JS 插件加载和签名验证相关代码 - 从 main.ts 中移除 naive-ui 的引入和使用 - 从 package.json 中移除 naive-ui 和相关自动导入插件依赖 - 在设置页面添加插件商店 URL 配置字段 - 更新 StoreHandler 中插件商店 URL 的获取方式 - 移除 Vite 配置中的自动导入和组件解析插件
132 lines
3.2 KiB
Go
132 lines
3.2 KiB
Go
package config
|
||
|
||
import (
|
||
"crypto/rand"
|
||
"encoding/hex"
|
||
"os"
|
||
|
||
"gopkg.in/yaml.v3"
|
||
)
|
||
|
||
// ServerConfig 服务端配置
|
||
type ServerConfig struct {
|
||
Server ServerSettings `yaml:"server"`
|
||
}
|
||
|
||
// PluginStoreSettings 插件仓库设置
|
||
type PluginStoreSettings struct {
|
||
URL string `yaml:"url"` // 插件仓库 URL,为空则使用默认值
|
||
}
|
||
|
||
// 默认插件仓库 URL
|
||
const DefaultPluginStoreURL = "https://git.92coco.cn/flik/GoTunnel-Plugins/raw/branch/main/store.json"
|
||
|
||
// GetPluginStoreURL 获取插件仓库 URL
|
||
func (s *PluginStoreSettings) GetPluginStoreURL() string {
|
||
if s.URL != "" {
|
||
return s.URL
|
||
}
|
||
return DefaultPluginStoreURL
|
||
}
|
||
|
||
// ServerSettings 服务端设置
|
||
type ServerSettings struct {
|
||
BindAddr string `yaml:"bind_addr"`
|
||
BindPort int `yaml:"bind_port"`
|
||
Token string `yaml:"token"`
|
||
HeartbeatSec int `yaml:"heartbeat_sec"`
|
||
HeartbeatTimeout int `yaml:"heartbeat_timeout"`
|
||
DBPath string `yaml:"db_path"`
|
||
TLSDisabled bool `yaml:"tls_disabled"`
|
||
Web WebSettings `yaml:"web"`
|
||
PluginStore PluginStoreSettings `yaml:"plugin_store"`
|
||
}
|
||
|
||
// WebSettings Web控制台设置
|
||
type WebSettings struct {
|
||
Enabled bool `yaml:"enabled"`
|
||
BindPort int `yaml:"bind_port"`
|
||
Username string `yaml:"username"`
|
||
Password string `yaml:"password"`
|
||
}
|
||
|
||
// LoadServerConfig 加载服务端配置
|
||
func LoadServerConfig(path string) (*ServerConfig, error) {
|
||
var cfg ServerConfig
|
||
|
||
// 尝试读取配置文件,不存在则使用默认配置
|
||
data, err := os.ReadFile(path)
|
||
if err == nil {
|
||
if err := yaml.Unmarshal(data, &cfg); err != nil {
|
||
return nil, err
|
||
}
|
||
}
|
||
|
||
// 设置默认值
|
||
setDefaults(&cfg)
|
||
|
||
return &cfg, nil
|
||
}
|
||
|
||
// setDefaults 设置默认值
|
||
func setDefaults(cfg *ServerConfig) {
|
||
if cfg.Server.BindAddr == "" {
|
||
cfg.Server.BindAddr = "0.0.0.0"
|
||
}
|
||
if cfg.Server.BindPort == 0 {
|
||
cfg.Server.BindPort = 7000
|
||
}
|
||
if cfg.Server.HeartbeatSec == 0 {
|
||
cfg.Server.HeartbeatSec = 30
|
||
}
|
||
if cfg.Server.HeartbeatTimeout == 0 {
|
||
cfg.Server.HeartbeatTimeout = 90
|
||
}
|
||
if cfg.Server.DBPath == "" {
|
||
cfg.Server.DBPath = "gotunnel.db"
|
||
}
|
||
|
||
// Web 默认启用
|
||
if cfg.Server.Web.BindPort == 0 {
|
||
cfg.Server.Web.BindPort = 7500
|
||
cfg.Server.Web.Enabled = true
|
||
}
|
||
|
||
// Token 未配置时自动生成 32 位
|
||
if cfg.Server.Token == "" {
|
||
cfg.Server.Token = generateToken(32)
|
||
}
|
||
}
|
||
|
||
// generateToken 生成随机 token
|
||
func generateToken(length int) string {
|
||
bytes := make([]byte, length/2)
|
||
n, err := rand.Read(bytes)
|
||
if err != nil || n != len(bytes) {
|
||
// 安全关键:随机数生成失败时 panic
|
||
panic("crypto/rand failed: unable to generate secure token")
|
||
}
|
||
return hex.EncodeToString(bytes)
|
||
}
|
||
|
||
// GenerateWebCredentials 生成 Web 控制台凭据
|
||
func GenerateWebCredentials(cfg *ServerConfig) bool {
|
||
if cfg.Server.Web.Username == "" {
|
||
cfg.Server.Web.Username = "admin"
|
||
}
|
||
if cfg.Server.Web.Password == "" {
|
||
cfg.Server.Web.Password = generateToken(16)
|
||
return true // 表示生成了新密码
|
||
}
|
||
return false
|
||
}
|
||
|
||
// SaveServerConfig 保存服务端配置
|
||
func SaveServerConfig(path string, cfg *ServerConfig) error {
|
||
data, err := yaml.Marshal(cfg)
|
||
if err != nil {
|
||
return err
|
||
}
|
||
return os.WriteFile(path, data, 0644)
|
||
}
|