401 lines
13 KiB
Go
401 lines
13 KiB
Go
package handlers
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
"log/slog"
|
|
"net/http"
|
|
"os"
|
|
"strconv"
|
|
|
|
"github.com/go-chi/chi/v5"
|
|
|
|
apimw "github.com/Silo-Server/silo-server/internal/api/middleware"
|
|
evt "github.com/Silo-Server/silo-server/internal/events"
|
|
"github.com/Silo-Server/silo-server/internal/models"
|
|
"github.com/Silo-Server/silo-server/internal/playback"
|
|
"github.com/Silo-Server/silo-server/internal/subtitles"
|
|
)
|
|
|
|
// FilePathResolver looks up a media file by its ID.
|
|
type FilePathResolver interface {
|
|
GetByID(ctx context.Context, id int) (*models.MediaFile, error)
|
|
}
|
|
|
|
// StreamHandler handles HTTP endpoints for streaming media content.
|
|
type StreamHandler struct {
|
|
sessionMgr SessionManagerInterface
|
|
fileResolver FilePathResolver
|
|
MissingMarker MissingFileMarker
|
|
EventsHub *evt.Hub
|
|
AdminStore PlaybackAdminStore
|
|
SessionSyncer PlaybackSessionSyncer
|
|
FFmpegPath string
|
|
SubtitleRepo subtitles.Repository // optional; enables S3-sourced subtitles
|
|
S3Client subtitles.S3Client // optional; needed for fetching S3 subtitles
|
|
S3Bucket string // bucket for subtitle storage
|
|
}
|
|
|
|
// NewStreamHandler creates a new StreamHandler backed by the given session
|
|
// manager and file resolver.
|
|
func NewStreamHandler(sessionMgr SessionManagerInterface, fileResolver FilePathResolver) *StreamHandler {
|
|
return &StreamHandler{
|
|
sessionMgr: sessionMgr,
|
|
fileResolver: fileResolver,
|
|
}
|
|
}
|
|
|
|
// HandleStream serves the video stream for a playback session.
|
|
// For direct play: serves the file with HTTP byte-range support.
|
|
// For remux: starts an ffmpeg remux and streams the output.
|
|
// For transcode: returns 400 (transcode uses manifest/segment endpoints).
|
|
func (h *StreamHandler) HandleStream(w http.ResponseWriter, r *http.Request) {
|
|
userID := apimw.GetUserID(r.Context())
|
|
if userID == 0 {
|
|
writeError(w, http.StatusUnauthorized, "unauthorized", "Authentication required")
|
|
return
|
|
}
|
|
|
|
sessionID := chi.URLParam(r, "session_id")
|
|
if sessionID == "" {
|
|
writeError(w, http.StatusBadRequest, "bad_request", "Session ID is required")
|
|
return
|
|
}
|
|
setPlaybackSessionLogContext(r, sessionID)
|
|
|
|
session, err := h.sessionMgr.GetSession(sessionID)
|
|
if err != nil {
|
|
writePlaybackSessionNotFound(w)
|
|
return
|
|
}
|
|
|
|
// Verify session ownership.
|
|
if session.UserID != userID {
|
|
writeError(w, http.StatusForbidden, "forbidden", "Session belongs to another user")
|
|
return
|
|
}
|
|
|
|
file, err := h.fileResolver.GetByID(r.Context(), session.MediaFileID)
|
|
if err != nil {
|
|
if isPlaybackFileLookupMissing(err) {
|
|
h.abortPlaybackSession(r.Context(), session)
|
|
writeError(w, http.StatusNotFound, "not_found", "Media file not found")
|
|
return
|
|
}
|
|
writeError(w, http.StatusInternalServerError, "internal_error", "Failed to load media file")
|
|
return
|
|
}
|
|
if file == nil {
|
|
h.abortPlaybackSession(r.Context(), session)
|
|
writeError(w, http.StatusNotFound, "not_found", "Media file not found")
|
|
return
|
|
}
|
|
if err := preflightPlaybackFile(r.Context(), file, h.MissingMarker, h.EventsHub); err != nil {
|
|
if isPlaybackFileMissing(err) {
|
|
h.abortPlaybackSession(r.Context(), session)
|
|
}
|
|
writePlaybackFilePreflightError(w, err)
|
|
return
|
|
}
|
|
|
|
switch session.PlayMethod {
|
|
case playback.PlayDirect:
|
|
if err := h.sessionMgr.BeginTransport(sessionID); err == nil {
|
|
defer func() {
|
|
_ = h.sessionMgr.EndTransport(sessionID)
|
|
}()
|
|
}
|
|
if err := playback.ServeDirectPlay(w, r, file.FilePath); err != nil {
|
|
h.handleTransportStartFailure(r.Context(), session, file, err)
|
|
}
|
|
|
|
case playback.PlayRemux:
|
|
if err := h.sessionMgr.BeginTransport(sessionID); err == nil {
|
|
defer func() {
|
|
_ = h.sessionMgr.EndTransport(sessionID)
|
|
}()
|
|
}
|
|
seekSeconds := 0.0
|
|
if seekStr := r.URL.Query().Get("seek"); seekStr != "" {
|
|
if s, err := strconv.ParseFloat(seekStr, 64); err == nil && s >= 0 {
|
|
seekSeconds = s
|
|
}
|
|
}
|
|
if err := playback.ServeRemux(w, r, file.FilePath, "mp4", seekSeconds, session.TranscodeAudio, session.AudioTrackIndex); err != nil {
|
|
h.handleTransportStartFailure(r.Context(), session, file, err)
|
|
}
|
|
|
|
case playback.PlayTranscode:
|
|
writeError(w, http.StatusBadRequest, "bad_request",
|
|
"Transcode streams use manifest/segment endpoints")
|
|
|
|
default:
|
|
writeError(w, http.StatusInternalServerError, "internal_error",
|
|
"Unknown play method")
|
|
}
|
|
}
|
|
|
|
// HandleSubtitle extracts a subtitle track from the media file associated with
|
|
// a playback session and serves it as WebVTT or raw ASS depending on the
|
|
// URL extension (e.g. /subtitles/2.ass or /subtitles/2.vtt).
|
|
func (h *StreamHandler) HandleSubtitle(w http.ResponseWriter, r *http.Request) {
|
|
userID := apimw.GetUserID(r.Context())
|
|
if userID == 0 {
|
|
writeError(w, http.StatusUnauthorized, "unauthorized", "Authentication required")
|
|
return
|
|
}
|
|
|
|
sessionID := chi.URLParam(r, "session_id")
|
|
if sessionID == "" {
|
|
writeError(w, http.StatusBadRequest, "bad_request", "Session ID is required")
|
|
return
|
|
}
|
|
setPlaybackSessionLogContext(r, sessionID)
|
|
|
|
trackParam := chi.URLParam(r, "track")
|
|
trackIndex, _, err := playback.ParseSubtitleTrackParam(trackParam)
|
|
if err != nil {
|
|
writeError(w, http.StatusBadRequest, "bad_request", "Invalid subtitle track index")
|
|
return
|
|
}
|
|
|
|
session, err := h.sessionMgr.GetSession(sessionID)
|
|
if err != nil {
|
|
writePlaybackSessionNotFound(w)
|
|
return
|
|
}
|
|
|
|
if session.UserID != userID {
|
|
writeError(w, http.StatusForbidden, "forbidden", "Session belongs to another user")
|
|
return
|
|
}
|
|
|
|
file, err := h.fileResolver.GetByID(r.Context(), session.MediaFileID)
|
|
if err != nil {
|
|
writeError(w, http.StatusNotFound, "not_found", "Media file not found")
|
|
return
|
|
}
|
|
|
|
externalCount := len(file.ExternalSubtitles)
|
|
if trackIndex < externalCount {
|
|
sub := file.ExternalSubtitles[trackIndex]
|
|
|
|
// Serve ASS/SSA external subtitles as raw data for client-side rendering.
|
|
if playback.IsASS(sub.Format) {
|
|
data, err := playback.LoadExternalSubtitleRaw(sub.Path)
|
|
if err != nil {
|
|
writeError(w, http.StatusInternalServerError, "internal_error",
|
|
"Failed to load external subtitle")
|
|
return
|
|
}
|
|
playback.ServeSubtitle(w, data, "ass")
|
|
return
|
|
}
|
|
|
|
vttData, err := playback.LoadExternalSubtitleAsVTT(r.Context(), sub.Path, sub.Format, h.FFmpegPath)
|
|
if err != nil {
|
|
writeError(w, http.StatusInternalServerError, "internal_error",
|
|
"Failed to load external subtitle")
|
|
return
|
|
}
|
|
playback.ServeSubtitle(w, vttData, "vtt")
|
|
return
|
|
}
|
|
|
|
embeddedIndex := trackIndex - externalCount
|
|
|
|
// Check embedded tracks.
|
|
if embeddedIndex < len(file.SubtitleTracks) {
|
|
track := file.SubtitleTracks[embeddedIndex]
|
|
if playback.NeedsBurnIn(track.Codec) {
|
|
writeError(w, http.StatusBadRequest, "bad_request",
|
|
"Bitmap subtitle tracks cannot be extracted as text")
|
|
return
|
|
}
|
|
|
|
// Dedicated streaming extract — ffmpeg seeks to the current
|
|
// playback position and pipes cues to the response as they're
|
|
// demuxed, so the first byte lands within ~1s even on network
|
|
// storage. Works identically for direct-play, remux, and
|
|
// transcode because it doesn't depend on any other ffmpeg.
|
|
h.streamEmbeddedSubtitle(w, r, file, embeddedIndex, session)
|
|
return
|
|
}
|
|
|
|
// Check downloaded subtitles (from S3).
|
|
if h.SubtitleRepo != nil && h.S3Client != nil {
|
|
downloaded, err := h.SubtitleRepo.ListDownloadedSubtitles(r.Context(), file.ID)
|
|
if err == nil {
|
|
downloadedIndex := embeddedIndex - len(file.SubtitleTracks)
|
|
if downloadedIndex >= 0 && downloadedIndex < len(downloaded) {
|
|
dl := downloaded[downloadedIndex]
|
|
data, err := h.S3Client.GetObject(r.Context(), h.S3Bucket, dl.S3Key)
|
|
if err != nil {
|
|
writeError(w, http.StatusBadGateway, "s3_error", "Failed to load subtitle from storage")
|
|
return
|
|
}
|
|
|
|
// Serve ASS/SSA downloaded subtitles as raw data.
|
|
if playback.IsASS(string(dl.Format)) {
|
|
playback.ServeSubtitle(w, data, "ass")
|
|
return
|
|
}
|
|
|
|
// If the subtitle is already VTT, serve directly.
|
|
if dl.Format == subtitles.FormatVTT {
|
|
playback.ServeSubtitle(w, data, "vtt")
|
|
return
|
|
}
|
|
|
|
// Convert to VTT using the playback conversion pipeline.
|
|
vttData, err := playback.ConvertToVTT(data, string(dl.Format))
|
|
if err != nil {
|
|
writeError(w, http.StatusInternalServerError, "convert_error", "Failed to convert subtitle")
|
|
return
|
|
}
|
|
playback.ServeSubtitle(w, vttData, "vtt")
|
|
return
|
|
}
|
|
}
|
|
}
|
|
|
|
writeError(w, http.StatusNotFound, "not_found", "Subtitle track not found")
|
|
}
|
|
|
|
func (h *StreamHandler) syncSessionsNow(ctx context.Context, reason string) {
|
|
if h == nil || h.SessionSyncer == nil {
|
|
return
|
|
}
|
|
if err := h.SessionSyncer.SyncNow(ctx); err != nil {
|
|
slog.Error("failed to sync sessions", "reason", reason, "error", err)
|
|
}
|
|
}
|
|
|
|
func (h *StreamHandler) finalizeSessionAbort(ctx context.Context, session *playback.Session, syncNow bool, syncReason string) {
|
|
if h == nil || session == nil || session.ID == "" {
|
|
return
|
|
}
|
|
if ctx == nil {
|
|
ctx = context.Background()
|
|
}
|
|
|
|
if h.AdminStore != nil {
|
|
if err := h.AdminStore.DeleteSession(ctx, session.ID); err != nil {
|
|
slog.Error("failed to delete synced session", "session", session.ID, "error", err)
|
|
}
|
|
}
|
|
if syncNow {
|
|
h.syncSessionsNow(ctx, syncReason)
|
|
}
|
|
}
|
|
|
|
func (h *StreamHandler) abortPlaybackSession(ctx context.Context, session *playback.Session) {
|
|
if h == nil || session == nil || session.ID == "" {
|
|
return
|
|
}
|
|
if err := h.sessionMgr.StopSession(session.ID); err != nil {
|
|
return
|
|
}
|
|
h.finalizeSessionAbort(ctx, session, true, "stream_abort")
|
|
}
|
|
|
|
func (h *StreamHandler) handleTransportStartFailure(ctx context.Context, session *playback.Session, file *models.MediaFile, err error) {
|
|
if ctx == nil || session == nil || err == nil {
|
|
return
|
|
}
|
|
if preflightErr := preflightPlaybackFile(ctx, file, h.MissingMarker, h.EventsHub); preflightErr != nil {
|
|
err = preflightErr
|
|
}
|
|
if isPlaybackFileMissing(err) || errors.Is(err, os.ErrNotExist) {
|
|
h.abortPlaybackSession(ctx, session)
|
|
return
|
|
}
|
|
slog.Warn("stream transport startup failed",
|
|
"session", session.ID,
|
|
"file_id", session.MediaFileID,
|
|
"error", err,
|
|
"playback_session_id", session.ID,
|
|
)
|
|
}
|
|
|
|
// streamEmbeddedSubtitle runs a dedicated ffmpeg for a single embedded
|
|
// track, seeked to the best-known playback position, and pipes its
|
|
// stdout directly to w. Because this ffmpeg is independent of the video
|
|
// pipeline, it works the same for direct play, remux, and transcode.
|
|
func (h *StreamHandler) streamEmbeddedSubtitle(w http.ResponseWriter, r *http.Request, file *models.MediaFile, embeddedIndex int, session *playback.Session) {
|
|
track := file.SubtitleTracks[embeddedIndex]
|
|
outFormat := "vtt"
|
|
if playback.IsASS(track.Codec) {
|
|
outFormat = "ass"
|
|
}
|
|
|
|
seek := subtitleSeekPosition(r, session)
|
|
duration := subtitleWindowDuration(r)
|
|
slog.InfoContext(r.Context(), "subtitle stream requested",
|
|
"file_id", file.ID,
|
|
"embedded_index", embeddedIndex,
|
|
"track_language", track.Language,
|
|
"track_codec", track.Codec,
|
|
"track_probed_index", track.Index,
|
|
"seek_seconds", seek,
|
|
"duration_seconds", duration,
|
|
)
|
|
|
|
if outFormat == "ass" {
|
|
w.Header().Set("Content-Type", "text/x-ssa; charset=utf-8")
|
|
} else {
|
|
w.Header().Set("Content-Type", "text/vtt; charset=utf-8")
|
|
}
|
|
w.Header().Set("Access-Control-Allow-Origin", "*")
|
|
w.Header().Set("Cache-Control", "no-store")
|
|
w.WriteHeader(http.StatusOK)
|
|
|
|
err := playback.StreamExtractSubtitle(r.Context(), playback.StreamExtractOpts{
|
|
InputPath: file.FilePath,
|
|
TrackIndex: embeddedIndex,
|
|
SourceCodec: track.Codec,
|
|
SeekSeconds: seek,
|
|
DurationSeconds: duration,
|
|
FFmpegPath: h.FFmpegPath,
|
|
Writer: w,
|
|
})
|
|
if err != nil {
|
|
// Headers already committed — best we can do is log and let
|
|
// the client see a truncated response.
|
|
playback.LogSubtitleStreamError(r.Context(), err, file.ID, embeddedIndex)
|
|
}
|
|
}
|
|
|
|
// subtitleSeekPosition picks the best-known starting position for a
|
|
// subtitle extract. A caller-supplied ?position= query wins (the player
|
|
// has the most accurate clock), falling back to the session's last
|
|
// reported position, then to 0.
|
|
func subtitleSeekPosition(r *http.Request, session *playback.Session) float64 {
|
|
if raw := r.URL.Query().Get("position"); raw != "" {
|
|
if v, err := strconv.ParseFloat(raw, 64); err == nil && v >= 0 {
|
|
return v
|
|
}
|
|
}
|
|
if session != nil && session.Position > 0 {
|
|
return session.Position
|
|
}
|
|
return 0
|
|
}
|
|
|
|
// subtitleWindowDuration picks the bounded extract length. The client
|
|
// overrides via ?duration=; absent that we use a 10-minute window,
|
|
// which is long enough that a single fetch covers many minutes of
|
|
// uninterrupted playback but short enough that the ffmpeg process
|
|
// finishes (and frees its input handle) well before the next window
|
|
// is requested.
|
|
func subtitleWindowDuration(r *http.Request) float64 {
|
|
const defaultDuration = 600.0
|
|
const maxDuration = 3600.0
|
|
if raw := r.URL.Query().Get("duration"); raw != "" {
|
|
if v, err := strconv.ParseFloat(raw, 64); err == nil && v > 0 && v <= maxDuration {
|
|
return v
|
|
}
|
|
}
|
|
return defaultDuration
|
|
}
|