wings/server/config_parser.go

40 lines
1.1 KiB
Go
Raw Permalink Normal View History

package server
import (
"runtime"
2021-01-10 01:22:39 +00:00
"github.com/gammazero/workerpool"
"github.com/pterodactyl/wings/internal/ufs"
)
// UpdateConfigurationFiles updates all the defined configuration files for
// a server automatically to ensure that they always use the specified values.
func (s *Server) UpdateConfigurationFiles() {
2020-08-01 04:31:53 +00:00
pool := workerpool.New(runtime.NumCPU())
s.Log().Debug("acquiring process configuration files...")
files := s.ProcessConfiguration().ConfigurationFiles
s.Log().Debug("acquired process configuration files")
for _, cf := range files {
f := cf
pool.Submit(func() {
file, err := s.Filesystem().UnixFS().Touch(f.FileName, ufs.O_RDWR|ufs.O_CREATE, 0o644)
if err != nil {
s.Log().WithField("file_name", f.FileName).WithField("error", err).Error("failed to open file for configuration")
return
}
defer file.Close()
if err := f.Parse(file); err != nil {
s.Log().WithField("error", err).Error("failed to parse and update server configuration file")
}
s.Log().WithField("file_name", f.FileName).Debug("finished processing server configuration file")
})
}
pool.StopWait()
}