70 lines
2.0 KiB
PHP
70 lines
2.0 KiB
PHP
<?php
|
||
/**
|
||
* @author Alexander Demidov <demidov@dimti.ru>
|
||
* Full paths to directories and files contains slash as first symbol
|
||
* Dir name not contains slashes on first or last symbols
|
||
*/
|
||
|
||
/**
|
||
* Class File
|
||
*/
|
||
abstract class File
|
||
{
|
||
public $path;
|
||
public $filename;
|
||
/**
|
||
* @param array|string|null $data
|
||
* @return Image
|
||
* @throws ErrorException
|
||
*/
|
||
public static function getInstance($data = null)
|
||
{
|
||
$instance = new static;
|
||
if (!(is_null($data) || $data == '')) {
|
||
if (!is_array($data)) {
|
||
$data = json_decode($data, true);
|
||
if (json_last_error() != JSON_ERROR_NONE) {
|
||
//TODO: подумать над тем, чтобы субмодуль не был связан с классом приложения - вынести отдельно логгер для этого класса
|
||
ErrorMessage::log('Unable to convert json-string to array. Data ' . print_r($data, true));
|
||
}
|
||
}
|
||
if (is_array($data)) {
|
||
foreach ($data as $attribute_name => $attribute_value) {
|
||
if (property_exists($instance, $attribute_name)) {
|
||
$instance->{$attribute_name} = $attribute_value;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
return $instance;
|
||
}
|
||
|
||
/**
|
||
* @param $size string
|
||
* @return ImageVariant
|
||
*/
|
||
public function getImageVariant($size)
|
||
{
|
||
if (!array_key_exists($size, $this->variants)) {
|
||
$this->variants[$size] = new ImageVariant;
|
||
} else {
|
||
if (!is_object($this->variants[$size])) {
|
||
$this->variants[$size] = self::getInstance($this->variants[$size]);
|
||
}
|
||
}
|
||
return $this->variants[$size];
|
||
}
|
||
|
||
/**
|
||
* @return string
|
||
*/
|
||
public function getWebName()
|
||
{
|
||
return $this->path . '/' . $this->filename;
|
||
}
|
||
|
||
public function __toString()
|
||
{
|
||
return FileHelper::toString($this);
|
||
}
|
||
} |