Total Complexity | 41 |
Total Lines | 264 |
Duplicated Lines | 0 % |
Changes | 0 |
Complex classes like Uploader often do a lot of different things. To break such a class down, we need to identify a cohesive component within that class. A common approach to find such a component is to look for fields/methods that share the same prefixes, or suffixes.
Once you have determined the fields that belong together, you can apply the Extract Class refactoring. If the component makes sense as a sub-class, Extract Subclass is also a candidate, and is often faster.
While breaking up the class, it is a good idea to analyze how other classes use Uploader, and based on these observations, apply Extract Interface, too.
1 | <?php |
||
20 | class Uploader extends Component |
||
21 | { |
||
22 | /** |
||
23 | * @var FileUploadTrait |
||
24 | */ |
||
25 | public $modelClass; |
||
26 | public $data; |
||
27 | public $file; |
||
28 | public $name; |
||
29 | public $slug; |
||
30 | public $uid; |
||
31 | public $delete = true; |
||
32 | public $folder; |
||
33 | |||
34 | protected $fileName; |
||
35 | protected $filePath; |
||
36 | |||
37 | /** |
||
38 | * @param $name |
||
39 | * @return $this |
||
40 | */ |
||
41 | public function name($name) |
||
42 | { |
||
43 | $this->name = $name; |
||
44 | return $this; |
||
45 | } |
||
46 | |||
47 | /** |
||
48 | * @param $data |
||
49 | * @return $this |
||
50 | */ |
||
51 | public function data($data) |
||
52 | { |
||
53 | $this->data = $data; |
||
54 | return $this; |
||
55 | } |
||
56 | |||
57 | /** |
||
58 | * @param $path |
||
59 | * @return $this |
||
60 | */ |
||
61 | public function folder($path) |
||
62 | { |
||
63 | $this->folder = $path; |
||
64 | return $this; |
||
65 | } |
||
66 | |||
67 | /** |
||
68 | * @param bool $deleteOnFinish |
||
69 | * @return $this |
||
70 | */ |
||
71 | public function delete($deleteOnFinish = true) |
||
72 | { |
||
73 | $this->delete = $deleteOnFinish; |
||
74 | return $this; |
||
75 | } |
||
76 | |||
77 | /** |
||
78 | * @return null|string |
||
79 | */ |
||
80 | protected function getSession() |
||
81 | { |
||
82 | if (isset(Yii::$app->session)) { |
||
83 | $session = Yii::$app->session->getIsActive() ? Yii::$app->session->getId() : null; |
||
84 | } else { |
||
85 | $session = null; |
||
86 | } |
||
87 | return $session; |
||
88 | } |
||
89 | |||
90 | /** |
||
91 | * @return mixed |
||
92 | */ |
||
93 | public function getFileName() |
||
94 | { |
||
95 | return $this->name ?: $this->fileName; |
||
96 | } |
||
97 | |||
98 | /** |
||
99 | * @return string |
||
100 | */ |
||
101 | protected function getFileNameWithOutExtension() |
||
104 | } |
||
105 | |||
106 | /** |
||
107 | * @return string |
||
108 | */ |
||
109 | protected function getMimeType() |
||
110 | { |
||
111 | return FileHelper::getMimeType($this->filePath); |
||
112 | } |
||
113 | |||
114 | /** |
||
115 | * @return mixed|string |
||
116 | */ |
||
117 | protected function getFileExtension() |
||
118 | { |
||
119 | if (!$extension = strtolower(pathinfo($this->fileName, PATHINFO_EXTENSION))) { |
||
120 | $extension = ArrayHelper::getValue(FileHelper::getExtensionsByMimeType($this->getMimeType()), 0); |
||
121 | } |
||
122 | return $extension; |
||
123 | } |
||
124 | |||
125 | /** |
||
126 | * @return int|null|string |
||
127 | */ |
||
128 | public function getUserId() |
||
136 | } |
||
137 | |||
138 | /** |
||
139 | * @param $source |
||
140 | * @param $destination |
||
141 | * @throws \Exception |
||
142 | */ |
||
143 | public function copy($source, $destination) |
||
144 | { |
||
145 | if (is_uploaded_file($source) && !move_uploaded_file($source, $destination)) { |
||
146 | throw new \Exception('Unknown upload error'); |
||
147 | } elseif ($this->delete ? !rename($source, $destination) : !copy($source, $destination)) { |
||
148 | throw new \Exception('Failed to write file to disk'); |
||
149 | } |
||
150 | } |
||
151 | |||
152 | /** |
||
153 | * @return string |
||
154 | */ |
||
155 | public function getUid() |
||
156 | { |
||
157 | return $this->uid = $this->uid ?: $this->formUid(); |
||
158 | } |
||
159 | |||
160 | /** |
||
161 | * @return string |
||
162 | */ |
||
163 | public function getNewFileAlias() |
||
164 | { |
||
165 | return static::formAliasPath($this->getUid(), $this->folder); |
||
166 | } |
||
167 | |||
168 | /** |
||
169 | * @param ActiveRecord $model |
||
170 | * @param $attributes |
||
171 | */ |
||
172 | public function loadAttributes($model, $attributes) |
||
173 | { |
||
174 | $model->setAttributes($attributes); |
||
175 | } |
||
176 | |||
177 | public function formAttributes() |
||
178 | { |
||
179 | $this->processFilePath($this->file); |
||
180 | return [ |
||
181 | 'session' => $this->getSession(), |
||
182 | 'name' => $this->getFileNameWithOutExtension(), |
||
183 | 'extension' => $this->getFileExtension(), |
||
184 | 'user_id' => $this->getUserId(), |
||
185 | 'uid' => $this->getUid(), |
||
186 | 'data' => !is_null($this->data) ? json_encode($this->data) : null, |
||
187 | 'mime_type' => $this->getMimeType(), |
||
188 | 'md5' => md5_file($this->filePath), |
||
189 | 'folder' => static::formAliasPath($this->getUid(), $this->folder), |
||
190 | 'slug' => $this->slug, |
||
191 | 'size' => filesize($this->filePath) |
||
192 | ]; |
||
193 | } |
||
194 | |||
195 | /** |
||
196 | * @return FileUploadTrait|null |
||
197 | * @throws \Exception |
||
198 | */ |
||
199 | public function process() |
||
219 | } |
||
220 | } |
||
221 | |||
222 | /** |
||
223 | * @param $file |
||
224 | */ |
||
225 | protected function processFilePath($file) |
||
226 | { |
||
227 | if (strpos($file, 'http') === 0) { |
||
228 | $tmp = Yii::getAlias('@runtime') . DIRECTORY_SEPARATOR . uniqid("fu"); |
||
229 | file_put_contents($tmp, file_get_contents($file)); |
||
230 | $this->filePath = $tmp; |
||
231 | $this->fileName = basename($file); |
||
232 | } elseif (is_string($file)) { |
||
233 | $this->filePath = Yii::getAlias($file); |
||
234 | $this->fileName = basename($this->filePath); |
||
235 | } elseif ($file instanceof UploadedFile) { |
||
236 | $this->filePath = $file->tempName; |
||
237 | $this->fileName = $file->name; |
||
238 | } |
||
239 | } |
||
240 | |||
241 | /** |
||
242 | * @param $slug |
||
243 | * @return $this |
||
244 | */ |
||
245 | public function slug($slug) |
||
246 | { |
||
247 | $this->slug = $slug; |
||
248 | return $this; |
||
249 | } |
||
250 | |||
251 | /** |
||
252 | * @return string |
||
253 | */ |
||
254 | protected function generateUid() |
||
255 | { |
||
256 | $sec = new Security(); |
||
257 | return md5($sec->generateRandomString(64)); |
||
258 | } |
||
259 | |||
260 | /** |
||
261 | * @return string |
||
262 | */ |
||
263 | protected function formUid() |
||
264 | { |
||
265 | $class = $this->modelClass; |
||
266 | do { |
||
267 | $uPath = $this->generateUid(); |
||
268 | } while ($class::find()->where(["uid" => $uPath])->exists()); |
||
269 | return $uPath; |
||
270 | } |
||
271 | |||
272 | /** |
||
273 | * @param $path |
||
274 | * @param null|string $aliasPrefix |
||
275 | * @return string |
||
276 | */ |
||
277 | public static function formAliasPath($path, $aliasPrefix = null) |
||
284 | } |
||
285 | } |