2019-12-08 03:59:58 -05:00
|
|
|
|
package model
|
|
|
|
|
|
|
|
|
|
import (
|
2020-12-09 06:05:40 -05:00
|
|
|
|
"os"
|
2021-04-07 09:11:59 -04:00
|
|
|
|
"strconv"
|
|
|
|
|
"strings"
|
2019-12-20 10:58:09 -05:00
|
|
|
|
|
2024-10-19 23:47:45 -04:00
|
|
|
|
"github.com/naiba/nezha/pkg/utils"
|
2019-12-08 03:59:58 -05:00
|
|
|
|
"github.com/spf13/viper"
|
2022-10-12 07:34:15 -04:00
|
|
|
|
"sigs.k8s.io/yaml"
|
2019-12-08 03:59:58 -05:00
|
|
|
|
)
|
|
|
|
|
|
2022-04-30 11:02:40 -04:00
|
|
|
|
var Languages = map[string]string{
|
|
|
|
|
"zh-CN": "简体中文",
|
2023-02-03 00:12:14 -05:00
|
|
|
|
"zh-TW": "繁體中文",
|
2022-04-30 11:02:40 -04:00
|
|
|
|
"en-US": "English",
|
|
|
|
|
"es-ES": "Español",
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var Themes = map[string]string{
|
2023-11-07 00:46:28 -05:00
|
|
|
|
"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)",
|
2022-04-30 11:02:40 -04:00
|
|
|
|
}
|
|
|
|
|
|
2021-03-02 10:08:40 -05:00
|
|
|
|
const (
|
2024-05-02 20:47:53 -04:00
|
|
|
|
ConfigTypeGitHub = "github"
|
|
|
|
|
ConfigTypeGitee = "gitee"
|
|
|
|
|
ConfigTypeGitlab = "gitlab"
|
|
|
|
|
ConfigTypeJihulab = "jihulab"
|
|
|
|
|
ConfigTypeGitea = "gitea"
|
|
|
|
|
ConfigTypeCloudflare = "cloudflare"
|
2024-07-13 00:51:59 -04:00
|
|
|
|
ConfigTypeOidc = "oidc"
|
2021-03-02 10:08:40 -05:00
|
|
|
|
)
|
|
|
|
|
|
2021-06-22 02:05:36 -04:00
|
|
|
|
const (
|
|
|
|
|
ConfigCoverAll = iota
|
|
|
|
|
ConfigCoverIgnoreAll
|
|
|
|
|
)
|
|
|
|
|
|
2019-12-08 03:59:58 -05:00
|
|
|
|
type Config struct {
|
2024-10-22 11:44:50 -04:00
|
|
|
|
Debug bool `mapstructure:"debug" json:"debug,omitempty"` // debug模式开关
|
2024-10-19 23:47:45 -04:00
|
|
|
|
|
2024-10-22 11:44:50 -04:00
|
|
|
|
Language string `mapstructure:"language" json:"language,omitempty"` // 系统语言,默认 zh-CN
|
|
|
|
|
SiteName string `mapstructure:"site_name" json:"site_name,omitempty"`
|
|
|
|
|
JWTSecretKey string `mapstructure:"jwt_secret_key" json:"jwt_secret_key,omitempty"`
|
|
|
|
|
AgentSecretKey string `mapstructure:"agent_secret_key" json:"agent_secret_key,omitempty"`
|
|
|
|
|
ListenPort uint `mapstructure:"listen_port" json:"listen_port,omitempty"`
|
|
|
|
|
InstallHost string `mapstructure:"install_host" json:"install_host,omitempty"`
|
|
|
|
|
TLS bool `mapstructure:"tls" json:"tls,omitempty"`
|
|
|
|
|
Location string `mapstructure:"location" json:"location,omitempty"` // 时区,默认为 Asia/Shanghai
|
2022-02-19 01:29:06 -05:00
|
|
|
|
|
2024-10-22 11:44:50 -04:00
|
|
|
|
EnablePlainIPInNotification bool `mapstructure:"enable_plain_ip_in_notification" json:"enable_plain_ip_in_notification,omitempty"` // 通知信息IP不打码
|
2022-04-15 11:23:51 -04:00
|
|
|
|
|
2022-04-14 15:13:53 -04:00
|
|
|
|
// IP变更提醒
|
2024-10-22 11:44:50 -04:00
|
|
|
|
EnableIPChangeNotification bool `mapstructure:"enable_ip_change_notification" json:"enable_ip_change_notification,omitempty"`
|
|
|
|
|
IPChangeNotificationTag string `mapstructure:"ip_change_notification_tag" json:"ip_change_notification_tag,omitempty"`
|
|
|
|
|
Cover uint8 `mapstructure:"cover" json:"cover,omitempty"` // 覆盖范围(0:提醒未被 IgnoredIPNotification 包含的所有服务器; 1:仅提醒被 IgnoredIPNotification 包含的服务器;)
|
|
|
|
|
IgnoredIPNotification string `mapstructure:"ignored_ip_notification" json:"ignored_ip_notification,omitempty"` // 特定服务器IP(多个服务器用逗号分隔)
|
|
|
|
|
|
|
|
|
|
IgnoredIPNotificationServerIDs map[uint64]bool `mapstructure:"ignored_ip_notification_server_i_ds" json:"ignored_ip_notification_server_i_ds,omitempty"` // [ServerID] -> bool(值为true代表当前ServerID在特定服务器列表内)
|
|
|
|
|
AvgPingCount int `mapstructure:"avg_ping_count" json:"avg_ping_count,omitempty"`
|
|
|
|
|
DNSServers string `mapstructure:"dns_servers" json:"dns_servers,omitempty"`
|
2024-10-18 10:06:01 -04:00
|
|
|
|
|
2024-10-19 23:47:45 -04:00
|
|
|
|
v *viper.Viper
|
2024-04-27 01:36:36 -04:00
|
|
|
|
}
|
|
|
|
|
|
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.v = viper.New()
|
|
|
|
|
c.v.SetConfigFile(path)
|
|
|
|
|
err := c.v.ReadInConfig()
|
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
|
|
|
|
}
|
|
|
|
|
|
2019-12-20 10:58:09 -05:00
|
|
|
|
err = c.v.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
|
|
|
|
}
|
|
|
|
|
|
2024-10-20 02:05:43 -04:00
|
|
|
|
if c.ListenPort == 0 {
|
|
|
|
|
c.ListenPort = 8008
|
|
|
|
|
}
|
2022-04-27 11:51:45 -04:00
|
|
|
|
if c.Language == "" {
|
|
|
|
|
c.Language = "zh-CN"
|
|
|
|
|
}
|
2022-04-14 09:06:42 -04:00
|
|
|
|
if c.EnableIPChangeNotification && c.IPChangeNotificationTag == "" {
|
|
|
|
|
c.IPChangeNotificationTag = "default"
|
|
|
|
|
}
|
2022-10-12 11:06:25 -04:00
|
|
|
|
if c.Location == "" {
|
|
|
|
|
c.Location = "Asia/Shanghai"
|
|
|
|
|
}
|
2024-02-12 01:16:04 -05:00
|
|
|
|
if c.AvgPingCount == 0 {
|
|
|
|
|
c.AvgPingCount = 2
|
|
|
|
|
}
|
2024-10-20 11:23:04 -04:00
|
|
|
|
if c.JWTSecretKey == "" {
|
|
|
|
|
c.JWTSecretKey, err = utils.GenerateRandomString(1024)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
if err = c.Save(); err != nil {
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if c.AgentSecretKey == "" {
|
|
|
|
|
c.AgentSecretKey, err = utils.GenerateRandomString(32)
|
2024-10-19 23:47:45 -04:00
|
|
|
|
if err != nil {
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
if err = c.Save(); err != nil {
|
|
|
|
|
return err
|
|
|
|
|
}
|
2024-07-13 00:51:59 -04:00
|
|
|
|
}
|
2020-12-09 06:05:40 -05:00
|
|
|
|
|
2021-04-07 09:11:59 -04: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
|
2021-04-07 09:11:59 -04:00
|
|
|
|
func (c *Config) updateIgnoredIPNotificationID() {
|
2021-06-22 02:05:36 -04:00
|
|
|
|
c.IgnoredIPNotificationServerIDs = make(map[uint64]bool)
|
2021-04-07 09:11:59 -04:00
|
|
|
|
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
|
2021-04-07 09:11:59 -04:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2022-04-11 10:51:02 -04:00
|
|
|
|
// Save 保存配置文件
|
2020-12-09 06:05:40 -05:00
|
|
|
|
func (c *Config) Save() error {
|
2021-04-07 09:11:59 -04:00
|
|
|
|
c.updateIgnoredIPNotificationID()
|
2020-12-09 06:05:40 -05:00
|
|
|
|
data, err := yaml.Marshal(c)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return err
|
|
|
|
|
}
|
2024-06-01 07:11:48 -04:00
|
|
|
|
return os.WriteFile(c.v.ConfigFileUsed(), data, 0600)
|
2020-12-09 06:05:40 -05:00
|
|
|
|
}
|