2020-09-07 20:43:23 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
|
|
|
|
use App\Http\Requests\API\LastfmCallbackRequest;
|
|
|
|
use App\Models\User;
|
|
|
|
use App\Services\LastfmService;
|
|
|
|
use App\Services\TokenManager;
|
|
|
|
use Illuminate\Contracts\Auth\Authenticatable;
|
|
|
|
use Illuminate\Http\RedirectResponse;
|
|
|
|
use Illuminate\Http\Response;
|
|
|
|
|
|
|
|
/**
|
2020-09-13 22:04:07 +00:00
|
|
|
* @group 9. Last.fm integration
|
2020-09-07 20:43:23 +00:00
|
|
|
*/
|
|
|
|
class LastfmController extends Controller
|
|
|
|
{
|
|
|
|
private $lastfmService;
|
|
|
|
private $tokenManager;
|
|
|
|
|
|
|
|
/** @var User */
|
|
|
|
private $currentUser;
|
|
|
|
|
|
|
|
public function __construct(LastfmService $lastfmService, TokenManager $tokenManager, ?Authenticatable $currentUser)
|
|
|
|
{
|
|
|
|
$this->lastfmService = $lastfmService;
|
|
|
|
$this->tokenManager = $tokenManager;
|
|
|
|
$this->currentUser = $currentUser;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Connect to Last.fm
|
|
|
|
*
|
|
|
|
* [Connect](https://www.last.fm/api/authentication) the current user to Last.fm.
|
|
|
|
* This is actually NOT an API request. The application should instead redirect the current user to this route,
|
|
|
|
* which will send them to Last.fm for authentication. After authentication is successful, the user will be
|
|
|
|
* redirected back to `lastfm/callback?token=<Last.fm token>`.
|
|
|
|
*
|
|
|
|
* @queryParam api_token required Authentication token of the current user.
|
|
|
|
* @response []
|
|
|
|
*
|
|
|
|
* @return RedirectResponse
|
|
|
|
*/
|
|
|
|
public function connect()
|
|
|
|
{
|
|
|
|
abort_unless(
|
|
|
|
$this->lastfmService->enabled(),
|
|
|
|
Response::HTTP_NOT_IMPLEMENTED,
|
|
|
|
'Koel is not configured to use with Last.fm yet.'
|
|
|
|
);
|
|
|
|
|
|
|
|
$callbackUrl = urlencode(sprintf(
|
|
|
|
'%s?api_token=%s',
|
|
|
|
route('lastfm.callback'),
|
|
|
|
// for enhanced security, create a temporary token that can be deleted later
|
|
|
|
$this->tokenManager->createToken($this->currentUser)->plainTextToken
|
|
|
|
));
|
|
|
|
|
|
|
|
$url = sprintf('https://www.last.fm/api/auth/?api_key=%s&cb=%s', $this->lastfmService->getKey(), $callbackUrl);
|
|
|
|
|
|
|
|
return redirect($url);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Serve the callback request from Last.fm.
|
|
|
|
*/
|
|
|
|
public function callback(LastfmCallbackRequest $request)
|
|
|
|
{
|
|
|
|
$sessionKey = $this->lastfmService->getSessionKey($request->token);
|
|
|
|
abort_unless($sessionKey, Response::HTTP_INTERNAL_SERVER_ERROR, 'Invalid token key.');
|
|
|
|
|
|
|
|
$this->currentUser->savePreference('lastfm_session_key', $sessionKey);
|
|
|
|
|
|
|
|
// delete the tmp. token we created earlier
|
|
|
|
$this->tokenManager->deleteTokenByPlainTextToken($request->api_token);
|
|
|
|
|
|
|
|
return view('lastfm.callback');
|
|
|
|
}
|
|
|
|
}
|