-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathUploadBehavior.php
More file actions
711 lines (615 loc) · 16.7 KB
/
Copy pathUploadBehavior.php
File metadata and controls
711 lines (615 loc) · 16.7 KB
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
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
<?php
/**
* Upload for CakePHP.
*
* PHP 5.3
*
*
* Licensed under The MIT License
* Redistributions of files must retain the above copyright notice.
*
* @version 1.0
* @link https://github.com/krolow/Attach
* @package Attach.Model.Behavior
* @author Vinícius Krolow <krolow@gmail.com>
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
*/
App::uses('Attachment', 'Attach.Model');
class UploadBehavior extends ModelBehavior
{
/**
* Imagine Github URL
*
* @var string
*/
const IMAGINE_URL = 'https://github.com/avalanche123/Imagine';
/**
* Set what are the multiple models
*
* @var array
*/
private $__multiple = array();
/**
* Setup this behavior with the specified configuration settings.
*
* @param Model $model Model using this behavior
* @param array $config Configuration settings for $model
*
* @return void
*/
public function setup(Model $model, $config = array()) {
$this->config[$model->alias] = $config;
$this->types[$model->alias] = array_keys($this->config[$model->alias]);
$typeIndex = array_search('Attach.type', $this->types[$model->alias]);
if ($typeIndex !== false) {
unset($this->types[$model->alias][$typeIndex]);
}
foreach ($this->types[$model->alias] as $index => $type) {
$folder = $this->getUploadFolder($model, $type);
$this->isWritable($this->getUploadFolder($model, $type));
$this->_setRelationModel(
$model,
$this->types[$model->alias][$index]
);
}
}
/**
* Create the relation bettween the model and the attachment model for each
* type of file setted in the config
*
* @param Model $model Model using this behavior
* @param string $type Type of the file upload
*
* @return void
*/
protected function _setRelationModel(Model $model, $type) {
$relation = 'hasOne';
//case is defined multiple is a hasMany
if ($this->isMultiple($model, $type)) {
$relation = 'hasMany';
}
$type = Inflector::camelize($type);
$model->{$relation}['Attachment' . $type] = array(
'className' => 'Attachment',
'foreignKey' => 'foreign_key',
'dependent' => true,
'conditions' => array(
'Attachment' . $type . '.model' => $model->alias,
'Attachment' . $type . '.type' => Inflector::underscore($type)),
'fields' => '',
'order' => ''
);
}
/**
* Check if the given file type is multiple or not
*
* @param Model $model Model using this behavior
* @param string $type Type of the file upload
*
* @return bool
*/
public function isMultiple(Model $model, $type) {
return isset($this->config[$model->alias][$type]['multiple'])
&& $this->config[$model->alias][$type]['multiple'] == true;
}
/**
* Check if it's necessary validate the file
*
* @param Model $model Model using this behavior
* @param string $validation Name of the validation
* @param array $check Data array of file
*
* @return bool
*/
public function shouldValidate($model, $validation, $check) {
if ($this->isPostFileDataEmpty($model, $check)) {
return !$this->isRequired($model, $validation, $check);
}
return false;
}
/**
* Check if the given data is empty
*
* @param Model $model Model using this behavior
* @param array $file File data
*
* @return bool
*/
public function isPostFileDataEmpty($model, $file) {
if (!is_array($file)) {
return false;
}
$file = array_shift($file);
return empty($file['name']) && $file['size'] === 0;
}
/**
* Check if the file is required
*
* @param Model $model Model using this behavior
* @param stirng $validation Method name
* @param array $check Data arary of file
*
* @return bool
*/
public function isRequired($model, $validation, $check) {
$key = key($check);
if (!isset($model->validate[$key])
|| !isset($model->validate[$key]['required'])
) {
return false;
}
return (bool)$model->validate[$key]['required'];
}
/**
* Check if the file extension it's correct
*
* @param Model $model Model using this behavior
* @param array $check File to be checked
* @param array $extensions The list of allowed extensions
*
* @return bool Return true in case of valid and false in case of invalid
*/
public function extension(Model $model, $check, $extensions) {
if ($this->shouldValidate($model, __METHOD__, $check)) {
return true;
}
$check = array_shift($check);
if (isset($check['name'])) {
return in_array(
$this->getFileExtension(
$model,
$check['name']
),
$extensions
);
}
return false;
}
/**
* Check if the mime type it's correct
*
* @param Model $model Model using this behavior
* @param array $check File to be checked
* @param array $mimes The list of allowed mime types
*
* @return bool Return true in case of valid and false in case of invalid
*/
public function mime(Model $model, $check, $mimes) {
if ($this->shouldValidate($model, __METHOD__, $check)) {
return true;
}
$check = array_shift($check);
if (isset($check['tmp_name']) && file_exists($check['tmp_name'])) {
$info = $this->getFileMime($model, $check['tmp_name']);
return in_array($info, $mimes);
}
return false;
}
/**
* Check if the file size it's correct
*
* @param Model $model Model using this behavior
* @param array $check File to be checked
* @param array $size The max size allowed
*
* @return bool Return true in case of valid and false in case of invalid
*/
public function size(Model $model, $check, $size) {
if ($this->shouldValidate($model, __METHOD__, $check)) {
return true;
}
$check = array_shift($check);
return $size >= $check['size'];
}
/**
* Check if the image fits within given dimensions
*
* @param Model $model Model using this behavior
* @param array $check File to be checked
* @param int $width Maximum width in pixels
* @param int $height Maximum height in pixels
*
* @return bool Return true if image fits withing given dimensions
*/
public function maxDimensions(Model $model, $check, $width, $height) {
if ($this->shouldValidate($model, __METHOD__, $check)) {
return true;
}
$check = array_shift($check);
if (isset($check['tmp_name']) && file_exists($check['tmp_name'])) {
$info = getimagesize($check['tmp_name']);
return ($info && $info[0] <= $width && $info[1] <= $height);
}
return false;
}
/**
* Check if the image fits within given dimensions
*
* @param Model $model Model using this behavior
* @param mixed $check File to be checked
* @param mixed $width Minimum width in pixels
* @param mixed $height Minimum height in pixels
*
* @return bool Return true if image fits within given dimensions
*/
public function minDimensions(Model $model, $check, $width, $height) {
if ($this->shouldValidate($model, __METHOD__, $check)) {
return true;
}
$check = array_shift($check);
if (isset($check['tmp_name']) && file_exists($check['tmp_name'])) {
$info = getimagesize($check['tmp_name']);
return ($info && $info[0] >= $width && $info[1] >= $height);
}
return false;
}
/**
* Return the mime type of the given file
*
* @param Model $model Model using this behavior
* @param string $file Path of file
*
* @return string Mimetype
*/
public function getFileMime(Model $model, $file) {
$finfo = finfo_open(FILEINFO_MIME_TYPE);
$info = finfo_file($finfo, $file);
return $info;
}
/**
* Get the file extension
*
* @param string $file File to be checked
*
* @return string File extension
*/
public function getFileExtension(Model $model, $file) {
return strtolower(pathinfo($file, PATHINFO_EXTENSION));
}
/**
* Return the upload folder that was set for the given type
*
* @param Model $model Model using this behavior
* @param string $type Type of the file upload
*
* @return string Path for the upload folder
*/
public function getUploadFolder($model, $type) {
return APP . str_replace(
'{DS}',
DS,
$this->config[$model->alias][$type]['dir']
) . DS;
}
/**
* Return if the folder is writable
*
* @param string $dir Path of folder
*
* @throws CakeException case the folder is not writable
*
* @return bool return if the folder is writable
*/
public function isWritable($dir) {
if (is_dir($dir) && is_writable($dir)) {
return true;
}
throw new CakeException(sprintf('Folder is not writable: %s', $dir));
}
/**
* afterSave is called after a model is saved.
*
* @param Model $model Model using this behavior
* @param boolean $created True if this save created a new record
*
* @return bool
*/
public function afterSave(Model $model, $created, $options = array()) {
parent::afterSave($model, $created);
foreach ($this->types[$model->alias] as $type) {
$data = $model->data;
//set multiple as false by standard
$this->__multiple[$model->alias] = false;
if ($this->isMultiple($model, $type)) {
$this->__multiple[$model->alias] = true;
$check = isset($data[$model->alias])
&& isset($data[$model->alias][$type])
&& is_array($data[$model->alias][$type]);
} else {
$check = isset($data[$model->alias][$type]['tmp_name'])
&& !empty($data[$model->alias][$type]['tmp_name']);
}
//case has the file update :)
if ($check) {
if (isset($this->__multiple[$model->alias]) && $this->__multiple[$model->alias]) {
foreach ($data[$model->alias][$type] as $index => $value) {
$this->saveFile($model, $type, $index);
}
} else {
$this->saveFile($model, $type);
}
}
}
}
/**
* Before delete is called before any delete occurs on the attached model,
* but after the model's beforeDelete is called.
* Returning false from a beforeDelete will abort the delete.
*
* @param Model $model Model using this behavior
* @param boolean $cascade If true records that depend on this record will also be deleted
*
* @return mixed False if the operation should abort. Any other result will continue.
*/
public function beforeDelete(Model $model, $cascade = true) {
//no delete for us ;)
if ($cascade === false) {
return;
}
foreach ($this->types[$model->alias] as $type) {
$className = 'Attachment' . Inflector::camelize($type);
$attachments = $model->{$className}->find(
'all',
array(
'conditions' => array(
'model' => $model->alias,
'foreign_key' => $model->id,
),
)
);
foreach ($attachments as $attach) {
$this->deleteAllFiles($model, $attach);
}
}
return $cascade;
}
/**
* Save the given type of file
*
* @param Model $model Model using this behavior
* @param string $type Type of the file upload
* @param int $index Case is multiple send the index of data
*
* @throws CakeException case the file is not one image
*
* @return void
*/
public function saveFile(Model $model, $type, $index = null) {
$uploadData = $model->data[$model->alias][$type];
if (!is_null($index)) {
$uploadData = $uploadData[$index];
}
if (!isset($uploadData['tmp_name']) || empty($uploadData['tmp_name'])) {
return;
}
$file = $model->generateName($type, $index);
$attach = $this->saveAttachment(
$model,
$type,
$file,
$uploadData['name'],
$uploadData['size']
);
if (empty($uploadData['tmp_name'])) {
return;
}
//move file
copy($uploadData['tmp_name'], $file);
$this->deleteFile($uploadData['tmp_name']);
if (!isset($this->config[$model->alias][$type]['thumbs'])) {
return;
}
$info = getimagesize($file);
if (!$info) {
throw new CakeException(
sprintf('The file %s is not an image', $file)
);
}
//generate thumbs
$model->createThumbs($type, $file);
}
/**
* Save the given type of file
*
* @param Model $model Model using this behavior
* @param mixed $attachment Attachment to be deleted
*
* @return void
*/
public function deleteAllFiles(Model $model, $attachment) {
$attachment = array_shift($attachment);
$dir = $this->getUploadFolder($model, $attachment['type']);
//delete the original file
$this->deleteFile($dir . $attachment['filename']);
//check if exists thumbs to be deleted too
$files = glob($dir . '*.' . $attachment['filename']);
if (!is_array($files)) {
return;
}
foreach ($files as $fileToDelete) {
$this->deleteFile($fileToDelete);
}
}
/**
* Delete the specific given file
*
* @param string $file File to be checked
*
* @return bool true case was deleted with success
*/
public function deleteFile($file) {
if (!file_exists($file)) {
return false;
}
return unlink($file);
}
/**
* Insert attachment into the database
*
* @param Model $model Model using this behavior
* @param string $type Type of the file upload
* @param string $filename Filename to be saved
*
* @return void
*/
public function saveAttachment(Model $model, $type, $filename, $originalName = null, $size = null) {
$className = 'Attachment' . Inflector::camelize($type);
$attachment = false;
$attachment = $model->{$className}->find(
'first',
array(
'conditions' => array(
'foreign_key' => $model->id,
'model' => $model->alias,
'type' => $type,
),
)
);
$data = array(
$className => array(
'model' => $model->alias,
'foreign_key' => $model->id,
'filename' => basename($filename),
'type' => $type,
'original_name' => $originalName,
'size' => $size,
),
);
if (!empty($attachment) && $attachment !== false) {
$this->deleteAllFiles($model, $attachment);
$data[$className]['id'] = $attachment[$className]['id'];
} else {
$model->{$className}->create();
}
$model->data += $model->{$className}->save($data);
}
/**
* Generate an unique name to save the file
*
* @param Model $model Model using this behavior
* @param string $type Type of the file upload
* @param int $index Case is multiple send the index of data
*
* @return string Generated name
* @access public
*/
public function generateName(Model $model, $type, $index = null) {
$dir = $this->getUploadFolder($model, $type);
if (is_null($index)) {
$extension = $this->getFileExtension(
$model,
$model->data[$model->alias][$type]['name']
);
} else {
$extension = $this->getFileExtension(
$model,
$model->data[$model->alias][$type][$index]['name']
);
}
if (!is_null($index)) {
return $dir . $type . '_' . $index . '_' . $model->id . '.' . $extension;
}
return $dir . $type . '_' . $model->id . '.' . $extension;
}
/**
* Create thumbs for the given image based in the config
* defined in the model
*
* @param Model $model Model using this behavior
* @param string $type Type of the file upload
* @param string $file Image file
*
* @return void
*/
public function createThumbs(Model $model, $type, $file) {
$imagine = $model->getImagine();
$image = $imagine->open($file);
$thumbName = basename($file);
$thumbs = $this->config[$model->alias][$type]['thumbs'];
foreach ($thumbs as $key => $values) {
if (!isset($values['crop'])) {
$values['crop'] = false;
}
$this->_generateThumb(
array(
'name' => str_replace(
$thumbName,
$key . '.' . $thumbName,
$file
),
'w' => $values['w'],
'h' => $values['h'],
),
$image,
$values['crop']
);
}
}
/**
* Create a thumb for the given image file based in the parameters passed
*
* @param string $file Image file
* @param string $name Name of the thumb
* @param float $width Width of thumb
* @param float $height Height of thumb
* @param bool $crop Crop the image
*
* @return void
*/
public function createThumb(Model $model, $file, $name, $width, $height, $crop = false) {
$imagine = $this->getImagine($model);
$image = $imagine->open($file);
$this->_generateThumb(
array(
'w' => $width,
'h' => $height,
'name' => $name,
),
$image,
$crop
);
}
/**
* Load the imagine library
*
* @throws CakeException
*
* @return \Imagine\Gd\Imagine
*/
public function getImagine(Model $model) {
if (!interface_exists('Imagine\Image\ImageInterface')) {
if (is_file(APP . 'Vendor' . 'autoload.php')) {
require APP . 'Vendor' . 'autoload.php';
}
throw new RuntimeException('We could not autoload imagine, please set the PSR-0 autoload');
}
if (isset($this->config[$model->alias]['Attach.type']) && $this->config[$model->alias]['Attach.type'] == 'Imagick') {
return new \Imagine\Imagick\Imagine();
}
return new \Imagine\Gd\Imagine();
}
/**
* Generate the thumb
*
* @param mixed $thumb 'width', 'height' and 'name'
* @param string $image image file
* @param bool $crop Crop the image
*
* @return void
*/
protected function _generateThumb($thumb, $image, $crop = false) {
if ($crop) {
$mode = Imagine\Image\ImageInterface::THUMBNAIL_OUTBOUND;
} else {
$mode = Imagine\Image\ImageInterface::THUMBNAIL_INSET;
}
$thumbnail = $image->thumbnail(
new Imagine\Image\Box(
$thumb['w'],
$thumb['h']
),
$mode
);
$thumbnail->save($thumb['name']);
}
}