This commit is contained in:
SwadowMaster 2024-01-22 12:55:51 +01:00
parent cd842fcc75
commit 269eb425fa
2 changed files with 27 additions and 0 deletions

View File

@ -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"

View File

@ -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: