s
This commit is contained in:
parent
cd842fcc75
commit
269eb425fa
|
@ -7,6 +7,7 @@ const (
|
||||||
AuthenticationEvent = "auth"
|
AuthenticationEvent = "auth"
|
||||||
SetStateEvent = "set state"
|
SetStateEvent = "set state"
|
||||||
SendServerLogsEvent = "send logs"
|
SendServerLogsEvent = "send logs"
|
||||||
|
SendNumLogsEvent = "send numlogs"
|
||||||
SendCommandEvent = "send command"
|
SendCommandEvent = "send command"
|
||||||
SendStatsEvent = "send stats"
|
SendStatsEvent = "send stats"
|
||||||
ErrorEvent = "daemon error"
|
ErrorEvent = "daemon error"
|
||||||
|
|
|
@ -7,6 +7,7 @@ import (
|
||||||
"strings"
|
"strings"
|
||||||
"sync"
|
"sync"
|
||||||
"time"
|
"time"
|
||||||
|
"strconv"
|
||||||
|
|
||||||
"github.com/pterodactyl/wings/internal/models"
|
"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
|
return nil
|
||||||
}
|
}
|
||||||
case SendStatsEvent:
|
case SendStatsEvent:
|
||||||
|
|
Loading…
Reference in New Issue
Block a user