ManagerController.php
14.6 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
<?php
namespace backend\components\noam148\imagemanager\controllers;
use Yii;
use backend\components\noam148\imagemanager\models\ImageManager;
use backend\components\noam148\imagemanager\models\ImageManagerSearch;
use backend\components\noam148\imagemanager\assets\ImageManagerModuleAsset;
use yii\web\Response;
use yii\web\Controller;
use yii\web\NotFoundHttpException;
use yii\base\ErrorException;
use yii\filters\VerbFilter;
use yii\helpers\Url;
use yii\helpers\Json;
use yii\helpers\BaseFileHelper;
use yii\imagine\Image;
use Imagine\Image\Box;
use Imagine\Image\Palette\RGB;
use Imagine\Image\Point;
use backend\components\noam148\imagemanager\Module;
/**
* Manager controller for the `imagemanager` module
* @property $module Module
*/
class ManagerController extends Controller
{
/**
* @inheritdoc
*/
public function behaviors()
{
return [
'verbs' => [
'class' => VerbFilter::className(),
'actions' => [
'delete' => ['POST'],
],
],
];
}
/**
* @inheritdoc
*/
public function beforeAction($action)
{
//disable CSRF Validation
$this->enableCsrfValidation = false;
return parent::beforeAction($action);
}
/**
* Lists all ImageManager models.
* @return mixed
*/
public function actionIndex()
{
//set asset
ImageManagerModuleAsset::register($this->view);
//get iframe parameters
$viewMode = Yii::$app->request->get("view-mode", "page");
$selectType = Yii::$app->request->get("select-type", "input");
$inputFieldId = Yii::$app->request->get("input-id");
$cropAspectRatio = Yii::$app->request->get("aspect-ratio");
$cropViewMode = Yii::$app->request->get("crop-view-mode", 1);
$defaultImageId = Yii::$app->request->get("image-id");
//set blank layout if viewMode = iframe
if ($viewMode == "iframe") {
//set layout
$this->layout = "blank";
//set stylesheet for modal
$aCssFiles = \Yii::$app->controller->module->cssFiles;
if (is_array($aCssFiles) && count($aCssFiles) > 0) {
//if exists loop through files and add them to iframe mode
foreach ($aCssFiles AS $cssFile) {
//registrate file
$this->view->registerCssFile($cssFile, ['depends' => 'yii\bootstrap\BootstrapAsset']);
}
}
}
//set baseUrl from image manager
$sBaseUrl = Url::to(['/imagemanager/manager']);
//set base url
$this->view->registerJs("imageManagerModule.baseUrl = '" . $sBaseUrl . "';", 3);
$this->view->registerJs("imageManagerModule.defaultImageId = '" . $defaultImageId . "';", 3);
$this->view->registerJs("imageManagerModule.fieldId = '" . $inputFieldId . "';", 3);
$this->view->registerJs("imageManagerModule.cropRatio = '" . $cropAspectRatio . "';", 3);
$this->view->registerJs("imageManagerModule.cropViewMode = '" . $cropViewMode . "';", 3);
$this->view->registerJs("imageManagerModule.selectType = '" . $selectType . "';", 3);
$this->view->registerJs("imageManagerModule.message = " . Json::encode([
'deleteMessage' => Yii::t('imagemanager', 'Are you sure you want to delete this image?'),
]) . ";", 3);
$searchModel = new ImageManagerSearch();
# die(var_dump(Yii::$app->request->queryParams));
$dataProvider = $searchModel->search(Yii::$app->request->queryParams);
//render template
return $this->render(
'index', [
'searchModel' => $searchModel,
'dataProvider' => $dataProvider,
'viewMode' => $viewMode,
'selectType' => $selectType,
]);
}
/**
* Creates a new ImageManager model.
* If creation is successful, the browser will be redirected to the 'view' page.
* @return mixed
*/
public function actionUpload()
{
//set response header
Yii::$app->getResponse()->format = Response::FORMAT_JSON;
// Check if the user is allowed to upload the image
if (Yii::$app->controller->module->canUploadImage == false) {
// Return the response array to prevent from the action being executed any further
return [];
}
// Create the transaction and set the success variable
$transaction = Yii::$app->db->beginTransaction();
$bSuccess = false;
//disable Csrf
Yii::$app->controller->enableCsrfValidation = false;
//return default
$return = $_FILES;
//set media path
$sMediaPath = \Yii::$app->imagemanager->mediaPath;
//create the folder
BaseFileHelper::createDirectory($sMediaPath);
//check file isset
if (isset($_FILES['imagemanagerFiles']['tmp_name'])) {
//loop through each uploaded file
foreach ($_FILES['imagemanagerFiles']['tmp_name'] AS $key => $sTempFile) {
//collect variables
$sFileName = $_FILES['imagemanagerFiles']['name'][$key];
$sFileExtension = pathinfo($sFileName, PATHINFO_EXTENSION);
$iErrorCode = $_FILES['imagemanagerFiles']['error'][$key];
//if uploaded file has no error code than continue;
if ($iErrorCode == 0) {
//create a file record
$model = new ImageManager();
$model->fileName = str_replace("_", "-", $sFileName);
$model->fileHash = Yii::$app->getSecurity()->generateRandomString(32);
//if file is saved add record
if ($model->save()) {
//move file to dir
$sSaveFileName = $model->id . "_" . $model->fileHash . "." . $sFileExtension;
//move_uploaded_file($sTempFile, $sMediaPath."/".$sFileName);
//save with Imagine class
Image::getImagine()->open($sTempFile)->save($sMediaPath . "/" . $sSaveFileName);
$bSuccess = true;
}
}
}
}
if ($bSuccess) {
// The upload action went successful, save the transaction
$transaction->commit();
} else {
// There where problems during the upload, kill the transaction
$transaction->rollBack();
}
//echo return json encoded
return $return;
}
/**
* Crop image and create new ImageManager model.
* @return mixed
*/
public function actionCrop()
{
//return
$return = null;
//disable Csrf
Yii::$app->controller->enableCsrfValidation = false;
//set response header
Yii::$app->getResponse()->format = Response::FORMAT_JSON;
//set media path
$sMediaPath = \Yii::$app->imagemanager->mediaPath;
//get post
$ImageManager_id = Yii::$app->request->post("ImageManager_id");
$aCropData = Yii::$app->request->post("CropData");
//get details
$modelOriginal = $this->findModel($ImageManager_id);
//check if path is not null
if ($modelOriginal->imagePathPrivate !== null && $aCropData !== null) {
//dimension
$iDimensionWidth = round($aCropData['width']);
$iDimensionHeight = round($aCropData['height']);
//collect variables
$sFileNameReplace = preg_replace("/_crop_\d+x\d+/", "", $modelOriginal->fileName);
$sFileName = pathinfo($sFileNameReplace, PATHINFO_FILENAME);
$sFileExtension = pathinfo($sFileNameReplace, PATHINFO_EXTENSION);
$sDisplayFileName = $sFileName . "_crop_" . $iDimensionWidth . "x" . $iDimensionHeight . "." . $sFileExtension;
//start transaction
$transaction = Yii::$app->db->beginTransaction();
$bCropSuccess = false;
//create a file record
$model = new ImageManager();
$model->fileName = $sDisplayFileName;
$model->fileHash = Yii::$app->getSecurity()->generateRandomString(32);
//if file is saved add record
if ($model->save()) {
//do crop in try catch
try {
// create file name
$sSaveFileName = $model->id . "_" . $model->fileHash . "." . $sFileExtension;
// get current/original image data
$imageOriginal = Image::getImagine()->open($modelOriginal->imagePathPrivate);
$imageOriginalSize = $imageOriginal->getSize();
$imageOriginalWidth = $imageOriginalSize->getWidth();
$imageOriginalHeight = $imageOriginalSize->getHeight();
$imageOriginalPositionX = 0;
$imageOriginalPositionY = 0;
// create/calculate a canvas size (if canvas is out of the box)
$imageCanvasWidth = $imageOriginalWidth;
$imageCanvasHeight = $imageOriginalHeight;
// update canvas width if X position of croparea is lower than 0
if ($aCropData['x'] < 0) {
//set x postion to Absolute value
$iAbsoluteXpos = abs($aCropData['x']);
//set x position of image
$imageOriginalPositionX = $iAbsoluteXpos;
//add x position to canvas size
$imageCanvasWidth += $iAbsoluteXpos;
//update canvas width if croparea is biger than original image
$iCropWidthWithoutAbsoluteXpos = ($aCropData['width'] - $iAbsoluteXpos);
if ($iCropWidthWithoutAbsoluteXpos > $imageOriginalWidth) {
//add ouside the box width
$imageCanvasWidth += ($iCropWidthWithoutAbsoluteXpos - $imageOriginalWidth);
}
} else {
// add if crop partly ouside image
$iCropWidthWithXpos = ($aCropData['width'] + $aCropData['x']);
if ($iCropWidthWithXpos > $imageOriginalWidth) {
//add ouside the box width
$imageCanvasWidth += ($iCropWidthWithXpos - $imageOriginalWidth);
}
}
// update canvas height if Y position of croparea is lower than 0
if ($aCropData['y'] < 0) {
//set y postion to Absolute value
$iAbsoluteYpos = abs($aCropData['y']);
//set y position of image
$imageOriginalPositionY = $iAbsoluteYpos;
//add y position to canvas size
$imageCanvasHeight += $iAbsoluteYpos;
//update canvas height if croparea is biger than original image
$iCropHeightWithoutAbsoluteYpos = ($aCropData['height'] - $iAbsoluteYpos);
if ($iCropHeightWithoutAbsoluteYpos > $imageOriginalHeight) {
//add ouside the box height
$imageCanvasHeight += ($iCropHeightWithoutAbsoluteYpos - $imageOriginalHeight);
}
} else {
// add if crop partly ouside image
$iCropHeightWithYpos = ($aCropData['height'] + $aCropData['y']);
if ($iCropHeightWithYpos > $imageOriginalHeight) {
//add ouside the box height
$imageCanvasHeight += ($iCropHeightWithYpos - $imageOriginalHeight);
}
}
// round values
$imageCanvasWidthRounded = round($imageCanvasWidth);
$imageCanvasHeightRounded = round($imageCanvasHeight);
$imageOriginalPositionXRounded = round($imageOriginalPositionX);
$imageOriginalPositionYRounded = round($imageOriginalPositionY);
$imageCropWidthRounded = round($aCropData['width']);
$imageCropHeightRounded = round($aCropData['height']);
// set postion to 0 if x or y is less than 0
$imageCropPositionXRounded = $aCropData['x'] < 0 ? 0 : round($aCropData['x']);
$imageCropPositionYRounded = $aCropData['y'] < 0 ? 0 : round($aCropData['y']);
// echo "canvas: ". $imageCanvasWidth ." x ".$imageCanvasHeight ."<br />";
// echo "img pos x: ". $imageOriginalPositionX ." y ".$imageOriginalPositionY ."<br />";
// die();
//
//todo: check if rotaded resize canvas (http://stackoverflow.com/questions/9971230/calculate-rotated-rectangle-size-from-known-bounding-box-coordinates)
// merge current image in canvas, crop image and save
$imagineRgb = new RGB();
$imagineColor = $imagineRgb->color('#FFF', 0);
// create image
Image::getImagine()->create(new Box($imageCanvasWidthRounded, $imageCanvasHeightRounded), $imagineColor)
->paste($imageOriginal, new Point($imageOriginalPositionXRounded, $imageOriginalPositionYRounded))
->crop(new Point($imageCropPositionXRounded, $imageCropPositionYRounded), new Box($imageCropWidthRounded, $imageCropHeightRounded))
->save($sMediaPath . "/" . $sSaveFileName);
//set boolean crop success to true
$bCropSuccess = true;
//set return id
$return = $model->id;
// Check if the original image must be delete
if ($this->module->deleteOriginalAfterEdit) {
$modelOriginal->delete();
}
} catch (ErrorException $e) {
}
}
//commit transaction if boolean is true
if ($bCropSuccess) {
$transaction->commit();
}
}
//echo return json encoded
return $return;
}
/**
* Get view details
* @return mixed
*/
public function actionView()
{
//disable Csrf
Yii::$app->controller->enableCsrfValidation = false;
//return default
$return = [];
//set response header
Yii::$app->getResponse()->format = Response::FORMAT_JSON;
//get post
$ImageManager_id = Yii::$app->request->post("ImageManager_id");
//get details
$model = $this->findModel($ImageManager_id);
//set return details
$return['id'] = $model->id;
$return['fileName'] = $model->fileName;
$return['created'] = Yii::$app->formatter->asDate($model->created);
$return['fileSize'] = $model->imageDetails['size'];
$return['dimensionWidth'] = $model->imageDetails['width'];
$return['dimensionHeight'] = $model->imageDetails['height'];
$return['image'] = \Yii::$app->imagemanager->getImagePath($model->id, 400, 400, "inset") . "?t=" . time();
//return json encoded
return $return;
}
/**
* Get full image
* @return mixed
*/
public function actionGetOriginalImage()
{
//disable Csrf
Yii::$app->controller->enableCsrfValidation = false;
//set response header
Yii::$app->getResponse()->format = Response::FORMAT_JSON;
//get post
$ImageManager_id = Yii::$app->request->post("ImageManager_id");
//get details
$model = $this->findModel($ImageManager_id);
//set return
$return = \Yii::$app->imagemanager->getImagePath($model->id, $model->imageDetails['width'], $model->imageDetails['height'], "inset");
//return json encoded
return $return;
}
/**
* Deletes an existing ImageManager model.
* If deletion is successful, the browser will be redirected to the 'index' page.
* @return mixed
*/
public function actionDelete()
{
//return
$return = ['delete' => false];
//set response header
Yii::$app->getResponse()->format = Response::FORMAT_JSON;
if (Yii::$app->controller->module->canRemoveImage == false) {
// User can not remove this image, return false status
return $return;
}
//get post
$ImageManager_id = Yii::$app->request->post("ImageManager_id");
//get details
$model = $this->findModel($ImageManager_id);
//delete record
if ($model->delete()) {
$return['delete'] = true;
}
return $return;
}
/**
* Finds the ImageManager model based on its primary key value.
* If the model is not found, a 404 HTTP exception will be thrown.
* @param integer $id
* @return ImageManager the loaded model
* @throws NotFoundHttpException if the model cannot be found
*/
protected function findModel($id)
{
if (($model = ImageManager::findOne($id)) !== null) {
/* @var $model ImageManager */
// Get the module instance
$module = Module::getInstance();
// Check if the model belongs to this user
if ($module->setBlameableBehavior) {
// Check if the user and record ID match
if (Yii::$app->user->id != $model->createdBy) {
throw new NotFoundHttpException(Yii::t('imagemanager', 'The requested image does not exist.'));
}
}
return $model;
} else {
throw new NotFoundHttpException(Yii::t('imagemanager', 'The requested image does not exist.'));
}
}
}