2022-03-18 23:33:23 +03:00
|
|
|
package controllers
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/json"
|
|
|
|
"net/http"
|
|
|
|
|
2022-04-22 00:55:26 +03:00
|
|
|
"github.com/owncast/owncast/core/user"
|
2022-03-18 23:33:23 +03:00
|
|
|
"github.com/owncast/owncast/notifications"
|
|
|
|
|
|
|
|
"github.com/owncast/owncast/utils"
|
|
|
|
|
|
|
|
log "github.com/sirupsen/logrus"
|
|
|
|
)
|
|
|
|
|
|
|
|
// RegisterForLiveNotifications will register a channel + destination to be
|
|
|
|
// notified when a stream goes live.
|
2022-04-22 00:55:26 +03:00
|
|
|
func RegisterForLiveNotifications(u user.User, w http.ResponseWriter, r *http.Request) {
|
2022-03-18 23:33:23 +03:00
|
|
|
if r.Method != POST {
|
|
|
|
WriteSimpleResponse(w, false, r.Method+" not supported")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
type request struct {
|
|
|
|
// Channel is the notification channel (browser, sms, etc)
|
|
|
|
Channel string `json:"channel"`
|
|
|
|
// Destination is the target of the notification in the above channel.
|
|
|
|
Destination string `json:"destination"`
|
|
|
|
}
|
|
|
|
|
|
|
|
decoder := json.NewDecoder(r.Body)
|
|
|
|
var req request
|
|
|
|
if err := decoder.Decode(&req); err != nil {
|
|
|
|
log.Errorln(err)
|
|
|
|
WriteSimpleResponse(w, false, "unable to register for notifications")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// Make sure the requested channel is one we want to handle.
|
|
|
|
validTypes := []string{notifications.BrowserPushNotification}
|
|
|
|
_, validChannel := utils.FindInSlice(validTypes, req.Channel)
|
|
|
|
if !validChannel {
|
|
|
|
WriteSimpleResponse(w, false, "invalid notification channel: "+req.Channel)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := notifications.AddNotification(req.Channel, req.Destination); err != nil {
|
|
|
|
log.Errorln(err)
|
|
|
|
WriteSimpleResponse(w, false, "unable to save notification")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|