2020-10-15 00:07:38 +03:00
|
|
|
package storageproviders
|
|
|
|
|
|
|
|
import (
|
2023-05-31 21:10:04 +03:00
|
|
|
"os"
|
|
|
|
"path/filepath"
|
|
|
|
"sort"
|
2020-10-15 00:07:38 +03:00
|
|
|
|
|
|
|
log "github.com/sirupsen/logrus"
|
|
|
|
|
2023-05-31 00:05:24 +03:00
|
|
|
"github.com/owncast/owncast/core/data"
|
2020-10-15 00:07:38 +03:00
|
|
|
)
|
|
|
|
|
2021-09-12 10:18:15 +03:00
|
|
|
// LocalStorage represents an instance of the local storage provider for HLS video.
|
2023-09-22 03:58:02 +03:00
|
|
|
type LocalStorage struct {
|
|
|
|
host string
|
|
|
|
}
|
2020-10-15 00:07:38 +03:00
|
|
|
|
2021-10-12 02:29:36 +03:00
|
|
|
// NewLocalStorage returns a new LocalStorage instance.
|
|
|
|
func NewLocalStorage() *LocalStorage {
|
|
|
|
return &LocalStorage{}
|
|
|
|
}
|
2020-10-16 03:50:17 +03:00
|
|
|
|
2020-11-13 02:14:59 +03:00
|
|
|
// Setup configures this storage provider.
|
2020-10-15 00:07:38 +03:00
|
|
|
func (s *LocalStorage) Setup() error {
|
2023-09-22 03:58:02 +03:00
|
|
|
s.host = data.GetVideoServingEndpoint()
|
2020-10-15 00:07:38 +03:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-11-13 02:14:59 +03:00
|
|
|
// SegmentWritten is called when a single segment of video is written.
|
2020-10-15 00:07:38 +03:00
|
|
|
func (s *LocalStorage) SegmentWritten(localFilePath string) {
|
2021-07-09 21:16:44 +03:00
|
|
|
if _, err := s.Save(localFilePath, 0); err != nil {
|
2020-11-15 05:39:53 +03:00
|
|
|
log.Warnln(err)
|
|
|
|
}
|
2020-10-15 00:07:38 +03:00
|
|
|
}
|
|
|
|
|
2020-11-13 02:14:59 +03:00
|
|
|
// VariantPlaylistWritten is called when a variant hls playlist is written.
|
2020-10-15 00:07:38 +03:00
|
|
|
func (s *LocalStorage) VariantPlaylistWritten(localFilePath string) {
|
2021-07-09 21:16:44 +03:00
|
|
|
if _, err := s.Save(localFilePath, 0); err != nil {
|
2020-10-17 01:04:31 +03:00
|
|
|
log.Errorln(err)
|
2020-10-15 00:07:38 +03:00
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-13 02:14:59 +03:00
|
|
|
// MasterPlaylistWritten is called when the master hls playlist is written.
|
2020-10-15 00:07:38 +03:00
|
|
|
func (s *LocalStorage) MasterPlaylistWritten(localFilePath string) {
|
2023-09-22 03:58:02 +03:00
|
|
|
// If we're using a remote serving endpoint, we need to rewrite the master playlist
|
|
|
|
if s.host != "" {
|
|
|
|
if err := rewritePlaylistLocations(localFilePath, s.host, ""); err != nil {
|
|
|
|
log.Warnln(err)
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if _, err := s.Save(localFilePath, 0); err != nil {
|
|
|
|
log.Warnln(err)
|
|
|
|
}
|
2020-11-15 05:39:53 +03:00
|
|
|
}
|
2020-10-15 00:07:38 +03:00
|
|
|
}
|
|
|
|
|
2020-11-13 02:14:59 +03:00
|
|
|
// Save will save a local filepath using the storage provider.
|
2020-10-15 00:07:38 +03:00
|
|
|
func (s *LocalStorage) Save(filePath string, retryCount int) (string, error) {
|
2021-09-12 21:32:42 +03:00
|
|
|
return filePath, nil
|
2020-10-15 00:07:38 +03:00
|
|
|
}
|
2023-05-31 21:10:04 +03:00
|
|
|
|
2024-01-23 07:26:36 +03:00
|
|
|
// Cleanup will remove old files from the storage provider.
|
2023-05-31 21:10:04 +03:00
|
|
|
func (s *LocalStorage) Cleanup() error {
|
|
|
|
// Determine how many files we should keep on disk
|
|
|
|
maxNumber := data.GetStreamLatencyLevel().SegmentCount
|
|
|
|
buffer := 10
|
2024-01-23 07:26:36 +03:00
|
|
|
return localCleanup(maxNumber + buffer)
|
2023-05-31 21:10:04 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
func getAllFilesRecursive(baseDirectory string) (map[string][]os.FileInfo, error) {
|
|
|
|
files := make(map[string][]os.FileInfo)
|
|
|
|
|
|
|
|
var directory string
|
|
|
|
err := filepath.Walk(baseDirectory, func(path string, info os.FileInfo, err error) error {
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if info.IsDir() {
|
|
|
|
directory = info.Name()
|
|
|
|
}
|
|
|
|
|
|
|
|
if filepath.Ext(info.Name()) == ".ts" {
|
|
|
|
files[directory] = append(files[directory], info)
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Sort by date so we can delete old files
|
|
|
|
for directory := range files {
|
|
|
|
sort.Slice(files[directory], func(i, j int) bool {
|
|
|
|
return files[directory][i].ModTime().UnixNano() > files[directory][j].ModTime().UnixNano()
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
return files, nil
|
|
|
|
}
|