2020-06-23 04:11:56 +03:00
|
|
|
package router
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"net/http"
|
|
|
|
|
|
|
|
log "github.com/sirupsen/logrus"
|
|
|
|
|
2020-10-05 20:07:09 +03:00
|
|
|
"github.com/owncast/owncast/config"
|
|
|
|
"github.com/owncast/owncast/controllers"
|
|
|
|
"github.com/owncast/owncast/controllers/admin"
|
|
|
|
"github.com/owncast/owncast/core/chat"
|
|
|
|
"github.com/owncast/owncast/router/middleware"
|
|
|
|
"github.com/owncast/owncast/yp"
|
2020-06-23 04:11:56 +03:00
|
|
|
)
|
|
|
|
|
2020-11-13 02:14:59 +03:00
|
|
|
// Start starts the router for the http, ws, and rtmp.
|
2020-06-23 04:11:56 +03:00
|
|
|
func Start() error {
|
|
|
|
// static files
|
|
|
|
http.HandleFunc("/", controllers.IndexHandler)
|
|
|
|
|
2020-11-07 02:12:35 +03:00
|
|
|
// admin static files
|
|
|
|
http.HandleFunc("/admin/", middleware.RequireAdminAuth(admin.ServeAdmin))
|
|
|
|
|
2020-06-23 04:11:56 +03:00
|
|
|
// status of the system
|
2020-09-15 02:15:53 +03:00
|
|
|
http.HandleFunc("/api/status", controllers.GetStatus)
|
2020-06-23 04:11:56 +03:00
|
|
|
|
2020-08-13 07:56:41 +03:00
|
|
|
// custom emoji supported in the chat
|
2020-09-15 02:15:53 +03:00
|
|
|
http.HandleFunc("/api/emoji", controllers.GetCustomEmoji)
|
2020-08-13 07:56:41 +03:00
|
|
|
|
2020-10-04 00:35:03 +03:00
|
|
|
// websocket chat server
|
2020-11-15 05:39:53 +03:00
|
|
|
go func() {
|
|
|
|
err := chat.Start()
|
|
|
|
if err != nil {
|
|
|
|
log.Fatalln(err)
|
|
|
|
}
|
|
|
|
}()
|
2020-07-07 07:53:30 +03:00
|
|
|
|
2020-10-04 00:35:03 +03:00
|
|
|
// chat rest api
|
|
|
|
http.HandleFunc("/api/chat", controllers.GetChatMessages)
|
2020-06-23 23:11:01 +03:00
|
|
|
|
2020-10-04 00:35:03 +03:00
|
|
|
// web config api
|
|
|
|
http.HandleFunc("/api/config", controllers.GetWebConfig)
|
2020-08-31 02:32:09 +03:00
|
|
|
|
2020-10-04 00:35:03 +03:00
|
|
|
// chat embed
|
|
|
|
http.HandleFunc("/embed/chat", controllers.GetChatEmbed)
|
2020-08-31 02:32:09 +03:00
|
|
|
|
2020-10-04 00:35:03 +03:00
|
|
|
// video embed
|
|
|
|
http.HandleFunc("/embed/video", controllers.GetVideoEmbed)
|
2020-10-02 09:55:38 +03:00
|
|
|
|
2020-10-04 00:35:03 +03:00
|
|
|
http.HandleFunc("/api/yp", yp.GetYPResponse)
|
2020-06-29 01:10:00 +03:00
|
|
|
|
2020-10-02 04:16:58 +03:00
|
|
|
// Authenticated admin requests
|
|
|
|
|
2020-10-02 10:12:47 +03:00
|
|
|
// Current inbound broadcaster
|
2020-11-06 05:29:16 +03:00
|
|
|
http.HandleFunc("/api/admin/status", middleware.RequireAdminAuth(admin.Status))
|
2020-10-02 10:12:47 +03:00
|
|
|
|
2020-10-02 04:16:58 +03:00
|
|
|
// Disconnect inbound stream
|
2020-10-02 09:17:27 +03:00
|
|
|
http.HandleFunc("/api/admin/disconnect", middleware.RequireAdminAuth(admin.DisconnectInboundConnection))
|
|
|
|
|
|
|
|
// Change the current streaming key in memory
|
|
|
|
http.HandleFunc("/api/admin/changekey", middleware.RequireAdminAuth(admin.ChangeStreamKey))
|
2020-10-02 04:16:58 +03:00
|
|
|
|
2020-10-14 19:38:48 +03:00
|
|
|
// Change the extra page content in memory
|
|
|
|
http.HandleFunc("/api/admin/changeextrapagecontent", middleware.RequireAdminAuth(admin.ChangeExtraPageContent))
|
|
|
|
|
2020-10-02 10:02:42 +03:00
|
|
|
// Server config
|
2020-10-02 10:06:14 +03:00
|
|
|
http.HandleFunc("/api/admin/serverconfig", middleware.RequireAdminAuth(admin.GetServerConfig))
|
|
|
|
|
|
|
|
// Get viewer count over time
|
|
|
|
http.HandleFunc("/api/admin/viewersOverTime", middleware.RequireAdminAuth(admin.GetViewersOverTime))
|
2020-10-02 10:02:42 +03:00
|
|
|
|
2020-10-02 22:18:08 +03:00
|
|
|
// Get hardware stats
|
|
|
|
http.HandleFunc("/api/admin/hardwarestats", middleware.RequireAdminAuth(admin.GetHardwareStats))
|
|
|
|
|
2020-10-07 09:14:33 +03:00
|
|
|
// Get a a detailed list of currently connected clients
|
|
|
|
http.HandleFunc("/api/admin/clients", middleware.RequireAdminAuth(controllers.GetConnectedClients))
|
|
|
|
|
2020-10-30 04:17:04 +03:00
|
|
|
// Get all logs
|
|
|
|
http.HandleFunc("/api/admin/logs", middleware.RequireAdminAuth(admin.GetLogs))
|
|
|
|
|
|
|
|
// Get warning/error logs
|
|
|
|
http.HandleFunc("/api/admin/logs/warnings", middleware.RequireAdminAuth(admin.GetWarnings))
|
|
|
|
|
2020-07-14 00:48:56 +03:00
|
|
|
port := config.Config.GetPublicWebServerPort()
|
2020-06-23 04:11:56 +03:00
|
|
|
|
2020-11-07 02:12:35 +03:00
|
|
|
log.Tracef("Web server running on port: %d", port)
|
2020-06-23 04:11:56 +03:00
|
|
|
|
|
|
|
return http.ListenAndServe(fmt.Sprintf(":%d", port), nil)
|
|
|
|
}
|