-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathIncorrectFile.php
executable file
·170 lines (142 loc) · 3.41 KB
/
IncorrectFile.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
<?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 IncorrectFile
* @package common\modules\uploads\models
*/
class IncorrectFile implements FileInterface
{
protected $model;
protected $thumbnail;
protected $defaultFilePath = '';
public function __construct($model, $thumbnail) {
$this->model = $model;
$this->thumbnail = $thumbnail;
}
public function __toString() {
return $this->defaultFilePath;
}
/**
* Препроцессор
*/
public function preprocessor() {
}
public function getName() {
return null;
}
public function getExtension() {
return null;
}
/**
* Вернет true если файл загружен
* @return mixed
*/
public function hasFile() {
return false ;
}
/**
* Вернет тип файла
* @return mixed
*/
public function getType() {
return null;
}
/**
* Вернет mime файла
* @return mixed
*/
public function getMimeType() {
return null;
}
/**
* Вернет size файла
* @return mixed
*/
public function getSize() {
return null;
}
/**
* Вернет оригинальное название файла
* @return mixed
*/
public function getOriginalName() {
return null;
}
/**
* Вернет параметры файла
* @return mixed
*/
public function getParams() {
return [];
}
/**
* Вернет параметры файла
* @return mixed
*/
public function getHash() {
return null;
}
public function delete() {
return null;
}
/**
* Установит файл замену
* @param $filePath
* @return $this
*/
public function byDefault($file=false) {
$this->defaultFilePath = $file;
return $this;
}
/**
* Вернет относительный путь к диреткории с файлами текущего представления
*
* @param UploadsInterface $model
* @return string
*/
public function getPath($size=false)
{
return null;
}
/**
* Вернет полный путь к файлу
* @param bool $size
* @return bool|null|string
*/
public function getFullPath($size=false) {
return null;
}
/**
* @return null Удаляет директорию
*/
public function getDirectory() {
return null;
}
/**
* Вернет путь из хранилища
* @param bool $size
* @return string
*/
public function getDomainPath($size=false) {
return Yii::$app->getModule('uploads')->defaultDomain . $this->defaultFilePath;
}
public function __call($name, $arguments)
{
// TODO: Implement __call() method.
return $this;
}
}