1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- package system
- import (
- "github.com/flipped-aurora/gin-vue-admin/server/config"
- "github.com/flipped-aurora/gin-vue-admin/server/global"
- "github.com/flipped-aurora/gin-vue-admin/server/model/system"
- "github.com/flipped-aurora/gin-vue-admin/server/utils"
- "go.uber.org/zap"
- )
- //@author: [piexlmax](https://github.com/piexlmax)
- //@function: GetSystemConfig
- //@description: 读取配置文件
- //@return: conf config.Server, err error
- type SystemConfigService struct{}
- var SystemConfigServiceApp = new(SystemConfigService)
- func (systemConfigService *SystemConfigService) GetSystemConfig() (conf config.Server, err error) {
- return global.GVA_CONFIG, nil
- }
- // @description set system config,
- //@author: [piexlmax](https://github.com/piexlmax)
- //@function: SetSystemConfig
- //@description: 设置配置文件
- //@param: system model.System
- //@return: err error
- func (systemConfigService *SystemConfigService) SetSystemConfig(system system.System) (err error) {
- cs := utils.StructToMap(system.Config)
- for k, v := range cs {
- global.GVA_VP.Set(k, v)
- }
- err = global.GVA_VP.WriteConfig()
- return err
- }
- //@author: [SliverHorn](https://github.com/SliverHorn)
- //@function: GetServerInfo
- //@description: 获取服务器信息
- //@return: server *utils.Server, err error
- func (systemConfigService *SystemConfigService) GetServerInfo() (server *utils.Server, err error) {
- var s utils.Server
- s.Os = utils.InitOS()
- if s.Cpu, err = utils.InitCPU(); err != nil {
- global.GVA_LOG.Error("func utils.InitCPU() Failed", zap.String("err", err.Error()))
- return &s, err
- }
- if s.Ram, err = utils.InitRAM(); err != nil {
- global.GVA_LOG.Error("func utils.InitRAM() Failed", zap.String("err", err.Error()))
- return &s, err
- }
- if s.Disk, err = utils.InitDisk(); err != nil {
- global.GVA_LOG.Error("func utils.InitDisk() Failed", zap.String("err", err.Error()))
- return &s, err
- }
- return &s, nil
- }
|