s
This commit is contained in:
parent
cd842fcc75
commit
269eb425fa
|
@ -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"
|
||||
|
|
|
@ -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:
|
||||
|
|
Loading…
Reference in New Issue
Block a user