2020-06-23 03:11:56 +02:00
|
|
|
package core
|
|
|
|
|
|
|
|
import (
|
|
|
|
"os"
|
|
|
|
"path"
|
|
|
|
"strconv"
|
2020-09-16 22:31:21 +02:00
|
|
|
"time"
|
2020-06-23 03:11:56 +02:00
|
|
|
|
|
|
|
log "github.com/sirupsen/logrus"
|
|
|
|
|
|
|
|
"github.com/gabek/owncast/config"
|
2020-06-23 22:11:01 +02:00
|
|
|
"github.com/gabek/owncast/core/chat"
|
2020-06-23 03:11:56 +02:00
|
|
|
"github.com/gabek/owncast/core/ffmpeg"
|
|
|
|
"github.com/gabek/owncast/models"
|
|
|
|
"github.com/gabek/owncast/utils"
|
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
2020-09-16 22:31:21 +02:00
|
|
|
_stats *models.Stats
|
|
|
|
_storage models.ChunkStorageProvider
|
|
|
|
_cleanupTicker *time.Ticker
|
2020-06-23 03:11:56 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
//Start starts up the core processing
|
|
|
|
func Start() error {
|
|
|
|
resetDirectories()
|
|
|
|
|
|
|
|
if err := setupStats(); err != nil {
|
2020-07-07 06:27:31 +02:00
|
|
|
log.Error("failed to setup the stats")
|
2020-06-23 03:11:56 +02:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := setupStorage(); err != nil {
|
2020-07-07 06:27:31 +02:00
|
|
|
log.Error("failed to setup the storage")
|
2020-06-23 03:11:56 +02:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := createInitialOfflineState(); err != nil {
|
2020-07-07 06:27:31 +02:00
|
|
|
log.Error("failed to create the initial offline state")
|
2020-06-23 03:11:56 +02:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2020-06-23 22:11:01 +02:00
|
|
|
chat.Setup(ChatListenerImpl{})
|
|
|
|
|
2020-06-23 03:11:56 +02:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func createInitialOfflineState() error {
|
|
|
|
// Provide default files
|
|
|
|
if !utils.DoesFileExists("webroot/thumbnail.jpg") {
|
|
|
|
if err := utils.Copy("static/logo.png", "webroot/thumbnail.jpg"); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-26 02:44:47 +02:00
|
|
|
ffmpeg.ShowStreamOfflineState()
|
|
|
|
|
|
|
|
return nil
|
2020-06-23 03:11:56 +02:00
|
|
|
}
|
|
|
|
|
2020-09-16 22:31:21 +02:00
|
|
|
func startCleanupTimer() {
|
|
|
|
_cleanupTicker := time.NewTicker(5 * time.Minute)
|
|
|
|
go func() {
|
|
|
|
for {
|
|
|
|
select {
|
|
|
|
case <-_cleanupTicker.C:
|
|
|
|
resetDirectories()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
}
|
|
|
|
|
|
|
|
// StopCleanupTimer will stop the previous cleanup timer
|
|
|
|
func stopCleanupTimer() {
|
|
|
|
if _cleanupTicker != nil {
|
|
|
|
_cleanupTicker.Stop()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-23 03:11:56 +02:00
|
|
|
func resetDirectories() {
|
2020-07-07 06:27:31 +02:00
|
|
|
log.Trace("Resetting file directories to a clean slate.")
|
2020-06-23 03:11:56 +02:00
|
|
|
|
|
|
|
// Wipe the public, web-accessible hls data directory
|
2020-07-13 23:45:54 +02:00
|
|
|
os.RemoveAll(config.Config.GetPublicHLSSavePath())
|
|
|
|
os.RemoveAll(config.Config.GetPrivateHLSSavePath())
|
|
|
|
os.MkdirAll(config.Config.GetPublicHLSSavePath(), 0777)
|
|
|
|
os.MkdirAll(config.Config.GetPrivateHLSSavePath(), 0777)
|
2020-06-23 03:11:56 +02:00
|
|
|
|
|
|
|
// Remove the previous thumbnail
|
|
|
|
os.Remove("webroot/thumbnail.jpg")
|
|
|
|
|
|
|
|
// Create private hls data dirs
|
2020-07-06 07:03:53 +02:00
|
|
|
if len(config.Config.VideoSettings.StreamQualities) != 0 {
|
2020-06-23 03:11:56 +02:00
|
|
|
for index := range config.Config.VideoSettings.StreamQualities {
|
2020-07-13 23:45:54 +02:00
|
|
|
os.MkdirAll(path.Join(config.Config.GetPrivateHLSSavePath(), strconv.Itoa(index)), 0777)
|
|
|
|
os.MkdirAll(path.Join(config.Config.GetPublicHLSSavePath(), strconv.Itoa(index)), 0777)
|
2020-06-23 03:11:56 +02:00
|
|
|
}
|
|
|
|
} else {
|
2020-07-13 23:45:54 +02:00
|
|
|
os.MkdirAll(path.Join(config.Config.GetPrivateHLSSavePath(), strconv.Itoa(0)), 0777)
|
|
|
|
os.MkdirAll(path.Join(config.Config.GetPublicHLSSavePath(), strconv.Itoa(0)), 0777)
|
2020-06-23 03:11:56 +02:00
|
|
|
}
|
|
|
|
}
|