HummingBirdAnimeClient/src/AnimeClient/API/Kitsu/Auth.php

201 lines
4.4 KiB
PHP
Raw Normal View History

<?php declare(strict_types=1);
/**
2017-02-15 16:13:32 -05:00
* Hummingbird Anime List Client
*
2018-08-22 13:48:27 -04:00
* An API client for Kitsu to manage anime and manga watch lists
*
2021-02-04 11:57:01 -05:00
* PHP version 8
*
2017-02-15 16:13:32 -05:00
* @package HummingbirdAnimeClient
* @author Timothy J. Warren <tim@timshomepage.net>
2021-01-13 01:52:03 -05:00
* @copyright 2015 - 2021 Timothy J. Warren
* @license http://www.opensource.org/licenses/mit-license.html MIT License
2020-12-10 17:06:50 -05:00
* @version 5.2
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
*/
namespace Aviat\AnimeClient\API\Kitsu;
2019-12-06 15:46:56 -05:00
use Aura\Session\Segment;
use const Aviat\AnimeClient\SESSION_SEGMENT;
2020-08-26 15:22:14 -04:00
use Aviat\AnimeClient\Kitsu as K;
use Aviat\AnimeClient\API\CacheTrait;
use Aviat\Ion\Di\{ContainerAware, ContainerInterface};
2019-12-09 14:34:23 -05:00
use Aviat\Ion\Di\Exception\{ContainerException, NotFoundException};
use Aviat\Ion\Event;
2019-12-09 14:34:23 -05:00
2020-05-08 19:15:21 -04:00
use Psr\SimpleCache\InvalidArgumentException;
2019-12-09 14:34:23 -05:00
use Throwable;
/**
* Kitsu API Authentication
*/
final class Auth {
2017-01-27 12:35:28 -05:00
use CacheTrait;
use ContainerAware;
/**
* Anime API Model
*
2017-02-22 14:46:35 -05:00
* @var Model
*/
2020-04-10 20:01:46 -04:00
private Model $model;
/**
* Session object
*
2019-12-06 15:46:56 -05:00
* @var Segment
*/
2020-04-10 20:01:46 -04:00
private Segment $segment;
/**
* Constructor
*
* @param ContainerInterface $container
2019-12-09 14:34:23 -05:00
* @throws ContainerException
* @throws NotFoundException
*/
public function __construct(ContainerInterface $container)
{
$this->setContainer($container);
2017-01-27 12:35:28 -05:00
$this->setCache($container->get('cache'));
$this->segment = $container->get('session')
->getSegment(SESSION_SEGMENT);
$this->model = $container->get('kitsu-model');
Event::on('::unauthorized::', [$this, 'reAuthenticate'], []);
}
/**
* Make the appropriate authentication call,
* and save the resulting auth token if successful
*
2019-12-09 14:34:23 -05:00
* @param string $password
* @return boolean
2019-12-09 14:34:23 -05:00
* @throws Throwable
*/
2018-09-27 16:45:12 -04:00
public function authenticate(string $password): bool
{
$config = $this->container->get('config');
2018-10-05 14:32:05 -04:00
$username = $config->get('kitsu_username');
2018-10-05 14:32:05 -04:00
$auth = $this->model->authenticate($username, $password);
return $this->storeAuth($auth);
}
/**
* Make the call to re-authenticate with the existing refresh token
*
* @param string $refreshToken
* @return boolean
2020-05-08 19:15:21 -04:00
* @throws Throwable|InvalidArgumentException
*/
public function reAuthenticate(?string $refreshToken = NULL): bool
{
2020-05-08 19:15:21 -04:00
$refreshToken ??= $this->getRefreshToken();
if (empty($refreshToken))
{
return FALSE;
}
$auth = $this->model->reAuthenticate($refreshToken);
return $this->storeAuth($auth);
}
/**
* Check whether the current user is authenticated
*
* @return boolean
2020-05-08 19:15:21 -04:00
* @throws InvalidArgumentException
*/
public function isAuthenticated(): bool
{
return ($this->getAuthToken() !== NULL);
}
/**
* Clear authentication values
*
* @return void
*/
public function logout(): void
{
$this->segment->clear();
}
/**
* Retrieve the authentication token from the session
*
* @return string
2020-05-08 19:15:21 -04:00
* @throws InvalidArgumentException
*/
2020-05-08 19:15:21 -04:00
public function getAuthToken(): ?string
{
if (PHP_SAPI === 'cli')
{
return $this->segment->get('auth_token', NULL)
?? $this->cache->get(K::AUTH_TOKEN_CACHE_KEY, NULL);
}
return $this->segment->get('auth_token', NULL);
}
2020-05-08 19:15:21 -04:00
/**
* Retrieve the refresh token
*
* @return string|null
* @throws InvalidArgumentException
*/
private function getRefreshToken(): ?string
{
if (PHP_SAPI === 'cli')
{
return $this->segment->get('refresh_token')
?? $this->cache->get(K::AUTH_TOKEN_REFRESH_CACHE_KEY, NULL);
}
return $this->segment->get('refresh_token');
}
2020-05-08 19:15:21 -04:00
/**
* Save the new authentication information
*
* @param $auth
* @return bool
* @throws InvalidArgumentException
*/
private function storeAuth($auth): bool
{
if (FALSE !== $auth)
{
$expire_time = $auth['created_at'] + $auth['expires_in'];
2020-05-08 19:15:21 -04:00
// Set the token in the cache for command line operations
// Set the token expiration in the cache
// Set the refresh token in the cache
2020-05-08 19:15:21 -04:00
$saved = $this->cache->setMultiple([
K::AUTH_TOKEN_CACHE_KEY => $auth['access_token'],
K::AUTH_TOKEN_EXP_CACHE_KEY => $expire_time,
K::AUTH_TOKEN_REFRESH_CACHE_KEY => $auth['refresh_token'],
]);
// Set the session values
2020-05-08 19:15:21 -04:00
if ($saved)
{
$this->segment->set('auth_token', $auth['access_token']);
$this->segment->set('auth_token_expires', $expire_time);
$this->segment->set('refresh_token', $auth['refresh_token']);
return TRUE;
}
}
return FALSE;
}
}
2016-12-20 12:55:43 -05:00
// End of KitsuAuth.php