nezha/model/config.go

210 lines
5.3 KiB
Go
Raw Normal View History

2019-12-08 03:59:58 -05:00
package model
import (
"errors"
2020-12-09 06:05:40 -05:00
"os"
"strconv"
"strings"
2019-12-20 10:58:09 -05:00
"github.com/knadh/koanf/parsers/yaml"
"github.com/knadh/koanf/providers/env"
"github.com/knadh/koanf/providers/file"
"github.com/knadh/koanf/v2"
2019-12-08 03:59:58 -05:00
)
var Languages = map[string]string{
"zh-CN": "简体中文",
2023-02-03 00:12:14 -05:00
"zh-TW": "繁體中文",
"en-US": "English",
"es-ES": "Español",
}
var Themes = map[string]string{
"default": "Default",
"daynight": "JackieSung DayNight",
"mdui": "Neko Mdui",
"hotaru": "Hotaru",
"angel-kanade": "AngelKanade",
2024-06-16 06:04:27 -04:00
"server-status": "ServerStatus",
2024-10-18 23:59:31 -04:00
"custom": "Custom(local)",
2022-06-02 21:45:11 -04:00
}
var DashboardThemes = map[string]string{
"default": "Default",
"custom": "Custom(local)",
}
const (
ConfigTypeGitHub = "github"
ConfigTypeGitee = "gitee"
ConfigTypeGitlab = "gitlab"
ConfigTypeJihulab = "jihulab"
ConfigTypeGitea = "gitea"
ConfigTypeCloudflare = "cloudflare"
ConfigTypeOidc = "oidc"
)
2021-06-22 02:05:36 -04:00
const (
ConfigCoverAll = iota
ConfigCoverIgnoreAll
)
2022-04-11 10:51:02 -04:00
// Config 站点配置
2019-12-08 03:59:58 -05:00
type Config struct {
2022-04-27 11:51:45 -04:00
Debug bool // debug模式开关
Language string // 系统语言,默认 zh-CN
Site struct {
2024-08-13 12:24:17 -04:00
Brand string // 站点名称
CookieName string // 浏览器 Cookie 名称
Theme string
DashboardTheme string
CustomCode string
CustomCodeDashboard string
ViewPassword string // 前台查看密码
2019-12-08 03:59:58 -05:00
}
Oauth2 struct {
Type string
Admin string // 管理员用户名列表
AdminGroups string // 管理员用户组列表
ClientID string
ClientSecret string
Endpoint string
OidcDisplayName string // for OIDC Display Name
OidcIssuer string // for OIDC Issuer
OidcLogoutURL string // for OIDC Logout URL
OidcRegisterURL string // for OIDC Register URL
OidcLoginClaim string // for OIDC Claim
OidcGroupClaim string // for OIDC Group Claim
OidcScopes string // for OIDC Scopes
OidcAutoCreate bool // for OIDC Auto Create
OidcAutoLogin bool // for OIDC Auto Login
2019-12-08 03:59:58 -05:00
}
2022-02-19 01:29:06 -05:00
HTTPPort uint
GRPCPort uint
GRPCHost string
ProxyGRPCPort uint
TLS bool
2024-02-27 08:05:39 -05:00
EnablePlainIPInNotification bool // 通知信息IP不打码
DisableSwitchTemplateInFrontend bool // 前台禁用切换模板功能
// IP变更提醒
EnableIPChangeNotification bool
IPChangeNotificationTag string
Cover uint8 // 覆盖范围0:提醒未被 IgnoredIPNotification 包含的所有服务器; 1:仅提醒被 IgnoredIPNotification 包含的服务器;
IgnoredIPNotification string // 特定服务器IP多个服务器用逗号分隔
2019-12-20 10:58:09 -05:00
2022-10-12 11:06:25 -04:00
Location string // 时区,默认为 Asia/Shanghai
2022-04-11 10:51:02 -04:00
IgnoredIPNotificationServerIDs map[uint64]bool // [ServerID] -> bool(值为true代表当前ServerID在特定服务器列表内
MaxTCPPingValue int32
AvgPingCount int
DNSServers string
k *koanf.Koanf
filePath string
}
2022-04-11 10:51:02 -04:00
// Read 读取配置文件并应用
2019-12-20 10:58:09 -05:00
func (c *Config) Read(path string) error {
c.k = koanf.New(".")
c.filePath = path
// 先读取环境变量,然后读取配置文件;后者可以覆盖前者,因为哪吒支持在线修改配置
err := c.k.Load(env.Provider("NZ_", ".", func(s string) string {
return strings.Replace(strings.ToLower(strings.TrimPrefix(s, "NZ_")), "_", ".", -1)
}), nil)
2019-12-08 03:59:58 -05:00
if err != nil {
2019-12-20 10:58:09 -05:00
return err
2019-12-08 03:59:58 -05:00
}
if _, err := os.Stat(path); err == nil {
err = c.k.Load(file.Provider(path), yaml.Parser())
if err != nil {
return err
}
}
err = c.k.Unmarshal("", c)
2019-12-08 03:59:58 -05:00
if err != nil {
2019-12-20 10:58:09 -05:00
return err
2019-12-08 03:59:58 -05:00
}
if c.Oauth2.Type == "" || c.Oauth2.Admin == "" || c.Oauth2.ClientID == "" || c.Oauth2.ClientSecret == "" {
return errors.New("missing oauth2 config")
}
if c.Site.Brand == "" {
c.Site.Brand = "NeZha"
}
if c.Site.CookieName == "" {
c.Site.CookieName = "nezha-dashboard"
}
2020-12-09 06:05:40 -05:00
if c.Site.Theme == "" {
c.Site.Theme = "default"
}
2022-06-02 21:45:11 -04:00
if c.Site.DashboardTheme == "" {
c.Site.DashboardTheme = "default"
}
2022-04-27 11:51:45 -04:00
if c.Language == "" {
c.Language = "zh-CN"
}
if c.HTTPPort == 0 {
c.HTTPPort = 80
}
2022-04-12 01:16:33 -04:00
if c.GRPCPort == 0 {
c.GRPCPort = 5555
}
if c.EnableIPChangeNotification && c.IPChangeNotificationTag == "" {
c.IPChangeNotificationTag = "default"
}
2022-10-12 11:06:25 -04:00
if c.Location == "" {
c.Location = "Asia/Shanghai"
}
if c.MaxTCPPingValue == 0 {
c.MaxTCPPingValue = 1000
}
if c.AvgPingCount == 0 {
c.AvgPingCount = 2
}
if c.Oauth2.OidcScopes == "" {
c.Oauth2.OidcScopes = "openid,profile,email"
}
if c.Oauth2.OidcLoginClaim == "" {
c.Oauth2.OidcLoginClaim = "sub"
}
if c.Oauth2.OidcDisplayName == "" {
c.Oauth2.OidcDisplayName = "OIDC"
}
if c.Oauth2.OidcGroupClaim == "" {
c.Oauth2.OidcGroupClaim = "groups"
}
2020-12-09 06:05:40 -05:00
c.updateIgnoredIPNotificationID()
2019-12-20 10:58:09 -05:00
return nil
2019-12-08 03:59:58 -05:00
}
2020-12-09 06:05:40 -05:00
2022-04-11 10:51:02 -04:00
// updateIgnoredIPNotificationID 更新用于判断服务器ID是否属于特定服务器的map
func (c *Config) updateIgnoredIPNotificationID() {
2021-06-22 02:05:36 -04:00
c.IgnoredIPNotificationServerIDs = make(map[uint64]bool)
splitedIDs := strings.Split(c.IgnoredIPNotification, ",")
for i := 0; i < len(splitedIDs); i++ {
id, _ := strconv.ParseUint(splitedIDs[i], 10, 64)
if id > 0 {
2021-06-22 02:05:36 -04:00
c.IgnoredIPNotificationServerIDs[id] = true
}
}
}
2022-04-11 10:51:02 -04:00
// Save 保存配置文件
2020-12-09 06:05:40 -05:00
func (c *Config) Save() error {
c.updateIgnoredIPNotificationID()
data, err := c.k.Marshal(yaml.Parser())
2020-12-09 06:05:40 -05:00
if err != nil {
return err
}
return os.WriteFile(c.filePath, data, 0600)
2020-12-09 06:05:40 -05:00
}