108 lines
2.2 KiB
PHP
108 lines
2.2 KiB
PHP
|
<?php declare(strict_types=1);
|
||
|
/**
|
||
|
* Anime List Client
|
||
|
*
|
||
|
* An API client for Kitsu and MyAnimeList to manage anime and manga watch lists
|
||
|
*
|
||
|
* PHP version 7
|
||
|
*
|
||
|
* @package AnimeListClient
|
||
|
* @author Timothy J. Warren <tim@timshomepage.net>
|
||
|
* @copyright 2015 - 2016 Timothy J. Warren
|
||
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
||
|
* @version 4.0
|
||
|
* @link https://github.com/timw4mail/HummingBirdAnimeClient
|
||
|
*/
|
||
|
|
||
|
namespace Aviat\AnimeClient\API\Kitsu;
|
||
|
|
||
|
use Aviat\AnimeClient\AnimeClient;
|
||
|
use Aviat\Ion\Di\{ContainerAware, ContainerInterface};
|
||
|
|
||
|
/**
|
||
|
* Kitsu API Authentication
|
||
|
*/
|
||
|
class Auth {
|
||
|
|
||
|
use ContainerAware;
|
||
|
|
||
|
/**
|
||
|
* Anime API Model
|
||
|
*
|
||
|
* @var \Aviat\AnimeClient\API\Kitsu\Model
|
||
|
*/
|
||
|
protected $model;
|
||
|
|
||
|
/**
|
||
|
* Session object
|
||
|
*
|
||
|
* @var Aura\Session\Segment
|
||
|
*/
|
||
|
protected $segment;
|
||
|
|
||
|
/**
|
||
|
* Constructor
|
||
|
*
|
||
|
* @param ContainerInterface $container
|
||
|
*/
|
||
|
public function __construct(ContainerInterface $container)
|
||
|
{
|
||
|
$this->setContainer($container);
|
||
|
$this->segment = $container->get('session')
|
||
|
->getSegment(AnimeClient::SESSION_SEGMENT);
|
||
|
$this->model = $container->get('kitsu-model');
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Make the appropriate authentication call,
|
||
|
* and save the resulting auth token if successful
|
||
|
*
|
||
|
* @param string $password
|
||
|
* @return boolean
|
||
|
*/
|
||
|
public function authenticate($password)
|
||
|
{
|
||
|
$username = $this->container->get('config')
|
||
|
->get('kitsu_username');
|
||
|
$auth_token = $this->model->authenticate($username, $password);
|
||
|
|
||
|
if (FALSE !== $auth_token)
|
||
|
{
|
||
|
$this->segment->set('auth_token', $auth_token);
|
||
|
return TRUE;
|
||
|
}
|
||
|
|
||
|
return FALSE;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Check whether the current user is authenticated
|
||
|
*
|
||
|
* @return boolean
|
||
|
*/
|
||
|
public function is_authenticated()
|
||
|
{
|
||
|
return ($this->get_auth_token() !== FALSE);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Clear authentication values
|
||
|
*
|
||
|
* @return void
|
||
|
*/
|
||
|
public function logout()
|
||
|
{
|
||
|
$this->segment->clear();
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Retrieve the authentication token from the session
|
||
|
*
|
||
|
* @return string|false
|
||
|
*/
|
||
|
public function get_auth_token()
|
||
|
{
|
||
|
return $this->segment->get('auth_token', FALSE);
|
||
|
}
|
||
|
}
|
||
|
// End of KitsuAuth.php
|