mirror of https://github.com/stashapp/stash.git
32 lines
698 B
Go
32 lines
698 B
Go
|
package api
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
"errors"
|
||
|
"strconv"
|
||
|
|
||
|
"github.com/stashapp/stash/pkg/api/urlbuilders"
|
||
|
"github.com/stashapp/stash/pkg/manager"
|
||
|
"github.com/stashapp/stash/pkg/models"
|
||
|
)
|
||
|
|
||
|
func (r *queryResolver) SceneStreams(ctx context.Context, id *string) ([]*models.SceneStreamEndpoint, error) {
|
||
|
// find the scene
|
||
|
qb := models.NewSceneQueryBuilder()
|
||
|
idInt, _ := strconv.Atoi(*id)
|
||
|
scene, err := qb.Find(idInt)
|
||
|
|
||
|
if err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
|
||
|
if scene == nil {
|
||
|
return nil, errors.New("nil scene")
|
||
|
}
|
||
|
|
||
|
baseURL, _ := ctx.Value(BaseURLCtxKey).(string)
|
||
|
builder := urlbuilders.NewSceneURLBuilder(baseURL, scene.ID)
|
||
|
|
||
|
return manager.GetSceneStreamPaths(scene, builder.GetStreamURL())
|
||
|
}
|