mirror of
https://github.com/koel/koel
synced 2024-12-11 05:02:27 +00:00
102 lines
2.8 KiB
PHP
102 lines
2.8 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Controllers\API;
|
|
|
|
use App\Http\Requests\API\LastfmCallbackRequest;
|
|
use App\Http\Requests\API\LastfmSetSessionKeyRequest;
|
|
use App\Services\Lastfm;
|
|
use Illuminate\Contracts\Auth\Guard;
|
|
use Illuminate\Http\JsonResponse;
|
|
use Illuminate\Http\RedirectResponse;
|
|
use Illuminate\Http\Response;
|
|
use Illuminate\Routing\Redirector;
|
|
use Tymon\JWTAuth\JWTAuth;
|
|
|
|
class LastfmController extends Controller
|
|
{
|
|
/*
|
|
* The Guard implementation.
|
|
*
|
|
* @var Guard
|
|
*/
|
|
protected $auth;
|
|
|
|
/**
|
|
* Construct the controller and inject the current auth.
|
|
*
|
|
* @param Guard $auth
|
|
*/
|
|
public function __construct(Guard $auth)
|
|
{
|
|
$this->auth = $auth;
|
|
}
|
|
|
|
/**
|
|
* Connect the current user to Last.fm.
|
|
*
|
|
* @param Redirector $redirector
|
|
* @param Lastfm $lastfm
|
|
* @param JWTAuth $auth
|
|
*
|
|
* @return Redirector|RedirectResponse
|
|
*/
|
|
public function connect(Redirector $redirector, Lastfm $lastfm, JWTAuth $auth = null)
|
|
{
|
|
abort_unless($lastfm->enabled(), 401, 'Koel is not configured to use with Last.fm yet.');
|
|
|
|
$auth = $auth ?: $this->app['tymon.jwt.auth'];
|
|
|
|
// A workaround to make sure Tymon's JWTAuth get the correct token via our custom
|
|
// "jwt-token" query string instead of the default "token".
|
|
// This is due to the problem that Last.fm returns the token via "token" as well.
|
|
$auth->parseToken('', '', 'jwt-token');
|
|
|
|
return $redirector->to(
|
|
'https://www.last.fm/api/auth/?api_key='
|
|
.$lastfm->getKey()
|
|
.'&cb='.urlencode(route('lastfm.callback').'?jwt-token='.$auth->getToken())
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Serve the callback request from Last.fm.
|
|
*
|
|
* @param LastfmCallbackRequest $request
|
|
* @param Lastfm $lastfm
|
|
*
|
|
* @return Response
|
|
*/
|
|
public function callback(LastfmCallbackRequest $request, Lastfm $lastfm)
|
|
{
|
|
// Get the session key using the obtained token.
|
|
abort_unless($sessionKey = $lastfm->getSessionKey($request->token), 500, 'Invalid token key.');
|
|
|
|
$this->auth->user()->savePreference('lastfm_session_key', $sessionKey);
|
|
|
|
return view('api.lastfm.callback');
|
|
}
|
|
|
|
/**
|
|
* Set the Last.fm session key of the current user.
|
|
*
|
|
* @param LastfmSetSessionKeyRequest $request
|
|
*
|
|
* @return JsonResponse
|
|
*/
|
|
public function setSessionKey(LastfmSetSessionKeyRequest $request)
|
|
{
|
|
$this->auth->user()->savePreference('lastfm_session_key', trim($request->key));
|
|
|
|
return response()->json();
|
|
}
|
|
|
|
/**
|
|
* Disconnect the current user from Last.fm.
|
|
*
|
|
* @return JsonResponse
|
|
*/
|
|
public function disconnect()
|
|
{
|
|
return response()->json($this->auth->user()->deletePreference('lastfm_session_key'));
|
|
}
|
|
}
|