mirror of https://github.com/stashapp/stash.git
42 lines
1006 B
Go
42 lines
1006 B
Go
package api
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
"strconv"
|
|
|
|
"github.com/stashapp/stash/internal/api/urlbuilders"
|
|
"github.com/stashapp/stash/internal/manager"
|
|
"github.com/stashapp/stash/pkg/models"
|
|
)
|
|
|
|
func (r *queryResolver) SceneStreams(ctx context.Context, id *string) ([]*manager.SceneStreamEndpoint, error) {
|
|
// find the scene
|
|
var scene *models.Scene
|
|
if err := r.withReadTxn(ctx, func(ctx context.Context) error {
|
|
idInt, _ := strconv.Atoi(*id)
|
|
var err error
|
|
scene, err = r.repository.Scene.Find(ctx, idInt)
|
|
|
|
if scene != nil {
|
|
err = scene.LoadPrimaryFile(ctx, r.repository.File)
|
|
}
|
|
|
|
return err
|
|
}); err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
if scene == nil {
|
|
return nil, errors.New("nil scene")
|
|
}
|
|
|
|
config := manager.GetInstance().Config
|
|
|
|
baseURL, _ := ctx.Value(BaseURLCtxKey).(string)
|
|
builder := urlbuilders.NewSceneURLBuilder(baseURL, scene)
|
|
apiKey := config.GetAPIKey()
|
|
|
|
return manager.GetSceneStreamPaths(scene, builder.GetStreamURL(apiKey), config.GetMaxStreamingTranscodeSize())
|
|
}
|