koel/app/Services/SearchService.php

72 lines
2.3 KiB
PHP
Raw Normal View History

2020-12-24 12:41:18 +00:00
<?php
namespace App\Services;
2023-06-05 21:46:41 +00:00
use App\Builders\SongBuilder;
use App\Models\Album;
use App\Models\Artist;
2024-05-19 05:49:42 +00:00
use App\Models\Podcast\Podcast;
use App\Models\Song;
2023-06-05 21:46:41 +00:00
use App\Models\User;
2020-12-24 12:41:18 +00:00
use App\Repositories\AlbumRepository;
use App\Repositories\ArtistRepository;
2024-05-19 05:49:42 +00:00
use App\Repositories\PodcastRepository;
2020-12-24 12:41:18 +00:00
use App\Repositories\SongRepository;
2023-06-05 21:46:41 +00:00
use App\Values\ExcerptSearchResult;
use Illuminate\Support\Collection;
2020-12-24 12:41:18 +00:00
class SearchService
{
public const DEFAULT_EXCERPT_RESULT_COUNT = 6;
2023-06-05 21:46:41 +00:00
public const DEFAULT_MAX_SONG_RESULT_COUNT = 500;
2020-12-24 12:41:18 +00:00
public function __construct(
2024-04-18 14:36:28 +00:00
private readonly SongRepository $songRepository,
private readonly AlbumRepository $albumRepository,
2024-05-19 05:49:42 +00:00
private readonly ArtistRepository $artistRepository,
private readonly PodcastRepository $podcastRepository
2020-12-24 12:41:18 +00:00
) {
}
2023-06-05 21:46:41 +00:00
public function excerptSearch(
string $keywords,
?User $scopedUser = null,
int $count = self::DEFAULT_EXCERPT_RESULT_COUNT
): ExcerptSearchResult {
$scopedUser ??= auth()->user();
2020-12-24 12:41:18 +00:00
2023-06-05 21:46:41 +00:00
return ExcerptSearchResult::make(
2024-05-19 05:49:42 +00:00
songs: $this->songRepository->getMany(
ids: Song::search($keywords)->get()->take($count)->pluck('id')->all(),
inThatOrder: true,
scopedUser: $scopedUser
2023-06-05 21:46:41 +00:00
),
2024-05-19 05:49:42 +00:00
artists: $this->artistRepository->getMany(
ids: Artist::search($keywords)->get()->take($count)->pluck('id')->all(),
inThatOrder: true
),
albums: $this->albumRepository->getMany(
ids: Album::search($keywords)->get()->take($count)->pluck('id')->all(),
inThatOrder: true
),
podcasts: $this->podcastRepository->getMany(
ids: Podcast::search($keywords)->get()->take($count)->pluck('id')->all(),
inThatOrder: true
),
2023-06-05 21:46:41 +00:00
);
2020-12-24 12:41:18 +00:00
}
2020-12-24 22:35:39 +00:00
2023-06-05 21:46:41 +00:00
/** @return Collection|array<array-key, Song> */
public function searchSongs(
string $keywords,
?User $scopedUser = null,
int $limit = self::DEFAULT_MAX_SONG_RESULT_COUNT
): Collection {
return Song::search($keywords)
->query(static function (SongBuilder $builder) use ($scopedUser, $limit): void {
2024-01-03 17:02:18 +00:00
$builder->withMetaFor($scopedUser ?? auth()->user())->limit($limit);
2023-06-05 21:46:41 +00:00
})
->get();
2020-12-24 22:35:39 +00:00
}
2020-12-24 12:41:18 +00:00
}