mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
130 lines
4 KiB
Go
130 lines
4 KiB
Go
package subsonic
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"net/http"
|
|
"reflect"
|
|
"strings"
|
|
"time"
|
|
|
|
"github.com/deluan/sanitize"
|
|
"github.com/navidrome/navidrome/log"
|
|
"github.com/navidrome/navidrome/model"
|
|
"github.com/navidrome/navidrome/server/public"
|
|
"github.com/navidrome/navidrome/server/subsonic/responses"
|
|
"github.com/navidrome/navidrome/utils/req"
|
|
"golang.org/x/sync/errgroup"
|
|
)
|
|
|
|
type searchParams struct {
|
|
query string
|
|
artistCount int
|
|
artistOffset int
|
|
albumCount int
|
|
albumOffset int
|
|
songCount int
|
|
songOffset int
|
|
}
|
|
|
|
func (api *Router) getSearchParams(r *http.Request) (*searchParams, error) {
|
|
p := req.Params(r)
|
|
sp := &searchParams{}
|
|
sp.query = p.StringOr("query", `""`)
|
|
sp.artistCount = p.IntOr("artistCount", 20)
|
|
sp.artistOffset = p.IntOr("artistOffset", 0)
|
|
sp.albumCount = p.IntOr("albumCount", 20)
|
|
sp.albumOffset = p.IntOr("albumOffset", 0)
|
|
sp.songCount = p.IntOr("songCount", 20)
|
|
sp.songOffset = p.IntOr("songOffset", 0)
|
|
return sp, nil
|
|
}
|
|
|
|
type searchFunc[T any] func(q string, offset int, size int) (T, error)
|
|
|
|
func callSearch[T any](ctx context.Context, s searchFunc[T], q string, offset, size int, result *T) func() error {
|
|
return func() error {
|
|
if size == 0 {
|
|
return nil
|
|
}
|
|
typ := strings.TrimPrefix(reflect.TypeOf(*result).String(), "model.")
|
|
var err error
|
|
start := time.Now()
|
|
*result, err = s(q, offset, size)
|
|
if err != nil {
|
|
log.Error(ctx, "Error searching "+typ, "query", q, "elapsed", time.Since(start), err)
|
|
} else {
|
|
log.Trace(ctx, "Search for "+typ+" completed", "query", q, "elapsed", time.Since(start))
|
|
}
|
|
return nil
|
|
}
|
|
}
|
|
|
|
func (api *Router) searchAll(ctx context.Context, sp *searchParams) (mediaFiles model.MediaFiles, albums model.Albums, artists model.Artists) {
|
|
start := time.Now()
|
|
q := sanitize.Accents(strings.ToLower(strings.TrimSuffix(sp.query, "*")))
|
|
|
|
// Run searches in parallel
|
|
g, ctx := errgroup.WithContext(ctx)
|
|
g.Go(callSearch(ctx, api.ds.MediaFile(ctx).Search, q, sp.songOffset, sp.songCount, &mediaFiles))
|
|
g.Go(callSearch(ctx, api.ds.Album(ctx).Search, q, sp.albumOffset, sp.albumCount, &albums))
|
|
g.Go(callSearch(ctx, api.ds.Artist(ctx).Search, q, sp.artistOffset, sp.artistCount, &artists))
|
|
err := g.Wait()
|
|
if err == nil {
|
|
log.Debug(ctx, fmt.Sprintf("Search resulted in %d songs, %d albums and %d artists",
|
|
len(mediaFiles), len(albums), len(artists)), "query", sp.query, "elapsedTime", time.Since(start))
|
|
} else {
|
|
log.Warn(ctx, "Search was interrupted", "query", sp.query, "elapsedTime", time.Since(start), err)
|
|
}
|
|
return mediaFiles, albums, artists
|
|
}
|
|
|
|
func (api *Router) Search2(r *http.Request) (*responses.Subsonic, error) {
|
|
ctx := r.Context()
|
|
sp, err := api.getSearchParams(r)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
mfs, als, as := api.searchAll(ctx, sp)
|
|
|
|
response := newResponse()
|
|
searchResult2 := &responses.SearchResult2{}
|
|
searchResult2.Artist = make([]responses.Artist, len(as))
|
|
for i, artist := range as {
|
|
searchResult2.Artist[i] = responses.Artist{
|
|
Id: artist.ID,
|
|
Name: artist.Name,
|
|
AlbumCount: int32(artist.AlbumCount),
|
|
UserRating: int32(artist.Rating),
|
|
CoverArt: artist.CoverArtID().String(),
|
|
ArtistImageUrl: public.ImageURL(r, artist.CoverArtID(), 600),
|
|
}
|
|
if artist.Starred {
|
|
searchResult2.Artist[i].Starred = as[i].StarredAt
|
|
}
|
|
}
|
|
searchResult2.Album = childrenFromAlbums(ctx, als)
|
|
searchResult2.Song = childrenFromMediaFiles(ctx, mfs)
|
|
response.SearchResult2 = searchResult2
|
|
return response, nil
|
|
}
|
|
|
|
func (api *Router) Search3(r *http.Request) (*responses.Subsonic, error) {
|
|
ctx := r.Context()
|
|
sp, err := api.getSearchParams(r)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
mfs, als, as := api.searchAll(ctx, sp)
|
|
|
|
response := newResponse()
|
|
searchResult3 := &responses.SearchResult3{}
|
|
searchResult3.Artist = make([]responses.ArtistID3, len(as))
|
|
for i, artist := range as {
|
|
searchResult3.Artist[i] = toArtistID3(r, artist)
|
|
}
|
|
searchResult3.Album = buildAlbumsID3(ctx, als)
|
|
searchResult3.Song = childrenFromMediaFiles(ctx, mfs)
|
|
response.SearchResult3 = searchResult3
|
|
return response, nil
|
|
}
|