Proyectos de Subversion LeadersLinked - Backend

Rev

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