HummingBirdAnimeClient/src/AnimeClient/Controller/Misc.php

99 lines
1.9 KiB
PHP
Raw Normal View History

2018-11-01 22:12:41 -04:00
<?php declare(strict_types=1);
/**
* Hummingbird Anime List Client
*
* An API client for Kitsu to manage anime and manga watch lists
*
* PHP version 7.4
2018-11-01 22:12:41 -04:00
*
* @package HummingbirdAnimeClient
* @author Timothy J. Warren <tim@timshomepage.net>
2020-01-08 15:39:49 -05:00
* @copyright 2015 - 2020 Timothy J. Warren
2018-11-01 22:12:41 -04:00
* @license http://www.opensource.org/licenses/mit-license.html MIT License
* @version 5
2018-11-01 22:12:41 -04:00
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
*/
namespace Aviat\AnimeClient\Controller;
use Aviat\AnimeClient\Controller as BaseController;
use Aviat\Ion\View\HtmlView;
/**
* Controller for handling routes that don't fit elsewhere
*/
final class Misc extends BaseController {
/**
* Purges the API cache
*
* @return void
*/
2018-11-09 10:38:35 -05:00
public function clearCache(): void
2018-11-01 22:12:41 -04:00
{
$this->cache->clear();
$this->outputHTML('blank', [
'title' => 'Cache cleared'
]);
}
/**
* Show the login form
*
* @param string $status
* @return void
*/
2018-11-09 10:38:35 -05:00
public function login(string $status = ''): void
2018-11-01 22:12:41 -04:00
{
$message = '';
$view = new HtmlView($this->container);
if ($status !== '')
{
$message = $this->showMessage($view, 'error', $status);
}
// Set the redirect url
$this->setSessionRedirect();
$this->outputHTML('login', [
'title' => 'Api login',
'message' => $message
], $view);
}
/**
* Attempt login authentication
*
* @return void
*/
2018-11-09 10:38:35 -05:00
public function loginAction(): void
2018-11-01 22:12:41 -04:00
{
$auth = $this->container->get('auth');
$post = $this->request->getParsedBody();
if ($auth->authenticate($post['password']))
{
$this->sessionRedirect();
return;
}
$this->setFlashMessage('Invalid username or password.');
$this->redirect($this->url->generate('login'), 303);
}
/**
* Deauthorize the current user
*
* @return void
*/
2018-11-09 10:38:35 -05:00
public function logout(): void
2018-11-01 22:12:41 -04:00
{
$this->checkAuth();
2019-01-29 16:01:31 -05:00
2018-11-01 22:12:41 -04:00
$auth = $this->container->get('auth');
$auth->logout();
$this->redirectToDefaultRoute();
}
}