Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 16769 | Rev 16945 | 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();
16943 efrain 229
 
1 www 230
        if($request->isPost()) {
231
            $form = new  TopicAddForm();
232
            $dataPost = array_merge($request->getPost()->toArray(), $request->getFiles()->toArray());
233
 
234
            $form->setData($dataPost);
235
 
236
            if($form->isValid()) {
237
                $dataPost = (array) $form->getData();
238
 
239
                $hydrator = new ObjectPropertyHydrator();
240
                $topic = new CompanyMicrolearningTopic();
241
                $hydrator->hydrate($dataPost, $topic);
242
 
243
                $topic->company_id = $currentCompany->id;
244
                $topic->image = null;
245
 
246
 
247
 
248
                $topicMapper = CompanyMicrolearningTopicMapper::getInstance($this->adapter);
249
                if($topicMapper->insert($topic)) {
250
                    $topic = $topicMapper->fetchOne($topic->id);
16943 efrain 251
 
252
                    $target_path = $this->config['leaderslinked.fullpath.microlearning_topic'] .  $topic->uuid;
253
                    if(!file_exists($target_path)) {
254
                        mkdir($target_path, 0755, true);
255
                    }
256
 
257
 
258
                    $files = $this->getRequest()->getFiles()->toArray();
259
                    if(isset($files['file']) && empty($files['file']['error'])) {
260
                        $tmp_filename  = $files['file']['tmp_name'];
261
                       // $filename      = $this->normalizeString($files['file']['name']);
5574 nelberth 262
 
16943 efrain 263
                        try {
264
                            list($target_width, $target_height) = explode('x', $this->config['leaderslinked.image_sizes.microlearning_image_size']);
265
 
266
                            $filename = 'topic-' .uniqid() . '.png';
267
                            $crop_to_dimensions = false;
268
                            if(Image::uploadImage($tmp_filename, $target_path, $filename, $target_width, $target_height, $crop_to_dimensions)) {
269
                                $topic->image = $filename;
270
                                $topicMapper->update($topic);
271
                            }
272
                        } catch(\Throwable $e) {
273
                            error_log($e->getTraceAsString());
5574 nelberth 274
                        }
16943 efrain 275
                    }
276
 
1 www 277
 
278
                    $this->logger->info('Se agrego el tópico ' . $topic->name, ['user_id' => $currentUser->id, 'ip' => Functions::getUserIP()]);
279
 
280
                    $data = [
281
                        'success'   => true,
282
                        'data'   => 'LABEL_RECORD_ADDED'
283
                    ];
284
                } else {
285
                    $data = [
286
                        'success'   => false,
287
                        'data'      => $topicMapper->getError()
288
                    ];
289
 
290
                }
291
 
292
                return new JsonModel($data);
293
 
294
            } else {
295
                $messages = [];
296
                $form_messages = (array) $form->getMessages();
297
                foreach($form_messages  as $fieldname => $field_messages)
298
                {
299
 
300
                    $messages[$fieldname] = array_values($field_messages);
301
                }
302
 
303
                return new JsonModel([
304
                    'success'   => false,
305
                    'data'   => $messages
306
                ]);
307
            }
308
 
309
        } else {
310
            $data = [
311
                'success' => false,
312
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
313
            ];
314
 
315
            return new JsonModel($data);
316
        }
317
 
318
        return new JsonModel($data);
319
    }
320
 
321
    /**
322
     *
323
     * Borrar un perfil excepto el público
324
     * @return \Laminas\View\Model\JsonModel
325
     */
326
    public function deleteAction()
327
    {
328
        $currentUserPlugin  = $this->plugin('currentUserPlugin');
329
        $currentCompany     = $currentUserPlugin->getCompany();
330
        $currentUser        = $currentUserPlugin->getUser();
331
 
332
        $request    = $this->getRequest();
333
        $id   = $this->params()->fromRoute('id');
334
 
335
 
336
        $topicMapper = CompanyMicrolearningTopicMapper::getInstance($this->adapter);
337
        $topic = $topicMapper->fetchOneByUuid($id);
338
        if(!$topic) {
339
            return new JsonModel([
340
                'success'   => false,
341
                'data'   => 'ERROR_TOPIC_NOT_FOUND'
342
            ]);
343
        }
344
 
345
        if($topic->company_id != $currentCompany->id) {
346
            return new JsonModel([
347
                'success'   => false,
348
                'data'   => 'ERROR_UNAUTHORIZED'
349
            ]);
350
        }
351
 
352
 
353
 
354
        if($request->isPost()) {
355
            $capsuleMapper = CompanyMicrolearningCapsuleMapper::getInstance($this->adapter);
356
            $count = $capsuleMapper->fetchTotalCountByCompanyIdAndTopicId($topic->company_id, $topic->id);
357
            if($count > 0 ) {
358
                return new JsonModel([
359
                    'success'   => false,
360
                    'data'   => 'ERROR_SQL_CANNOT_DELETE_OR_UPDATE_A_PARENT_ROW'
361
                ]);
362
            }
363
 
364
 
365
 
366
            $result = $topicMapper->delete($topic);
367
            if($result) {
368
                $this->logger->info('Se borro el tópico : ' .  $topic->name, ['user_id' => $currentUser->id, 'ip' => Functions::getUserIP()]);
369
                try {
370
                    $target_path = $this->config['leaderslinked.fullpath.microlearning_topic'] . DIRECTORY_SEPARATOR . $topic->uuid;
371
                    if(file_exists($target_path)) {
372
                        Functions::rmDirRecursive($target_path);
373
                    }
374
                } catch(\Throwable $e) {
375
                    error_log($e->getTraceAsString());
376
                }
377
 
378
 
379
                $data = [
380
                    'success' => true,
381
                    'data' => 'LABEL_RECORD_DELETED'
382
                ];
383
            } else {
384
 
385
                $data = [
386
                    'success'   => false,
387
                    'data'      => $topicMapper->getError()
388
                ];
389
 
390
                return new JsonModel($data);
391
            }
392
 
393
        } else {
394
            $data = [
395
                'success' => false,
396
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
397
            ];
398
 
399
            return new JsonModel($data);
400
        }
401
 
402
        return new JsonModel($data);
403
    }
404
 
405
 
406
    public function editAction()
407
    {
408
        $currentUserPlugin  = $this->plugin('currentUserPlugin');
409
        $currentCompany     = $currentUserPlugin->getCompany();
410
        $currentUser        = $currentUserPlugin->getUser();
411
 
412
        $request    = $this->getRequest();
413
        $id   = $this->params()->fromRoute('id');
414
 
415
 
416
 
417
        $topicMapper = CompanyMicrolearningTopicMapper::getInstance($this->adapter);
418
        $topic = $topicMapper->fetchOneByUuid($id);
419
        if(!$topic) {
420
            return new JsonModel([
421
                'success'   => false,
422
                'data'   => 'ERROR_TOPIC_NOT_FOUND'
423
            ]);
424
        }
425
 
426
        if($topic->company_id != $currentCompany->id) {
427
            return new JsonModel([
428
                'success'   => false,
429
                'data'   => 'ERROR_UNAUTHORIZED'
430
            ]);
431
        }
432
 
433
        if($request->isGet()) {
434
            $data = [
435
                'success' => true,
436
                'data' => [
437
                    'name' => $topic->name,
438
                    'description' => $topic->description,
439
                    'order' => $topic->order,
440
                    'status' => $topic->status,
5915 nelberth 441
                    'image'=> $this->url()->fromRoute('storage', ['type' => 'microlearning-topic', 'code' => $topic->uuid, 'filename' => $topic->image])
1 www 442
                ]
443
            ];
444
 
445
            return new JsonModel($data);
446
        }
447
        else if($request->isPost()) {
448
            $form = new  TopicEditForm();
449
            $dataPost = array_merge($request->getPost()->toArray(), $request->getFiles()->toArray());
450
 
451
            $form->setData($dataPost);
452
 
453
            if($form->isValid()) {
454
                $dataPost = (array) $form->getData();
455
 
456
                $hydrator = new ObjectPropertyHydrator();
457
                $hydrator->hydrate($dataPost, $topic);
458
                $topic->image = null;
459
                $topic->marketplace = null;
460
 
461
                if($topicMapper->update($topic)) {
462
                    $topic = $topicMapper->fetchOne($topic->id);
463
 
464
                    $target_path = $this->config['leaderslinked.fullpath.microlearning_topic'] .  $topic->uuid;
465
                    if(!file_exists($target_path)) {
466
                        mkdir($target_path, 0755, true);
467
                    }
468
 
469
 
470
                    $files = $this->getRequest()->getFiles()->toArray();
471
                    if(isset($files['file']) && empty($files['file']['error'])) {
472
                        $tmp_filename  = $files['file']['tmp_name'];
473
                        //$filename      = $this->normalizeString($files['file']['name']);
474
 
475
                        try {
476
                            if($topic->image) {
477
 
478
                                if(!image ::delete($target_path, $topic->image)) {
479
                                    return new JsonModel([
480
                                        'success'   => false,
481
                                        'data'   =>  'ERROR_THERE_WAS_AN_ERROR'
482
                                    ]);
483
                                }
484
                            }
485
 
486
                            list($target_width, $target_height) = explode('x', $this->config['leaderslinked.image_sizes.microlearning_image_size']);
487
 
488
                            $filename = 'topic-' .uniqid() . '.png';
16943 efrain 489
                            $crop_to_dimensions = false;
1 www 490
                            if(Image::uploadImage($tmp_filename, $target_path, $filename, $target_width, $target_height, $crop_to_dimensions)) {
491
                                $topic->image = $filename;
492
                                $topicMapper->update($topic);
493
                            }
494
                        } catch(\Throwable $e) {
495
                            error_log($e->getTraceAsString());
496
                        }
497
                    }
498
 
499
 
500
 
501
 
502
                    $this->logger->info('Se edito el tópico ' . $topic->name, ['user_id' => $currentUser->id, 'ip' => Functions::getUserIP()]);
503
 
504
                    $data = [
505
                        'success'   => true,
506
                        'data'   => 'LABEL_RECORD_UPDATED'
16943 efrain 507
                    ];
1 www 508
                } else {
509
                    $data = [
510
                        'success'   => false,
511
                        'data'      => $topicMapper->getError()
512
                    ];
513
 
514
                }
515
 
516
                return new JsonModel($data);
517
 
518
            } else {
519
                $messages = [];
520
                $form_messages = (array) $form->getMessages();
521
                foreach($form_messages  as $fieldname => $field_messages)
522
                {
523
 
524
                    $messages[$fieldname] = array_values($field_messages);
525
                }
526
 
527
                return new JsonModel([
528
                    'success'   => false,
529
                    'data'   => $messages
530
                ]);
531
            }
532
        } else {
533
            $data = [
534
                'success' => false,
535
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
536
            ];
537
 
538
            return new JsonModel($data);
539
        }
540
 
541
        return new JsonModel($data);
542
    }
543
}