diff --git a/router/websocket/message.go b/router/websocket/message.go index 85fb77f..881f11d 100644 --- a/router/websocket/message.go +++ b/router/websocket/message.go @@ -7,6 +7,7 @@ const ( AuthenticationEvent = "auth" SetStateEvent = "set state" SendServerLogsEvent = "send logs" + SendNumLogsEvent = "send numlogs" SendCommandEvent = "send command" SendStatsEvent = "send stats" ErrorEvent = "daemon error" diff --git a/router/websocket/websocket.go b/router/websocket/websocket.go index 95f56bd..3682422 100644 --- a/router/websocket/websocket.go +++ b/router/websocket/websocket.go @@ -7,6 +7,7 @@ import ( "strings" "sync" "time" + "strconv" "github.com/pterodactyl/wings/internal/models" @@ -398,6 +399,31 @@ func (h *Handler) HandleInbound(ctx context.Context, m Message) error { }) } + return nil + } + case SendNumLogsEvent: + { + ctx, cancel := context.WithTimeout(context.Background(), time.Second*5) + defer cancel() + if running, _ := h.server.Environment.IsRunning(ctx); !running { + return nil + } + + stringValue := m.Args[0] + intVal, err := strconv.Atoi(stringValue) + + logs, err := h.server.Environment.Readlog(intVal) + if err != nil { + return err + } + + for _, line := range logs { + _ = h.SendJson(Message{ + Event: server.ConsoleOutputEvent, + Args: []string{line}, + }) + } + return nil } case SendStatsEvent: