mirror of
https://github.com/owncast/owncast.git
synced 2024-11-28 11:09:01 +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
63 lines
1.8 KiB
Go
63 lines
1.8 KiB
Go
package admin
|
|
|
|
import (
|
|
"encoding/json"
|
|
"net/http"
|
|
|
|
"github.com/owncast/owncast/models"
|
|
"github.com/owncast/owncast/persistence/configrepository"
|
|
webutils "github.com/owncast/owncast/webserver/utils"
|
|
)
|
|
|
|
// SetDiscordNotificationConfiguration will set the discord notification configuration.
|
|
func SetDiscordNotificationConfiguration(w http.ResponseWriter, r *http.Request) {
|
|
if !requirePOST(w, r) {
|
|
return
|
|
}
|
|
|
|
type request struct {
|
|
Value models.DiscordConfiguration `json:"value"`
|
|
}
|
|
|
|
configRepository := configrepository.Get()
|
|
|
|
decoder := json.NewDecoder(r.Body)
|
|
var config request
|
|
if err := decoder.Decode(&config); err != nil {
|
|
webutils.WriteSimpleResponse(w, false, "unable to update discord config with provided values")
|
|
return
|
|
}
|
|
|
|
if err := configRepository.SetDiscordConfig(config.Value); err != nil {
|
|
webutils.WriteSimpleResponse(w, false, "unable to update discord config with provided values")
|
|
return
|
|
}
|
|
|
|
webutils.WriteSimpleResponse(w, true, "updated discord config with provided values")
|
|
}
|
|
|
|
// SetBrowserNotificationConfiguration will set the browser notification configuration.
|
|
func SetBrowserNotificationConfiguration(w http.ResponseWriter, r *http.Request) {
|
|
if !requirePOST(w, r) {
|
|
return
|
|
}
|
|
|
|
type request struct {
|
|
Value models.BrowserNotificationConfiguration `json:"value"`
|
|
}
|
|
|
|
configRepository := configrepository.Get()
|
|
decoder := json.NewDecoder(r.Body)
|
|
var config request
|
|
if err := decoder.Decode(&config); err != nil {
|
|
webutils.WriteSimpleResponse(w, false, "unable to update browser push config with provided values")
|
|
return
|
|
}
|
|
|
|
if err := configRepository.SetBrowserPushConfig(config.Value); err != nil {
|
|
webutils.WriteSimpleResponse(w, false, "unable to update browser push config with provided values")
|
|
return
|
|
}
|
|
|
|
webutils.WriteSimpleResponse(w, true, "updated browser push config with provided values")
|
|
}
|