2020-12-02 20:31:42 +08:00
|
|
|
package configloaders
|
2020-11-22 15:34:13 +08:00
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"encoding/json"
|
|
|
|
|
"github.com/TeaOSLab/EdgeAdmin/internal/rpc"
|
2023-06-30 18:08:30 +08:00
|
|
|
"github.com/TeaOSLab/EdgeCommon/pkg/langs"
|
|
|
|
|
"github.com/TeaOSLab/EdgeCommon/pkg/langs/codes"
|
2022-03-26 10:23:03 +08:00
|
|
|
"github.com/TeaOSLab/EdgeCommon/pkg/nodeconfigs"
|
2020-11-22 15:34:13 +08:00
|
|
|
"github.com/TeaOSLab/EdgeCommon/pkg/rpc/pb"
|
2020-12-02 20:31:42 +08:00
|
|
|
"github.com/TeaOSLab/EdgeCommon/pkg/systemconfigs"
|
2020-11-22 15:34:13 +08:00
|
|
|
"github.com/iwind/TeaGo/logs"
|
|
|
|
|
"reflect"
|
2022-03-26 10:23:03 +08:00
|
|
|
"time"
|
2020-11-22 15:34:13 +08:00
|
|
|
)
|
|
|
|
|
|
2020-12-16 15:49:15 +08:00
|
|
|
var sharedAdminUIConfig *systemconfigs.AdminUIConfig = nil
|
2020-11-22 15:34:13 +08:00
|
|
|
|
2020-12-16 15:49:15 +08:00
|
|
|
func LoadAdminUIConfig() (*systemconfigs.AdminUIConfig, error) {
|
2020-11-22 15:34:13 +08:00
|
|
|
locker.Lock()
|
|
|
|
|
defer locker.Unlock()
|
|
|
|
|
|
2020-12-16 15:49:15 +08:00
|
|
|
config, err := loadAdminUIConfig()
|
2020-11-22 15:34:13 +08:00
|
|
|
if err != nil {
|
|
|
|
|
return nil, err
|
|
|
|
|
}
|
|
|
|
|
|
2020-12-14 21:24:21 +08:00
|
|
|
v := reflect.Indirect(reflect.ValueOf(config)).Interface().(systemconfigs.AdminUIConfig)
|
2020-11-22 15:34:13 +08:00
|
|
|
return &v, nil
|
|
|
|
|
}
|
|
|
|
|
|
2022-08-07 14:56:20 +08:00
|
|
|
func ReloadAdminUIConfig() error {
|
|
|
|
|
locker.Lock()
|
|
|
|
|
defer locker.Unlock()
|
|
|
|
|
|
|
|
|
|
sharedAdminUIConfig = nil
|
|
|
|
|
_, err := loadAdminUIConfig()
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
|
2020-12-16 15:49:15 +08:00
|
|
|
func UpdateAdminUIConfig(uiConfig *systemconfigs.AdminUIConfig) error {
|
2020-11-22 15:34:13 +08:00
|
|
|
locker.Lock()
|
|
|
|
|
defer locker.Unlock()
|
|
|
|
|
|
|
|
|
|
var rpcClient, err = rpc.SharedRPC()
|
|
|
|
|
if err != nil {
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
valueJSON, err := json.Marshal(uiConfig)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
_, err = rpcClient.SysSettingRPC().UpdateSysSetting(rpcClient.Context(0), &pb.UpdateSysSettingRequest{
|
2022-01-09 10:43:37 +08:00
|
|
|
Code: systemconfigs.SettingCodeAdminUIConfig,
|
2020-11-22 15:34:13 +08:00
|
|
|
ValueJSON: valueJSON,
|
|
|
|
|
})
|
|
|
|
|
if err != nil {
|
|
|
|
|
return err
|
|
|
|
|
}
|
2020-12-16 15:49:15 +08:00
|
|
|
sharedAdminUIConfig = uiConfig
|
2020-11-22 15:34:13 +08:00
|
|
|
|
2022-03-26 10:23:03 +08:00
|
|
|
// timezone
|
|
|
|
|
updateTimeZone(uiConfig)
|
|
|
|
|
|
2020-11-22 15:34:13 +08:00
|
|
|
return nil
|
|
|
|
|
}
|
|
|
|
|
|
2022-01-09 10:43:37 +08:00
|
|
|
// ShowFinance 是否显示财务信息
|
2021-01-13 17:50:03 +08:00
|
|
|
func ShowFinance() bool {
|
|
|
|
|
config, _ := LoadAdminUIConfig()
|
|
|
|
|
if config != nil && !config.ShowFinance {
|
|
|
|
|
return false
|
|
|
|
|
}
|
|
|
|
|
return true
|
|
|
|
|
}
|
|
|
|
|
|
2020-12-16 15:49:15 +08:00
|
|
|
func loadAdminUIConfig() (*systemconfigs.AdminUIConfig, error) {
|
|
|
|
|
if sharedAdminUIConfig != nil {
|
|
|
|
|
return sharedAdminUIConfig, nil
|
2020-11-22 15:34:13 +08:00
|
|
|
}
|
|
|
|
|
var rpcClient, err = rpc.SharedRPC()
|
|
|
|
|
if err != nil {
|
|
|
|
|
return nil, err
|
|
|
|
|
}
|
|
|
|
|
resp, err := rpcClient.SysSettingRPC().ReadSysSetting(rpcClient.Context(0), &pb.ReadSysSettingRequest{
|
2022-01-09 10:43:37 +08:00
|
|
|
Code: systemconfigs.SettingCodeAdminUIConfig,
|
2020-11-22 15:34:13 +08:00
|
|
|
})
|
|
|
|
|
if err != nil {
|
|
|
|
|
return nil, err
|
|
|
|
|
}
|
|
|
|
|
if len(resp.ValueJSON) == 0 {
|
2020-12-16 15:49:15 +08:00
|
|
|
sharedAdminUIConfig = defaultAdminUIConfig()
|
|
|
|
|
return sharedAdminUIConfig, nil
|
2020-11-22 15:34:13 +08:00
|
|
|
}
|
|
|
|
|
|
2022-03-26 10:23:03 +08:00
|
|
|
var config = &systemconfigs.AdminUIConfig{}
|
2024-04-29 15:07:09 +08:00
|
|
|
config.DNSResolver.Type = nodeconfigs.DNSResolverTypeDefault // 默认值
|
2020-11-22 15:34:13 +08:00
|
|
|
err = json.Unmarshal(resp.ValueJSON, config)
|
|
|
|
|
if err != nil {
|
|
|
|
|
logs.Println("[UI_MANAGER]" + err.Error())
|
2020-12-16 15:49:15 +08:00
|
|
|
sharedAdminUIConfig = defaultAdminUIConfig()
|
|
|
|
|
return sharedAdminUIConfig, nil
|
2020-11-22 15:34:13 +08:00
|
|
|
}
|
2022-03-26 10:23:03 +08:00
|
|
|
|
|
|
|
|
// timezone
|
|
|
|
|
updateTimeZone(config)
|
|
|
|
|
|
2020-12-16 15:49:15 +08:00
|
|
|
sharedAdminUIConfig = config
|
|
|
|
|
return sharedAdminUIConfig, nil
|
2020-11-22 15:34:13 +08:00
|
|
|
}
|
|
|
|
|
|
2020-12-16 15:49:15 +08:00
|
|
|
func defaultAdminUIConfig() *systemconfigs.AdminUIConfig {
|
2024-04-29 15:07:09 +08:00
|
|
|
var config = &systemconfigs.AdminUIConfig{
|
2023-06-30 18:08:30 +08:00
|
|
|
ProductName: langs.DefaultMessage(codes.AdminUI_DefaultProductName),
|
|
|
|
|
AdminSystemName: langs.DefaultMessage(codes.AdminUI_DefaultSystemName),
|
2020-11-22 15:34:13 +08:00
|
|
|
ShowOpenSourceInfo: true,
|
|
|
|
|
ShowVersion: true,
|
2021-01-13 17:50:03 +08:00
|
|
|
ShowFinance: true,
|
2022-02-24 20:52:47 +08:00
|
|
|
DefaultPageSize: 10,
|
2022-03-26 10:23:03 +08:00
|
|
|
TimeZone: nodeconfigs.DefaultTimeZoneLocation,
|
|
|
|
|
}
|
2024-04-29 15:07:09 +08:00
|
|
|
config.DNSResolver.Type = nodeconfigs.DNSResolverTypeDefault
|
|
|
|
|
return config
|
2022-03-26 10:23:03 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 修改时区
|
|
|
|
|
func updateTimeZone(config *systemconfigs.AdminUIConfig) {
|
|
|
|
|
if len(config.TimeZone) > 0 {
|
|
|
|
|
location, err := time.LoadLocation(config.TimeZone)
|
|
|
|
|
if err == nil && time.Local != location {
|
|
|
|
|
time.Local = location
|
|
|
|
|
}
|
2020-11-22 15:34:13 +08:00
|
|
|
}
|
|
|
|
|
}
|