lastfmService = $lastfmService; } /** * Create a Last.fm scrobble entry for a song. * * @param string $timestamp The UNIX timestamp when the song started playing. * * @return JsonResponse */ public function store(Request $request, Song $song, string $timestamp) { if (!$song->artist->is_unknown && $request->user()->connectedToLastfm()) { $this->lastfmService->scrobble( $song->artist->name, $song->title, (int) $timestamp, $song->album->name === Album::UNKNOWN_NAME ? '' : $song->album->name, $request->user()->lastfm_session_key ); } return response()->json(); } }