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

106 lines
3.3 KiB
PHP
Raw Normal View History

2015-12-20 12:17:35 +00:00
<?php
namespace App\Http\Controllers\API;
use App\Http\Requests\API\LastfmCallbackRequest;
use App\Http\Requests\API\LastfmSetSessionKeyRequest;
2018-08-18 13:19:40 +00:00
use App\Services\LastfmService;
2015-12-20 12:17:35 +00:00
use Illuminate\Contracts\Auth\Guard;
2017-06-04 01:30:45 +00:00
use Illuminate\Http\JsonResponse;
use Illuminate\Http\RedirectResponse;
2018-08-19 16:05:10 +00:00
use Tymon\JWTAuth\Exceptions\JWTException;
2015-12-30 04:14:47 +00:00
use Tymon\JWTAuth\JWTAuth;
2015-12-20 12:17:35 +00:00
/**
* @group Last.fm integration
*/
2015-12-20 12:17:35 +00:00
class LastfmController extends Controller
{
protected $auth;
2018-08-19 16:05:10 +00:00
private $lastfmService;
private $jwtAuth;
2015-12-20 12:17:35 +00:00
2018-09-04 06:25:24 +00:00
public function __construct(Guard $auth, LastfmService $lastfmService, JWTAuth $jwtAuth)
{
2015-12-20 12:17:35 +00:00
$this->auth = $auth;
2018-08-19 16:05:10 +00:00
$this->lastfmService = $lastfmService;
$this->jwtAuth = $jwtAuth;
2015-12-20 12:17:35 +00:00
}
/**
* 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 `api/lastfm/callback?token=<Last.fm token>`.
*
* @queryParam jwt-token required The JWT token of the user.
* @response []
2015-12-20 12:17:35 +00:00
*
2018-08-19 16:05:10 +00:00
* @throws JWTException
2018-08-19 16:05:54 +00:00
*
* @return RedirectResponse
2015-12-20 12:17:35 +00:00
*/
2018-08-19 16:05:10 +00:00
public function connect()
2015-12-20 12:17:35 +00:00
{
2018-08-19 16:05:10 +00:00
abort_unless($this->lastfmService->enabled(), 401, 'Koel is not configured to use with Last.fm yet.');
2015-12-30 04:14:47 +00:00
// 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.
2018-08-19 16:05:10 +00:00
$this->jwtAuth->parseToken('', '', 'jwt-token');
2015-12-30 04:14:47 +00:00
2018-09-04 02:24:29 +00:00
$callbackUrl = urlencode(sprintf('%s?jwt-token=%s', route('lastfm.callback'), $this->jwtAuth->getToken()));
$url = sprintf('https://www.last.fm/api/auth/?api_key=%s&cb=%s', $this->lastfmService->getKey(), $callbackUrl);
return redirect($url);
2015-12-20 12:17:35 +00:00
}
/**
* Serve the callback request from Last.fm.
*/
2018-08-19 16:05:10 +00:00
public function callback(LastfmCallbackRequest $request)
2015-12-20 12:17:35 +00:00
{
2018-09-04 06:25:24 +00:00
$sessionKey = $this->lastfmService->getSessionKey($request->token);
2018-08-19 16:05:10 +00:00
abort_unless($sessionKey, 500, 'Invalid token key.');
2015-12-20 12:17:35 +00:00
2018-09-04 06:25:24 +00:00
$this->auth->user()->savePreference('lastfm_session_key', $sessionKey);
2015-12-20 12:17:35 +00:00
return view('api.lastfm.callback');
}
2016-01-26 06:32:29 +00:00
/**
* Set Last.fm session key
*
* Set the Last.fm session key for the current user. This call should be made after the user is
* [connected to Last.fm](https://www.last.fm/api/authentication).
*
* @bodyParam key string required The Last.fm [session key](https://www.last.fm/api/show/auth.getSession).
* @response []
2016-01-26 15:23:55 +00:00
*
* @param LastfmSetSessionKeyRequest $request
2016-01-26 15:23:55 +00:00
*
2017-06-04 01:30:45 +00:00
* @return JsonResponse
2016-01-26 06:32:29 +00:00
*/
public function setSessionKey(LastfmSetSessionKeyRequest $request)
2016-01-26 06:32:29 +00:00
{
2018-09-04 06:25:24 +00:00
$this->auth->user()->savePreference('lastfm_session_key', trim($request->key));
2016-01-26 06:32:29 +00:00
return response()->json();
}
2015-12-20 12:17:35 +00:00
/**
* Disconnect the current user from Last.fm.
2016-03-06 04:11:28 +00:00
*
2017-06-04 01:30:45 +00:00
* @return JsonResponse
2015-12-20 12:17:35 +00:00
*/
public function disconnect()
{
2018-09-04 06:25:24 +00:00
$this->auth->user()->deletePreference('lastfm_session_key');
2018-09-04 02:25:34 +00:00
return response()->json();
2015-12-20 12:17:35 +00:00
}
}