mirror of
https://github.com/owncast/owncast.git
synced 2024-11-21 12:18:02 +03:00
0b5d7c8a4d
* WIP * fix(test): fix ap test failing * fix: fix unkeyed fields being used * chore(tests): clean up browser tests by splitting out federation UI tests
61 lines
1.6 KiB
Go
61 lines
1.6 KiB
Go
package handlers
|
|
|
|
import (
|
|
"net/http"
|
|
"sort"
|
|
|
|
"github.com/owncast/owncast/persistence/configrepository"
|
|
webutils "github.com/owncast/owncast/webserver/utils"
|
|
)
|
|
|
|
type variantsSort struct {
|
|
Name string
|
|
Index int
|
|
VideoBitrate int
|
|
IsVideoPassthrough bool
|
|
}
|
|
|
|
type variantsResponse struct {
|
|
Name string `json:"name"`
|
|
Index int `json:"index"`
|
|
}
|
|
|
|
// GetVideoStreamOutputVariants will return the video variants available.
|
|
func GetVideoStreamOutputVariants(w http.ResponseWriter, r *http.Request) {
|
|
configRepository := configrepository.Get()
|
|
outputVariants := configRepository.GetStreamOutputVariants()
|
|
|
|
streamSortVariants := make([]variantsSort, len(outputVariants))
|
|
for i, variant := range outputVariants {
|
|
variantSort := variantsSort{
|
|
Index: i,
|
|
Name: variant.GetName(),
|
|
IsVideoPassthrough: variant.IsVideoPassthrough,
|
|
VideoBitrate: variant.VideoBitrate,
|
|
}
|
|
streamSortVariants[i] = variantSort
|
|
}
|
|
|
|
sort.Slice(streamSortVariants, func(i, j int) bool {
|
|
if streamSortVariants[i].IsVideoPassthrough && !streamSortVariants[j].IsVideoPassthrough {
|
|
return true
|
|
}
|
|
|
|
if !streamSortVariants[i].IsVideoPassthrough && streamSortVariants[j].IsVideoPassthrough {
|
|
return false
|
|
}
|
|
|
|
return streamSortVariants[i].VideoBitrate > streamSortVariants[j].VideoBitrate
|
|
})
|
|
|
|
response := make([]variantsResponse, len(streamSortVariants))
|
|
for i, variant := range streamSortVariants {
|
|
variantResponse := variantsResponse{
|
|
Index: variant.Index,
|
|
Name: variant.Name,
|
|
}
|
|
response[i] = variantResponse
|
|
}
|
|
|
|
webutils.WriteResponse(w, response)
|
|
}
|