with '#' will be ignored, and an empty message aborts the commit. Author: Ethan Alicea <64653625+Tech-Gamer@users.noreply.github.com> On branch develop Your branch is up to date with 'origin/develop'. Changes to be committed: modified: .github/workflows/push.yaml modified: .github/workflows/release.yaml modified: CHANGELOG.md modified: Dockerfile modified: Makefile modified: README.md modified: cmd/configure.go modified: cmd/diagnostics.go modified: cmd/root.go modified: config/config.go modified: environment/allocations.go modified: environment/docker.go modified: environment/docker/api.go modified: environment/docker/container.go modified: environment/docker/environment.go modified: environment/docker/power.go modified: environment/docker/stats.go modified: environment/environment.go modified: environment/settings.go modified: events/events.go modified: go.mod modified: internal/cron/activity_cron.go modified: internal/cron/cron.go modified: internal/cron/sftp_cron.go modified: internal/database/database.go modified: internal/progress/progress.go modified: internal/progress/progress_test.go modified: loggers/cli/cli.go new file: oryxBuildBinary modified: parser/parser.go modified: remote/http.go modified: remote/servers.go modified: remote/types.go modified: router/downloader/downloader.go modified: router/middleware.go modified: router/middleware/middleware.go modified: router/middleware/request_error.go modified: router/router.go modified: router/router_download.go modified: router/router_server.go modified: router/router_server_backup.go modified: router/router_server_files.go modified: router/router_server_transfer.go modified: router/router_server_ws.go modified: router/router_system.go modified: router/router_transfer.go modified: router/tokens/parser.go modified: router/websocket/listeners.go modified: router/websocket/websocket.go modified: server/activity.go modified: server/backup.go modified: server/backup/backup.go modified: server/backup/backup_local.go modified: server/backup/backup_s3.go modified: server/configuration.go modified: server/console.go modified: server/crash.go modified: server/events.go modified: server/filesystem/archive.go modified: server/filesystem/filesystem.go modified: server/filesystem/filesystem_test.go modified: server/install.go modified: server/installer/installer.go modified: server/listeners.go modified: server/manager.go modified: server/mounts.go modified: server/power.go modified: server/power_test.go modified: server/resources.go modified: server/server.go modified: server/transfer/archive.go modified: server/transfer/source.go modified: server/transfer/transfer.go modified: server/update.go modified: sftp/event.go modified: sftp/handler.go modified: sftp/server.go modified: wings.go
94 lines
2.8 KiB
Go
94 lines
2.8 KiB
Go
package server
|
|
|
|
import (
|
|
"sync"
|
|
|
|
"github.com/Tech-Gamer/nwy-wings/environment"
|
|
)
|
|
|
|
type EggConfiguration struct {
|
|
// The internal UUID of the Egg on the Panel.
|
|
ID string `json:"id"`
|
|
|
|
// Maintains a list of files that are blacklisted for opening/editing/downloading
|
|
// or basically any type of access on the server by any user. This is NOT the same
|
|
// as a per-user denylist, this is defined at the Egg level.
|
|
FileDenylist []string `json:"file_denylist"`
|
|
}
|
|
|
|
type ConfigurationMeta struct {
|
|
Name string `json:"name"`
|
|
Description string `json:"description"`
|
|
}
|
|
|
|
type Configuration struct {
|
|
mu sync.RWMutex
|
|
|
|
// The unique identifier for the server that should be used when referencing
|
|
// it against the Panel API (and internally). This will be used when naming
|
|
// docker containers as well as in log output.
|
|
Uuid string `json:"uuid"`
|
|
|
|
Meta ConfigurationMeta `json:"meta"`
|
|
|
|
// Whether or not the server is in a suspended state. Suspended servers cannot
|
|
// be started or modified except in certain scenarios by an admin user.
|
|
Suspended bool `json:"suspended"`
|
|
|
|
// The command that should be used when booting up the server instance.
|
|
Invocation string `json:"invocation"`
|
|
|
|
// By default this is false, however if selected within the Panel while installing or re-installing a
|
|
// server, specific installation scripts will be skipped for the server process.
|
|
SkipEggScripts bool `json:"skip_egg_scripts"`
|
|
|
|
// An array of environment variables that should be passed along to the running
|
|
// server process.
|
|
EnvVars environment.Variables `json:"environment"`
|
|
|
|
// Labels is a map of container labels that should be applied to the running server process.
|
|
Labels map[string]string `json:"labels"`
|
|
|
|
Allocations environment.Allocations `json:"allocations"`
|
|
Build environment.Limits `json:"build"`
|
|
CrashDetectionEnabled bool `json:"crash_detection_enabled"`
|
|
Mounts []Mount `json:"mounts"`
|
|
Egg EggConfiguration `json:"egg,omitempty"`
|
|
|
|
Container struct {
|
|
// Defines the Docker image that will be used for this server
|
|
Image string `json:"image,omitempty"`
|
|
} `json:"container,omitempty"`
|
|
}
|
|
|
|
func (s *Server) Config() *Configuration {
|
|
s.cfg.mu.RLock()
|
|
defer s.cfg.mu.RUnlock()
|
|
return &s.cfg
|
|
}
|
|
|
|
// DiskSpace returns the amount of disk space available to a server in bytes.
|
|
func (s *Server) DiskSpace() int64 {
|
|
s.cfg.mu.RLock()
|
|
defer s.cfg.mu.RUnlock()
|
|
return s.cfg.Build.DiskSpace * 1024.0 * 1024.0
|
|
}
|
|
|
|
func (s *Server) MemoryLimit() int64 {
|
|
s.cfg.mu.RLock()
|
|
defer s.cfg.mu.RUnlock()
|
|
return s.cfg.Build.MemoryLimit
|
|
}
|
|
|
|
func (c *Configuration) GetUuid() string {
|
|
c.mu.RLock()
|
|
defer c.mu.RUnlock()
|
|
return c.Uuid
|
|
}
|
|
|
|
func (c *Configuration) SetSuspended(s bool) {
|
|
c.mu.Lock()
|
|
defer c.mu.Unlock()
|
|
c.Suspended = s
|
|
}
|