diff --git a/.github/workflows/push.yaml b/.github/workflows/push.yaml index 02e96bd..f1c8095 100644 --- a/.github/workflows/push.yaml +++ b/.github/workflows/push.yaml @@ -40,7 +40,7 @@ jobs: GOOS: ${{ matrix.goos }} GOARCH: ${{ matrix.goarch }} CGO_ENABLED: 0 - SRC_PATH: github.com/pterodactyl/wings + SRC_PATH: github.com/Tech-Gamer/nwy-wings run: | go build -v -trimpath -ldflags="-s -w -X ${SRC_PATH}/system.Version=dev-${GIT_COMMIT:0:7}" -o dist/wings ${SRC_PATH} go build -v -trimpath -ldflags="-X ${SRC_PATH}/system.Version=dev-${GIT_COMMIT:0:7}" -o dist/wings_debug ${SRC_PATH} diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 12e07b4..5220765 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -24,9 +24,9 @@ jobs: CGO_ENABLED: 0 REF: ${{ github.ref }} run: | - GOARCH=amd64 go build -o dist/wings_linux_amd64 -v -trimpath -ldflags="-s -w -X github.com/pterodactyl/wings/system.Version=${REF:11}" github.com/pterodactyl/wings + GOARCH=amd64 go build -o dist/wings_linux_amd64 -v -trimpath -ldflags="-s -w -X github.com/Tech-Gamer/nwy-wings/system.Version=${REF:11}" github.com/Tech-Gamer/nwy-wings chmod 755 dist/wings_linux_amd64 - GOARCH=arm64 go build -o dist/wings_linux_arm64 -v -trimpath -ldflags="-s -w -X github.com/pterodactyl/wings/system.Version=${REF:11}" github.com/pterodactyl/wings + GOARCH=arm64 go build -o dist/wings_linux_arm64 -v -trimpath -ldflags="-s -w -X github.com/Tech-Gamer/nwy-wings/system.Version=${REF:11}" github.com/Tech-Gamer/nwy-wings chmod 755 dist/wings_linux_arm64 - name: Extract changelog diff --git a/CHANGELOG.md b/CHANGELOG.md index d947dc7..f4192fe 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,13 +11,13 @@ ## v1.11.5 ### Added -* Added a config option to disable Wings config.yml updates from the Panel (https://github.com/pterodactyl/wings/commit/ec6d6d83ea3eb14995c24f001233e85b37ffb87b) +* Added a config option to disable Wings config.yml updates from the Panel (https://github.com/Tech-Gamer/nwy-wings/commit/ec6d6d83ea3eb14995c24f001233e85b37ffb87b) ### Changed * Wings is now built with Go 1.19.7 ### Fixed -* Fixed archives containing partially matched file names (https://github.com/pterodactyl/wings/commit/43b3496f0001cec231c80af1f9a9b3417d04e8d4) +* Fixed archives containing partially matched file names (https://github.com/Tech-Gamer/nwy-wings/commit/43b3496f0001cec231c80af1f9a9b3417d04e8d4) ## v1.11.4 ### Fixed diff --git a/Dockerfile b/Dockerfile index c8053e1..749eb15 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,7 +8,7 @@ COPY go.mod go.sum /app/ RUN go mod download COPY . /app/ RUN CGO_ENABLED=0 go build \ - -ldflags="-s -w -X github.com/pterodactyl/wings/system.Version=$VERSION" \ + -ldflags="-s -w -X github.com/Tech-Gamer/nwy-wings/system.Version=$VERSION" \ -v \ -trimpath \ -o wings \ diff --git a/Makefile b/Makefile index b3d5fe5..10ba55d 100644 --- a/Makefile +++ b/Makefile @@ -5,13 +5,13 @@ build: GOOS=linux GOARCH=arm64 go build -ldflags="-s -w" -gcflags "all=-trimpath=$(pwd)" -o build/wings_linux_arm64 -v wings.go debug: - go build -ldflags="-X github.com/pterodactyl/wings/system.Version=$(GIT_HEAD)" + go build -ldflags="-X github.com/Tech-Gamer/nwy-wings/system.Version=$(GIT_HEAD)" sudo ./wings --debug --ignore-certificate-errors --config config.yml --pprof --pprof-block-rate 1 # Runs a remotly debuggable session for Wings allowing an IDE to connect and target # different breakpoints. rmdebug: - go build -gcflags "all=-N -l" -ldflags="-X github.com/pterodactyl/wings/system.Version=$(GIT_HEAD)" -race + go build -gcflags "all=-N -l" -ldflags="-X github.com/Tech-Gamer/nwy-wings/system.Version=$(GIT_HEAD)" -race sudo dlv --listen=:2345 --headless=true --api-version=2 --accept-multiclient exec ./wings -- --debug --ignore-certificate-errors --config config.yml cross-build: clean build compress diff --git a/README.md b/README.md index 33fe59d..a48a11e 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ ![Discord](https://img.shields.io/discord/122900397965705216?label=Discord&logo=Discord&logoColor=white) ![GitHub Releases](https://img.shields.io/github/downloads/pterodactyl/wings/latest/total) -[![Go Report Card](https://goreportcard.com/badge/github.com/pterodactyl/wings)](https://goreportcard.com/report/github.com/pterodactyl/wings) +[![Go Report Card](https://goreportcard.com/badge/github.com/Tech-Gamer/nwy-wings)](https://goreportcard.com/report/github.com/Tech-Gamer/nwy-wings) # Pterodactyl Wings diff --git a/cmd/configure.go b/cmd/configure.go index 9c89935..a595cfe 100644 --- a/cmd/configure.go +++ b/cmd/configure.go @@ -16,7 +16,7 @@ import ( "github.com/goccy/go-json" "github.com/spf13/cobra" - "github.com/pterodactyl/wings/config" + "github.com/Tech-Gamer/nwy-wings/config" ) var configureArgs struct { diff --git a/cmd/diagnostics.go b/cmd/diagnostics.go index c7362e1..aac9d80 100644 --- a/cmd/diagnostics.go +++ b/cmd/diagnostics.go @@ -22,10 +22,10 @@ import ( "github.com/goccy/go-json" "github.com/spf13/cobra" - "github.com/pterodactyl/wings/config" - "github.com/pterodactyl/wings/environment" - "github.com/pterodactyl/wings/loggers/cli" - "github.com/pterodactyl/wings/system" + "github.com/Tech-Gamer/nwy-wings/config" + "github.com/Tech-Gamer/nwy-wings/environment" + "github.com/Tech-Gamer/nwy-wings/loggers/cli" + "github.com/Tech-Gamer/nwy-wings/system" ) const ( diff --git a/cmd/root.go b/cmd/root.go index 6aa7d6d..78b757b 100644 --- a/cmd/root.go +++ b/cmd/root.go @@ -26,16 +26,16 @@ import ( "golang.org/x/crypto/acme" "golang.org/x/crypto/acme/autocert" - "github.com/pterodactyl/wings/config" - "github.com/pterodactyl/wings/environment" - "github.com/pterodactyl/wings/internal/cron" - "github.com/pterodactyl/wings/internal/database" - "github.com/pterodactyl/wings/loggers/cli" - "github.com/pterodactyl/wings/remote" - "github.com/pterodactyl/wings/router" - "github.com/pterodactyl/wings/server" - "github.com/pterodactyl/wings/sftp" - "github.com/pterodactyl/wings/system" + "github.com/Tech-Gamer/nwy-wings/config" + "github.com/Tech-Gamer/nwy-wings/environment" + "github.com/Tech-Gamer/nwy-wings/internal/cron" + "github.com/Tech-Gamer/nwy-wings/internal/database" + "github.com/Tech-Gamer/nwy-wings/loggers/cli" + "github.com/Tech-Gamer/nwy-wings/remote" + "github.com/Tech-Gamer/nwy-wings/router" + "github.com/Tech-Gamer/nwy-wings/server" + "github.com/Tech-Gamer/nwy-wings/sftp" + "github.com/Tech-Gamer/nwy-wings/system" ) var ( @@ -431,8 +431,8 @@ __ [blue][bold]Pterodactyl[reset] _____/___/_______ _______ ______ Copyright © 2018 - %d Dane Everitt & Contributors Website: https://pterodactyl.io - Source: https://github.com/pterodactyl/wings -License: https://github.com/pterodactyl/wings/blob/develop/LICENSE + Source: https://github.com/Tech-Gamer/nwy-wings +License: https://github.com/Tech-Gamer/nwy-wings/blob/develop/LICENSE This software is made available under the terms of the MIT license. The above copyright notice and this permission notice shall be included diff --git a/config/config.go b/config/config.go index 4c65bf7..7c1fa3c 100644 --- a/config/config.go +++ b/config/config.go @@ -22,7 +22,7 @@ import ( "github.com/gbrlsnchs/jwt/v3" "gopkg.in/yaml.v2" - "github.com/pterodactyl/wings/system" + "github.com/Tech-Gamer/nwy-wings/system" ) const DefaultLocation = "/etc/pterodactyl/config.yml" @@ -279,7 +279,7 @@ type Configuration struct { // if the debug flag is passed through the command line arguments. Debug bool - AppName string `default:"Pterodactyl" json:"app_name" yaml:"app_name"` + AppName string `default:"Nightway Hosting" json:"app_name" yaml:"app_name"` // A unique identifier for this node in the Panel. Uuid string diff --git a/environment/allocations.go b/environment/allocations.go index e55a2b8..dfab489 100644 --- a/environment/allocations.go +++ b/environment/allocations.go @@ -6,7 +6,7 @@ import ( "github.com/docker/go-connections/nat" - "github.com/pterodactyl/wings/config" + "github.com/Tech-Gamer/nwy-wings/config" ) // Defines the allocations available for a given server. When using the Docker environment diff --git a/environment/docker.go b/environment/docker.go index cbecbc3..98d808f 100644 --- a/environment/docker.go +++ b/environment/docker.go @@ -11,7 +11,7 @@ import ( "github.com/docker/docker/api/types/network" "github.com/docker/docker/client" - "github.com/pterodactyl/wings/config" + "github.com/Tech-Gamer/nwy-wings/config" ) var ( diff --git a/environment/docker/api.go b/environment/docker/api.go index 8afdc18..fbabe9c 100644 --- a/environment/docker/api.go +++ b/environment/docker/api.go @@ -15,7 +15,7 @@ import ( "github.com/docker/docker/errdefs" "github.com/goccy/go-json" - "github.com/pterodactyl/wings/config" + "github.com/Tech-Gamer/nwy-wings/config" ) var ( diff --git a/environment/docker/container.go b/environment/docker/container.go index 35b6e58..4547679 100644 --- a/environment/docker/container.go +++ b/environment/docker/container.go @@ -17,9 +17,9 @@ import ( "github.com/docker/docker/api/types/mount" "github.com/docker/docker/client" - "github.com/pterodactyl/wings/config" - "github.com/pterodactyl/wings/environment" - "github.com/pterodactyl/wings/system" + "github.com/Tech-Gamer/nwy-wings/config" + "github.com/Tech-Gamer/nwy-wings/environment" + "github.com/Tech-Gamer/nwy-wings/system" ) var ErrNotAttached = errors.Sentinel("not attached to instance") diff --git a/environment/docker/environment.go b/environment/docker/environment.go index 47f2d33..cbdd2b0 100644 --- a/environment/docker/environment.go +++ b/environment/docker/environment.go @@ -11,10 +11,10 @@ import ( "github.com/docker/docker/api/types" "github.com/docker/docker/client" - "github.com/pterodactyl/wings/environment" - "github.com/pterodactyl/wings/events" - "github.com/pterodactyl/wings/remote" - "github.com/pterodactyl/wings/system" + "github.com/Tech-Gamer/nwy-wings/environment" + "github.com/Tech-Gamer/nwy-wings/events" + "github.com/Tech-Gamer/nwy-wings/remote" + "github.com/Tech-Gamer/nwy-wings/system" ) type Metadata struct { diff --git a/environment/docker/power.go b/environment/docker/power.go index 6739d2f..aeaef5b 100644 --- a/environment/docker/power.go +++ b/environment/docker/power.go @@ -13,8 +13,8 @@ import ( "github.com/docker/docker/api/types/container" "github.com/docker/docker/client" - "github.com/pterodactyl/wings/environment" - "github.com/pterodactyl/wings/remote" + "github.com/Tech-Gamer/nwy-wings/environment" + "github.com/Tech-Gamer/nwy-wings/remote" ) // OnBeforeStart run before the container starts and get the process diff --git a/environment/docker/stats.go b/environment/docker/stats.go index 41da4cf..336075e 100644 --- a/environment/docker/stats.go +++ b/environment/docker/stats.go @@ -10,7 +10,7 @@ import ( "github.com/docker/docker/api/types" "github.com/goccy/go-json" - "github.com/pterodactyl/wings/environment" + "github.com/Tech-Gamer/nwy-wings/environment" ) // Uptime returns the current uptime of the container in milliseconds. If the diff --git a/environment/environment.go b/environment/environment.go index 2d03837..cb423af 100644 --- a/environment/environment.go +++ b/environment/environment.go @@ -5,7 +5,7 @@ import ( "os" "time" - "github.com/pterodactyl/wings/events" + "github.com/Tech-Gamer/nwy-wings/events" ) const ( diff --git a/environment/settings.go b/environment/settings.go index def91f6..0a4d96f 100644 --- a/environment/settings.go +++ b/environment/settings.go @@ -8,7 +8,7 @@ import ( "github.com/apex/log" "github.com/docker/docker/api/types/container" - "github.com/pterodactyl/wings/config" + "github.com/Tech-Gamer/nwy-wings/config" ) type Mount struct { diff --git a/events/events.go b/events/events.go index e6c026c..5c0d3fa 100644 --- a/events/events.go +++ b/events/events.go @@ -6,7 +6,7 @@ import ( "emperror.dev/errors" "github.com/goccy/go-json" - "github.com/pterodactyl/wings/system" + "github.com/Tech-Gamer/nwy-wings/system" ) // Event represents an Event sent over a Bus. diff --git a/go.mod b/go.mod index 5de43d4..e773c22 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/pterodactyl/wings +module github.com/Tech-Gamer/nwy-wings go 1.18 diff --git a/internal/cron/activity_cron.go b/internal/cron/activity_cron.go index 3221049..f2fb6f8 100644 --- a/internal/cron/activity_cron.go +++ b/internal/cron/activity_cron.go @@ -6,10 +6,10 @@ import ( "emperror.dev/errors" - "github.com/pterodactyl/wings/internal/database" - "github.com/pterodactyl/wings/internal/models" - "github.com/pterodactyl/wings/server" - "github.com/pterodactyl/wings/system" + "github.com/Tech-Gamer/nwy-wings/internal/database" + "github.com/Tech-Gamer/nwy-wings/internal/models" + "github.com/Tech-Gamer/nwy-wings/server" + "github.com/Tech-Gamer/nwy-wings/system" ) type activityCron struct { diff --git a/internal/cron/cron.go b/internal/cron/cron.go index fed4c04..ed7f56c 100644 --- a/internal/cron/cron.go +++ b/internal/cron/cron.go @@ -8,9 +8,9 @@ import ( "github.com/apex/log" "github.com/go-co-op/gocron" - "github.com/pterodactyl/wings/config" - "github.com/pterodactyl/wings/server" - "github.com/pterodactyl/wings/system" + "github.com/Tech-Gamer/nwy-wings/config" + "github.com/Tech-Gamer/nwy-wings/server" + "github.com/Tech-Gamer/nwy-wings/system" ) const ErrCronRunning = errors.Sentinel("cron: job already running") diff --git a/internal/cron/sftp_cron.go b/internal/cron/sftp_cron.go index 239e014..553f3b3 100644 --- a/internal/cron/sftp_cron.go +++ b/internal/cron/sftp_cron.go @@ -6,10 +6,10 @@ import ( "emperror.dev/errors" - "github.com/pterodactyl/wings/internal/database" - "github.com/pterodactyl/wings/internal/models" - "github.com/pterodactyl/wings/server" - "github.com/pterodactyl/wings/system" + "github.com/Tech-Gamer/nwy-wings/internal/database" + "github.com/Tech-Gamer/nwy-wings/internal/models" + "github.com/Tech-Gamer/nwy-wings/server" + "github.com/Tech-Gamer/nwy-wings/system" ) type sftpCron struct { diff --git a/internal/database/database.go b/internal/database/database.go index 3fd6820..bdaf2f1 100644 --- a/internal/database/database.go +++ b/internal/database/database.go @@ -9,9 +9,9 @@ import ( "gorm.io/gorm" "gorm.io/gorm/logger" - "github.com/pterodactyl/wings/config" - "github.com/pterodactyl/wings/internal/models" - "github.com/pterodactyl/wings/system" + "github.com/Tech-Gamer/nwy-wings/config" + "github.com/Tech-Gamer/nwy-wings/internal/models" + "github.com/Tech-Gamer/nwy-wings/system" ) var ( diff --git a/internal/progress/progress.go b/internal/progress/progress.go index 0e219af..ba8ad99 100644 --- a/internal/progress/progress.go +++ b/internal/progress/progress.go @@ -5,7 +5,7 @@ import ( "strings" "sync/atomic" - "github.com/pterodactyl/wings/system" + "github.com/Tech-Gamer/nwy-wings/system" ) // Progress is used to track the progress of any I/O operation that are being diff --git a/internal/progress/progress_test.go b/internal/progress/progress_test.go index 98037f5..4b5501c 100644 --- a/internal/progress/progress_test.go +++ b/internal/progress/progress_test.go @@ -6,7 +6,7 @@ import ( "github.com/franela/goblin" - "github.com/pterodactyl/wings/internal/progress" + "github.com/Tech-Gamer/nwy-wings/internal/progress" ) func TestProgress(t *testing.T) { diff --git a/loggers/cli/cli.go b/loggers/cli/cli.go index d2e425d..2289f70 100644 --- a/loggers/cli/cli.go +++ b/loggers/cli/cli.go @@ -90,15 +90,15 @@ func (h *Handler) HandleLog(e *log.Entry) error { // Stacktrace: // readlink test: no such file or directory // failed to read symlink target for 'test' - // github.com/pterodactyl/wings/server/filesystem.(*Archive).addToArchive - // github.com/pterodactyl/wings/server/filesystem/archive.go:166 + // github.com/Tech-Gamer/nwy-wings/server/filesystem.(*Archive).addToArchive + // github.com/Tech-Gamer/nwy-wings/server/filesystem/archive.go:166 // ... (Truncated the stack for easier reading) // runtime.goexit // runtime/asm_amd64.s:1374 // **NEW LINE INSERTED HERE** // backup: error while generating server backup - // github.com/pterodactyl/wings/server.(*Server).Backup - // github.com/pterodactyl/wings/server/backup.go:84 + // github.com/Tech-Gamer/nwy-wings/server.(*Server).Backup + // github.com/Tech-Gamer/nwy-wings/server/backup.go:84 // ... (Truncated the stack for easier reading) // runtime.goexit // runtime/asm_amd64.s:1374 diff --git a/oryxBuildBinary b/oryxBuildBinary new file mode 100755 index 0000000..a630a0f Binary files /dev/null and b/oryxBuildBinary differ diff --git a/parser/parser.go b/parser/parser.go index 9a3506e..326d442 100644 --- a/parser/parser.go +++ b/parser/parser.go @@ -17,7 +17,7 @@ import ( "gopkg.in/ini.v1" "gopkg.in/yaml.v3" - "github.com/pterodactyl/wings/config" + "github.com/Tech-Gamer/nwy-wings/config" ) // The file parsing options that are available for a server configuration file. diff --git a/remote/http.go b/remote/http.go index 7812799..89abd9e 100644 --- a/remote/http.go +++ b/remote/http.go @@ -10,14 +10,14 @@ import ( "strings" "time" - "github.com/pterodactyl/wings/internal/models" + "github.com/Tech-Gamer/nwy-wings/internal/models" "emperror.dev/errors" "github.com/apex/log" "github.com/cenkalti/backoff/v4" "github.com/goccy/go-json" - "github.com/pterodactyl/wings/system" + "github.com/Tech-Gamer/nwy-wings/system" ) type Client interface { diff --git a/remote/servers.go b/remote/servers.go index 922d2c7..a9059db 100644 --- a/remote/servers.go +++ b/remote/servers.go @@ -6,7 +6,7 @@ import ( "strconv" "sync" - "github.com/pterodactyl/wings/internal/models" + "github.com/Tech-Gamer/nwy-wings/internal/models" "emperror.dev/errors" "github.com/apex/log" diff --git a/remote/types.go b/remote/types.go index f636730..aa6783a 100644 --- a/remote/types.go +++ b/remote/types.go @@ -8,7 +8,7 @@ import ( "github.com/apex/log" "github.com/goccy/go-json" - "github.com/pterodactyl/wings/parser" + "github.com/Tech-Gamer/nwy-wings/parser" ) const ( diff --git a/router/downloader/downloader.go b/router/downloader/downloader.go index d95af51..fad74df 100644 --- a/router/downloader/downloader.go +++ b/router/downloader/downloader.go @@ -17,7 +17,7 @@ import ( "github.com/goccy/go-json" "github.com/google/uuid" - "github.com/pterodactyl/wings/server" + "github.com/Tech-Gamer/nwy-wings/server" ) var client = &http.Client{ diff --git a/router/middleware.go b/router/middleware.go index 20f32d7..8cf5654 100644 --- a/router/middleware.go +++ b/router/middleware.go @@ -3,8 +3,8 @@ package router import ( "github.com/gin-gonic/gin" - "github.com/pterodactyl/wings/router/middleware" - "github.com/pterodactyl/wings/server" + "github.com/Tech-Gamer/nwy-wings/router/middleware" + "github.com/Tech-Gamer/nwy-wings/server" ) // ExtractServer returns the server instance from the gin context. If there is diff --git a/router/middleware/middleware.go b/router/middleware/middleware.go index cd37a9e..f77a6b5 100644 --- a/router/middleware/middleware.go +++ b/router/middleware/middleware.go @@ -11,9 +11,9 @@ import ( "github.com/gin-gonic/gin" "github.com/google/uuid" - "github.com/pterodactyl/wings/config" - "github.com/pterodactyl/wings/remote" - "github.com/pterodactyl/wings/server" + "github.com/Tech-Gamer/nwy-wings/config" + "github.com/Tech-Gamer/nwy-wings/remote" + "github.com/Tech-Gamer/nwy-wings/server" ) // AttachRequestID attaches a unique ID to the incoming HTTP request so that any diff --git a/router/middleware/request_error.go b/router/middleware/request_error.go index 9ac6fd2..32dc27d 100644 --- a/router/middleware/request_error.go +++ b/router/middleware/request_error.go @@ -10,8 +10,8 @@ import ( "github.com/apex/log" "github.com/gin-gonic/gin" - "github.com/pterodactyl/wings/server" - "github.com/pterodactyl/wings/server/filesystem" + "github.com/Tech-Gamer/nwy-wings/server" + "github.com/Tech-Gamer/nwy-wings/server/filesystem" ) // RequestError is a custom error type returned when something goes wrong with diff --git a/router/router.go b/router/router.go index d748e27..2477183 100644 --- a/router/router.go +++ b/router/router.go @@ -5,10 +5,10 @@ import ( "github.com/apex/log" "github.com/gin-gonic/gin" - "github.com/pterodactyl/wings/config" - "github.com/pterodactyl/wings/remote" - "github.com/pterodactyl/wings/router/middleware" - wserver "github.com/pterodactyl/wings/server" + "github.com/Tech-Gamer/nwy-wings/config" + "github.com/Tech-Gamer/nwy-wings/remote" + "github.com/Tech-Gamer/nwy-wings/router/middleware" + wserver "github.com/Tech-Gamer/nwy-wings/server" ) // Configure configures the routing infrastructure for this daemon instance. diff --git a/router/router_download.go b/router/router_download.go index 2d3f765..dffd825 100644 --- a/router/router_download.go +++ b/router/router_download.go @@ -9,9 +9,9 @@ import ( "github.com/gin-gonic/gin" - "github.com/pterodactyl/wings/router/middleware" - "github.com/pterodactyl/wings/router/tokens" - "github.com/pterodactyl/wings/server/backup" + "github.com/Tech-Gamer/nwy-wings/router/middleware" + "github.com/Tech-Gamer/nwy-wings/router/tokens" + "github.com/Tech-Gamer/nwy-wings/server/backup" ) // Handle a download request for a server backup. diff --git a/router/router_server.go b/router/router_server.go index 1cd4a98..f322633 100644 --- a/router/router_server.go +++ b/router/router_server.go @@ -10,11 +10,11 @@ import ( "github.com/apex/log" "github.com/gin-gonic/gin" - "github.com/pterodactyl/wings/router/downloader" - "github.com/pterodactyl/wings/router/middleware" - "github.com/pterodactyl/wings/router/tokens" - "github.com/pterodactyl/wings/server" - "github.com/pterodactyl/wings/server/transfer" + "github.com/Tech-Gamer/nwy-wings/router/downloader" + "github.com/Tech-Gamer/nwy-wings/router/middleware" + "github.com/Tech-Gamer/nwy-wings/router/tokens" + "github.com/Tech-Gamer/nwy-wings/server" + "github.com/Tech-Gamer/nwy-wings/server/transfer" ) // Returns a single server from the collection of servers. diff --git a/router/router_server_backup.go b/router/router_server_backup.go index 4c3d337..e0066d7 100644 --- a/router/router_server_backup.go +++ b/router/router_server_backup.go @@ -9,9 +9,9 @@ import ( "github.com/apex/log" "github.com/gin-gonic/gin" - "github.com/pterodactyl/wings/router/middleware" - "github.com/pterodactyl/wings/server" - "github.com/pterodactyl/wings/server/backup" + "github.com/Tech-Gamer/nwy-wings/router/middleware" + "github.com/Tech-Gamer/nwy-wings/server" + "github.com/Tech-Gamer/nwy-wings/server/backup" ) // postServerBackup performs a backup against a given server instance using the diff --git a/router/router_server_files.go b/router/router_server_files.go index 4c5ec1e..788b23b 100644 --- a/router/router_server_files.go +++ b/router/router_server_files.go @@ -18,13 +18,13 @@ import ( "github.com/gin-gonic/gin" "golang.org/x/sync/errgroup" - "github.com/pterodactyl/wings/config" - "github.com/pterodactyl/wings/internal/models" - "github.com/pterodactyl/wings/router/downloader" - "github.com/pterodactyl/wings/router/middleware" - "github.com/pterodactyl/wings/router/tokens" - "github.com/pterodactyl/wings/server" - "github.com/pterodactyl/wings/server/filesystem" + "github.com/Tech-Gamer/nwy-wings/config" + "github.com/Tech-Gamer/nwy-wings/internal/models" + "github.com/Tech-Gamer/nwy-wings/router/downloader" + "github.com/Tech-Gamer/nwy-wings/router/middleware" + "github.com/Tech-Gamer/nwy-wings/router/tokens" + "github.com/Tech-Gamer/nwy-wings/server" + "github.com/Tech-Gamer/nwy-wings/server/filesystem" ) // getServerFileContents returns the contents of a file on the server. diff --git a/router/router_server_transfer.go b/router/router_server_transfer.go index 8c9c5c4..c92167f 100644 --- a/router/router_server_transfer.go +++ b/router/router_server_transfer.go @@ -9,11 +9,11 @@ import ( "emperror.dev/errors" "github.com/gin-gonic/gin" - "github.com/pterodactyl/wings/environment" - "github.com/pterodactyl/wings/router/middleware" - "github.com/pterodactyl/wings/server" - "github.com/pterodactyl/wings/server/installer" - "github.com/pterodactyl/wings/server/transfer" + "github.com/Tech-Gamer/nwy-wings/environment" + "github.com/Tech-Gamer/nwy-wings/router/middleware" + "github.com/Tech-Gamer/nwy-wings/server" + "github.com/Tech-Gamer/nwy-wings/server/installer" + "github.com/Tech-Gamer/nwy-wings/server/transfer" ) // Data passed over to initiate a server transfer. diff --git a/router/router_server_ws.go b/router/router_server_ws.go index 8bb56e6..8e7bcaa 100644 --- a/router/router_server_ws.go +++ b/router/router_server_ws.go @@ -8,8 +8,8 @@ import ( "github.com/goccy/go-json" ws "github.com/gorilla/websocket" - "github.com/pterodactyl/wings/router/middleware" - "github.com/pterodactyl/wings/router/websocket" + "github.com/Tech-Gamer/nwy-wings/router/middleware" + "github.com/Tech-Gamer/nwy-wings/router/websocket" ) var expectedCloseCodes = []int{ diff --git a/router/router_system.go b/router/router_system.go index 9dbe605..66fc957 100644 --- a/router/router_system.go +++ b/router/router_system.go @@ -9,11 +9,11 @@ import ( "github.com/apex/log" "github.com/gin-gonic/gin" - "github.com/pterodactyl/wings/config" - "github.com/pterodactyl/wings/router/middleware" - "github.com/pterodactyl/wings/server" - "github.com/pterodactyl/wings/server/installer" - "github.com/pterodactyl/wings/system" + "github.com/Tech-Gamer/nwy-wings/config" + "github.com/Tech-Gamer/nwy-wings/router/middleware" + "github.com/Tech-Gamer/nwy-wings/server" + "github.com/Tech-Gamer/nwy-wings/server/installer" + "github.com/Tech-Gamer/nwy-wings/system" ) // Returns information about the system that wings is running on. diff --git a/router/router_transfer.go b/router/router_transfer.go index 1e78a39..7211b98 100644 --- a/router/router_transfer.go +++ b/router/router_transfer.go @@ -18,11 +18,11 @@ import ( "github.com/gin-gonic/gin" "github.com/google/uuid" - "github.com/pterodactyl/wings/router/middleware" - "github.com/pterodactyl/wings/router/tokens" - "github.com/pterodactyl/wings/server" - "github.com/pterodactyl/wings/server/installer" - "github.com/pterodactyl/wings/server/transfer" + "github.com/Tech-Gamer/nwy-wings/router/middleware" + "github.com/Tech-Gamer/nwy-wings/router/tokens" + "github.com/Tech-Gamer/nwy-wings/server" + "github.com/Tech-Gamer/nwy-wings/server/installer" + "github.com/Tech-Gamer/nwy-wings/server/transfer" ) // postTransfers . diff --git a/router/tokens/parser.go b/router/tokens/parser.go index ad6ca64..b7e06c4 100644 --- a/router/tokens/parser.go +++ b/router/tokens/parser.go @@ -5,7 +5,7 @@ import ( "github.com/gbrlsnchs/jwt/v3" - "github.com/pterodactyl/wings/config" + "github.com/Tech-Gamer/nwy-wings/config" ) type TokenData interface { diff --git a/router/websocket/listeners.go b/router/websocket/listeners.go index 272c8ae..6327cb5 100644 --- a/router/websocket/listeners.go +++ b/router/websocket/listeners.go @@ -8,10 +8,10 @@ import ( "emperror.dev/errors" "github.com/goccy/go-json" - "github.com/pterodactyl/wings/events" - "github.com/pterodactyl/wings/system" + "github.com/Tech-Gamer/nwy-wings/events" + "github.com/Tech-Gamer/nwy-wings/system" - "github.com/pterodactyl/wings/server" + "github.com/Tech-Gamer/nwy-wings/server" ) // RegisterListenerEvents will setup the server event listeners and expiration diff --git a/router/websocket/websocket.go b/router/websocket/websocket.go index 95f56bd..c7c1979 100644 --- a/router/websocket/websocket.go +++ b/router/websocket/websocket.go @@ -8,7 +8,7 @@ import ( "sync" "time" - "github.com/pterodactyl/wings/internal/models" + "github.com/Tech-Gamer/nwy-wings/internal/models" "emperror.dev/errors" "github.com/apex/log" @@ -18,13 +18,13 @@ import ( "github.com/google/uuid" "github.com/gorilla/websocket" - "github.com/pterodactyl/wings/system" + "github.com/Tech-Gamer/nwy-wings/system" - "github.com/pterodactyl/wings/config" - "github.com/pterodactyl/wings/environment" - "github.com/pterodactyl/wings/environment/docker" - "github.com/pterodactyl/wings/router/tokens" - "github.com/pterodactyl/wings/server" + "github.com/Tech-Gamer/nwy-wings/config" + "github.com/Tech-Gamer/nwy-wings/environment" + "github.com/Tech-Gamer/nwy-wings/environment/docker" + "github.com/Tech-Gamer/nwy-wings/router/tokens" + "github.com/Tech-Gamer/nwy-wings/server" ) const ( diff --git a/server/activity.go b/server/activity.go index c1613ad..e35a573 100644 --- a/server/activity.go +++ b/server/activity.go @@ -6,8 +6,8 @@ import ( "emperror.dev/errors" - "github.com/pterodactyl/wings/internal/database" - "github.com/pterodactyl/wings/internal/models" + "github.com/Tech-Gamer/nwy-wings/internal/database" + "github.com/Tech-Gamer/nwy-wings/internal/models" ) const ActivityPowerPrefix = "server:power." diff --git a/server/backup.go b/server/backup.go index 892a356..f063e12 100644 --- a/server/backup.go +++ b/server/backup.go @@ -10,9 +10,9 @@ import ( "github.com/apex/log" "github.com/docker/docker/client" - "github.com/pterodactyl/wings/environment" - "github.com/pterodactyl/wings/remote" - "github.com/pterodactyl/wings/server/backup" + "github.com/Tech-Gamer/nwy-wings/environment" + "github.com/Tech-Gamer/nwy-wings/remote" + "github.com/Tech-Gamer/nwy-wings/server/backup" ) // Notifies the panel of a backup's state and returns an error if one is encountered diff --git a/server/backup/backup.go b/server/backup/backup.go index e606557..688f618 100644 --- a/server/backup/backup.go +++ b/server/backup/backup.go @@ -14,8 +14,8 @@ import ( "github.com/mholt/archiver/v4" "golang.org/x/sync/errgroup" - "github.com/pterodactyl/wings/config" - "github.com/pterodactyl/wings/remote" + "github.com/Tech-Gamer/nwy-wings/config" + "github.com/Tech-Gamer/nwy-wings/remote" ) var format = archiver.CompressedArchive{ diff --git a/server/backup/backup_local.go b/server/backup/backup_local.go index a6a1d72..b4e2442 100644 --- a/server/backup/backup_local.go +++ b/server/backup/backup_local.go @@ -9,9 +9,9 @@ import ( "github.com/juju/ratelimit" "github.com/mholt/archiver/v4" - "github.com/pterodactyl/wings/config" - "github.com/pterodactyl/wings/remote" - "github.com/pterodactyl/wings/server/filesystem" + "github.com/Tech-Gamer/nwy-wings/config" + "github.com/Tech-Gamer/nwy-wings/remote" + "github.com/Tech-Gamer/nwy-wings/server/filesystem" ) type LocalBackup struct { diff --git a/server/backup/backup_s3.go b/server/backup/backup_s3.go index ede235a..35013dc 100644 --- a/server/backup/backup_s3.go +++ b/server/backup/backup_s3.go @@ -14,9 +14,9 @@ import ( "github.com/juju/ratelimit" "github.com/mholt/archiver/v4" - "github.com/pterodactyl/wings/config" - "github.com/pterodactyl/wings/remote" - "github.com/pterodactyl/wings/server/filesystem" + "github.com/Tech-Gamer/nwy-wings/config" + "github.com/Tech-Gamer/nwy-wings/remote" + "github.com/Tech-Gamer/nwy-wings/server/filesystem" ) type S3Backup struct { diff --git a/server/configuration.go b/server/configuration.go index 387aba8..92fce64 100644 --- a/server/configuration.go +++ b/server/configuration.go @@ -3,7 +3,7 @@ package server import ( "sync" - "github.com/pterodactyl/wings/environment" + "github.com/Tech-Gamer/nwy-wings/environment" ) type EggConfiguration struct { diff --git a/server/console.go b/server/console.go index 399c4a5..4f2a16a 100644 --- a/server/console.go +++ b/server/console.go @@ -7,8 +7,8 @@ import ( "github.com/mitchellh/colorstring" - "github.com/pterodactyl/wings/config" - "github.com/pterodactyl/wings/system" + "github.com/Tech-Gamer/nwy-wings/config" + "github.com/Tech-Gamer/nwy-wings/system" ) // appName is a local cache variable to avoid having to make expensive copies of diff --git a/server/crash.go b/server/crash.go index 3439c4a..f413383 100644 --- a/server/crash.go +++ b/server/crash.go @@ -8,8 +8,8 @@ import ( "emperror.dev/errors" - "github.com/pterodactyl/wings/config" - "github.com/pterodactyl/wings/environment" + "github.com/Tech-Gamer/nwy-wings/config" + "github.com/Tech-Gamer/nwy-wings/environment" ) type CrashHandler struct { @@ -70,6 +70,7 @@ func (s *Server) handleServerCrash() error { } s.PublishConsoleOutputFromDaemon("---------- Detected server process in a crashed state! ----------") + s.PublishConsoleOutputFromDaemon("---------- If you need help, please contact Nightway Hosting support. ----------") s.PublishConsoleOutputFromDaemon(fmt.Sprintf("Exit code: %d", exitCode)) s.PublishConsoleOutputFromDaemon(fmt.Sprintf("Out of memory: %t", oomKilled)) diff --git a/server/events.go b/server/events.go index d08411c..dc0c1e1 100644 --- a/server/events.go +++ b/server/events.go @@ -1,8 +1,8 @@ package server import ( - "github.com/pterodactyl/wings/events" - "github.com/pterodactyl/wings/system" + "github.com/Tech-Gamer/nwy-wings/events" + "github.com/Tech-Gamer/nwy-wings/system" ) // Defines all the possible output events for a server. diff --git a/server/filesystem/archive.go b/server/filesystem/archive.go index 0e95224..dffbcf8 100644 --- a/server/filesystem/archive.go +++ b/server/filesystem/archive.go @@ -18,8 +18,8 @@ import ( "github.com/klauspost/pgzip" ignore "github.com/sabhiram/go-gitignore" - "github.com/pterodactyl/wings/config" - "github.com/pterodactyl/wings/internal/progress" + "github.com/Tech-Gamer/nwy-wings/config" + "github.com/Tech-Gamer/nwy-wings/internal/progress" ) const memory = 4 * 1024 diff --git a/server/filesystem/filesystem.go b/server/filesystem/filesystem.go index ccc2daa..224d8d0 100644 --- a/server/filesystem/filesystem.go +++ b/server/filesystem/filesystem.go @@ -19,8 +19,8 @@ import ( "github.com/karrick/godirwalk" ignore "github.com/sabhiram/go-gitignore" - "github.com/pterodactyl/wings/config" - "github.com/pterodactyl/wings/system" + "github.com/Tech-Gamer/nwy-wings/config" + "github.com/Tech-Gamer/nwy-wings/system" ) type Filesystem struct { diff --git a/server/filesystem/filesystem_test.go b/server/filesystem/filesystem_test.go index 23f43bf..8dbce24 100644 --- a/server/filesystem/filesystem_test.go +++ b/server/filesystem/filesystem_test.go @@ -13,7 +13,7 @@ import ( . "github.com/franela/goblin" - "github.com/pterodactyl/wings/config" + "github.com/Tech-Gamer/nwy-wings/config" ) func NewFs() (*Filesystem, *rootFs) { diff --git a/server/install.go b/server/install.go index baf43ac..df0061c 100644 --- a/server/install.go +++ b/server/install.go @@ -19,10 +19,10 @@ import ( "github.com/docker/docker/api/types/mount" "github.com/docker/docker/client" - "github.com/pterodactyl/wings/config" - "github.com/pterodactyl/wings/environment" - "github.com/pterodactyl/wings/remote" - "github.com/pterodactyl/wings/system" + "github.com/Tech-Gamer/nwy-wings/config" + "github.com/Tech-Gamer/nwy-wings/environment" + "github.com/Tech-Gamer/nwy-wings/remote" + "github.com/Tech-Gamer/nwy-wings/system" ) // Install executes the installation stack for a server process. Bubbles any diff --git a/server/installer/installer.go b/server/installer/installer.go index f414918..9c892fe 100644 --- a/server/installer/installer.go +++ b/server/installer/installer.go @@ -6,8 +6,8 @@ import ( "emperror.dev/errors" "github.com/asaskevich/govalidator" - "github.com/pterodactyl/wings/remote" - "github.com/pterodactyl/wings/server" + "github.com/Tech-Gamer/nwy-wings/remote" + "github.com/Tech-Gamer/nwy-wings/server" ) type Installer struct { diff --git a/server/listeners.go b/server/listeners.go index d39e664..80852a6 100644 --- a/server/listeners.go +++ b/server/listeners.go @@ -9,11 +9,11 @@ import ( "github.com/apex/log" - "github.com/pterodactyl/wings/events" - "github.com/pterodactyl/wings/system" + "github.com/Tech-Gamer/nwy-wings/events" + "github.com/Tech-Gamer/nwy-wings/system" - "github.com/pterodactyl/wings/environment" - "github.com/pterodactyl/wings/remote" + "github.com/Tech-Gamer/nwy-wings/environment" + "github.com/Tech-Gamer/nwy-wings/remote" ) var dockerEvents = []string{ diff --git a/server/manager.go b/server/manager.go index 4ea2e9f..3bf481f 100644 --- a/server/manager.go +++ b/server/manager.go @@ -15,11 +15,11 @@ import ( "github.com/gammazero/workerpool" "github.com/goccy/go-json" - "github.com/pterodactyl/wings/config" - "github.com/pterodactyl/wings/environment" - "github.com/pterodactyl/wings/environment/docker" - "github.com/pterodactyl/wings/remote" - "github.com/pterodactyl/wings/server/filesystem" + "github.com/Tech-Gamer/nwy-wings/config" + "github.com/Tech-Gamer/nwy-wings/environment" + "github.com/Tech-Gamer/nwy-wings/environment/docker" + "github.com/Tech-Gamer/nwy-wings/remote" + "github.com/Tech-Gamer/nwy-wings/server/filesystem" ) type Manager struct { diff --git a/server/mounts.go b/server/mounts.go index 97c8094..cf93d01 100644 --- a/server/mounts.go +++ b/server/mounts.go @@ -6,8 +6,8 @@ import ( "github.com/apex/log" - "github.com/pterodactyl/wings/config" - "github.com/pterodactyl/wings/environment" + "github.com/Tech-Gamer/nwy-wings/config" + "github.com/Tech-Gamer/nwy-wings/environment" ) // To avoid confusion when working with mounts, assume that a server.Mount has not been properly diff --git a/server/power.go b/server/power.go index f927ceb..ac798db 100644 --- a/server/power.go +++ b/server/power.go @@ -9,8 +9,8 @@ import ( "emperror.dev/errors" "github.com/google/uuid" - "github.com/pterodactyl/wings/config" - "github.com/pterodactyl/wings/environment" + "github.com/Tech-Gamer/nwy-wings/config" + "github.com/Tech-Gamer/nwy-wings/environment" ) type PowerAction string diff --git a/server/power_test.go b/server/power_test.go index 3aa993b..fa4c8fe 100644 --- a/server/power_test.go +++ b/server/power_test.go @@ -5,7 +5,7 @@ import ( . "github.com/franela/goblin" - "github.com/pterodactyl/wings/system" + "github.com/Tech-Gamer/nwy-wings/system" ) func TestPower(t *testing.T) { diff --git a/server/resources.go b/server/resources.go index e11adf5..7a1abff 100644 --- a/server/resources.go +++ b/server/resources.go @@ -4,8 +4,8 @@ import ( "sync" "sync/atomic" - "github.com/pterodactyl/wings/environment" - "github.com/pterodactyl/wings/system" + "github.com/Tech-Gamer/nwy-wings/environment" + "github.com/Tech-Gamer/nwy-wings/system" ) // ResourceUsage defines the current resource usage for a given server instance. If a server is offline you diff --git a/server/server.go b/server/server.go index 18c10e2..f2aed8c 100644 --- a/server/server.go +++ b/server/server.go @@ -13,12 +13,12 @@ import ( "github.com/creasty/defaults" "github.com/goccy/go-json" - "github.com/pterodactyl/wings/config" - "github.com/pterodactyl/wings/environment" - "github.com/pterodactyl/wings/events" - "github.com/pterodactyl/wings/remote" - "github.com/pterodactyl/wings/server/filesystem" - "github.com/pterodactyl/wings/system" + "github.com/Tech-Gamer/nwy-wings/config" + "github.com/Tech-Gamer/nwy-wings/environment" + "github.com/Tech-Gamer/nwy-wings/events" + "github.com/Tech-Gamer/nwy-wings/remote" + "github.com/Tech-Gamer/nwy-wings/server/filesystem" + "github.com/Tech-Gamer/nwy-wings/system" ) // Server is the high level definition for a server instance being controlled diff --git a/server/transfer/archive.go b/server/transfer/archive.go index e5457f1..6a3d51a 100644 --- a/server/transfer/archive.go +++ b/server/transfer/archive.go @@ -5,8 +5,8 @@ import ( "fmt" "io" - "github.com/pterodactyl/wings/internal/progress" - "github.com/pterodactyl/wings/server/filesystem" + "github.com/Tech-Gamer/nwy-wings/internal/progress" + "github.com/Tech-Gamer/nwy-wings/server/filesystem" ) // Archive returns an archive that can be used to stream the contents of the diff --git a/server/transfer/source.go b/server/transfer/source.go index cdcceec..ccf0b5c 100644 --- a/server/transfer/source.go +++ b/server/transfer/source.go @@ -11,7 +11,7 @@ import ( "net/http" "time" - "github.com/pterodactyl/wings/internal/progress" + "github.com/Tech-Gamer/nwy-wings/internal/progress" ) // PushArchiveToTarget POSTs the archive to the target node and returns the diff --git a/server/transfer/transfer.go b/server/transfer/transfer.go index 6511cfc..ad7e76c 100644 --- a/server/transfer/transfer.go +++ b/server/transfer/transfer.go @@ -7,8 +7,8 @@ import ( "github.com/apex/log" "github.com/mitchellh/colorstring" - "github.com/pterodactyl/wings/server" - "github.com/pterodactyl/wings/system" + "github.com/Tech-Gamer/nwy-wings/server" + "github.com/Tech-Gamer/nwy-wings/system" ) // Status represents the current status of a transfer. diff --git a/server/update.go b/server/update.go index c8a57bb..1000dfb 100644 --- a/server/update.go +++ b/server/update.go @@ -3,9 +3,9 @@ package server import ( "time" - "github.com/pterodactyl/wings/environment/docker" + "github.com/Tech-Gamer/nwy-wings/environment/docker" - "github.com/pterodactyl/wings/environment" + "github.com/Tech-Gamer/nwy-wings/environment" ) // SyncWithEnvironment updates the environment for the server to match any of diff --git a/sftp/event.go b/sftp/event.go index 2c4d85f..418ed54 100644 --- a/sftp/event.go +++ b/sftp/event.go @@ -4,8 +4,8 @@ import ( "emperror.dev/errors" "github.com/apex/log" - "github.com/pterodactyl/wings/internal/database" - "github.com/pterodactyl/wings/internal/models" + "github.com/Tech-Gamer/nwy-wings/internal/database" + "github.com/Tech-Gamer/nwy-wings/internal/models" ) type eventHandler struct { diff --git a/sftp/handler.go b/sftp/handler.go index d4bc500..d702282 100644 --- a/sftp/handler.go +++ b/sftp/handler.go @@ -13,9 +13,9 @@ import ( "github.com/pkg/sftp" "golang.org/x/crypto/ssh" - "github.com/pterodactyl/wings/config" - "github.com/pterodactyl/wings/server" - "github.com/pterodactyl/wings/server/filesystem" + "github.com/Tech-Gamer/nwy-wings/config" + "github.com/Tech-Gamer/nwy-wings/server" + "github.com/Tech-Gamer/nwy-wings/server/filesystem" ) const ( diff --git a/sftp/server.go b/sftp/server.go index cd12e60..5e1eaaf 100644 --- a/sftp/server.go +++ b/sftp/server.go @@ -19,9 +19,9 @@ import ( "golang.org/x/crypto/ed25519" "golang.org/x/crypto/ssh" - "github.com/pterodactyl/wings/config" - "github.com/pterodactyl/wings/remote" - "github.com/pterodactyl/wings/server" + "github.com/Tech-Gamer/nwy-wings/config" + "github.com/Tech-Gamer/nwy-wings/remote" + "github.com/Tech-Gamer/nwy-wings/server" ) // Usernames all follow the same format, so don't even bother hitting the API if the username is not diff --git a/wings.go b/wings.go index 2c19d2a..9ce5132 100644 --- a/wings.go +++ b/wings.go @@ -4,7 +4,7 @@ import ( "math/rand" "time" - "github.com/pterodactyl/wings/cmd" + "github.com/Tech-Gamer/nwy-wings/cmd" ) func main() {