2020-05-24 02:57:49 +02:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2020-06-02 09:27:54 +02:00
|
|
|
"encoding/json"
|
2020-05-24 02:57:49 +02:00
|
|
|
"net/http"
|
2020-06-11 22:33:20 +02:00
|
|
|
"path"
|
2020-06-02 01:53:31 +02:00
|
|
|
"strconv"
|
2020-05-24 02:57:49 +02:00
|
|
|
|
|
|
|
log "github.com/sirupsen/logrus"
|
|
|
|
)
|
|
|
|
|
2020-06-17 02:27:55 +02:00
|
|
|
// Build-time injected values
|
|
|
|
var GitCommit string = "unknown"
|
|
|
|
var BuildVersion string = "0.0.0"
|
|
|
|
var BuildType string = "localdev"
|
|
|
|
|
2020-06-03 08:05:15 +02:00
|
|
|
var storage ChunkStorage
|
2020-06-02 01:53:31 +02:00
|
|
|
var configuration = getConfig()
|
2020-06-03 02:35:49 +02:00
|
|
|
var server *Server
|
2020-06-11 08:52:55 +02:00
|
|
|
var stats *Stats
|
2020-06-03 02:35:49 +02:00
|
|
|
|
2020-06-10 10:16:17 +02:00
|
|
|
var usingExternalStorage = false
|
2020-05-30 03:08:33 +02:00
|
|
|
|
2020-06-01 21:15:07 +02:00
|
|
|
func main() {
|
2020-06-17 02:27:55 +02:00
|
|
|
log.StandardLogger().Printf("Owncast v%s/%s (%s)", BuildVersion, BuildType, GitCommit)
|
|
|
|
|
2020-06-09 10:52:15 +02:00
|
|
|
resetDirectories(configuration)
|
|
|
|
checkConfig(configuration)
|
2020-06-11 08:52:55 +02:00
|
|
|
stats = getSavedStats()
|
|
|
|
stats.Setup()
|
2020-06-02 01:53:31 +02:00
|
|
|
|
|
|
|
if configuration.IPFS.Enabled {
|
2020-06-03 08:05:15 +02:00
|
|
|
storage = &IPFSStorage{}
|
2020-06-03 10:34:05 +02:00
|
|
|
usingExternalStorage = true
|
|
|
|
} else if configuration.S3.Enabled {
|
|
|
|
storage = &S3Storage{}
|
|
|
|
usingExternalStorage = true
|
|
|
|
}
|
2020-06-03 08:05:15 +02:00
|
|
|
|
2020-06-03 10:34:05 +02:00
|
|
|
if usingExternalStorage {
|
|
|
|
storage.Setup(configuration)
|
2020-06-09 10:52:15 +02:00
|
|
|
// hlsDirectoryPath = configuration.PrivateHLSPath
|
|
|
|
go monitorVideoContent(configuration.PrivateHLSPath, configuration, storage)
|
2020-06-02 01:53:31 +02:00
|
|
|
}
|
2020-06-01 21:15:07 +02:00
|
|
|
|
2020-06-15 08:06:43 +02:00
|
|
|
go startRTMPService()
|
2020-05-24 02:57:49 +02:00
|
|
|
|
2020-06-15 08:06:43 +02:00
|
|
|
startChatServer()
|
2020-06-01 21:15:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func startChatServer() {
|
|
|
|
// log.SetFlags(log.Lshortfile)
|
|
|
|
|
|
|
|
// websocket server
|
2020-06-03 02:35:49 +02:00
|
|
|
server = NewServer("/entry")
|
2020-06-01 21:15:07 +02:00
|
|
|
go server.Listen()
|
|
|
|
|
|
|
|
// static files
|
2020-06-11 22:33:20 +02:00
|
|
|
http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
|
2020-06-14 02:08:34 +02:00
|
|
|
enableCors(&w)
|
2020-06-11 22:33:20 +02:00
|
|
|
http.ServeFile(w, r, path.Join("webroot", r.URL.Path))
|
|
|
|
|
|
|
|
if path.Ext(r.URL.Path) == ".m3u8" {
|
|
|
|
clientID := getClientIDFromRequest(r)
|
|
|
|
stats.SetClientActive(clientID)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2020-06-02 09:27:54 +02:00
|
|
|
http.HandleFunc("/status", getStatus)
|
2020-06-01 21:15:07 +02:00
|
|
|
|
2020-06-02 02:42:36 +02:00
|
|
|
log.Printf("Starting public web server on port %d", configuration.WebServerPort)
|
|
|
|
|
2020-06-02 01:53:31 +02:00
|
|
|
log.Fatal(http.ListenAndServe(":"+strconv.Itoa(configuration.WebServerPort), nil))
|
2020-06-01 21:15:07 +02:00
|
|
|
}
|
2020-06-02 09:27:54 +02:00
|
|
|
|
2020-06-14 02:08:34 +02:00
|
|
|
func enableCors(w *http.ResponseWriter) {
|
|
|
|
(*w).Header().Set("Access-Control-Allow-Origin", "*")
|
|
|
|
}
|
|
|
|
|
2020-06-02 09:27:54 +02:00
|
|
|
func getStatus(w http.ResponseWriter, r *http.Request) {
|
2020-06-14 07:39:02 +02:00
|
|
|
enableCors(&w)
|
|
|
|
|
2020-06-02 09:27:54 +02:00
|
|
|
status := Status{
|
2020-06-11 08:52:55 +02:00
|
|
|
Online: stats.IsStreamConnected(),
|
|
|
|
ViewerCount: stats.GetViewerCount(),
|
|
|
|
OverallMaxViewerCount: stats.GetOverallMaxViewerCount(),
|
|
|
|
SessionMaxViewerCount: stats.GetSessionMaxViewerCount(),
|
2020-06-02 09:27:54 +02:00
|
|
|
}
|
|
|
|
json.NewEncoder(w).Encode(status)
|
|
|
|
}
|
|
|
|
|
|
|
|
func streamConnected() {
|
2020-06-11 08:52:55 +02:00
|
|
|
stats.StreamConnected()
|
|
|
|
|
2020-06-10 10:16:17 +02:00
|
|
|
chunkPath := configuration.PublicHLSPath
|
|
|
|
if usingExternalStorage {
|
|
|
|
chunkPath = configuration.PrivateHLSPath
|
|
|
|
}
|
|
|
|
startThumbnailGenerator(chunkPath)
|
2020-06-02 09:27:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func streamDisconnected() {
|
2020-06-11 08:52:55 +02:00
|
|
|
stats.StreamDisconnected()
|
2020-06-16 01:27:58 +02:00
|
|
|
if configuration.EnableOfflineImage {
|
|
|
|
showStreamOfflineState(configuration)
|
|
|
|
}
|
2020-06-02 09:27:54 +02:00
|
|
|
}
|
2020-06-03 02:35:49 +02:00
|
|
|
|
2020-06-11 22:33:20 +02:00
|
|
|
func viewerAdded(clientID string) {
|
|
|
|
stats.SetClientActive(clientID)
|
2020-06-03 02:35:49 +02:00
|
|
|
}
|
|
|
|
|
2020-06-11 22:33:20 +02:00
|
|
|
func viewerRemoved(clientID string) {
|
|
|
|
stats.ViewerDisconnected(clientID)
|
2020-06-03 02:35:49 +02:00
|
|
|
}
|