mirror of
https://github.com/owncast/owncast.git
synced 2024-11-21 20:28:15 +03:00
85e7af3d5f
* chore(go): update go version to 1.20. Closes #2185 * chore(go): run better align against project To optimize struct field order. Closes #2870 * chore(go): update CI jobs to use Go 1.20 * fix(go): linter warnings for Go 1.20 update
51 lines
1.4 KiB
Go
51 lines
1.4 KiB
Go
package controllers
|
|
|
|
import (
|
|
"encoding/json"
|
|
"net/http"
|
|
"time"
|
|
|
|
"github.com/owncast/owncast/core"
|
|
"github.com/owncast/owncast/core/data"
|
|
"github.com/owncast/owncast/router/middleware"
|
|
"github.com/owncast/owncast/utils"
|
|
)
|
|
|
|
// GetStatus gets the status of the server.
|
|
func GetStatus(w http.ResponseWriter, r *http.Request) {
|
|
response := getStatusResponse()
|
|
|
|
w.Header().Set("Content-Type", "application/json")
|
|
middleware.DisableCache(w)
|
|
|
|
if err := json.NewEncoder(w).Encode(response); err != nil {
|
|
InternalErrorHandler(w, err)
|
|
}
|
|
}
|
|
|
|
func getStatusResponse() webStatusResponse {
|
|
status := core.GetStatus()
|
|
response := webStatusResponse{
|
|
Online: status.Online,
|
|
ServerTime: time.Now(),
|
|
LastConnectTime: status.LastConnectTime,
|
|
LastDisconnectTime: status.LastDisconnectTime,
|
|
VersionNumber: status.VersionNumber,
|
|
StreamTitle: status.StreamTitle,
|
|
}
|
|
if !data.GetHideViewerCount() {
|
|
response.ViewerCount = status.ViewerCount
|
|
}
|
|
return response
|
|
}
|
|
|
|
type webStatusResponse struct {
|
|
ServerTime time.Time `json:"serverTime"`
|
|
LastConnectTime *utils.NullTime `json:"lastConnectTime"`
|
|
LastDisconnectTime *utils.NullTime `json:"lastDisconnectTime"`
|
|
|
|
VersionNumber string `json:"versionNumber"`
|
|
StreamTitle string `json:"streamTitle"`
|
|
ViewerCount int `json:"viewerCount,omitempty"`
|
|
Online bool `json:"online"`
|
|
}
|