Admin API to change in-memory streaming key. Closes #212

This commit is contained in:
Gabe Kangas
2020-10-01 23:17:27 -07:00
parent 7b64fc7c30
commit 48c8cf5ed2
4 changed files with 47 additions and 5 deletions

View File

@ -1,19 +0,0 @@
package controllers
import (
"net/http"
"github.com/gabek/owncast/core"
"github.com/gabek/owncast/core/rtmp"
)
// DisconnectInboundConnection will force-disconnect an inbound stream
func DisconnectInboundConnection(w http.ResponseWriter, r *http.Request) {
if !core.GetStatus().Online {
writeSimpleResponse(w, false, "no inbound stream connected")
return
}
rtmp.Disconnect()
writeSimpleResponse(w, true, "inbound stream disconnected")
}