| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- package config
- import (
- "encoding/json"
- "os"
- )
- var IsInit bool
- type Config struct {
- LogLevel string `json:"logLevel"` // 日志级别
- Domain string `json:"domain"`
- Domains []string `json:"domains"` //多域名设置,把所有收信域名都填进去
- WebDomain string `json:"webDomain"`
- DkimPrivateKeyPath string `json:"dkimPrivateKeyPath"`
- SSLType string `json:"sslType"` // 0表示自动生成证书,1表示用户上传证书
- SSLPrivateKeyPath string `json:"SSLPrivateKeyPath"`
- SSLPublicKeyPath string `json:"SSLPublicKeyPath"`
- DbDSN string `json:"dbDSN"`
- DbType string `json:"dbType"`
- HttpsEnabled int `json:"httpsEnabled"` //后台页面是否启用https,0默认(启用),1启用,2不启用
- SpamFilterLevel int `json:"spamFilterLevel"` //垃圾邮件过滤级别,0不过滤、1 spf dkim 校验均失败时过滤,2 spf校验不通过时过滤
- HttpPort int `json:"httpPort"` //http服务端口设置,默认80
- HttpsPort int `json:"httpsPort"` //https服务端口,默认443
- WeChatPushAppId string `json:"weChatPushAppId"`
- WeChatPushSecret string `json:"weChatPushSecret"`
- WeChatPushTemplateId string `json:"weChatPushTemplateId"`
- WeChatPushUserId string `json:"weChatPushUserId"`
- TgBotToken string `json:"tgBotToken"`
- TgChatId string `json:"tgChatId"`
- IsInit bool `json:"isInit"`
- WebPushUrl string `json:"webPushUrl"`
- WebPushToken string `json:"webPushToken"`
- Tables map[string]string `json:"-"`
- TablesInitData map[string]string `json:"-"`
- setupPort int // 初始化阶段端口
- }
- func (c *Config) GetSetupPort() int {
- return c.setupPort
- }
- func (c *Config) SetSetupPort(setupPort int) {
- c.setupPort = setupPort
- }
- const DBTypeMySQL = "mysql"
- const DBTypeSQLite = "sqlite"
- const SSLTypeAuto = "0" //自动生成证书
- const SSLTypeUser = "1" //用户上传证书
- var DBTypes []string = []string{DBTypeMySQL, DBTypeSQLite}
- var Instance *Config = &Config{}
- func Init() {
- var cfgData []byte
- var err error
- args := os.Args
- if len(args) >= 2 && args[len(args)-1] == "dev" {
- cfgData, err = os.ReadFile("./config/config.dev.json")
- if err != nil {
- return
- }
- } else {
- cfgData, err = os.ReadFile("./config/config.json")
- if err != nil {
- return
- }
- }
- err = json.Unmarshal(cfgData, &Instance)
- if err != nil {
- return
- }
- if len(Instance.Domains) == 0 && Instance.Domain != "" {
- Instance.Domains = []string{Instance.Domain}
- }
- if Instance.Domain != "" && Instance.IsInit {
- IsInit = true
- }
- }
|