Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 16766 | Rev 16769 | Ir a la última revisión | | Comparar con el anterior | Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 www 1
<?php
15559 anderson 2
 
1 www 3
declare(strict_types=1);
4
 
5
namespace LeadersLinked\Controller;
6
 
7
use Laminas\Db\Adapter\AdapterInterface;
16768 efrain 8
 
1 www 9
use Laminas\Mvc\Controller\AbstractActionController;
10
use Laminas\Log\LoggerInterface;
11
use Laminas\View\Model\ViewModel;
12
use Laminas\View\Model\JsonModel;
13
use LeadersLinked\Library\Functions;
14
use LeadersLinked\Mapper\PostMapper;
15
use LeadersLinked\Form\PostCreateForm;
16
use LeadersLinked\Form\PostEditForm;
17
use LeadersLinked\Model\Post;
18
use LeadersLinked\Hydrator\ObjectPropertyHydrator;
19
use LeadersLinked\Library\Image;
20
 
21
class PostController extends AbstractActionController
22
{
23
    /**
24
     *
25
     * @var AdapterInterface
26
     */
27
    private $adapter;
16768 efrain 28
 
1 www 29
    /**
30
     *
31
     * @var  LoggerInterface
32
     */
33
    private $logger;
16768 efrain 34
 
1 www 35
    /**
36
     *
37
     * @var array
38
     */
39
    private $config;
16768 efrain 40
 
1 www 41
    /**
42
     *
43
     * @param AdapterInterface $adapter
44
     * @param LoggerInterface $logger
45
     * @param array $config
46
     */
16768 efrain 47
    public function __construct($adapter, $logger, $config)
1 www 48
    {
16768 efrain 49
        $this->adapter = $adapter;
50
        $this->logger = $logger;
51
        $this->config = $config;
1 www 52
    }
15559 anderson 53
 
1 www 54
    public function indexAction()
55
    {
15347 efrain 56
        $currentUserPlugin = $this->plugin('currentUserPlugin');
57
        $currentUser = $currentUserPlugin->getUser();
15559 anderson 58
 
15351 efrain 59
        $currentNetworkPlugin = $this->plugin('currentNetworkPlugin');
60
        $network = $currentNetworkPlugin->getNetwork();
15559 anderson 61
 
1 www 62
        $request = $this->getRequest();
15559 anderson 63
        if ($request->isGet()) {
64
 
65
 
1 www 66
            $headers  = $request->getHeaders();
15559 anderson 67
 
1 www 68
            $isJson = false;
15559 anderson 69
            if ($headers->has('Accept')) {
1 www 70
                $accept = $headers->get('Accept');
15559 anderson 71
 
1 www 72
                $prioritized = $accept->getPrioritized();
15559 anderson 73
 
74
                foreach ($prioritized as $key => $value) {
1 www 75
                    $raw = trim($value->getRaw());
15559 anderson 76
 
77
                    if (!$isJson) {
1 www 78
                        $isJson = strpos($raw, 'json');
79
                    }
80
                }
81
            }
82
 
15559 anderson 83
            if ($isJson) {
84
 
85
 
1 www 86
                $search = $this->params()->fromQuery('search', []);
16766 efrain 87
                $search = empty($search['value']) ? '' :  Functions::sanitizeFilterString($search['value']);
15559 anderson 88
 
1 www 89
                $page               = intval($this->params()->fromQuery('start', 1), 10);
90
                $records_x_page     = intval($this->params()->fromQuery('length', 10), 10);
91
                $order =  $this->params()->fromQuery('order', []);
92
                $order_field        = empty($order[0]['column']) ? 99 :  intval($order[0]['column'], 10);
16766 efrain 93
                $order_direction    = empty($order[0]['dir']) ? 'ASC' : Functions::sanitizeFilterString(filter_var($order[0]['dir']));
15559 anderson 94
 
1 www 95
                $fields =  ['title', 'date'];
96
                $order_field = isset($fields[$order_field]) ? $fields[$order_field] : 'title';
15559 anderson 97
 
98
                if (!in_array($order_direction, ['ASC', 'DESC'])) {
1 www 99
                    $order_direction = 'ASC';
100
                }
15559 anderson 101
 
1 www 102
                $postMapper = PostMapper::getInstance($this->adapter);
15347 efrain 103
                $paginator = $postMapper->fetchAllDataTable($search, $currentUser->network_id, $page, $records_x_page, $order_field, $order_direction);
15559 anderson 104
 
1 www 105
                $items = [];
106
                $records = $paginator->getCurrentItems();
15559 anderson 107
                foreach ($records as $record) {
1 www 108
                    $dt = \DateTime::createFromFormat('Y-m-d', $record->date);
15559 anderson 109
 
1 www 110
                    $item = [
111
                        'title' => $record->title,
15559 anderson 112
                        'active' => $record->status,
1 www 113
                        'date' => $dt->format('d/m/Y'),
114
                        'actions' => [
15559 anderson 115
                            'link_edit' => $this->url()->fromRoute('publications/posts/edit', ['id' => $record->uuid]),
116
                            'link_delete' => $this->url()->fromRoute('publications/posts/delete', ['id' => $record->uuid]),
117
                            'link_view' => 'https://' . $network->main_hostname . '/post/' . $record->uuid,
118
                        ]
1 www 119
                    ];
15559 anderson 120
 
1 www 121
                    array_push($items, $item);
122
                }
15559 anderson 123
 
1 www 124
                return new JsonModel([
125
                    'success' => true,
126
                    'data' => [
127
                        'items' => $items,
128
                        'total' => $paginator->getTotalItemCount(),
129
                    ]
130
                ]);
15559 anderson 131
            } else {
1 www 132
                $image_size = $this->config['leaderslinked.image_sizes.post'];
15559 anderson 133
 
1 www 134
                $formAdd = new PostCreateForm();
135
                $formEdit = new PostEditForm();
15559 anderson 136
 
1 www 137
                $this->layout()->setTemplate('layout/layout-backend');
138
                $viewModel = new ViewModel();
139
                $viewModel->setTemplate('leaders-linked/posts/index.phtml');
140
                $viewModel->setVariables([
141
                    'formAdd' => $formAdd,
15559 anderson 142
                    'formEdit' => $formEdit,
1 www 143
                    'image_size' => $image_size,
15559 anderson 144
 
1 www 145
                ]);
15559 anderson 146
                return $viewModel;
1 www 147
            }
148
        } else {
149
            return new JsonModel([
150
                'success' => false,
151
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
152
            ]);;
153
        }
154
    }
15559 anderson 155
 
156
 
157
 
1 www 158
    public function addAction()
159
    {
15559 anderson 160
 
1 www 161
        $currentUserPlugin = $this->plugin('currentUserPlugin');
162
        $currentUser = $currentUserPlugin->getUser();
15559 anderson 163
 
1 www 164
        $request    = $this->getRequest();
15559 anderson 165
        if ($request->isPost()) {
166
 
1 www 167
            $dataPost = array_merge($request->getPost()->toArray(), $request->getFiles()->toArray());
168
            $dataPost['status'] = empty($dataPost['status']) ? Post::STATUS_INACTIVE : $dataPost['status'];
15559 anderson 169
 
170
 
1 www 171
            $form = new PostCreateForm();
172
            $form->setData($dataPost);
15559 anderson 173
 
174
            if ($form->isValid()) {
1 www 175
                $dataPost = (array) $form->getData();
15559 anderson 176
 
1 www 177
                $hydrator = new ObjectPropertyHydrator();
178
                $post = new Post();
179
                $hydrator->hydrate($dataPost, $post);
180
 
15559 anderson 181
 
1 www 182
                $dt = \DateTime::createFromFormat('d/m/Y', $post->date);
183
                $post->date = $dt->format('Y-m-d');
15347 efrain 184
                $post->network_id = $currentUser->network_id;
1 www 185
                $post->image = '';
186
                $post->file  = '';
187
 
15559 anderson 188
 
1 www 189
                $postMapper = PostMapper::getInstance($this->adapter);
15559 anderson 190
                if ($postMapper->insert($post)) {
1 www 191
                    $post = $postMapper->fetchOne($post->id);
15559 anderson 192
 
193
 
1 www 194
                    $files = $this->getRequest()->getFiles()->toArray();
15559 anderson 195
 
1 www 196
                    $target_path = $this->config['leaderslinked.fullpath.post'] .  $post->uuid;
15559 anderson 197
                    if (!file_exists($target_path)) {
1 www 198
                        mkdir($target_path, 0755, true);
199
                    }
15559 anderson 200
 
201
 
202
                    if (isset($files['file']) && empty($files['file']['error'])) {
1 www 203
                        $tmp_filename       = $files['file']['tmp_name'];
204
                        $original_filename  = trim(strtolower($files['file']['name']));
205
 
206
                        $original_filename = Functions::normalizeString($original_filename);
15559 anderson 207
 
1 www 208
                        $parts = explode('.', $original_filename);
15559 anderson 209
                        $original_filename = $parts[0] . '.' . $parts[count($parts) - 1];
210
 
211
                        try {
212
                            $full_filename = $target_path  . DIRECTORY_SEPARATOR . $original_filename;
213
                            if (move_uploaded_file($tmp_filename, $full_filename)) {
1 www 214
                                $post->file = basename($full_filename);
215
                                $post->update($post);
216
                            }
15559 anderson 217
                        } catch (\Throwable $e) {
1 www 218
                            error_log($e->getTraceAsString());
219
                        }
220
                    }
15559 anderson 221
 
222
                    if (isset($files['image']) && empty($files['image']['error'])) {
1 www 223
                        $tmp_filename  = $files['image']['tmp_name'];
15559 anderson 224
 
1 www 225
                        try {
226
                            list($target_width, $target_height) = explode('x', $this->config['leaderslinked.image_sizes.post']);
15559 anderson 227
 
228
                            $filename = 'image-' . uniqid() . '.png';
229
                            // $crop_to_dimensions = true;
15077 efrain 230
                            // if(Image::uploadImage($tmp_filename, $target_path, $filename, $target_width, $target_height, $crop_to_dimensions)) {
15559 anderson 231
 
232
                            if (Image::uploadImageWithoutCompletationSize($tmp_filename, $target_path, $filename, $target_width, $target_height)) {
1 www 233
                                $post->image = $filename;
234
                                $postMapper->update($post);
235
                            }
15559 anderson 236
                        } catch (\Throwable $e) {
1 www 237
                            error_log($e->getTraceAsString());
238
                        }
239
                    }
15559 anderson 240
 
1 www 241
                    $this->logger->info('Se agrego la noticia ' . $post->title, ['user_id' => $currentUser->id, 'ip' => Functions::getUserIP()]);
15559 anderson 242
 
1 www 243
                    $data = [
244
                        'success'   => true,
245
                        'data'   => 'LABEL_RECORD_ADDED'
246
                    ];
247
                } else {
248
                    $data = [
249
                        'success'   => false,
250
                        'data'      => $postMapper->getError()
251
                    ];
252
                }
15559 anderson 253
 
1 www 254
                return new JsonModel($data);
255
            } else {
256
                $messages = [];
257
                $form_messages = (array) $form->getMessages();
15559 anderson 258
                foreach ($form_messages  as $fieldname => $field_messages) {
259
 
1 www 260
                    $messages[$fieldname] = array_values($field_messages);
261
                }
15559 anderson 262
 
1 www 263
                return new JsonModel([
264
                    'success'   => false,
265
                    'data'   => $messages
266
                ]);
267
            }
268
        } else {
269
            $data = [
270
                'success' => false,
271
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
272
            ];
15559 anderson 273
 
1 www 274
            return new JsonModel($data);
275
        }
15559 anderson 276
 
1 www 277
        return new JsonModel($data);
278
    }
15559 anderson 279
 
1 www 280
    /**
281
     *
282
     * Borrar un perfil excepto el público
283
     * @return \Laminas\View\Model\JsonModel
284
     */
285
    public function deleteAction()
286
    {
287
        $currentUserPlugin = $this->plugin('currentUserPlugin');
288
        $currentUser = $currentUserPlugin->getUser();
15559 anderson 289
 
1 www 290
        $request    = $this->getRequest();
291
        $id = $this->params()->fromRoute('id');
15559 anderson 292
 
293
 
294
 
1 www 295
        $postMapper = PostMapper::getInstance($this->adapter);
15347 efrain 296
        $post = $postMapper->fetchOneByUuidAndNetworkId($id, $currentUser->network_id);
15559 anderson 297
 
298
        if (!$post) {
1 www 299
            return new JsonModel([
300
                'success' => false,
301
                'data' => 'ERROR_POST_NOT_FOUND'
302
            ]);
303
        }
15559 anderson 304
 
305
 
306
        if ($request->isPost()) {
307
 
1 www 308
            $post->status = Post::STATUS_DELETE;
15559 anderson 309
 
1 www 310
            $result =  $postMapper->update($post);
15559 anderson 311
            if ($result) {
1 www 312
                $this->logger->info('Se borro la noticia : ' .  $post->title, ['user_id' => $currentUser->id, 'ip' => Functions::getUserIP()]);
15559 anderson 313
 
314
 
1 www 315
                $data = [
316
                    'success' => true,
317
                    'data' => 'LABEL_POST_DELETED'
318
                ];
319
            } else {
15559 anderson 320
 
1 www 321
                $data = [
322
                    'success'   => false,
323
                    'data'      => $postMapper->getError()
324
                ];
15559 anderson 325
 
1 www 326
                return new JsonModel($data);
327
            }
328
        } else {
329
            $data = [
330
                'success' => false,
331
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
332
            ];
15559 anderson 333
 
1 www 334
            return new JsonModel($data);
335
        }
15559 anderson 336
 
1 www 337
        return new JsonModel($data);
338
    }
15559 anderson 339
 
340
 
1 www 341
    public function editAction()
342
    {
343
        $currentUserPlugin = $this->plugin('currentUserPlugin');
344
        $currentUser = $currentUserPlugin->getUser();
15559 anderson 345
 
1 www 346
        $request    = $this->getRequest();
347
        $id = $this->params()->fromRoute('id');
15559 anderson 348
 
1 www 349
        $postMapper = PostMapper::getInstance($this->adapter);
15347 efrain 350
        $post = $postMapper->fetchOneByUuidAndNetworkId($id, $currentUser->network_id);
15559 anderson 351
 
352
        if (!$post) {
1 www 353
            return new JsonModel([
354
                'success' => false,
355
                'data' => 'ERROR_POST_NOT_FOUND'
356
            ]);
357
        }
15559 anderson 358
 
359
 
360
        if ($request->isGet()) {
361
 
1 www 362
            $dt = \DateTime::createFromFormat('Y-m-d', $post->date);
15559 anderson 363
 
1 www 364
            $data = [
365
                'success' => true,
366
                'data' => [
367
                    'title' => $post->title,
368
                    'status' => $post->status,
369
                    'description' => $post->description,
370
                    'url' => $post->url,
371
                    'date' => $dt->format('d/m/Y'),
372
                ]
373
            ];
15559 anderson 374
 
1 www 375
            return new JsonModel($data);
15559 anderson 376
        } else if ($request->isPost()) {
1 www 377
            $dataPost = array_merge($request->getPost()->toArray(), $request->getFiles()->toArray());
378
            $dataPost['status'] = empty($dataPost['status']) ? Post::STATUS_INACTIVE : $dataPost['status'];
15559 anderson 379
 
1 www 380
            $form = new PostEditForm();
381
            $form->setData($dataPost);
15559 anderson 382
 
383
            if ($form->isValid()) {
1 www 384
                $dataPost = (array) $form->getData();
15078 efrain 385
 
15559 anderson 386
 
15078 efrain 387
                $post->title        = $dataPost['title'];
388
                $post->description  = $dataPost['description'];
389
                $post->url          = isset($dataPost['url']) ? $dataPost['url'] : '';
390
                $post->status       = isset($dataPost['status']) ? $dataPost['status'] : Post::STATUS_INACTIVE;
15559 anderson 391
 
392
                $dt = \DateTime::createFromFormat('d/m/Y', $dataPost['date']);
1 www 393
                $post->date = $dt->format('Y-m-d');
15559 anderson 394
 
395
 
396
 
397
 
1 www 398
                $files = $this->getRequest()->getFiles()->toArray();
15559 anderson 399
 
1 www 400
                $target_path = $this->config['leaderslinked.fullpath.post'] .  $post->uuid;
15559 anderson 401
                if (!file_exists($target_path)) {
1 www 402
                    mkdir($target_path, 0755, true);
403
                }
15559 anderson 404
 
405
 
406
                if (isset($files['file']) && empty($files['file']['error'])) {
407
 
408
                    if ($post->file) {
1 www 409
                        Functions::deleteFilename($target_path, $post->file);
410
                    }
15559 anderson 411
 
412
 
1 www 413
                    $tmp_filename       = $files['file']['tmp_name'];
414
                    $original_filename  = trim(strtolower($files['file']['name']));
15559 anderson 415
 
1 www 416
                    $original_filename = Functions::normalizeString($original_filename);
15559 anderson 417
 
1 www 418
                    $parts = explode('.', $original_filename);
15559 anderson 419
                    $original_filename = $parts[0] . '.' . $parts[count($parts) - 1];
420
 
421
                    try {
422
                        $full_filename = $target_path  . DIRECTORY_SEPARATOR . $original_filename;
423
                        if (move_uploaded_file($tmp_filename, $full_filename)) {
1 www 424
                            $post->file = basename($full_filename);
425
                            $post->update($post);
426
                        }
15559 anderson 427
                    } catch (\Throwable $e) {
1 www 428
                        error_log($e->getTraceAsString());
429
                    }
430
                }
15559 anderson 431
 
432
                if (isset($files['image']) && empty($files['image']['error'])) {
433
 
434
                    if ($post->image) {
1 www 435
                        Functions::deleteFilename($target_path, $post->image);
436
                    }
15559 anderson 437
 
438
 
1 www 439
                    $tmp_filename  = $files['image']['tmp_name'];
15559 anderson 440
 
1 www 441
                    try {
442
                        list($target_width, $target_height) = explode('x', $this->config['leaderslinked.image_sizes.post']);
15559 anderson 443
 
444
                        $filename = 'image-' . uniqid() . '.png';
1 www 445
                        $crop_to_dimensions = true;
15559 anderson 446
                        if (Image::uploadImage($tmp_filename, $target_path, $filename, $target_width, $target_height, $crop_to_dimensions)) {
1 www 447
                            $post->image = $filename;
448
                            $postMapper->update($post);
449
                        }
15559 anderson 450
                    } catch (\Throwable $e) {
1 www 451
                        error_log($e->getTraceAsString());
452
                    }
15559 anderson 453
                }
15078 efrain 454
 
15559 anderson 455
 
456
 
457
                if ($postMapper->update($post)) {
1 www 458
                    $this->logger->info('Se edito la noticia ' . $post->title, ['user_id' => $currentUser->id, 'ip' => Functions::getUserIP()]);
15559 anderson 459
 
1 www 460
                    $data = [
461
                        'success'   => true,
462
                        'data'   => 'LABEL_RECORD_UPDATED'
463
                    ];
464
                } else {
465
                    $data = [
466
                        'success'   => false,
467
                        'data'      => $postMapper->getError()
468
                    ];
469
                }
15559 anderson 470
 
1 www 471
                return new JsonModel($data);
472
            } else {
473
                $messages = [];
474
                $form_messages = (array) $form->getMessages();
15559 anderson 475
                foreach ($form_messages  as $fieldname => $field_messages) {
476
 
1 www 477
                    $messages[$fieldname] = array_values($field_messages);
478
                }
15559 anderson 479
 
1 www 480
                return new JsonModel([
481
                    'success'   => false,
482
                    'data'   => $messages
483
                ]);
484
            }
485
        } else {
486
            $data = [
487
                'success' => false,
488
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
489
            ];
15559 anderson 490
 
1 www 491
            return new JsonModel($data);
492
        }
15559 anderson 493
 
1 www 494
        return new JsonModel($data);
495
    }
496
}