Proyectos de Subversion LeadersLinked - Backend

Rev

| Ultima modificación | Ver Log |

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