koel/app/Jobs/UpdateLastfmNowPlayingJob.php

42 lines
1,014 B
PHP
Raw Normal View History

<?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;
2020-09-06 21:20:42 +00:00
use Illuminate\Queue\InteractsWithQueue;
use Illuminate\Queue\SerializesModels;
class UpdateLastfmNowPlayingJob implements ShouldQueue
{
2020-09-06 21:20:42 +00:00
use Dispatchable;
use InteractsWithQueue;
use Queueable;
use SerializesModels;
private $user;
private $song;
public function __construct(User $user, Song $song)
{
$this->user = $user;
$this->song = $song;
}
public function handle(LastfmService $lastfmService): void
{
$lastfmService->updateNowPlaying(
$this->song->artist->name,
$this->song->title,
$this->song->album->name === Album::UNKNOWN_NAME ? '' : $this->song->album->name,
$this->song->length,
$this->user->lastfm_session_key
);
}
}