koel/app/Http/Controllers/API/ScrobbleController.php

31 lines
778 B
PHP
Raw Normal View History

2016-05-30 05:50:59 +00:00
<?php
namespace App\Http\Controllers\API;
2020-09-13 22:04:07 +00:00
use App\Http\Requests\API\ScrobbleStoreRequest;
use App\Jobs\ScrobbleJob;
2016-05-30 05:50:59 +00:00
use App\Models\Song;
2020-09-13 22:04:07 +00:00
use App\Models\User;
use Illuminate\Contracts\Auth\Authenticatable;
use Illuminate\Http\Response;
2016-05-30 05:50:59 +00:00
class ScrobbleController extends Controller
{
2020-09-13 22:04:07 +00:00
/** @var User */
private $currentUser;
public function __construct(Authenticatable $currentUser)
2018-08-19 21:17:05 +00:00
{
2020-09-13 22:04:07 +00:00
$this->currentUser = $currentUser;
2018-08-19 21:17:05 +00:00
}
2020-09-13 22:04:07 +00:00
public function store(ScrobbleStoreRequest $request, Song $song)
2016-05-30 05:50:59 +00:00
{
2020-09-13 22:04:07 +00:00
if (!$song->artist->is_unknown && $this->currentUser->connectedToLastfm()) {
ScrobbleJob::dispatch($this->currentUser, $song, $request->timestamp);
2018-08-19 21:17:05 +00:00
}
2020-09-13 22:04:07 +00:00
return response()->json(null, Response::HTTP_NO_CONTENT);
2016-05-30 05:50:59 +00:00
}
}