-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBaseImagable.php
95 lines (85 loc) · 2.73 KB
/
BaseImagable.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<?php
namespace ymaker\imagable;
use ymaker\imagable\helpers\DirectoryHelper;
use yii\base\Component;
/**
* Description of Imagable
*
* @method create($category, $path)
* @method createMultiply(array $categories, $path)
*
* @method get($category, $type, $name, &$imageContent = null)
* @method getThumb($category, $name, &$imageContent = null)
* @method getSmall($category, $name, &$imageContent = null)
* @method getBig($category, $name, &$imageContent = null)
* @method getOriginal($category, $name, &$imageContent = null)
* @method delete($category, $name, &$imageContent = null)
*
* @author Ruslan Saiko <[email protected]>
*/
class BaseImagable extends Component
{
public $imageClass;
public $categories;
public $imagesPath = '@webroot/images';
public $baseTemplate = [];
public $nameClass = 'ymaker\imagable\name\OriginName';
public $dataProvider = [];
public function behaviors()
{
return [
'getImage' => [
'class' => 'ymaker\imagable\behaviors\GetImageBehavior'
],
'createImage' => [
'class' => 'ymaker\imagable\behaviors\CreateImageBehavior'
],
'deleteImage' => [
'class' => 'ymaker\imagable\behaviors\DeleteImageBehavior'
]
];
}
public function init()
{
DirectoryHelper::create(\Yii::getAlias($this->imagesPath), true);
$this->imagesPath = \Yii::getAlias($this->imagesPath);
$this->registerDependencies();
$this->initBaseTemplate();
return parent::init();
}
private function initBaseTemplate()
{
$this->baseTemplate = [
'big' => [
'width' => 500,
'height' => 500
],
'small' => [
'width' => 250,
'height' => 250
],
'thumb' => [
'width' => 100,
'height' => 100
],
];
}
private function registerDependencies()
{
\Yii::$container->set('ymaker\imagable\name\BaseName',
$this->nameClass);
\Yii::$container->set('name', 'ymaker\imagable\name\BaseName');
\Yii::$container->set('ymaker\imagable\interfaces\CreateImageInterface',
$this->imageClass);
}
public function getTemplateSizeByCategory($template, $category)
{
if (key_exists($category, $this->categories)) {
return $this->categories[$category][$template];
} elseif (key_exists($category, $this->baseTemplate)) {
return $this->baseTemplate[$category][$template];
} else {
throw new \Exception("Category with name '$category' does not exist");
}
}
}