-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathFile.php
executable file
·214 lines (184 loc) · 5.22 KB
/
File.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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
<?php
namespace suver\behavior\upload;
use Yii;
use yii\behaviors\TimestampBehavior;
use yii\db\Expression;
use suver\behavior\upload\models\UploadsInterface;
use yii\imagine\Image;
use Imagine\Image\Box;
use Imagine\Image\BoxInterface;
use Imagine\Image\Color;
use Imagine\Image\ImageInterface;
use Imagine\Image\ImagineInterface;
use Imagine\Image\ManipulatorInterface;
use Imagine\Image\Point;
use suver\behavior\upload\ImageModifedInterface;
use Imagine\Exception\Exception as ImagineException;
/**
* Class File
* @package common\modules\uploads\models
*/
class File implements FileInterface
{
protected $model;
protected $options;
protected $defaultParams;
protected $defaultFilePath = '';
public function __construct($model, $options, $defaultParams) {
$this->model = $model;
$this->options = $options;
$this->defaultParams = $defaultParams;
}
public function __toString() {
return $this->getDomainPath();
}
/**
* Установит файл замену
* @param $filePath
* @return $this
*/
public function byDefault($file=false) {
$this->defaultFilePath = $file;
return $this;
}
/**
* Препроцессор
*/
public function preprocessor() {
}
public function getName() {
return $this->model->name;
}
public function getExtension() {
return $this->model->extension;
}
/**
* Вернет true если файл загружен
* @return mixed
*/
public function hasFile() {
return empty($this->model) ? false : true;
}
/**
* Вернет тип файла
* @return mixed
*/
public function getType() {
return $this->model->type;
}
/**
* Вернет mime файла
* @return mixed
*/
public function getMimeType() {
return $this->model->mime_type;
}
/**
* Вернет size файла
* @return mixed
*/
public function getSize() {
return $this->model->size;
}
/**
* Вернет оригинальное название файла
* @return mixed
*/
public function getOriginalName() {
return $this->model->original_name;
}
/**
* Вернет параметры файла
* @return mixed
*/
public function getParams() {
return $this->model->params;
}
/**
* Вернет параметры файла
* @return mixed
*/
public function getHash() {
return $this->model->hash;
}
public function delete() {
$this->fileDelete();
return $this->model->delete();
}
/**
* Вернет относительный путь к диреткории с файлами текущего представления
*
* @param UploadsInterface $model
* @return string
*/
public function getDirectory()
{
$path = substr($this->getName(), 0, 2);
$path = $path . '/' . substr($this->getName(), 2, 2);
$path = $path . '/' . $this->getName();
return $path;
}
/**
* Вернет относительный путь к файлу текущего представления
*
* @param UploadsInterface $model
* @return string
*/
public function getPath()
{
$path = $this->getDirectory();
$image = $path . '/' . $this->getName() . '.' . $this->getExtension();
return $image;
}
/**
* Вернет полный путь к файлу
* @param bool $size
* @return bool|null|string
*/
public function getFullPath() {
$file = $this->getPath();
$fileFullPath = Yii::getAlias('@storage/' . $file);
if(file_exists($fileFullPath)) {
return $fileFullPath;
}
return null;
}
/**
* Вернет путь из хранилища
* @param bool $size
* @return string
*/
public function getDomainPath() {
$file = $this->getPath();
$fileFullPath = Yii::getAlias('@storage/' . $file);
if(file_exists($fileFullPath)) {
return Yii::$app->getModule('uploads')->storageDomain . '/' . $file;
}
return Yii::$app->getModule('uploads')->defaultDomain . '/' . $this->defaultFilePath;
}
/**
* Удаляет файл
*/
protected function fileDelete() {
$directory = $this->getDirectory();
$fileFullPath = Yii::getAlias('@storage/' . $directory);
if(file_exists($fileFullPath)) {
$files = scandir($fileFullPath);
foreach($files as $file) {
if(!in_array($file, ['.','..'])) {
$fileFullPathFile = Yii::getAlias('@storage/' . $directory . '/' . $file);
@unlink($fileFullPathFile);
}
}
@rmdir($fileFullPath);
$files = scandir(dirname($fileFullPath));
if(count($files) <= 2) {
@rmdir(dirname($fileFullPath));
}
$files = scandir(dirname(dirname($fileFullPath)));
if(count($files) <= 2) {
@rmdir(dirname(dirname($fileFullPath)));
}
}
}
}