2016-10-20 22:09:36 -04:00
|
|
|
<?php declare(strict_types=1);
|
2015-11-16 19:30:04 -05:00
|
|
|
/**
|
2017-02-16 11:09:37 -05:00
|
|
|
* Hummingbird Anime List Client
|
2015-11-16 19:30:04 -05:00
|
|
|
*
|
2018-08-22 13:48:27 -04:00
|
|
|
* An API client for Kitsu to manage anime and manga watch lists
|
2015-11-16 19:30:04 -05:00
|
|
|
*
|
2018-10-01 11:35:51 -04:00
|
|
|
* PHP version 7.1
|
2016-08-30 10:01:18 -04:00
|
|
|
*
|
2015-11-16 19:30:04 -05:00
|
|
|
* @package HummingbirdAnimeClient
|
2016-08-30 10:01:18 -04:00
|
|
|
* @author Timothy J. Warren <tim@timshomepage.net>
|
2018-01-15 14:43:15 -05:00
|
|
|
* @copyright 2015 - 2018 Timothy J. Warren
|
2016-08-30 10:01:18 -04:00
|
|
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
2018-10-01 11:35:51 -04:00
|
|
|
* @version 4.1
|
2017-03-07 20:53:58 -05:00
|
|
|
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
|
2015-11-16 19:30:04 -05:00
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Aviat\AnimeClient;
|
|
|
|
|
2018-11-29 11:00:50 -05:00
|
|
|
use function Amp\Promise\wait;
|
|
|
|
|
2018-12-06 16:21:02 -05:00
|
|
|
use Amp\Artax\{Client, DefaultClient, Response};
|
2018-11-29 11:00:50 -05:00
|
|
|
|
2018-08-16 12:10:24 -04:00
|
|
|
use Aviat\Ion\ConfigInterface;
|
2018-08-20 13:01:16 -04:00
|
|
|
use Yosymfony\Toml\{Toml, TomlBuilder};
|
2016-02-10 17:30:45 -05:00
|
|
|
|
2018-10-19 09:30:27 -04:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
//! TOML Functions
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
2018-08-16 12:10:24 -04:00
|
|
|
/**
|
|
|
|
* Load configuration options from .toml files
|
|
|
|
*
|
|
|
|
* @param string $path - Path to load config
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
function loadToml(string $path): array
|
2017-12-06 14:40:13 -05:00
|
|
|
{
|
2018-08-16 12:10:24 -04:00
|
|
|
$output = [];
|
|
|
|
$files = glob("{$path}/*.toml");
|
|
|
|
|
|
|
|
foreach ($files as $file)
|
2016-02-10 17:30:45 -05:00
|
|
|
{
|
2018-08-16 12:10:24 -04:00
|
|
|
$key = str_replace('.toml', '', basename($file));
|
2018-10-08 15:45:46 -04:00
|
|
|
if ($key === 'admin-override')
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2018-08-16 12:10:24 -04:00
|
|
|
$config = Toml::parseFile($file);
|
2016-02-10 17:30:45 -05:00
|
|
|
|
2018-08-16 12:10:24 -04:00
|
|
|
if ($key === 'config')
|
2016-02-10 17:30:45 -05:00
|
|
|
{
|
2018-08-16 12:10:24 -04:00
|
|
|
foreach($config as $name => $value)
|
2016-02-10 17:30:45 -05:00
|
|
|
{
|
2018-08-16 12:10:24 -04:00
|
|
|
$output[$name] = $value;
|
2016-02-10 17:30:45 -05:00
|
|
|
}
|
|
|
|
|
2018-08-16 12:10:24 -04:00
|
|
|
continue;
|
2016-02-10 17:30:45 -05:00
|
|
|
}
|
|
|
|
|
2018-08-16 12:10:24 -04:00
|
|
|
$output[$key] = $config;
|
2016-02-10 17:30:45 -05:00
|
|
|
}
|
2018-08-16 12:10:24 -04:00
|
|
|
|
|
|
|
return $output;
|
2017-12-06 14:40:13 -05:00
|
|
|
}
|
2018-08-16 12:10:24 -04:00
|
|
|
|
2018-10-08 15:45:46 -04:00
|
|
|
/**
|
|
|
|
* Load config from one specific TOML file
|
|
|
|
*
|
|
|
|
* @param string $filename
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
function loadTomlFile(string $filename): array
|
|
|
|
{
|
|
|
|
return Toml::parseFile($filename);
|
|
|
|
}
|
|
|
|
|
2018-11-01 22:15:20 -04:00
|
|
|
/**
|
|
|
|
* Recursively create a toml file from a data array
|
|
|
|
*
|
|
|
|
* @param TomlBuilder $builder
|
|
|
|
* @param iterable $data
|
|
|
|
* @param null $parentKey
|
|
|
|
*/
|
|
|
|
function _iterateToml(TomlBuilder $builder, iterable $data, $parentKey = NULL): void
|
2018-08-20 13:01:16 -04:00
|
|
|
{
|
|
|
|
foreach ($data as $key => $value)
|
|
|
|
{
|
|
|
|
if ($value === NULL)
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (is_scalar($value) || isSequentialArray($value))
|
|
|
|
{
|
|
|
|
// $builder->addTable('');
|
|
|
|
$builder->addValue($key, $value);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
$newKey = ($parentKey !== NULL)
|
|
|
|
? "{$parentKey}.{$key}"
|
|
|
|
: $key;
|
|
|
|
|
|
|
|
if ( ! isSequentialArray($value))
|
|
|
|
{
|
|
|
|
$builder->addTable($newKey);
|
|
|
|
}
|
|
|
|
|
|
|
|
_iterateToml($builder, $value, $newKey);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Serialize config data into a Toml file
|
|
|
|
*
|
|
|
|
* @param mixed $data
|
|
|
|
* @return string
|
|
|
|
*/
|
2018-11-01 22:15:20 -04:00
|
|
|
function arrayToToml(iterable $data): string
|
2018-08-20 13:01:16 -04:00
|
|
|
{
|
|
|
|
$builder = new TomlBuilder();
|
|
|
|
|
|
|
|
_iterateToml($builder, $data);
|
|
|
|
|
|
|
|
return $builder->getTomlString();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Serialize toml back to an array
|
|
|
|
*
|
|
|
|
* @param string $toml
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
function tomlToArray(string $toml): array
|
|
|
|
{
|
|
|
|
return Toml::parse($toml);
|
|
|
|
}
|
|
|
|
|
2018-10-19 09:30:27 -04:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
//! Misc Functions
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Is the array sequential, not associative?
|
|
|
|
*
|
|
|
|
* @param mixed $array
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
function isSequentialArray($array): bool
|
|
|
|
{
|
|
|
|
if ( ! is_array($array))
|
|
|
|
{
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
$i = 0;
|
|
|
|
foreach ($array as $k => $v)
|
|
|
|
{
|
|
|
|
if ($k !== $i++)
|
|
|
|
{
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2018-08-16 12:10:24 -04:00
|
|
|
/**
|
|
|
|
* Check that folder permissions are correct for proper operation
|
|
|
|
*
|
|
|
|
* @param ConfigInterface $config
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
function checkFolderPermissions(ConfigInterface $config): array
|
|
|
|
{
|
|
|
|
$errors = [];
|
|
|
|
$publicDir = $config->get('asset_dir');
|
|
|
|
|
|
|
|
$pathMap = [
|
2018-10-09 18:10:20 -04:00
|
|
|
'app/config' => realpath(__DIR__ . '/../app/config'),
|
2018-08-16 12:10:24 -04:00
|
|
|
'app/logs' => realpath(__DIR__ . '/../app/logs'),
|
|
|
|
'public/images/avatars' => "{$publicDir}/images/avatars",
|
|
|
|
'public/images/anime' => "{$publicDir}/images/anime",
|
|
|
|
'public/images/characters' => "{$publicDir}/images/characters",
|
|
|
|
'public/images/manga' => "{$publicDir}/images/manga",
|
|
|
|
'public/images/people' => "{$publicDir}/images/people",
|
|
|
|
];
|
|
|
|
|
|
|
|
foreach ($pathMap as $pretty => $actual)
|
|
|
|
{
|
|
|
|
// Make sure the folder exists first
|
|
|
|
if ( ! is_dir($actual))
|
|
|
|
{
|
|
|
|
$errors['missing'][] = $pretty;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
$writable = is_writable($actual) && is_executable($actual);
|
|
|
|
|
|
|
|
if ( ! $writable)
|
|
|
|
{
|
|
|
|
$errors['writable'][] = $pretty;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return $errors;
|
2018-10-19 09:30:27 -04:00
|
|
|
}
|
|
|
|
|
2018-12-07 10:24:42 -05:00
|
|
|
/**
|
|
|
|
* Get an API Client, with better defaults
|
|
|
|
*
|
|
|
|
* @return DefaultClient
|
|
|
|
*/
|
|
|
|
function getApiClient ()
|
|
|
|
{
|
|
|
|
static $client;
|
|
|
|
|
|
|
|
if ($client === NULL)
|
|
|
|
{
|
|
|
|
$client = new DefaultClient;
|
|
|
|
$client->setOption(Client::OP_TRANSFER_TIMEOUT, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
return $client;
|
|
|
|
}
|
|
|
|
|
2018-11-29 11:00:50 -05:00
|
|
|
/**
|
|
|
|
* Simplify making a request with Artax
|
|
|
|
*
|
|
|
|
* @param $request
|
|
|
|
* @return Response
|
|
|
|
* @throws \Throwable
|
|
|
|
*/
|
|
|
|
function getResponse ($request): Response
|
|
|
|
{
|
2018-12-07 10:24:42 -05:00
|
|
|
$client = getApiClient();
|
2018-12-06 16:21:02 -05:00
|
|
|
return wait($client->request($request));
|
2018-11-29 11:00:50 -05:00
|
|
|
}
|
|
|
|
|
2018-10-19 09:30:27 -04:00
|
|
|
/**
|
2018-11-01 22:15:20 -04:00
|
|
|
* Generate the path for the cached image from the original image
|
2018-10-19 09:30:27 -04:00
|
|
|
*
|
|
|
|
* @param string $kitsuUrl
|
2018-11-01 22:15:20 -04:00
|
|
|
* @param bool $webp
|
2018-10-19 09:30:27 -04:00
|
|
|
* @return string
|
|
|
|
*/
|
2018-11-01 22:15:20 -04:00
|
|
|
function getLocalImg ($kitsuUrl, $webp = TRUE): string
|
2018-10-19 09:30:27 -04:00
|
|
|
{
|
|
|
|
if ( ! is_string($kitsuUrl))
|
|
|
|
{
|
2018-11-01 22:15:20 -04:00
|
|
|
return 'images/placeholder.webp';
|
2018-10-19 09:30:27 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
$parts = parse_url($kitsuUrl);
|
|
|
|
|
|
|
|
if ($parts === FALSE)
|
|
|
|
{
|
2018-11-01 22:15:20 -04:00
|
|
|
return 'images/placeholder.webp';
|
2018-10-19 09:30:27 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
$file = basename($parts['path']);
|
|
|
|
$fileParts = explode('.', $file);
|
|
|
|
$ext = array_pop($fileParts);
|
2018-11-01 22:15:20 -04:00
|
|
|
$ext = $webp ? 'webp' : $ext;
|
|
|
|
|
2018-10-19 09:30:27 -04:00
|
|
|
$segments = explode('/', trim($parts['path'], '/'));
|
|
|
|
|
|
|
|
$type = $segments[0] === 'users' ? $segments[1] : $segments[0];
|
|
|
|
|
|
|
|
$id = $segments[count($segments) - 2];
|
|
|
|
|
|
|
|
return implode('/', ['images', $type, "{$id}.{$ext}"]);
|
2018-10-26 13:08:45 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Create a transparent placeholder image
|
|
|
|
*
|
|
|
|
* @param string $path
|
|
|
|
* @param int $width
|
|
|
|
* @param int $height
|
|
|
|
* @param string $text
|
|
|
|
*/
|
2018-11-09 10:38:35 -05:00
|
|
|
function createPlaceholderImage ($path, $width, $height, $text = 'Image Unavailable'): void
|
2018-10-26 13:08:45 -04:00
|
|
|
{
|
|
|
|
$width = $width ?? 200;
|
|
|
|
$height = $height ?? 200;
|
|
|
|
|
2018-11-01 22:15:20 -04:00
|
|
|
$img = imagecreatetruecolor($width, $height);
|
|
|
|
imagealphablending($img, TRUE);
|
2018-10-26 13:08:45 -04:00
|
|
|
|
|
|
|
$path = rtrim($path, '/');
|
|
|
|
|
|
|
|
// Background is the first color by default
|
2018-11-01 22:15:20 -04:00
|
|
|
$fillColor = imagecolorallocatealpha($img, 255, 255, 255, 127);
|
|
|
|
imagefill($img, 0, 0, $fillColor);
|
2018-11-07 14:29:21 -05:00
|
|
|
|
2018-10-26 13:08:45 -04:00
|
|
|
$textColor = imagecolorallocate($img, 64, 64, 64);
|
|
|
|
|
|
|
|
imagealphablending($img, TRUE);
|
|
|
|
|
|
|
|
// Generate placeholder text
|
|
|
|
$fontSize = 10;
|
|
|
|
$fontWidth = imagefontwidth($fontSize);
|
|
|
|
$fontHeight = imagefontheight($fontSize);
|
2018-11-09 10:38:35 -05:00
|
|
|
$length = \strlen($text);
|
2018-10-26 13:08:45 -04:00
|
|
|
$textWidth = $length * $fontWidth;
|
|
|
|
$fxPos = (int) ceil((imagesx($img) - $textWidth) / 2);
|
|
|
|
$fyPos = (int) ceil((imagesy($img) - $fontHeight) / 2);
|
|
|
|
|
|
|
|
// Add the image text
|
|
|
|
imagestring($img, $fontSize, $fxPos, $fyPos, $text, $textColor);
|
|
|
|
|
|
|
|
// Save the images
|
|
|
|
imagesavealpha($img, TRUE);
|
|
|
|
imagepng($img, $path . '/placeholder.png', 9);
|
|
|
|
imagedestroy($img);
|
2018-11-07 14:29:21 -05:00
|
|
|
|
2018-11-01 22:15:20 -04:00
|
|
|
$pngImage = imagecreatefrompng($path . '/placeholder.png');
|
|
|
|
imagealphablending($pngImage, TRUE);
|
|
|
|
imagesavealpha($pngImage, TRUE);
|
2018-11-07 14:29:21 -05:00
|
|
|
|
2018-11-01 22:15:20 -04:00
|
|
|
imagewebp($pngImage, $path . '/placeholder.webp');
|
|
|
|
|
|
|
|
imagedestroy($pngImage);
|
2018-08-16 12:10:24 -04:00
|
|
|
}
|