HummingBirdAnimeClient/app/Base/Model.php

105 lines
2.3 KiB
PHP
Raw Normal View History

2015-05-22 12:36:26 -04:00
<?php
/**
* Base for base models
*/
namespace AnimeClient\Base;
2015-05-22 12:36:26 -04:00
2015-06-18 10:30:28 -04:00
use abeautifulsite\SimpleImage;
/**
* Common base for all Models
*/
class Model {
2015-05-22 12:36:26 -04:00
/**
* The global configuration object
* @var object $config
*/
protected $config;
2015-05-22 12:36:26 -04:00
/**
* Constructor
*/
public function __construct(Config &$config)
2015-05-22 12:36:26 -04:00
{
$this->config = $config;
2015-05-22 12:36:26 -04:00
}
2015-06-09 11:54:42 -04:00
/**
* Get the path of the cached version of the image. Create the cached image
* if the file does not already exist
*
* @codeCoverageIgnore
2015-06-09 11:54:42 -04:00
* @param string $api_path - The original image url
* @param string $series_slug - The part of the url with the series name, becomes the image name
* @param string $type - Anime or Manga, controls cache path
* @return string - the frontend path for the cached image
*/
public function get_cached_image($api_path, $series_slug, $type="anime")
{
2015-06-18 10:30:28 -04:00
$api_path = str_replace("jjpg", "jpg", $api_path);
2015-06-09 11:54:42 -04:00
$path_parts = explode('?', basename($api_path));
$path = current($path_parts);
$ext_parts = explode('.', $path);
$ext = end($ext_parts);
2015-06-18 10:30:28 -04:00
// Workaround for some broken extensions
if ($ext == "jjpg") $ext = "jpg";
2015-06-18 10:30:28 -04:00
// Failsafe for weird urls
if (strlen($ext) > 3) return $api_path;
2015-06-09 11:54:42 -04:00
$cached_image = "{$series_slug}.{$ext}";
$cached_path = "{$this->config->img_cache_path}/{$type}/{$cached_image}";
2015-06-09 11:54:42 -04:00
// Cache the file if it doesn't already exist
if ( ! file_exists($cached_path))
{
if (ini_get('allow_url_fopen'))
{
copy($api_path, $cached_path);
}
elseif (function_exists('curl_init'))
{
$ch = curl_init($api_path);
$fp = fopen($cached_path, 'wb');
curl_setopt_array($ch, [
CURLOPT_FILE => $fp,
CURLOPT_HEADER => 0
]);
curl_exec($ch);
curl_close($ch);
fclose($ch);
}
else
{
throw new DomainException("Couldn't cache images because they couldn't be downloaded.");
2015-06-09 11:54:42 -04:00
}
2015-06-18 10:30:28 -04:00
// Resize the image
if ($type == 'anime')
{
$resize_width = 220;
$resize_height = 319;
$this->_resize($cached_path, $resize_width, $resize_height);
}
2015-06-09 11:54:42 -04:00
}
return "/public/images/{$type}/{$cached_image}";
2015-06-09 11:54:42 -04:00
}
2015-06-18 10:30:28 -04:00
/**
* Resize an image
*
* @codeCoverageIgnore
2015-06-18 10:30:28 -04:00
* @param string $path
* @param string $width
* @param string $height
*/
private function _resize($path, $width, $height)
{
$img = new SimpleImage($path);
$img->resize($width,$height)->save();
}
2015-05-22 12:36:26 -04:00
}
// End of BaseModel.php