Compare commits
24 Commits
073db62fb1
...
auth
| Author | SHA1 | Date | |
|---|---|---|---|
| dcee28d00f | |||
| d610a84718 | |||
| 806ca3d2e7 | |||
| 4b5e957eaa | |||
| 61934bb2f4 | |||
| c52e505c18 | |||
| 2497b37d21 | |||
| 318d473fec | |||
| 0a5cfe83fc | |||
| 96cc41ee43 | |||
| 988bdfcf6c | |||
| c3e17f9a80 | |||
| 336973443d | |||
| 0e4d96b1be | |||
| 3a01e835a1 | |||
| 9f4e27869b | |||
| 53b9f30d50 | |||
| 17117e2376 | |||
| 82029bf143 | |||
| 8f3ef2a06d | |||
| ba5dd4f1ca | |||
| 8e575cab6e | |||
| d29d51cede | |||
| 70483037c9 |
2
.gitignore
vendored
2
.gitignore
vendored
@@ -2,3 +2,5 @@
|
|||||||
.direnv
|
.direnv
|
||||||
.cache
|
.cache
|
||||||
.vscode
|
.vscode
|
||||||
|
vssm
|
||||||
|
test/
|
||||||
125
README.md
Normal file
125
README.md
Normal file
@@ -0,0 +1,125 @@
|
|||||||
|
# VSSM (VintageStory Server Manager)
|
||||||
|
*A server manager for VintageStory*
|
||||||
|
|
||||||
|
## IMPORTANT INFORMATION
|
||||||
|
This project is currently in development, and thus everything is subject to change
|
||||||
|
|
||||||
|
## About
|
||||||
|
VSSM allows you to create and manage multiple VS servers
|
||||||
|
|
||||||
|
## Installation and Usage
|
||||||
|
There are no binaries just yet, so you have to download the source files.
|
||||||
|
|
||||||
|
Setup is easy from source, all you need is:
|
||||||
|
- Linux
|
||||||
|
- Go
|
||||||
|
- .NET 10 Runtime
|
||||||
|
|
||||||
|
**If you are using NixOS, a flake.nix is provided, just run `nix develop` for a full development enviroment**
|
||||||
|
|
||||||
|
- Once you have the source code downloaded or cloned, you can run `go build` to generate an executable.
|
||||||
|
- Run `./vssm daemon` to start the daemon - *(For now, theres no background service created by default, but you can run it in the background with `vssm daemon &` and kill the process with `pkill vssm`)*
|
||||||
|
- Run `./vssm` with no arguments to show usage
|
||||||
|
|
||||||
|
## Configuration
|
||||||
|
The default configuration file is stored in `~/.local/share/vssm/config.json`, however you can pass the `--config <path>` flag to any command to use a custom configuration. You can also set the `VSSM_CONFIG_PATH` environment variable in lieu of using the config flag for every command.
|
||||||
|
|
||||||
|
The default configuration:
|
||||||
|
```json
|
||||||
|
{
|
||||||
|
"storage": {
|
||||||
|
"app_data_dir": "",
|
||||||
|
"install_dir": "/home/user/.local/share/vssm/vssm_data/installs",
|
||||||
|
"instances_dir": "/home/user/.local/share/vssm/vssm_data/instances",
|
||||||
|
"backup_dir": "/home/user/.local/share/vssm/vssm_data/backups",
|
||||||
|
"config_templates_dir": "/home/user/.local/share/vssm/vssm_data/config_templates"
|
||||||
|
},
|
||||||
|
"daemon": {
|
||||||
|
"listen_address": "127.0.0.1",
|
||||||
|
"port": 65000
|
||||||
|
},
|
||||||
|
"instances": {
|
||||||
|
"test_server": {
|
||||||
|
"Version": "1.22.3",
|
||||||
|
"ServerName": "test_server",
|
||||||
|
"Port": 12345,
|
||||||
|
"config": null
|
||||||
|
}
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
- Storage
|
||||||
|
- install_dir - The directory where versioned server binaries are stored
|
||||||
|
- instances_dir - Directory for instances and their data
|
||||||
|
- backup_dir - Directory for automatic backups of instances
|
||||||
|
- config_templates_dir - Directory for versioned server configuration templates
|
||||||
|
|
||||||
|
- Daemon
|
||||||
|
- port - The port the daemon listens on for http requests
|
||||||
|
- listen_address - The IP address the daemon listens on
|
||||||
|
|
||||||
|
- Instances
|
||||||
|
- Version - The game version
|
||||||
|
- ServerName - The name of the instance
|
||||||
|
- Port - The port the instance is listening on
|
||||||
|
- config - This allows you to set ANY configuration item from the config, example below:
|
||||||
|
|
||||||
|
Example instance with extra configuration:
|
||||||
|
**NOTE:** Most settings that are filepaths should be left alone in the instance config settings, as they will be overwritten automatically (like the ModPaths setting).
|
||||||
|
**NOTE:** Roles settings must be modified in the actual instance config
|
||||||
|
```json
|
||||||
|
"test_server": {
|
||||||
|
"Version": "1.22.3",
|
||||||
|
"ServerName": "test_server",
|
||||||
|
"Port": 12345,
|
||||||
|
"config": {
|
||||||
|
"AllowPvP": true,
|
||||||
|
"WhiteListMode": 1,
|
||||||
|
"WelcomeMessage": "Welcome to the server, {0}!",
|
||||||
|
"WorldConfig": {
|
||||||
|
"Seed": "superawesomeseed",
|
||||||
|
"WorldName": "A new world",
|
||||||
|
"PlayStyle": "surviveandbuild"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
## Web Interface
|
||||||
|
Alongside this project, I am developing a seperate web-based dashboard that can be used to manage you servers with a very simple UI. You can get it [HERE](https://git.bellsworne.tech/chrisbell/vssm_web).
|
||||||
|
|
||||||
|
## Roadmap
|
||||||
|
|
||||||
|
- [x] Configuration
|
||||||
|
- [x] Custom configuration path (passed to the daemon with a flag `--config`)
|
||||||
|
- [x] Daemon instance remembers config path (*so you don't have to pass `--config` everytime you run an ipc command*)
|
||||||
|
- [x] Daemon listen port
|
||||||
|
- [x] Declarative Server configuration (Create servers in config)
|
||||||
|
- [x] All configuration options
|
||||||
|
- [x] Endpoint for modifying instance configuration (for web ui)
|
||||||
|
|
||||||
|
- [ ] Server management
|
||||||
|
- [x] Create servers
|
||||||
|
- [x] Automatic server binary downloading by version
|
||||||
|
- [x] Delete servers
|
||||||
|
- [x] Start/Stop servers
|
||||||
|
- [x] Server configuration
|
||||||
|
- [x] Download correct configuration template for version (see availible templates [here](https://git.bellsworne.tech/chrisbell/vssm_config_templates))
|
||||||
|
- [x] Version
|
||||||
|
- [x] Server Name
|
||||||
|
- [x] Port
|
||||||
|
- [x] Full declarative configuration support in main app config
|
||||||
|
- [x] Multiple servers support
|
||||||
|
- [x] List servers and their status
|
||||||
|
- [x] Send commands to servers
|
||||||
|
- [ ] Automated server backups
|
||||||
|
|
||||||
|
- [ ] Binary releases
|
||||||
|
|
||||||
|
- [ ] Automatically set up background service
|
||||||
|
|
||||||
|
- [ ] Other
|
||||||
|
- [ ] First class NixOS support
|
||||||
|
- [x] Patch downloaded server binaries for NixOS
|
||||||
|
- [ ] Official nix package or flake
|
||||||
|
- [ ] All configuration options
|
||||||
21
config.go
21
config.go
@@ -9,6 +9,7 @@ import (
|
|||||||
|
|
||||||
type AppConfig struct {
|
type AppConfig struct {
|
||||||
Storage struct {
|
Storage struct {
|
||||||
|
AppDataDir string `json:"app_data_dir"`
|
||||||
InstallDir string `json:"install_dir"`
|
InstallDir string `json:"install_dir"`
|
||||||
InstancesDir string `json:"instances_dir"`
|
InstancesDir string `json:"instances_dir"`
|
||||||
BackupDir string `json:"backup_dir"`
|
BackupDir string `json:"backup_dir"`
|
||||||
@@ -16,13 +17,16 @@ type AppConfig struct {
|
|||||||
} `json:"storage"`
|
} `json:"storage"`
|
||||||
|
|
||||||
Daemon struct {
|
Daemon struct {
|
||||||
UseNixOs bool `json:"use_nixos"`
|
ListenAddress string `json:"listen_address"`
|
||||||
}
|
Port int `json:"port"`
|
||||||
|
AuthToken string `json:"auth_token"`
|
||||||
|
} `json:"daemon"`
|
||||||
|
|
||||||
|
Instances map[string]InstanceMetadata `json:"instances"`
|
||||||
}
|
}
|
||||||
|
|
||||||
func DefaultConfig() *AppConfig {
|
func CreateConfigWithDefaults(configPath string) *AppConfig {
|
||||||
home, _ := os.UserHomeDir()
|
basePath := filepath.Join(filepath.Dir(configPath), "vssm_data")
|
||||||
basePath := filepath.Join(home, ".local", "share", "vs-manager")
|
|
||||||
|
|
||||||
cfg := &AppConfig{}
|
cfg := &AppConfig{}
|
||||||
cfg.Storage.InstallDir = filepath.Join(basePath, "installs")
|
cfg.Storage.InstallDir = filepath.Join(basePath, "installs")
|
||||||
@@ -30,12 +34,17 @@ func DefaultConfig() *AppConfig {
|
|||||||
cfg.Storage.BackupDir = filepath.Join(basePath, "backups")
|
cfg.Storage.BackupDir = filepath.Join(basePath, "backups")
|
||||||
cfg.Storage.ConfigTemplatesDir = filepath.Join(basePath, "config_templates")
|
cfg.Storage.ConfigTemplatesDir = filepath.Join(basePath, "config_templates")
|
||||||
|
|
||||||
|
cfg.Daemon.ListenAddress = "127.0.0.1"
|
||||||
|
cfg.Daemon.Port = 65000
|
||||||
|
|
||||||
|
cfg.Instances = make(map[string]InstanceMetadata)
|
||||||
|
|
||||||
return cfg
|
return cfg
|
||||||
}
|
}
|
||||||
|
|
||||||
func LoadOrCreateConfig(configPath string) (*AppConfig, error) {
|
func LoadOrCreateConfig(configPath string) (*AppConfig, error) {
|
||||||
if _, err := os.Stat(configPath); os.IsNotExist(err) {
|
if _, err := os.Stat(configPath); os.IsNotExist(err) {
|
||||||
cfg := DefaultConfig()
|
cfg := CreateConfigWithDefaults(configPath)
|
||||||
|
|
||||||
if err := os.MkdirAll(filepath.Dir(configPath), 0755); err != nil {
|
if err := os.MkdirAll(filepath.Dir(configPath), 0755); err != nil {
|
||||||
return nil, fmt.Errorf("Failed to create config directory: %w", err)
|
return nil, fmt.Errorf("Failed to create config directory: %w", err)
|
||||||
|
|||||||
672
daemon.go
Normal file
672
daemon.go
Normal file
@@ -0,0 +1,672 @@
|
|||||||
|
package main
|
||||||
|
|
||||||
|
import (
|
||||||
|
"embed"
|
||||||
|
"encoding/json"
|
||||||
|
"fmt"
|
||||||
|
"io"
|
||||||
|
"io/fs"
|
||||||
|
"net/http"
|
||||||
|
"os"
|
||||||
|
"os/signal"
|
||||||
|
"path/filepath"
|
||||||
|
"slices"
|
||||||
|
"strconv"
|
||||||
|
"strings"
|
||||||
|
"sync"
|
||||||
|
"syscall"
|
||||||
|
"time"
|
||||||
|
)
|
||||||
|
|
||||||
|
//go:embed web/dist
|
||||||
|
var webFS embed.FS
|
||||||
|
|
||||||
|
type CommandPayload struct {
|
||||||
|
Command string `json:"command"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type InstanceStatusResponse struct {
|
||||||
|
Name string `json:"name"`
|
||||||
|
Version string `json:"version"`
|
||||||
|
Port int `json:"port"`
|
||||||
|
Status string `json:"status"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type DaemonServer struct {
|
||||||
|
sync.RWMutex
|
||||||
|
cfg *AppConfig
|
||||||
|
configPath string
|
||||||
|
procManager *ProcessManager
|
||||||
|
}
|
||||||
|
|
||||||
|
func StartDaemon(cfg *AppConfig, configPath string) error {
|
||||||
|
ds := &DaemonServer{
|
||||||
|
cfg: cfg,
|
||||||
|
configPath: configPath,
|
||||||
|
procManager: NewProcessManager(),
|
||||||
|
}
|
||||||
|
|
||||||
|
mux := http.NewServeMux()
|
||||||
|
mux.HandleFunc("/instances/create", ds.handleCreate)
|
||||||
|
mux.HandleFunc("/instances/start", ds.handleStart)
|
||||||
|
mux.HandleFunc("/instances/stop", ds.handleStop)
|
||||||
|
mux.HandleFunc("/instances/command", ds.handleCommand)
|
||||||
|
mux.HandleFunc("/instances/list", ds.handleList)
|
||||||
|
mux.HandleFunc("/instances/logs", ds.handleGetLogs)
|
||||||
|
mux.HandleFunc("/instances/delete", ds.handleDelete)
|
||||||
|
mux.HandleFunc("/instances/modify", ds.handleModify)
|
||||||
|
mux.HandleFunc("/instances/getConfig", ds.handleGetConfig)
|
||||||
|
mux.HandleFunc("/instances/setConfig", ds.handleSetConfig)
|
||||||
|
|
||||||
|
webContent, err := fs.Sub(webFS, "web/dist")
|
||||||
|
if err != nil {
|
||||||
|
return fmt.Errorf("failed to load embedded web assets: %w", err)
|
||||||
|
}
|
||||||
|
mux.Handle("/", http.FileServer(http.FS(webContent)))
|
||||||
|
|
||||||
|
corsWrappedHandler := http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
||||||
|
w.Header().Set("Access-Control-Allow-Origin", "*")
|
||||||
|
w.Header().Set("Access-Control-Allow-Methods", "POST, GET, OPTIONS")
|
||||||
|
w.Header().Set("Access-Control-Allow-Headers", "Content-Type, Authorization")
|
||||||
|
|
||||||
|
if r.Method == http.MethodOptions {
|
||||||
|
w.WriteHeader(http.StatusOK)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
authCheck := func() bool {
|
||||||
|
if !strings.HasPrefix(r.URL.Path, "/instances/") {
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
|
||||||
|
ds.RLock()
|
||||||
|
defer ds.RUnlock()
|
||||||
|
if ds.cfg.Daemon.AuthToken != "" {
|
||||||
|
authHeader := r.Header.Get("Authorization")
|
||||||
|
expected := "Bearer " + ds.cfg.Daemon.AuthToken
|
||||||
|
if authHeader != expected {
|
||||||
|
http.Error(w, "Unauthorized", http.StatusUnauthorized)
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return true
|
||||||
|
}()
|
||||||
|
|
||||||
|
if !authCheck {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
mux.ServeHTTP(w, r)
|
||||||
|
})
|
||||||
|
|
||||||
|
listenAddress := cfg.Daemon.ListenAddress + ":" + strconv.Itoa(cfg.Daemon.Port)
|
||||||
|
|
||||||
|
server := &http.Server{
|
||||||
|
Addr: listenAddress,
|
||||||
|
Handler: corsWrappedHandler,
|
||||||
|
}
|
||||||
|
|
||||||
|
sigChan := make(chan os.Signal, 1)
|
||||||
|
signal.Notify(sigChan, os.Interrupt, syscall.SIGTERM)
|
||||||
|
|
||||||
|
go func() {
|
||||||
|
fmt.Printf("Engine daemon actively listening on http://%s\n", listenAddress)
|
||||||
|
if err := server.ListenAndServe(); err != http.ErrServerClosed {
|
||||||
|
fmt.Printf("Daemon runtime failure: %v\n", err)
|
||||||
|
}
|
||||||
|
}()
|
||||||
|
|
||||||
|
<-sigChan
|
||||||
|
fmt.Println("\n[Daemon] Shutdown signal caught! Initializing graceful teardown sequence...")
|
||||||
|
|
||||||
|
_ = server.Close()
|
||||||
|
ds.shutdownAllRunningServers()
|
||||||
|
|
||||||
|
fmt.Println("[Daemon] All threads gracefully shut down. Exiting supervisor cleanly.")
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func (ds *DaemonServer) reloadConfig() error {
|
||||||
|
cfg, err := LoadOrCreateConfig(ds.configPath)
|
||||||
|
if err != nil {
|
||||||
|
fmt.Printf("Could not reload configuration file: %v\n", err)
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
ds.Lock()
|
||||||
|
defer ds.Unlock()
|
||||||
|
ds.cfg = cfg
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func (ds *DaemonServer) shutdownAllRunningServers() {
|
||||||
|
ds.procManager.Lock()
|
||||||
|
|
||||||
|
var activeNames []string
|
||||||
|
for name := range ds.procManager.ActiveInstances {
|
||||||
|
activeNames = append(activeNames, name)
|
||||||
|
}
|
||||||
|
ds.procManager.Unlock()
|
||||||
|
|
||||||
|
if len(activeNames) == 0 {
|
||||||
|
fmt.Println("[Daemon] No active server instances to tear down.")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
fmt.Printf("[Daemon] Flushing stop instructions to %d running instance(s)...\n", len(activeNames))
|
||||||
|
|
||||||
|
var wg sync.WaitGroup
|
||||||
|
for _, name := range activeNames {
|
||||||
|
wg.Add(1)
|
||||||
|
go func(instanceName string) {
|
||||||
|
defer wg.Done()
|
||||||
|
|
||||||
|
fmt.Printf("[Daemon] Sending graceful /stop to instance '%s'...\n", instanceName)
|
||||||
|
err := ds.procManager.SendCommand(instanceName, "/stop")
|
||||||
|
if err != nil {
|
||||||
|
fmt.Printf("[Daemon Error] Could not send stop to %s: %v\n", instanceName, err)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
ticker := time.NewTicker(250 * time.Millisecond)
|
||||||
|
defer ticker.Stop()
|
||||||
|
timeout := time.After(15 * time.Second)
|
||||||
|
|
||||||
|
for {
|
||||||
|
select {
|
||||||
|
case <-ticker.C:
|
||||||
|
ds.procManager.RLock()
|
||||||
|
_, running := ds.procManager.ActiveInstances[instanceName]
|
||||||
|
ds.procManager.RUnlock()
|
||||||
|
|
||||||
|
if !running {
|
||||||
|
fmt.Printf("[Daemon] Instance '%s' has successfully exited.\n", instanceName)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
case <-timeout:
|
||||||
|
fmt.Printf("[Daemon Warning] Instance '%s' timed out while trying to stop safely.\n", instanceName)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}(name)
|
||||||
|
}
|
||||||
|
|
||||||
|
wg.Wait()
|
||||||
|
}
|
||||||
|
|
||||||
|
func (ds *DaemonServer) handleCreate(w http.ResponseWriter, r *http.Request) {
|
||||||
|
if r.Method != http.MethodPost {
|
||||||
|
http.Error(w, "Method not allowed", http.StatusMethodNotAllowed)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
name := r.URL.Query().Get("name")
|
||||||
|
version := r.URL.Query().Get("version")
|
||||||
|
port := r.URL.Query().Get("port")
|
||||||
|
if name == "" || version == "" || port == "" {
|
||||||
|
http.Error(w, "Missing name, version, or port parameters", http.StatusBadRequest)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
converted_port, err := strconv.Atoi(port)
|
||||||
|
if err != nil {
|
||||||
|
http.Error(w, "Could not convert provided port to a valid port number", http.StatusBadRequest)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
if ds.reloadConfig() != nil {
|
||||||
|
http.Error(w, "Could not reload config", http.StatusInternalServerError)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
ds.Lock()
|
||||||
|
defer ds.Unlock()
|
||||||
|
|
||||||
|
if _, exists := ds.cfg.Instances[name]; exists {
|
||||||
|
http.Error(w, fmt.Sprintf("Instance '%s' already exists in configuration", name), http.StatusConflict)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
for name, options := range ds.cfg.Instances {
|
||||||
|
if options.Port == converted_port {
|
||||||
|
http.Error(w, fmt.Sprintf("Port already occupied by instance '%s'", name), http.StatusConflict)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
metadata := InstanceMetadata{
|
||||||
|
Version: version,
|
||||||
|
ServerName: name,
|
||||||
|
Port: converted_port,
|
||||||
|
}
|
||||||
|
|
||||||
|
err = DownloadAndExtractServer(version, ds.cfg.Storage.InstallDir)
|
||||||
|
if err != nil {
|
||||||
|
http.Error(w, fmt.Sprintf("Installation failed: %v", err), http.StatusInternalServerError)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
err = CreateNewInstance(name, version, metadata, ds.cfg)
|
||||||
|
if err != nil {
|
||||||
|
http.Error(w, fmt.Sprintf("Instance provisioning failed: %v", err), http.StatusInternalServerError)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
ds.cfg.Instances[name] = metadata
|
||||||
|
|
||||||
|
data, err := json.MarshalIndent(ds.cfg, "", " ")
|
||||||
|
if err != nil {
|
||||||
|
http.Error(w, fmt.Sprintf("Failed processing profile adjustments: %v", err), http.StatusInternalServerError)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
if err := os.WriteFile(ds.configPath, data, 0644); err != nil {
|
||||||
|
http.Error(w, fmt.Sprintf("Failed saving configuration adjustments to disk: %v", err), http.StatusInternalServerError)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
w.WriteHeader(http.StatusCreated)
|
||||||
|
fmt.Fprintf(w, "Successfully created and stored profile for instance %s", name)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (ds *DaemonServer) handleStart(w http.ResponseWriter, r *http.Request) {
|
||||||
|
|
||||||
|
if r.Method != http.MethodPost {
|
||||||
|
http.Error(w, "Method not allowed", http.StatusMethodNotAllowed)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
name := r.URL.Query().Get("name")
|
||||||
|
if name == "" {
|
||||||
|
http.Error(w, "Missing name parameter", http.StatusBadRequest)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
if ds.reloadConfig() != nil {
|
||||||
|
http.Error(w, "Could not reload config", http.StatusInternalServerError)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
ds.RLock()
|
||||||
|
defer ds.RUnlock()
|
||||||
|
|
||||||
|
options, exists := ds.cfg.Instances[name]
|
||||||
|
if !exists {
|
||||||
|
http.Error(w, fmt.Sprintf("Instance '%s' does not exist. Run 'create' first", name), http.StatusNotFound)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
instanceConfigPath := filepath.Join(ds.cfg.Storage.InstancesDir, name, "serverconfig.json")
|
||||||
|
err := SyncInstanceConfig(options.Version, instanceConfigPath, options, ds.cfg)
|
||||||
|
if err != nil {
|
||||||
|
http.Error(w, "Failed to sync config: "+err.Error(), http.StatusInternalServerError)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
err = ds.procManager.StartInstance(name, options.Version, options, ds.cfg)
|
||||||
|
if err != nil {
|
||||||
|
http.Error(w, fmt.Sprintf("Process startup failed: %v", err), http.StatusInternalServerError)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
w.WriteHeader(http.StatusOK)
|
||||||
|
fmt.Fprintf(w, "Successfully started instance %s", name)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (ds *DaemonServer) handleStop(w http.ResponseWriter, r *http.Request) {
|
||||||
|
if r.Method != http.MethodPost {
|
||||||
|
http.Error(w, "Method not allowed", http.StatusMethodNotAllowed)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
name := r.URL.Query().Get("name")
|
||||||
|
if name == "" {
|
||||||
|
http.Error(w, "Missing name parameter", http.StatusBadRequest)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
err := ds.procManager.SendCommand(name, "/stop")
|
||||||
|
if err != nil {
|
||||||
|
http.Error(w, fmt.Sprintf("Failed to dispatch stop command: %v", err), http.StatusInternalServerError)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
w.WriteHeader(http.StatusOK)
|
||||||
|
fmt.Fprintf(w, "Termination signal routed to instance %s", name)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (ds *DaemonServer) handleCommand(w http.ResponseWriter, r *http.Request) {
|
||||||
|
if r.Method != http.MethodPost {
|
||||||
|
http.Error(w, "Method not allowed", http.StatusMethodNotAllowed)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
name := r.URL.Query().Get("name")
|
||||||
|
if name == "" {
|
||||||
|
http.Error(w, "Missing name parameter", http.StatusBadRequest)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
var payload CommandPayload
|
||||||
|
if err := json.NewDecoder(r.Body).Decode(&payload); err != nil {
|
||||||
|
http.Error(w, "Malformed JSON body", http.StatusBadRequest)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
err := ds.procManager.SendCommand(name, payload.Command)
|
||||||
|
if err != nil {
|
||||||
|
http.Error(w, fmt.Sprintf("Command delivery failed: %v", err), http.StatusInternalServerError)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
w.WriteHeader(http.StatusOK)
|
||||||
|
fmt.Fprintf(w, "Command delivered successfully to %s", name)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (ds *DaemonServer) handleList(w http.ResponseWriter, r *http.Request) {
|
||||||
|
if r.Method != http.MethodGet {
|
||||||
|
http.Error(w, "Method not allowed", http.StatusMethodNotAllowed)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
if ds.reloadConfig() != nil {
|
||||||
|
http.Error(w, "Could not reload config", http.StatusInternalServerError)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
ds.RLock()
|
||||||
|
defer ds.RUnlock()
|
||||||
|
|
||||||
|
ds.procManager.RLock()
|
||||||
|
defer ds.procManager.RUnlock()
|
||||||
|
|
||||||
|
var responseList []InstanceStatusResponse
|
||||||
|
|
||||||
|
for name, options := range ds.cfg.Instances {
|
||||||
|
status := "STOPPED"
|
||||||
|
if _, running := ds.procManager.ActiveInstances[name]; running {
|
||||||
|
status = "RUNNING"
|
||||||
|
}
|
||||||
|
|
||||||
|
responseList = append(responseList, InstanceStatusResponse{
|
||||||
|
Name: name,
|
||||||
|
Version: options.Version,
|
||||||
|
Port: options.Port,
|
||||||
|
Status: status,
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
slices.SortFunc(responseList, func(a, b InstanceStatusResponse) int {
|
||||||
|
if a.Name < b.Name {
|
||||||
|
return -1
|
||||||
|
}
|
||||||
|
if a.Name > b.Name {
|
||||||
|
return 1
|
||||||
|
}
|
||||||
|
return 0
|
||||||
|
})
|
||||||
|
|
||||||
|
w.Header().Set("Content-Type", "application/json")
|
||||||
|
w.WriteHeader(http.StatusOK)
|
||||||
|
json.NewEncoder(w).Encode(responseList)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (ds *DaemonServer) handleGetLogs(w http.ResponseWriter, r *http.Request) {
|
||||||
|
if r.Method != http.MethodGet {
|
||||||
|
http.Error(w, "Method not allowed", http.StatusMethodNotAllowed)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
name := r.URL.Query().Get("name")
|
||||||
|
if name == "" {
|
||||||
|
http.Error(w, "Missing name parameter", http.StatusBadRequest)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
ds.procManager.RLock()
|
||||||
|
buf, exists := ds.procManager.LogBuffers[name]
|
||||||
|
ds.procManager.RUnlock()
|
||||||
|
|
||||||
|
if !exists || buf == nil {
|
||||||
|
w.Header().Set("Content-Type", "application/json")
|
||||||
|
w.Write([]byte("[]"))
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
logLines := buf.GetSnapshot()
|
||||||
|
|
||||||
|
w.Header().Set("Content-Type", "application/json")
|
||||||
|
if err := json.NewEncoder(w).Encode(logLines); err != nil {
|
||||||
|
http.Error(w, fmt.Sprintf("Failed encoding log matrix: %v", err), http.StatusInternalServerError)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (ds *DaemonServer) handleDelete(w http.ResponseWriter, r *http.Request) {
|
||||||
|
if r.Method != http.MethodPost {
|
||||||
|
http.Error(w, "Method not allowed", http.StatusMethodNotAllowed)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
name := r.URL.Query().Get("name")
|
||||||
|
if name == "" {
|
||||||
|
http.Error(w, "Missing name parameter", http.StatusBadRequest)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
purge := false
|
||||||
|
purgeParam := r.URL.Query().Get("purge")
|
||||||
|
if purgeParam != "" {
|
||||||
|
result, err := strconv.ParseBool(purgeParam)
|
||||||
|
if err != nil {
|
||||||
|
http.Error(w, "Invalid value for 'purge' parameter", http.StatusBadRequest)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
purge = result
|
||||||
|
}
|
||||||
|
|
||||||
|
if ds.reloadConfig() != nil {
|
||||||
|
http.Error(w, "Could not reload config", http.StatusInternalServerError)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
ds.Lock()
|
||||||
|
defer ds.Unlock()
|
||||||
|
|
||||||
|
ds.procManager.RLock()
|
||||||
|
defer ds.procManager.RUnlock()
|
||||||
|
|
||||||
|
_, exists := ds.cfg.Instances[name]
|
||||||
|
if !exists {
|
||||||
|
http.Error(w, fmt.Sprintf("Cannot delete instance '%s'; Does not exist.", name), http.StatusBadRequest)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
if _, running := ds.procManager.ActiveInstances[name]; running {
|
||||||
|
http.Error(w, fmt.Sprintf("Cannot delete instance '%s'; It is currently running.", name), http.StatusBadRequest)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
delete(ds.cfg.Instances, name)
|
||||||
|
|
||||||
|
data, err := json.MarshalIndent(ds.cfg, "", " ")
|
||||||
|
if err != nil {
|
||||||
|
http.Error(w, fmt.Sprintf("Failed processing profile adjustments: %v", err), http.StatusInternalServerError)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
if err := os.WriteFile(ds.configPath, data, 0644); err != nil {
|
||||||
|
http.Error(w, fmt.Sprintf("Failed saving configuration adjustments to disk: %v", err), http.StatusInternalServerError)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
if purge {
|
||||||
|
path := filepath.Join(ds.cfg.Storage.InstancesDir, name)
|
||||||
|
err := os.RemoveAll(path)
|
||||||
|
if err != nil {
|
||||||
|
http.Error(w, fmt.Sprintf("Failed to delete instance from disk: %v", err), http.StatusInternalServerError)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
w.WriteHeader(http.StatusOK)
|
||||||
|
fmt.Fprintf(w, "Successfully deleted instance %s", name)
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
func (ds *DaemonServer) handleModify(w http.ResponseWriter, r *http.Request) {
|
||||||
|
if r.Method != http.MethodPost {
|
||||||
|
http.Error(w, "Method not allowed", http.StatusMethodNotAllowed)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
name := r.URL.Query().Get("name")
|
||||||
|
if name == "" {
|
||||||
|
http.Error(w, "Missing name parameter", http.StatusBadRequest)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
newName := r.URL.Query().Get("newName")
|
||||||
|
if newName == "" {
|
||||||
|
http.Error(w, "Missing newName parameter", http.StatusBadRequest)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
newPort := r.URL.Query().Get("newPort")
|
||||||
|
if newPort == "" {
|
||||||
|
http.Error(w, "Missing newPort parameter", http.StatusBadRequest)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
convertedPort, err := strconv.Atoi(newPort)
|
||||||
|
if err != nil {
|
||||||
|
http.Error(w, "Could not convert provided port to a valid port number", http.StatusBadRequest)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
ds.Lock()
|
||||||
|
defer ds.Unlock()
|
||||||
|
|
||||||
|
ds.procManager.RLock()
|
||||||
|
defer ds.procManager.RUnlock()
|
||||||
|
|
||||||
|
instance, exists := ds.cfg.Instances[name]
|
||||||
|
if !exists {
|
||||||
|
http.Error(w, fmt.Sprintf("Cannot modify instance '%s'; Does not exist.", name), http.StatusBadRequest)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
if _, running := ds.procManager.ActiveInstances[name]; running {
|
||||||
|
http.Error(w, fmt.Sprintf("Cannot modify instance '%s'; It is currently running.", name), http.StatusBadRequest)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
instance.ServerName = newName
|
||||||
|
instance.Port = convertedPort
|
||||||
|
ds.cfg.Instances[name] = instance
|
||||||
|
|
||||||
|
data, err := json.MarshalIndent(ds.cfg, "", " ")
|
||||||
|
if err != nil {
|
||||||
|
http.Error(w, fmt.Sprintf("Failed processing profile adjustments: %v", err), http.StatusInternalServerError)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
if err := os.WriteFile(ds.configPath, data, 0644); err != nil {
|
||||||
|
http.Error(w, fmt.Sprintf("Failed saving configuration adjustments to disk: %v", err), http.StatusInternalServerError)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
instanceConfigPath := filepath.Join(ds.cfg.Storage.InstancesDir, name, "serverconfig.json")
|
||||||
|
err = SyncInstanceConfig(instance.Version, instanceConfigPath, instance, ds.cfg)
|
||||||
|
if err != nil {
|
||||||
|
http.Error(w, "Failed to sync config: "+err.Error(), http.StatusInternalServerError)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
w.WriteHeader(http.StatusOK)
|
||||||
|
fmt.Fprintf(w, "Successfully modified instance %s", name)
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
func (ds *DaemonServer) handleGetConfig(w http.ResponseWriter, r *http.Request) {
|
||||||
|
if r.Method != http.MethodGet {
|
||||||
|
http.Error(w, "Method not allowed", http.StatusMethodNotAllowed)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
name := r.URL.Query().Get("name")
|
||||||
|
if name == "" {
|
||||||
|
http.Error(w, "Missing name parameter", http.StatusBadRequest)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
exists := func() bool {
|
||||||
|
ds.RLock()
|
||||||
|
defer ds.RUnlock()
|
||||||
|
_, ok := ds.cfg.Instances[name]
|
||||||
|
return ok
|
||||||
|
}()
|
||||||
|
if !exists {
|
||||||
|
http.Error(w, fmt.Sprintf("Cannot modify instance config for: '%s'; Does not exist.", name), http.StatusBadRequest)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
confPath := filepath.Join(ds.cfg.Storage.InstancesDir, name, "serverconfig.json")
|
||||||
|
data, err := os.ReadFile(confPath)
|
||||||
|
if err != nil {
|
||||||
|
http.Error(w, fmt.Sprintf("Failed to get instance config: %v", err), http.StatusInternalServerError)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
w.Header().Set("Content-Type", "application/json")
|
||||||
|
w.Write(data)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (ds *DaemonServer) handleSetConfig(w http.ResponseWriter, r *http.Request) {
|
||||||
|
if r.Method != http.MethodPost {
|
||||||
|
http.Error(w, "Method not allowed", http.StatusMethodNotAllowed)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
name := r.URL.Query().Get("name")
|
||||||
|
if name == "" {
|
||||||
|
http.Error(w, "Missing name parameter", http.StatusBadRequest)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
exists := func() bool {
|
||||||
|
ds.RLock()
|
||||||
|
defer ds.RUnlock()
|
||||||
|
_, ok := ds.cfg.Instances[name]
|
||||||
|
return ok
|
||||||
|
}()
|
||||||
|
if !exists {
|
||||||
|
http.Error(w, fmt.Sprintf("Cannot modify instance config for: '%s'; Does not exist.", name), http.StatusBadRequest)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
running := func() bool {
|
||||||
|
ds.procManager.RLock()
|
||||||
|
defer ds.procManager.RUnlock()
|
||||||
|
_, ok := ds.procManager.ActiveInstances[name]
|
||||||
|
return ok
|
||||||
|
}()
|
||||||
|
if running {
|
||||||
|
http.Error(w, fmt.Sprintf("Cannot modify instance config for: '%s'; It is currently running.", name), http.StatusBadRequest)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
data, err := io.ReadAll(r.Body)
|
||||||
|
if err != nil {
|
||||||
|
http.Error(w, fmt.Sprintf("Failed to set instance config: %v", err), http.StatusInternalServerError)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
confPath := filepath.Join(ds.cfg.Storage.InstancesDir, name, "serverconfig.json")
|
||||||
|
if err = os.WriteFile(confPath, data, 0644); err != nil {
|
||||||
|
http.Error(w, fmt.Sprintf("Failed to get instance config: %v", err), http.StatusInternalServerError)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
w.WriteHeader(http.StatusOK)
|
||||||
|
}
|
||||||
@@ -98,14 +98,12 @@ func patchBinaryForNixos(binaryPath string) error {
|
|||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
fmt.Println("[NixOS Detected] Patching server interpreter pathway...")
|
fmt.Println("[NixOS Detected] Patching server binary...")
|
||||||
|
|
||||||
dotnetRoot := os.Getenv("DOTNET_ROOT")
|
dotnetRoot := os.Getenv("DOTNET_ROOT")
|
||||||
var interpreter string
|
var interpreter string
|
||||||
|
|
||||||
if dotnetRoot != "" {
|
if dotnetRoot != "" {
|
||||||
// Use the glibc version that matches the active .NET runtime exactly
|
|
||||||
// Finds the underlying ld-linux-x86-64.so.2 link within the .NET store closure
|
|
||||||
out, err := exec.Command("patchelf", "--print-interpreter", filepath.Join(dotnetRoot, "dotnet")).Output()
|
out, err := exec.Command("patchelf", "--print-interpreter", filepath.Join(dotnetRoot, "dotnet")).Output()
|
||||||
if err == nil && len(out) > 0 {
|
if err == nil && len(out) > 0 {
|
||||||
interpreter = strings.TrimSpace(string(out))
|
interpreter = strings.TrimSpace(string(out))
|
||||||
|
|||||||
17
instance.go
17
instance.go
@@ -3,7 +3,6 @@ package main
|
|||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
"os"
|
"os"
|
||||||
"os/exec"
|
|
||||||
"path/filepath"
|
"path/filepath"
|
||||||
)
|
)
|
||||||
|
|
||||||
@@ -14,17 +13,7 @@ const (
|
|||||||
StateRunning InstanceState = "RUNNING"
|
StateRunning InstanceState = "RUNNING"
|
||||||
)
|
)
|
||||||
|
|
||||||
type ManagedInstance struct {
|
func CreateNewInstance(name string, version string, meta InstanceMetadata, cfg *AppConfig) error {
|
||||||
Name string `json:"name"`
|
|
||||||
Version string `json:"version"`
|
|
||||||
Port int `json:"port"`
|
|
||||||
Status InstanceState `json:"status"`
|
|
||||||
|
|
||||||
Cmd *exec.Cmd `json:"-"`
|
|
||||||
Stdin interface{} `json:"-"`
|
|
||||||
}
|
|
||||||
|
|
||||||
func CreateNewInstance(name string, version string, options VsServerConfigOptions, cfg *AppConfig) error {
|
|
||||||
instanceDir := filepath.Join(cfg.Storage.InstancesDir, name)
|
instanceDir := filepath.Join(cfg.Storage.InstancesDir, name)
|
||||||
|
|
||||||
dirs := []string{
|
dirs := []string{
|
||||||
@@ -40,8 +29,8 @@ func CreateNewInstance(name string, version string, options VsServerConfigOption
|
|||||||
}
|
}
|
||||||
|
|
||||||
instanceConfigPath := filepath.Join(instanceDir, "serverconfig.json")
|
instanceConfigPath := filepath.Join(instanceDir, "serverconfig.json")
|
||||||
if err := PrepareInstanceConfig(version, instanceConfigPath, options, cfg); err != nil {
|
if err := PrepareInstanceConfig(version, instanceConfigPath, meta, cfg); err != nil {
|
||||||
return fmt.Errorf("Failed provisioning server baseline configuration: %w", err)
|
return fmt.Errorf("Failed to create baseline configuration: %w", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
fmt.Printf("Instance '%s' (v%s) successfully initialized\n", name, version)
|
fmt.Printf("Instance '%s' (v%s) successfully initialized\n", name, version)
|
||||||
|
|||||||
@@ -4,52 +4,31 @@ import (
|
|||||||
"encoding/json"
|
"encoding/json"
|
||||||
"fmt"
|
"fmt"
|
||||||
"io"
|
"io"
|
||||||
|
"net/http"
|
||||||
"os"
|
"os"
|
||||||
"path/filepath"
|
"path/filepath"
|
||||||
"strings"
|
"strings"
|
||||||
)
|
)
|
||||||
|
|
||||||
type VsServerConfigOptions struct {
|
type InstanceMetadata struct {
|
||||||
|
Version string `json:"Version"`
|
||||||
ServerName string `json:"ServerName"`
|
ServerName string `json:"ServerName"`
|
||||||
Port int `json:"Port"`
|
Port int `json:"Port"`
|
||||||
IpAddress string `json:"IpAddress"`
|
Config map[string]interface{} `json:"config"`
|
||||||
MaxClients int `json:"MaxClients"`
|
|
||||||
Password string `json:"Password"`
|
|
||||||
DefaultRole string `json:"DefaultRole"`
|
|
||||||
GuestRole string `json:"GuestRole"`
|
|
||||||
PreApprovedRole string `json:"PreApprovedRole"`
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// func WriteInstanceConfig(instanceDir string, settings VsServerConfig) error {
|
func PrepareInstanceConfig(templateVersion string, instanceConfigPath string, meta InstanceMetadata, cfg *AppConfig) error {
|
||||||
// configPath := filepath.Join(instanceDir, "serverconfig.json")
|
return SyncInstanceConfig(templateVersion, instanceConfigPath, meta, cfg)
|
||||||
|
}
|
||||||
|
|
||||||
// if settings.IpAddress == "" {
|
func SyncInstanceConfig(templateVersion string, instanceConfigPath string, meta InstanceMetadata, cfg *AppConfig) error {
|
||||||
// settings.IpAddress = "0.0.0.0"
|
|
||||||
// }
|
|
||||||
// if settings.MaxClients == 0 {
|
|
||||||
// settings.MaxClients = 16
|
|
||||||
// }
|
|
||||||
|
|
||||||
// data, err := json.MarshalIndent(settings, "", " ")
|
|
||||||
// if err != nil {
|
|
||||||
// return fmt.Errorf("failed to marshal server configuration: %w", err)
|
|
||||||
// }
|
|
||||||
|
|
||||||
// err = os.WriteFile(configPath, data, 0644)
|
|
||||||
// if err != nil {
|
|
||||||
// return fmt.Errorf("failed writing serverconfig.json to instance: %w", err)
|
|
||||||
// }
|
|
||||||
|
|
||||||
// return nil
|
|
||||||
// }
|
|
||||||
|
|
||||||
func PrepareInstanceConfig(templateVersion string, instanceConfigPath string, config VsServerConfigOptions, cfg *AppConfig) error {
|
|
||||||
templatePath := filepath.Join(cfg.Storage.ConfigTemplatesDir, templateVersion, "serverconfig.json")
|
templatePath := filepath.Join(cfg.Storage.ConfigTemplatesDir, templateVersion, "serverconfig.json")
|
||||||
|
|
||||||
if _, err := os.Stat(instanceConfigPath); err == nil {
|
if err := ensureTemplateExists(templateVersion, templatePath, cfg); err != nil {
|
||||||
return nil
|
return fmt.Errorf("failed ensuring configuration template availability: %w", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if _, err := os.Stat(instanceConfigPath); os.IsNotExist(err) {
|
||||||
if err := os.MkdirAll(filepath.Dir(instanceConfigPath), 0755); err != nil {
|
if err := os.MkdirAll(filepath.Dir(instanceConfigPath), 0755); err != nil {
|
||||||
return fmt.Errorf("failed creating instance directory tree: %w", err)
|
return fmt.Errorf("failed creating instance directory tree: %w", err)
|
||||||
}
|
}
|
||||||
@@ -64,17 +43,17 @@ func PrepareInstanceConfig(templateVersion string, instanceConfigPath string, co
|
|||||||
if err != nil {
|
if err != nil {
|
||||||
return fmt.Errorf("failed creating target instance configuration: %w", err)
|
return fmt.Errorf("failed creating target instance configuration: %w", err)
|
||||||
}
|
}
|
||||||
defer destination.Close()
|
|
||||||
|
|
||||||
if _, err := io.Copy(destination, source); err != nil {
|
_, err = io.Copy(destination, source)
|
||||||
|
destination.Close()
|
||||||
|
if err != nil {
|
||||||
return fmt.Errorf("failed cloning configuration template payload: %w", err)
|
return fmt.Errorf("failed cloning configuration template payload: %w", err)
|
||||||
}
|
}
|
||||||
|
}
|
||||||
destination.Close()
|
|
||||||
|
|
||||||
data, err := os.ReadFile(instanceConfigPath)
|
data, err := os.ReadFile(instanceConfigPath)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return fmt.Errorf("failed reading cloned configuration data: %w", err)
|
return fmt.Errorf("failed reading configuration data: %w", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
var rawConfig map[string]interface{}
|
var rawConfig map[string]interface{}
|
||||||
@@ -82,18 +61,22 @@ func PrepareInstanceConfig(templateVersion string, instanceConfigPath string, co
|
|||||||
return fmt.Errorf("failed parsing configuration JSON payload: %w", err)
|
return fmt.Errorf("failed parsing configuration JSON payload: %w", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
rawConfig["ServerName"] = config.ServerName
|
for key, value := range meta.Config {
|
||||||
rawConfig["Port"] = config.Port
|
if sub, ok := value.(map[string]interface{}); ok {
|
||||||
rawConfig["MaxClients"] = config.MaxClients
|
if existing, ok := rawConfig[key].(map[string]interface{}); ok {
|
||||||
|
for k, v := range sub {
|
||||||
if config.Password != "" {
|
existing[k] = v
|
||||||
rawConfig["Password"] = config.Password
|
}
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
rawConfig["Password"] = nil
|
rawConfig[key] = value
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
instanceDir := filepath.Dir(instanceConfigPath)
|
rawConfig["ServerName"] = meta.ServerName
|
||||||
|
rawConfig["Port"] = meta.Port
|
||||||
|
|
||||||
|
instanceDir := filepath.Dir(instanceConfigPath)
|
||||||
if worldConfig, ok := rawConfig["WorldConfig"].(map[string]interface{}); ok {
|
if worldConfig, ok := rawConfig["WorldConfig"].(map[string]interface{}); ok {
|
||||||
worldConfig["SaveFileLocation"] = filepath.Join(instanceDir, "Saves", "default.vcdbs")
|
worldConfig["SaveFileLocation"] = filepath.Join(instanceDir, "Saves", "default.vcdbs")
|
||||||
}
|
}
|
||||||
@@ -111,9 +94,45 @@ func PrepareInstanceConfig(templateVersion string, instanceConfigPath string, co
|
|||||||
return fmt.Errorf("failed marshaling updated configuration adjustments: %w", err)
|
return fmt.Errorf("failed marshaling updated configuration adjustments: %w", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
if err := os.WriteFile(instanceConfigPath, updatedData, 0644); err != nil {
|
return os.WriteFile(instanceConfigPath, updatedData, 0644)
|
||||||
return fmt.Errorf("failed committing updated configuration to disk: %w", err)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func ensureTemplateExists(version string, targetPath string, cfg *AppConfig) error {
|
||||||
|
if _, err := os.Stat(targetPath); err == nil {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
fmt.Printf("Template for version %s not found locally. Fetching remote layout from git server...\n", version)
|
||||||
|
|
||||||
|
if err := os.MkdirAll(filepath.Dir(targetPath), 0755); err != nil {
|
||||||
|
return fmt.Errorf("failed to create local template cache directory: %w", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
remoteURL := fmt.Sprintf("https://git.bellsworne.tech/chrisbell/vssm_config_templates/raw/branch/main/%s/serverconfig.json", version)
|
||||||
|
|
||||||
|
resp, err := http.Get(remoteURL)
|
||||||
|
if err != nil {
|
||||||
|
return fmt.Errorf("network error attempting to pull config template: %w", err)
|
||||||
|
}
|
||||||
|
defer resp.Body.Close()
|
||||||
|
|
||||||
|
if resp.StatusCode == http.StatusNotFound {
|
||||||
|
return fmt.Errorf("version template '%s' does not exist in the remote git repository asset tree", version)
|
||||||
|
} else if resp.StatusCode != http.StatusOK {
|
||||||
|
return fmt.Errorf("remote git mirror returned unexpected HTTP status: %s", resp.Status)
|
||||||
|
}
|
||||||
|
|
||||||
|
out, err := os.Create(targetPath)
|
||||||
|
if err != nil {
|
||||||
|
return fmt.Errorf("failed creating cache file hook on system storage: %w", err)
|
||||||
|
}
|
||||||
|
defer out.Close()
|
||||||
|
|
||||||
|
_, err = io.Copy(out, resp.Body)
|
||||||
|
if err != nil {
|
||||||
|
return fmt.Errorf("failed stream-writing network payload cache frame to disk: %w", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
fmt.Printf("Successfully cached configuration layout template for version %s\n", version)
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|||||||
295
main.go
295
main.go
@@ -1,65 +1,296 @@
|
|||||||
package main
|
package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"bytes"
|
||||||
|
"crypto/rand"
|
||||||
|
"encoding/hex"
|
||||||
|
"encoding/json"
|
||||||
|
"flag"
|
||||||
"fmt"
|
"fmt"
|
||||||
|
"io"
|
||||||
"log"
|
"log"
|
||||||
|
"net/http"
|
||||||
|
"net/url"
|
||||||
"os"
|
"os"
|
||||||
"os/signal"
|
|
||||||
"path/filepath"
|
"path/filepath"
|
||||||
"syscall"
|
"strconv"
|
||||||
|
"text/tabwriter"
|
||||||
|
"time"
|
||||||
)
|
)
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
fmt.Println("Initializing VS server manager...")
|
|
||||||
|
|
||||||
home, err := os.UserHomeDir()
|
home, err := os.UserHomeDir()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Fatalf("Could not locate user home dir")
|
log.Fatalf("Could not locate user home dir: %v", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
configPath := filepath.Join(home, ".config", "vs-manager", "config.json")
|
defaultConfigPath := filepath.Join(home, ".local", "share", "vssm", "config.json")
|
||||||
|
|
||||||
cfg, err := LoadOrCreateConfig(configPath)
|
configFlag := flag.String("config", defaultConfigPath, "Explicit path targeting a custom vssm config.json profile")
|
||||||
|
|
||||||
|
flag.Usage = printUsage
|
||||||
|
flag.Parse()
|
||||||
|
|
||||||
|
args := flag.Args()
|
||||||
|
if len(args) < 1 {
|
||||||
|
printUsage()
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
configExplicitlySet := false
|
||||||
|
flag.Visit(func(f *flag.Flag) {
|
||||||
|
if f.Name == "config" {
|
||||||
|
configExplicitlySet = true
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
if !configExplicitlySet {
|
||||||
|
if envConfig := os.Getenv("VSSM_CONFIG_PATH"); envConfig != "" {
|
||||||
|
configFlag = &envConfig
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
absConfigPath, err := filepath.Abs(*configFlag)
|
||||||
|
if err != nil {
|
||||||
|
log.Fatalf("Failed to resolve absolute configuration path target: %v", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
if configExplicitlySet {
|
||||||
|
if err := os.Setenv("VSSM_CONFIG_PATH", absConfigPath); err != nil {
|
||||||
|
log.Fatalf("Warning: could not set VSSM_CONFIG_PATH: %v", err)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
cfg, err := LoadOrCreateConfig(absConfigPath)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Fatalf("Initialization failed: %v", err)
|
log.Fatalf("Initialization failed: %v", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
instanceName := "sample_server"
|
listenAddress := cfg.Daemon.ListenAddress + ":" + strconv.Itoa(cfg.Daemon.Port)
|
||||||
targetVersion := "1.22.3"
|
fmt.Printf("Got listen address from config: %s\n", listenAddress)
|
||||||
|
|
||||||
options := VsServerConfigOptions{
|
subCommand := args[0]
|
||||||
ServerName: "Sample Server",
|
|
||||||
Port: 4000,
|
switch subCommand {
|
||||||
MaxClients: 100,
|
|
||||||
Password: "",
|
case "daemon":
|
||||||
|
if isDaemonRunning(cfg) {
|
||||||
|
log.Fatalf("Cannot start daemon as it is already running. Stop it first (`pkill vssm`).")
|
||||||
}
|
}
|
||||||
|
|
||||||
err = DownloadAndExtractServer(targetVersion, cfg.Storage.InstallDir)
|
fmt.Printf("Initializing VSSM Daemon [Config: %s]...\n", absConfigPath)
|
||||||
|
if err := StartDaemon(cfg, absConfigPath); err != nil {
|
||||||
|
log.Fatalf("Daemon runtime fatal error: %v", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
case "generate-token":
|
||||||
|
if isDaemonRunning(cfg) {
|
||||||
|
log.Fatalf("Cannot generate a new token while the daemon is running. Stop it first (`pkill vssm`).")
|
||||||
|
}
|
||||||
|
|
||||||
|
token, err := generateToken()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Fatalf("Downloader module encountered an error: %v", err)
|
log.Fatalf("Failed to generate token: %v", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
err = CreateNewInstance(instanceName, targetVersion, options, cfg)
|
overwritten := cfg.Daemon.AuthToken != ""
|
||||||
|
cfg.Daemon.AuthToken = token
|
||||||
|
|
||||||
|
data, err := json.MarshalIndent(cfg, "", " ")
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Fatalf("Initialization abort: %v", err)
|
log.Fatalf("Failed to marshal config: %v", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
procManager := NewProcessManager()
|
if err := os.WriteFile(absConfigPath, data, 0644); err != nil {
|
||||||
|
log.Fatalf("Failed to write config: %v", err)
|
||||||
|
}
|
||||||
|
|
||||||
fmt.Printf("\n⚡ Launching Instance: %s (v%s)\n", instanceName, targetVersion)
|
if overwritten {
|
||||||
err = procManager.StartInstance(instanceName, targetVersion, options, cfg)
|
fmt.Println("Existing auth token was overwritten.")
|
||||||
|
}
|
||||||
|
fmt.Printf("New auth token: %s\n", token)
|
||||||
|
|
||||||
|
case "create":
|
||||||
|
if len(args) < 4 {
|
||||||
|
log.Fatalf("Usage: vssm create <instance_name> <version> <port>")
|
||||||
|
}
|
||||||
|
name := args[1]
|
||||||
|
version := args[2]
|
||||||
|
port := args[3]
|
||||||
|
sendIPCRequest(cfg, "POST", fmt.Sprintf("/instances/create?name=%s&version=%s&port=%s", url.QueryEscape(name), url.QueryEscape(version), url.QueryEscape(port)), nil)
|
||||||
|
|
||||||
|
case "start":
|
||||||
|
if len(args) < 2 {
|
||||||
|
log.Fatalf("Usage: vssm start <instance_name>")
|
||||||
|
}
|
||||||
|
name := args[1]
|
||||||
|
sendIPCRequest(cfg, "POST", fmt.Sprintf("/instances/start?name=%s", url.QueryEscape(name)), nil)
|
||||||
|
|
||||||
|
case "stop":
|
||||||
|
if len(args) < 2 {
|
||||||
|
log.Fatalf("Usage: vssm stop <instance_name>")
|
||||||
|
}
|
||||||
|
name := args[1]
|
||||||
|
sendIPCRequest(cfg, "POST", fmt.Sprintf("/instances/stop?name=%s", url.QueryEscape(name)), nil)
|
||||||
|
|
||||||
|
case "cmd":
|
||||||
|
if len(args) < 3 {
|
||||||
|
log.Fatalf("Usage: vssm cmd <instance_name> \"<server command>\"")
|
||||||
|
}
|
||||||
|
name := args[1]
|
||||||
|
serverCmd := args[2]
|
||||||
|
|
||||||
|
payload := CommandPayload{Command: serverCmd}
|
||||||
|
body, _ := json.Marshal(payload)
|
||||||
|
sendIPCRequest(cfg, "POST", fmt.Sprintf("/instances/command?name=%s", url.QueryEscape(name)), bytes.NewBuffer(body))
|
||||||
|
|
||||||
|
case "list", "status":
|
||||||
|
fetchAndPrintStatus(cfg)
|
||||||
|
|
||||||
|
case "show-config":
|
||||||
|
fmt.Printf("%v", cfg.Storage.AppDataDir)
|
||||||
|
|
||||||
|
case "delete":
|
||||||
|
if len(args) < 2 {
|
||||||
|
log.Fatalf("Usage: vssm delete <instance_name>")
|
||||||
|
}
|
||||||
|
|
||||||
|
name := args[1]
|
||||||
|
|
||||||
|
deleteCmd := flag.NewFlagSet("delete", flag.ExitOnError)
|
||||||
|
purge := deleteCmd.Bool("purge", false, "Delete instance files from disk")
|
||||||
|
deleteCmd.Parse(args[2:])
|
||||||
|
|
||||||
|
sendIPCRequest(cfg, "POST", fmt.Sprintf("/instances/delete?name=%s&purge=%s", url.QueryEscape(name), url.QueryEscape(strconv.FormatBool(*purge))), nil)
|
||||||
|
|
||||||
|
case "modify":
|
||||||
|
if len(args) < 4 {
|
||||||
|
log.Fatalf("Usage: vssm modify <instance_name> <new_name> <new_port>")
|
||||||
|
}
|
||||||
|
name := args[1]
|
||||||
|
newName := args[2]
|
||||||
|
newPort := args[3]
|
||||||
|
sendIPCRequest(cfg, "POST", fmt.Sprintf("/instances/modify?name=%s&newName=%s&newPort=%s", url.QueryEscape(name), url.QueryEscape(newName), url.QueryEscape(newPort)), nil)
|
||||||
|
|
||||||
|
default:
|
||||||
|
printUsage()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func sendIPCRequest(cfg *AppConfig, method string, path string, body io.Reader) {
|
||||||
|
listenAddress := cfg.Daemon.ListenAddress + ":" + strconv.Itoa(cfg.Daemon.Port)
|
||||||
|
targetUrl := fmt.Sprintf("http://%s%s", listenAddress, path)
|
||||||
|
fmt.Printf("Listen Addr: %s; Target URL: %s\n", listenAddress, targetUrl)
|
||||||
|
req, err := http.NewRequest(method, targetUrl, body)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Fatalf("Process startup failed: %v", err)
|
log.Fatalf("Failed to construct IPC request: %v", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
sigChan := make(chan os.Signal, 1)
|
if body != nil {
|
||||||
signal.Notify(sigChan, os.Interrupt, syscall.SIGTERM)
|
req.Header.Set("Content-Type", "application/json")
|
||||||
|
}
|
||||||
fmt.Println("\nServer running. Press Ctrl+C to cleanly shut down...")
|
|
||||||
<-sigChan
|
if cfg.Daemon.AuthToken != "" {
|
||||||
|
req.Header.Set("Authorization", "Bearer "+cfg.Daemon.AuthToken)
|
||||||
fmt.Println("\n\nTriggering graceful server termination sequence...")
|
}
|
||||||
_ = procManager.SendCommand(instanceName, "stop")
|
|
||||||
|
resp, err := http.DefaultClient.Do(req)
|
||||||
fmt.Println("Manager exited successfully.")
|
if err != nil {
|
||||||
|
log.Fatalf("IPC connection failed. Is the VSSM daemon running? Error: %v", err)
|
||||||
|
}
|
||||||
|
defer resp.Body.Close()
|
||||||
|
|
||||||
|
respBody, _ := io.ReadAll(resp.Body)
|
||||||
|
|
||||||
|
if resp.StatusCode != http.StatusOK && resp.StatusCode != http.StatusCreated {
|
||||||
|
log.Fatalf("Error from daemon: %s", string(respBody))
|
||||||
|
}
|
||||||
|
|
||||||
|
fmt.Println(string(respBody))
|
||||||
|
}
|
||||||
|
|
||||||
|
func fetchAndPrintStatus(cfg *AppConfig) {
|
||||||
|
listenAddress := cfg.Daemon.ListenAddress + ":" + strconv.Itoa(cfg.Daemon.Port)
|
||||||
|
targetUrl := fmt.Sprintf("http://%s/instances/list", listenAddress)
|
||||||
|
|
||||||
|
req, err := http.NewRequest("GET", targetUrl, nil)
|
||||||
|
if err != nil {
|
||||||
|
log.Fatalf("Failed to construct status request: %v", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
if cfg.Daemon.AuthToken != "" {
|
||||||
|
req.Header.Set("Authorization", "Bearer "+cfg.Daemon.AuthToken)
|
||||||
|
}
|
||||||
|
|
||||||
|
resp, err := http.DefaultClient.Do(req)
|
||||||
|
if err != nil {
|
||||||
|
log.Fatalf("IPC connection failed. Is the VSSM daemon running? Error: %v", err)
|
||||||
|
}
|
||||||
|
defer resp.Body.Close()
|
||||||
|
|
||||||
|
if resp.StatusCode != http.StatusOK {
|
||||||
|
respBody, _ := io.ReadAll(resp.Body)
|
||||||
|
log.Fatalf("Error from daemon: %s", string(respBody))
|
||||||
|
}
|
||||||
|
|
||||||
|
var instances []InstanceStatusResponse
|
||||||
|
if err := json.NewDecoder(resp.Body).Decode(&instances); err != nil {
|
||||||
|
log.Fatalf("Failed to decode daemon status matrix: %v", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
if len(instances) == 0 {
|
||||||
|
fmt.Println("No instances configured yet. Use 'create' to create one.")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
w := tabwriter.NewWriter(os.Stdout, 0, 0, 3, ' ', 0)
|
||||||
|
fmt.Fprintln(w, "INSTANCE NAME\tVERSION\tPORT\tSTATUS")
|
||||||
|
fmt.Fprintln(w, "-------------\t-------\t----\t------")
|
||||||
|
|
||||||
|
for _, inst := range instances {
|
||||||
|
fmt.Fprintf(w, "%s\t%s\t%d\t%s\n", inst.Name, inst.Version, inst.Port, inst.Status)
|
||||||
|
}
|
||||||
|
w.Flush()
|
||||||
|
}
|
||||||
|
|
||||||
|
func generateToken() (string, error) {
|
||||||
|
bytes := make([]byte, 32)
|
||||||
|
if _, err := rand.Read(bytes); err != nil {
|
||||||
|
return "", err
|
||||||
|
}
|
||||||
|
return hex.EncodeToString(bytes), nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func isDaemonRunning(cfg *AppConfig) bool {
|
||||||
|
listenAddress := cfg.Daemon.ListenAddress + ":" + strconv.Itoa(cfg.Daemon.Port)
|
||||||
|
client := http.Client{Timeout: 500 * time.Millisecond}
|
||||||
|
resp, err := client.Get(fmt.Sprintf("http://%s/instances/list", listenAddress))
|
||||||
|
if err != nil {
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
resp.Body.Close()
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
|
||||||
|
func printUsage() {
|
||||||
|
fmt.Println("VintageStory Server Manager")
|
||||||
|
fmt.Println("\nGlobal Options:")
|
||||||
|
|
||||||
|
w := tabwriter.NewWriter(os.Stdout, 0, 0, 3, ' ', 0)
|
||||||
|
fmt.Fprintln(w, " --config <path>\tExplicitly target a non-default config structure file location")
|
||||||
|
w.Flush()
|
||||||
|
|
||||||
|
fmt.Println("\nUsage Commands:")
|
||||||
|
|
||||||
|
w = tabwriter.NewWriter(os.Stdout, 0, 0, 3, ' ', 0)
|
||||||
|
fmt.Fprintln(w, " vssm daemon\tStarts the daemon")
|
||||||
|
fmt.Fprintln(w, " vssm generate-token\tGenerates a new auth token and stores it in the config")
|
||||||
|
fmt.Fprintln(w, " vssm create <name> <version> <port>\tCreates the instance configuration and profile")
|
||||||
|
fmt.Fprintln(w, " vssm delete <name> [--purge]\tDeletes an instance profile, optionally deleting all files")
|
||||||
|
fmt.Fprintln(w, " vssm start <name>\tLaunches an existing server instance from a stored profile")
|
||||||
|
fmt.Fprintln(w, " vssm stop <name>\tGracefully shuts down a server instance")
|
||||||
|
fmt.Fprintln(w, " vssm cmd <name> \"<command>\"\tSends a command to an instance")
|
||||||
|
fmt.Fprintln(w, " vssm modify <name> <new_name> <new_port>\tRenames an instance and/or changes its port")
|
||||||
|
fmt.Fprintln(w, " vssm list\tDisplays a list of all instances and their status")
|
||||||
|
w.Flush()
|
||||||
}
|
}
|
||||||
|
|||||||
58
process.go
58
process.go
@@ -7,6 +7,7 @@ import (
|
|||||||
"os"
|
"os"
|
||||||
"os/exec"
|
"os/exec"
|
||||||
"path/filepath"
|
"path/filepath"
|
||||||
|
"strings"
|
||||||
"sync"
|
"sync"
|
||||||
)
|
)
|
||||||
|
|
||||||
@@ -14,16 +15,24 @@ type ProcessManager struct {
|
|||||||
sync.RWMutex
|
sync.RWMutex
|
||||||
ActiveInstances map[string]*exec.Cmd
|
ActiveInstances map[string]*exec.Cmd
|
||||||
StdinPipes map[string]io.WriteCloser
|
StdinPipes map[string]io.WriteCloser
|
||||||
|
LogBuffers map[string]*InstanceLogBuffer
|
||||||
|
}
|
||||||
|
|
||||||
|
type InstanceLogBuffer struct {
|
||||||
|
sync.RWMutex
|
||||||
|
Lines []string
|
||||||
|
MaxLines int
|
||||||
}
|
}
|
||||||
|
|
||||||
func NewProcessManager() *ProcessManager {
|
func NewProcessManager() *ProcessManager {
|
||||||
return &ProcessManager{
|
return &ProcessManager{
|
||||||
ActiveInstances: make(map[string]*exec.Cmd),
|
ActiveInstances: make(map[string]*exec.Cmd),
|
||||||
StdinPipes: make(map[string]io.WriteCloser),
|
StdinPipes: make(map[string]io.WriteCloser),
|
||||||
|
LogBuffers: map[string]*InstanceLogBuffer{},
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (pm *ProcessManager) StartInstance(name string, version string, options VsServerConfigOptions, config *AppConfig) error {
|
func (pm *ProcessManager) StartInstance(name string, version string, meta InstanceMetadata, config *AppConfig) error {
|
||||||
pm.Lock()
|
pm.Lock()
|
||||||
defer pm.Unlock()
|
defer pm.Unlock()
|
||||||
|
|
||||||
@@ -65,6 +74,7 @@ func (pm *ProcessManager) StartInstance(name string, version string, options VsS
|
|||||||
|
|
||||||
pm.ActiveInstances[name] = cmd
|
pm.ActiveInstances[name] = cmd
|
||||||
pm.StdinPipes[name] = stdinPipe
|
pm.StdinPipes[name] = stdinPipe
|
||||||
|
pm.LogBuffers[name] = NewInstanceLogBuffer(200)
|
||||||
|
|
||||||
go pm.streamLogs(name, stdoutPipe)
|
go pm.streamLogs(name, stdoutPipe)
|
||||||
go pm.watchProcessExit(name, cmd)
|
go pm.watchProcessExit(name, cmd)
|
||||||
@@ -78,9 +88,17 @@ func (pm *ProcessManager) streamLogs(name string, stdout io.ReadCloser) {
|
|||||||
scanner := bufio.NewScanner(stdout)
|
scanner := bufio.NewScanner(stdout)
|
||||||
|
|
||||||
for scanner.Scan() {
|
for scanner.Scan() {
|
||||||
//stream straight to the manager console terminal,
|
line := scanner.Text()
|
||||||
// but later dispatch payloads to our web UI or a log file
|
|
||||||
fmt.Printf("[%s]: %s\n", name, scanner.Text())
|
fmt.Printf("[%s]: %s\n", name, line)
|
||||||
|
|
||||||
|
pm.RLock()
|
||||||
|
buf, exists := pm.LogBuffers[name]
|
||||||
|
pm.RUnlock()
|
||||||
|
|
||||||
|
if exists {
|
||||||
|
buf.Append(line)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -107,6 +125,10 @@ func (pm *ProcessManager) SendCommand(name string, command string) error {
|
|||||||
return fmt.Errorf("Cannot send command, instance with name '%s' is not running", name)
|
return fmt.Errorf("Cannot send command, instance with name '%s' is not running", name)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if command != "" && !strings.HasPrefix(command, "/") {
|
||||||
|
command = "/" + command
|
||||||
|
}
|
||||||
|
|
||||||
_, err := io.WriteString(pipe, command+"\n")
|
_, err := io.WriteString(pipe, command+"\n")
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return fmt.Errorf("failed writing to server process stdin conduit: %w", err)
|
return fmt.Errorf("failed writing to server process stdin conduit: %w", err)
|
||||||
@@ -114,3 +136,31 @@ func (pm *ProcessManager) SendCommand(name string, command string) error {
|
|||||||
|
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func NewInstanceLogBuffer(maxLines int) *InstanceLogBuffer {
|
||||||
|
return &InstanceLogBuffer{
|
||||||
|
Lines: make([]string, 0, maxLines),
|
||||||
|
MaxLines: maxLines,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (lb *InstanceLogBuffer) Append(line string) {
|
||||||
|
lb.Lock()
|
||||||
|
defer lb.Unlock()
|
||||||
|
|
||||||
|
if len(lb.Lines) >= lb.MaxLines {
|
||||||
|
// Shift array out by dropping index 0
|
||||||
|
lb.Lines = lb.Lines[1:]
|
||||||
|
}
|
||||||
|
lb.Lines = append(lb.Lines, line)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (lb *InstanceLogBuffer) GetSnapshot() []string {
|
||||||
|
lb.RLock()
|
||||||
|
defer lb.RUnlock()
|
||||||
|
|
||||||
|
// Return a copy so the caller can safely iterate or serialize to JSON without lock conflicts
|
||||||
|
snapshot := make([]string, len(lb.Lines))
|
||||||
|
copy(snapshot, lb.Lines)
|
||||||
|
return snapshot
|
||||||
|
}
|
||||||
|
|||||||
2
web/dist/index.html
vendored
Normal file
2
web/dist/index.html
vendored
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html><body>Web UI not embedded in this build.</body></html>
|
||||||
Reference in New Issue
Block a user