mirror of
https://github.com/koel/koel
synced 2024-11-24 13:13:05 +00:00
43 lines
1.1 KiB
PHP
43 lines
1.1 KiB
PHP
<?php
|
|
|
|
namespace App\Jobs;
|
|
|
|
use App\Models\Album;
|
|
use App\Models\Song;
|
|
use App\Models\User;
|
|
use App\Services\LastfmService;
|
|
use Illuminate\Bus\Queueable;
|
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
|
use Illuminate\Foundation\Bus\Dispatchable;
|
|
use Illuminate\Queue\InteractsWithQueue;
|
|
use Illuminate\Queue\SerializesModels;
|
|
|
|
class ScrobbleJob implements ShouldQueue
|
|
{
|
|
use Dispatchable;
|
|
use InteractsWithQueue;
|
|
use Queueable;
|
|
use SerializesModels;
|
|
|
|
private User $user;
|
|
private Song $song;
|
|
private int $timestamp;
|
|
|
|
public function __construct(User $user, Song $song, int $timestamp)
|
|
{
|
|
$this->user = $user;
|
|
$this->song = $song;
|
|
$this->timestamp = $timestamp;
|
|
}
|
|
|
|
public function handle(LastfmService $lastfmService): void
|
|
{
|
|
$lastfmService->scrobble(
|
|
$this->song->artist->name,
|
|
$this->song->title,
|
|
$this->timestamp,
|
|
$this->song->album->name === Album::UNKNOWN_NAME ? '' : $this->song->album->name,
|
|
$this->user->lastfm_session_key
|
|
);
|
|
}
|
|
}
|