2018-08-29 06:15:11 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Repositories;
|
|
|
|
|
|
|
|
use App\Models\Interaction;
|
|
|
|
use App\Models\User;
|
|
|
|
use App\Repositories\Traits\ByCurrentUser;
|
2018-10-20 21:46:12 +00:00
|
|
|
use Illuminate\Database\Query\Builder;
|
2018-08-29 06:15:11 +00:00
|
|
|
use Illuminate\Support\Collection;
|
|
|
|
|
2022-07-29 06:47:10 +00:00
|
|
|
class InteractionRepository extends Repository
|
2018-08-29 06:15:11 +00:00
|
|
|
{
|
|
|
|
use ByCurrentUser;
|
|
|
|
|
2020-12-22 20:11:22 +00:00
|
|
|
/** @return Collection|array<Interaction> */
|
2018-08-29 06:15:11 +00:00
|
|
|
public function getUserFavorites(User $user): Collection
|
|
|
|
{
|
|
|
|
return $this->model->where([
|
|
|
|
'user_id' => $user->id,
|
2019-05-24 08:20:47 +00:00
|
|
|
'liked' => true,
|
2018-08-29 06:15:11 +00:00
|
|
|
])
|
|
|
|
->with('song')
|
|
|
|
->pluck('song');
|
|
|
|
}
|
2018-10-20 21:46:12 +00:00
|
|
|
|
2020-12-22 20:11:22 +00:00
|
|
|
/** @return array<Interaction> */
|
2018-10-20 21:46:12 +00:00
|
|
|
public function getRecentlyPlayed(User $user, ?int $count = null): array
|
|
|
|
{
|
|
|
|
/** @var Builder $query */
|
|
|
|
$query = $this->model
|
|
|
|
->where('user_id', $user->id)
|
2019-04-14 14:12:16 +00:00
|
|
|
->where('play_count', '>', 0)
|
2018-10-20 21:46:12 +00:00
|
|
|
->orderBy('updated_at', 'DESC');
|
|
|
|
|
|
|
|
if ($count) {
|
|
|
|
$query = $query->take($count);
|
|
|
|
}
|
|
|
|
|
2020-12-22 23:01:49 +00:00
|
|
|
return $query->pluck('song_id')->all();
|
2018-10-20 21:46:12 +00:00
|
|
|
}
|
2018-08-29 06:15:11 +00:00
|
|
|
}
|