diff --git a/controllers/embed.go b/controllers/embed.go deleted file mode 100644 index df2cde0f4..000000000 --- a/controllers/embed.go +++ /dev/null @@ -1,31 +0,0 @@ -package controllers - -import ( - "net/http" - - "github.com/owncast/owncast/router/middleware" -) - -// GetChatEmbedreadwrite gets the embed for readwrite chat. -func GetChatEmbedreadwrite(w http.ResponseWriter, r *http.Request) { - // Set our global HTTP headers - middleware.SetHeaders(w) - - http.ServeFile(w, r, "webroot/index-standalone-chat-readwrite.html") -} - -// GetChatEmbedreadonly gets the embed for readonly chat. -func GetChatEmbedreadonly(w http.ResponseWriter, r *http.Request) { - // Set our global HTTP headers - middleware.SetHeaders(w) - - http.ServeFile(w, r, "webroot/index-standalone-chat-readonly.html") -} - -// GetVideoEmbed gets the embed for video. -func GetVideoEmbed(w http.ResponseWriter, r *http.Request) { - // Set our global HTTP headers - middleware.SetHeaders(w) - - http.ServeFile(w, r, "webroot/index-video-only.html") -} diff --git a/router/router.go b/router/router.go index cdb4969e2..2aa8a6aeb 100644 --- a/router/router.go +++ b/router/router.go @@ -58,18 +58,6 @@ func Start() error { // web config api http.HandleFunc("/api/config", controllers.GetWebConfig) - // pre v0.0.8 chat embed - http.HandleFunc("/embed/chat", controllers.GetChatEmbedreadonly) - - // readonly chat embed - http.HandleFunc("/embed/chat/readonly", controllers.GetChatEmbedreadonly) - - // readwrite chat embed - http.HandleFunc("/embed/chat/readwrite", controllers.GetChatEmbedreadwrite) - - // video embed - http.HandleFunc("/embed/video", controllers.GetVideoEmbed) - // return the YP protocol data http.HandleFunc("/api/yp", yp.GetYPResponse)