Proyectos de Subversion LeadersLinked - Backend

Rev

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