Files
silo-server/internal/access/resolver.go
QuickandGitHub 73488d1bfa feat(metadata): add original-language preferences (#526)
* feat(metadata): add original-language preferences

* fix(settings): show metadata exceptions immediately

* docs(settings): add metadata language screenshot

* fix(settings): make language exceptions responsive

* fix(settings): standardize language display names
2026-07-31 15:23:30 -04:00

255 lines
7.7 KiB
Go

package access
import (
"context"
"encoding/json"
"fmt"
"sort"
"github.com/Silo-Server/silo-server/internal/models"
"github.com/Silo-Server/silo-server/internal/userstore"
)
// settingKeyDisabledLibraryIDs is the legacy account-wide user-settings key
// that stored a JSON array of library IDs the user had chosen to hide. It is
// read only as a fallback now: the setting moved to the profile-scoped
// canonical key ui.disabled_library_ids, and the legacy write endpoint no
// longer accepts this key.
const settingKeyDisabledLibraryIDs = "disabled_library_ids"
// UserRepository loads account-level access settings.
type UserRepository interface {
GetByID(ctx context.Context, id int) (*models.User, error)
}
// ProfileTokenValidator validates short-lived profile verification tokens.
type ProfileTokenValidator interface {
Validate(tokenStr string) (*ProfileTokenClaims, error)
}
// Resolver resolves a viewer request into an effective access scope.
type Resolver struct {
users UserRepository
storeFactory userstore.UserStoreProvider
tokens ProfileTokenValidator
groups GroupPolicyProvider
}
// NewResolver creates a new scope resolver.
func NewResolver(users UserRepository, storeFactory userstore.UserStoreProvider, tokens ProfileTokenValidator, groups ...GroupPolicyProvider) *Resolver {
var groupProvider GroupPolicyProvider
if len(groups) > 0 {
groupProvider = groups[0]
}
return &Resolver{
users: users,
storeFactory: storeFactory,
tokens: tokens,
groups: groupProvider,
}
}
// Resolve computes the effective viewer scope for the request.
func (r *Resolver) Resolve(ctx context.Context, input ResolveInput) (Scope, error) {
user, err := r.users.GetByID(ctx, input.UserID)
if err != nil {
return Scope{}, fmt.Errorf("loading user %d: %w", input.UserID, err)
}
effective, err := EffectivePolicyForUser(ctx, user, r.groups)
if err != nil {
return Scope{}, fmt.Errorf("loading access group policy for user %d: %w", input.UserID, err)
}
scope := Scope{
UserID: user.ID,
ProfileID: input.ProfileID,
AllowedLibraryIDs: cloneInts(effective.LibraryIDs),
LibrariesRestricted: effective.LibraryIDs != nil,
MaxPlaybackQuality: NormalizePlaybackQuality(effective.MaxPlaybackQuality),
PolicyRevision: user.AccessPolicyRevision,
ProfileVerified: input.ProfileID == "",
}
store, err := r.storeFactory.ForUser(ctx, input.UserID)
if err != nil {
return Scope{}, fmt.Errorf("opening user store for %d: %w", input.UserID, err)
}
preferences := ResolveViewerPreferences(ctx, store, input.ProfileID)
if input.ProfileID != "" {
profile, err := store.GetProfile(ctx, input.ProfileID)
if err != nil {
return Scope{}, fmt.Errorf("loading profile %s: %w", input.ProfileID, err)
}
if profile == nil {
return Scope{}, ErrProfileNotFound
}
scope.MaxContentRating = profile.MaxContentRating
scope.MaxPlaybackQuality = MinQuality(scope.MaxPlaybackQuality, NormalizePlaybackQuality(profile.MaxPlaybackQuality))
scope.PreferredMetadataLanguage = preferences.PreferredMetadataLanguage
scope.MetadataLanguageOverrides = preferences.MetadataLanguageOverrides
scope.AllowedLibraryIDs, scope.LibrariesRestricted = effectiveLibraries(effective.LibraryIDs, profile)
verified, err := VerifyProfileForRequest(profile, input, user.ID, user.AccessPolicyRevision, r.tokens)
if err != nil {
return Scope{}, err
}
scope.ProfileVerified = verified
}
// Apply the profile's disabled library IDs setting.
disabled := preferences.DisabledLibraryIDs
if len(disabled) > 0 {
if scope.AllowedLibraryIDs != nil {
// Restricted user: subtract disabled IDs from the allowed set.
scope.AllowedLibraryIDs = subtractInts(scope.AllowedLibraryIDs, disabled)
} else {
// Unrestricted user: pass disabled IDs through so query layer
// can apply a NOT IN filter.
scope.DisabledLibraryIDs = disabled
}
}
return scope, nil
}
// VerifyProfileForRequest applies the legacy profile PIN/token verification
// checks for a resolved profile and returns whether the profile is verified for
// the request.
func VerifyProfileForRequest(
profile *userstore.Profile,
input ResolveInput,
userID int,
policyRevision int64,
tokens ProfileTokenValidator,
) (bool, error) {
if profile == nil {
return input.ProfileID == "", nil
}
profileVerified := profile.PINHash == "" || input.SkipPINVerification
if profile.PINHash != "" && !input.SkipPINVerification {
if tokens == nil {
return false, ErrProfileUnverified
}
claims, err := tokens.Validate(input.ProfileToken)
if err != nil {
return false, err
}
if claims.UserID != userID || claims.SessionID != input.SessionID || claims.ProfileID != profile.ID || claims.PolicyRevision != policyRevision {
return false, ErrProfileUnverified
}
profileVerified = true
}
return profileVerified, nil
}
// DisabledLibraryIDs resolves the libraries the acting profile has hidden from
// its own browsing: the canonical profile-scoped ui.disabled_library_ids row,
// else the legacy account-wide disabled_library_ids setting.
//
// The canonical row is what the web writes since the settings cutover — the
// legacy endpoint rejects the unregistered key, so an account-key read alone
// would silently ignore every edit made after the cutover. The legacy fallback
// stays because the one-time backfill only ran on stores that existed when it
// shipped: a store restored from a pre-backfill snapshot still carries its
// hidden libraries only in the account key, and dropping the fallback would
// unhide them. A stored canonical row always wins, so the fallback can never
// override a post-cutover edit.
func DisabledLibraryIDs(ctx context.Context, store userstore.UserStore, profileID string) []int {
return ResolveViewerPreferences(ctx, store, profileID).DisabledLibraryIDs
}
// parseLibraryIDList decodes a JSON library-id array, dropping anything that
// is not a positive id. Malformed JSON reads as an empty list.
func parseLibraryIDList(raw json.RawMessage) []int {
var ids []int
if err := json.Unmarshal(raw, &ids); err != nil {
return nil
}
n := 0
for _, id := range ids {
if id > 0 {
ids[n] = id
n++
}
}
return ids[:n]
}
// subtractInts removes all values in exclude from src, preserving order.
func subtractInts(src, exclude []int) []int {
if len(exclude) == 0 {
return src
}
set := make(map[int]struct{}, len(exclude))
for _, id := range exclude {
set[id] = struct{}{}
}
out := make([]int, 0, len(src))
for _, id := range src {
if _, ok := set[id]; !ok {
out = append(out, id)
}
}
return out
}
func effectiveLibraries(accountLibraryIDs []int, profile *userstore.Profile) ([]int, bool) {
accountRestricted := accountLibraryIDs != nil
profileRestricted := profile.LibraryRestrictionsEnabled
switch {
case accountRestricted && profileRestricted:
return intersectInts(accountLibraryIDs, profile.AllowedLibraryIDs), true
case accountRestricted:
return cloneInts(accountLibraryIDs), true
case profileRestricted:
return sortedUniqueInts(profile.AllowedLibraryIDs), true
default:
return nil, false
}
}
func intersectInts(left, right []int) []int {
if len(left) == 0 || len(right) == 0 {
return []int{}
}
set := make(map[int]struct{}, len(left))
for _, id := range left {
set[id] = struct{}{}
}
var out []int
for _, id := range right {
if _, ok := set[id]; ok {
out = append(out, id)
}
}
return sortedUniqueInts(out)
}
func sortedUniqueInts(values []int) []int {
if len(values) == 0 {
return []int{}
}
out := cloneInts(values)
sort.Ints(out)
n := 1
for i := 1; i < len(out); i++ {
if out[i] != out[i-1] {
out[n] = out[i]
n++
}
}
return out[:n]
}
func cloneInts(values []int) []int {
if values == nil {
return nil
}
out := make([]int, len(values))
copy(out, values)
return out
}