wings/server/config_parser.go

34 lines
889 B
Go
Raw Normal View History

package server
import (
2019-12-01 05:46:54 +00:00
"github.com/pterodactyl/wings/parser"
"go.uber.org/zap"
"sync"
)
// Parent function that will update all of the defined configuration files for a server
// automatically to ensure that they always use the specified values.
func (s *Server) UpdateConfigurationFiles() {
wg := new(sync.WaitGroup)
for _, v := range s.processConfiguration.ConfigurationFiles {
wg.Add(1)
2019-12-01 05:46:54 +00:00
go func(f parser.ConfigurationFile, server *Server) {
defer wg.Done()
2019-12-01 05:46:54 +00:00
p, err := s.Filesystem.SafePath(f.FileName)
if err != nil {
zap.S().Errorw("failed to generate safe path for configuration file", zap.String("server", server.Uuid), zap.Error(err))
return
}
if err := f.Parse(p, false); err != nil {
zap.S().Errorw("failed to parse and update server configuration file", zap.String("server", server.Uuid), zap.Error(err))
}
2019-12-01 05:46:54 +00:00
}(v, s)
}
wg.Wait()
}