2020-06-22 20:11:56 -05:00
|
|
|
package router
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"net/http"
|
|
|
|
|
|
|
|
log "github.com/sirupsen/logrus"
|
|
|
|
|
|
|
|
"github.com/gabek/owncast/config"
|
|
|
|
"github.com/gabek/owncast/controllers"
|
2020-10-01 23:17:27 -07:00
|
|
|
"github.com/gabek/owncast/controllers/admin"
|
|
|
|
|
2020-06-22 20:11:56 -05:00
|
|
|
"github.com/gabek/owncast/core/chat"
|
|
|
|
"github.com/gabek/owncast/core/rtmp"
|
2020-10-01 18:16:58 -07:00
|
|
|
"github.com/gabek/owncast/router/middleware"
|
2020-10-01 23:55:38 -07:00
|
|
|
"github.com/gabek/owncast/yp"
|
2020-06-22 20:11:56 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
//Start starts the router for the http, ws, and rtmp
|
|
|
|
func Start() error {
|
|
|
|
// start the rtmp server
|
|
|
|
go rtmp.Start()
|
|
|
|
|
|
|
|
// static files
|
|
|
|
http.HandleFunc("/", controllers.IndexHandler)
|
|
|
|
|
|
|
|
// status of the system
|
2020-09-14 16:15:53 -07:00
|
|
|
http.HandleFunc("/api/status", controllers.GetStatus)
|
2020-06-22 20:11:56 -05:00
|
|
|
|
2020-08-12 21:56:41 -07:00
|
|
|
// custom emoji supported in the chat
|
2020-09-14 16:15:53 -07:00
|
|
|
http.HandleFunc("/api/emoji", controllers.GetCustomEmoji)
|
2020-08-12 21:56:41 -07:00
|
|
|
|
2020-10-03 14:35:03 -07:00
|
|
|
// websocket chat server
|
|
|
|
go chat.Start()
|
2020-07-06 21:53:30 -07:00
|
|
|
|
2020-10-03 14:35:03 -07:00
|
|
|
// chat rest api
|
|
|
|
http.HandleFunc("/api/chat", controllers.GetChatMessages)
|
2020-06-23 15:11:01 -05:00
|
|
|
|
2020-10-03 14:35:03 -07:00
|
|
|
// web config api
|
|
|
|
http.HandleFunc("/api/config", controllers.GetWebConfig)
|
2020-08-30 16:32:09 -07:00
|
|
|
|
2020-10-03 14:35:03 -07:00
|
|
|
// chat embed
|
|
|
|
http.HandleFunc("/embed/chat", controllers.GetChatEmbed)
|
2020-08-30 16:32:09 -07:00
|
|
|
|
2020-10-03 14:35:03 -07:00
|
|
|
// video embed
|
|
|
|
http.HandleFunc("/embed/video", controllers.GetVideoEmbed)
|
2020-10-01 23:55:38 -07:00
|
|
|
|
2020-10-03 14:35:03 -07:00
|
|
|
http.HandleFunc("/api/yp", yp.GetYPResponse)
|
2020-06-28 15:10:00 -07:00
|
|
|
|
2020-10-01 18:16:58 -07:00
|
|
|
// Authenticated admin requests
|
|
|
|
|
2020-10-02 00:12:47 -07:00
|
|
|
// Current inbound broadcaster
|
|
|
|
http.HandleFunc("/api/admin/broadcaster", middleware.RequireAdminAuth(admin.GetInboundBroadasterDetails))
|
|
|
|
|
2020-10-01 18:16:58 -07:00
|
|
|
// Disconnect inbound stream
|
2020-10-01 23:17:27 -07: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-01 18:16:58 -07:00
|
|
|
|
2020-10-02 00:02:42 -07:00
|
|
|
// Server config
|
2020-10-02 00:06:14 -07: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 00:02:42 -07:00
|
|
|
|
2020-10-02 12:18:08 -07:00
|
|
|
// Get hardware stats
|
|
|
|
http.HandleFunc("/api/admin/hardwarestats", middleware.RequireAdminAuth(admin.GetHardwareStats))
|
|
|
|
|
2020-07-13 14:48:56 -07:00
|
|
|
port := config.Config.GetPublicWebServerPort()
|
2020-06-22 20:11:56 -05:00
|
|
|
|
2020-07-06 21:27:31 -07:00
|
|
|
log.Infof("Web server running on port: %d", port)
|
2020-06-22 20:11:56 -05:00
|
|
|
|
|
|
|
return http.ListenAndServe(fmt.Sprintf(":%d", port), nil)
|
|
|
|
}
|