2020-10-02 08:17:27 +02:00
|
|
|
package admin
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/json"
|
|
|
|
"net/http"
|
|
|
|
|
2020-10-05 19:07:09 +02:00
|
|
|
"github.com/owncast/owncast/config"
|
|
|
|
"github.com/owncast/owncast/controllers"
|
2020-10-02 08:17:27 +02:00
|
|
|
|
|
|
|
log "github.com/sirupsen/logrus"
|
|
|
|
)
|
|
|
|
|
2020-11-13 00:14:59 +01:00
|
|
|
// ChangeStreamKey will change the stream key (in memory).
|
2020-10-02 08:17:27 +02:00
|
|
|
func ChangeStreamKey(w http.ResponseWriter, r *http.Request) {
|
|
|
|
if r.Method != "POST" {
|
|
|
|
controllers.WriteSimpleResponse(w, false, r.Method+" not supported")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
decoder := json.NewDecoder(r.Body)
|
|
|
|
var request changeStreamKeyRequest
|
|
|
|
err := decoder.Decode(&request)
|
|
|
|
if err != nil {
|
|
|
|
log.Errorln(err)
|
|
|
|
controllers.WriteSimpleResponse(w, false, "")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
config.Config.VideoSettings.StreamingKey = request.Key
|
|
|
|
controllers.WriteSimpleResponse(w, true, "changed")
|
|
|
|
}
|
|
|
|
|
|
|
|
type changeStreamKeyRequest struct {
|
|
|
|
Key string `json:"key"`
|
|
|
|
}
|