neko/internal/api/room/screen.go
2020-11-14 17:51:18 +01:00

62 lines
1.3 KiB
Go

package room
import (
"net/http"
"demodesk/neko/internal/utils"
)
type ScreenConfiguration struct {
Width int `json:"width"`
Height int `json:"height"`
Rate int `json:"rate"`
}
func (h *RoomHandler) ScreenConfiguration(w http.ResponseWriter, r *http.Request) {
size := h.desktop.GetScreenSize()
if size == nil {
utils.HttpInternalServer(w, "Unable to get screen configuration.")
return
}
utils.HttpSuccess(w, ScreenConfiguration{
Width: size.Width,
Height: size.Height,
Rate: int(size.Rate),
})
}
func (h *RoomHandler) ScreenConfigurationChange(w http.ResponseWriter, r *http.Request) {
data := &ScreenConfiguration{}
if !utils.HttpJsonRequest(w, r, data) {
return
}
if err := h.desktop.ChangeScreenSize(data.Width, data.Height, data.Rate); err != nil {
utils.HttpUnprocessableEntity(w, err)
return
}
// TODO: Broadcast change to all sessions.
utils.HttpSuccess(w, data)
}
func (h *RoomHandler) ScreenConfigurationsList(w http.ResponseWriter, r *http.Request) {
list := []ScreenConfiguration{}
ScreenConfigurations := h.desktop.ScreenConfigurations()
for _, size := range ScreenConfigurations {
for _, fps := range size.Rates {
list = append(list, ScreenConfiguration{
Width: size.Width,
Height: size.Height,
Rate: int(fps),
})
}
}
utils.HttpSuccess(w, list)
}