CasaOS/service/system.go

41 lines
1.5 KiB
Go
Raw Normal View History

2021-09-26 02:35:02 +00:00
package service
import (
2021-09-27 06:17:36 +00:00
"github.com/IceWhaleTech/CasaOS/pkg/config"
command2 "github.com/IceWhaleTech/CasaOS/pkg/utils/command"
"github.com/IceWhaleTech/CasaOS/pkg/utils/loger"
2021-09-26 02:35:02 +00:00
)
type SystemService interface {
UpSystemConfig(str string, widget string)
2021-09-26 02:35:02 +00:00
UpdateSystemVersion(version string)
GetSystemConfigDebug() []string
}
type systemService struct {
2021-09-27 06:17:36 +00:00
log loger.OLog
2021-09-26 02:35:02 +00:00
}
func (s *systemService) UpdateSystemVersion(version string) {
2021-09-27 06:17:36 +00:00
//command2.OnlyExec(config.AppInfo.ProjectPath + "/shell/tool.sh -r " + version)
//s.log.Error(config.AppInfo.ProjectPath + "/shell/tool.sh -r " + version)
s.log.Error(command2.ExecResultStrArray("source " + config.AppInfo.ProjectPath + "/shell/tools.sh ;update " + version))
//s.log.Error(command2.ExecResultStr(config.AppInfo.ProjectPath + "/shell/tool.sh -r " + version))
2021-09-26 02:35:02 +00:00
}
func (s *systemService) GetSystemConfigDebug() []string {
return command2.ExecResultStrArray("source " + config.AppInfo.ProjectPath + "/shell/helper.sh ;GetSysInfo")
}
func (s *systemService) UpSystemConfig(str string, widget string) {
if len(str) > 0 && str != config.SystemConfigInfo.ConfigStr {
config.Cfg.Section("system").Key("ConfigStr").SetValue(str)
config.SystemConfigInfo.ConfigStr = str
2021-09-26 02:35:02 +00:00
}
if len(widget) > 0 && widget != config.SystemConfigInfo.WidgetList {
config.Cfg.Section("system").Key("WidgetList").SetValue(widget)
config.SystemConfigInfo.WidgetList = widget
2021-09-26 02:35:02 +00:00
}
config.Cfg.SaveTo("conf/conf.ini")
}
2021-09-27 06:17:36 +00:00
func NewSystemService(log loger.OLog) SystemService {
return &systemService{log: log}
2021-09-26 02:35:02 +00:00
}