HummingBirdAnimeClient/src/AnimeClient/Util.php

135 lines
2.7 KiB
PHP
Raw Normal View History

2016-10-20 22:09:36 -04:00
<?php declare(strict_types=1);
2016-08-30 10:57:41 -04:00
/**
* Hummingbird Anime List Client
2016-08-30 10:57:41 -04:00
*
2018-08-22 13:48:27 -04:00
* An API client for Kitsu to manage anime and manga watch lists
2016-08-30 10:57:41 -04:00
*
* PHP version 7.4
2016-08-30 10:57: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
2016-08-30 10:57:41 -04:00
* @license http://www.opensource.org/licenses/mit-license.html MIT License
* @version 5
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
2016-08-30 10:57:41 -04:00
*/
namespace Aviat\AnimeClient;
2019-12-06 15:46:56 -05:00
use Aviat\Ion\Di\{ContainerAware, ContainerInterface};
use Aviat\Ion\Di\Exception\{ContainerException, NotFoundException};
2016-08-30 10:57:41 -04:00
/**
* Utility method class
*/
class Util {
2016-12-20 12:58:37 -05:00
use ContainerAware;
2016-08-30 10:57:41 -04:00
/**
* Routes that don't require a second navigation level
* @var array
*/
2020-04-10 20:01:46 -04:00
private static array $formPages = [
2016-08-30 10:57:41 -04:00
'edit',
'add',
'update',
'update_form',
'login',
'logout',
2017-03-08 12:55:49 -05:00
'details',
2017-03-08 13:46:50 -05:00
'character',
'me'
2016-08-30 10:57:41 -04:00
];
/**
* Set up the Util class
*
* @param ContainerInterface $container
2019-12-06 15:46:56 -05:00
* @throws ContainerException
* @throws NotFoundException
2016-08-30 10:57:41 -04:00
*/
public function __construct(ContainerInterface $container)
{
$this->setContainer($container);
}
/**
* Absolutely equal?
*
* @param $left
* @param $right
* @return bool
*/
public static function eq($left, $right): bool
{
return $left === $right;
}
/**
* Set aria-current attribute based on a condition check
*
* @param bool $condition
* @return string
*/
public static function ariaCurrent(bool $condition): string
{
return $condition ? 'true' : 'false';
}
2016-08-30 10:57:41 -04:00
/**
* HTML selection helper function
*
2020-03-16 15:06:55 -04:00
* @param string $left - First item to compare
* @param string $right - Second item to compare
2016-08-30 10:57:41 -04:00
* @return string
*/
2020-03-16 15:06:55 -04:00
public static function isSelected(string $left, string $right): string
2016-08-30 10:57:41 -04:00
{
return static::eq($left, $right) ? 'selected' : '';
2016-08-30 10:57:41 -04:00
}
/**
* Inverse of selected helper function
*
2020-03-16 15:06:55 -04:00
* @param string $left - First item to compare
* @param string $right - Second item to compare
2016-08-30 10:57:41 -04:00
* @return string
*/
2020-03-16 15:06:55 -04:00
public static function isNotSelected(string $left, string $right): string
2016-08-30 10:57:41 -04:00
{
2020-03-16 15:06:55 -04:00
return ($left !== $right) ? 'selected' : '';
2016-08-30 10:57:41 -04:00
}
/**
* Determine whether to show the sub-menu
*
2019-12-06 15:46:56 -05:00
* @throws ContainerException
* @throws NotFoundException
2016-08-30 10:57:41 -04:00
* @return bool
*/
2018-02-02 09:50:58 -05:00
public function isViewPage(): bool
2016-08-30 10:57:41 -04:00
{
2017-03-22 11:15:40 -04:00
$url = $this->container->get('request')->getUri();
2018-02-02 09:50:58 -05:00
$pageSegments = explode('/', (string) $url);
2016-08-30 10:57:41 -04:00
2017-02-16 14:30:06 -05:00
$intersect = array_intersect($pageSegments, self::$formPages);
2016-08-30 10:57:41 -04:00
return empty($intersect);
}
/**
* Determine whether the page is a page with a form, and
* not suitable for redirection
*
2019-12-06 15:46:56 -05:00
* @throws ContainerException
* @throws NotFoundException
2018-11-09 10:38:35 -05:00
* @return bool
2016-08-30 10:57:41 -04:00
*/
2018-02-02 09:50:58 -05:00
public function isFormPage(): bool
2016-08-30 10:57:41 -04:00
{
2017-02-16 14:30:06 -05:00
return ! $this->isViewPage();
2016-08-30 10:57:41 -04:00
}
}
2016-08-30 10:57:41 -04:00