Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 16768 | | 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
 
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\CompetencyTypeMapper;
15444 efrain 15
use LeadersLinked\Form\CompetencyType\CompetencyTypeForm;
1 www 16
use LeadersLinked\Model\CompetencyType;
17
use LeadersLinked\Hydrator\ObjectPropertyHydrator;
18
 
19
class CompetencyTypeController extends AbstractActionController
20
{
21
    /**
22
     *
16769 efrain 23
     * @var \Laminas\Db\Adapter\AdapterInterface
1 www 24
     */
25
    private $adapter;
26
 
27
    /**
28
     *
16769 efrain 29
     * @var \LeadersLinked\Cache\CacheInterface
1 www 30
     */
16769 efrain 31
    private $cache;
32
 
33
 
34
    /**
35
     *
36
     * @var \Laminas\Log\LoggerInterface
37
     */
1 www 38
    private $logger;
39
 
40
    /**
41
     *
42
     * @var array
43
     */
44
    private $config;
45
 
16769 efrain 46
 
1 www 47
    /**
48
     *
16769 efrain 49
     * @var \Laminas\Mvc\I18n\Translator
50
     */
51
    private $translator;
52
 
53
 
54
    /**
55
     *
56
     * @param \Laminas\Db\Adapter\AdapterInterface $adapter
57
     * @param \LeadersLinked\Cache\CacheInterface $cache
58
     * @param \Laminas\Log\LoggerInterface LoggerInterface $logger
1 www 59
     * @param array $config
16769 efrain 60
     * @param \Laminas\Mvc\I18n\Translator $translator
1 www 61
     */
16769 efrain 62
    public function __construct($adapter, $cache, $logger, $config, $translator)
1 www 63
    {
16769 efrain 64
        $this->adapter      = $adapter;
65
        $this->cache        = $cache;
66
        $this->logger       = $logger;
67
        $this->config       = $config;
68
        $this->translator   = $translator;
1 www 69
    }
70
 
71
    public function indexAction()
72
    {
28 efrain 73
        $currentUserPlugin = $this->plugin('currentUserPlugin');
74
        $currentUser = $currentUserPlugin->getUser();
75
        $currentCompany = $currentUserPlugin->getCompany();
76
 
1 www 77
        $request = $this->getRequest();
78
 
79
        $request = $this->getRequest();
80
        if($request->isGet()) {
81
 
82
 
83
            $headers  = $request->getHeaders();
84
 
85
            $isJson = false;
86
            if($headers->has('Accept')) {
87
                $accept = $headers->get('Accept');
88
 
89
                $prioritized = $accept->getPrioritized();
90
 
91
                foreach($prioritized as $key => $value) {
92
                    $raw = trim($value->getRaw());
93
 
94
                    if(!$isJson) {
95
                        $isJson = strpos($raw, 'json');
96
                    }
97
 
98
                }
99
            }
100
 
101
            if($isJson) {
5535 stevensc 102
                $search = $this->params()->fromQuery('search');
16766 efrain 103
                $search = empty($search['value']) ? '' :  Functions::sanitizeFilterString($search['value']);
1 www 104
 
105
                $page               = intval($this->params()->fromQuery('start', 1), 10);
106
                $records_x_page     = intval($this->params()->fromQuery('length', 10), 10);
107
                $order =  $this->params()->fromQuery('order', []);
108
                $order_field        = empty($order[0]['column']) ? 99 :  intval($order[0]['column'], 10);
16766 efrain 109
                $order_direction    = empty($order[0]['dir']) ? 'ASC' : strtoupper(Functions::sanitizeFilterString($order[0]['dir']));
1 www 110
 
111
                $fields =  ['name'];
112
                $order_field = isset($fields[$order_field]) ? $fields[$order_field] : 'name';
113
 
114
                if(!in_array($order_direction, ['ASC', 'DESC'])) {
115
                    $order_direction = 'ASC';
116
                }
117
 
118
                $competenceTypeMapper = CompetencyTypeMapper::getInstance($this->adapter);
119
 
28 efrain 120
                if($currentCompany) {
121
                    $paginator = $competenceTypeMapper->fetchAllDataTableByCompanyId($currentCompany->id, $search, $page, $records_x_page, $order_field, $order_direction);
122
 
123
                } else {
15444 efrain 124
                    $paginator = $competenceTypeMapper->fetchAllDataTableDefault($search, $page, $records_x_page, $order_field, $order_direction);
28 efrain 125
 
126
                }
127
 
128
 
1 www 129
                $items = [];
130
                $records = $paginator->getCurrentItems();
131
                foreach($records as $record)
132
                {
133
                    $item = [
134
                        'name' => $record->name,
135
                        'status' => $record->status,
136
                        'actions' => [
15444 efrain 137
                            'link_edit' => $this->url()->fromRoute('jobs-description/competency-types/edit', ['id' => $record->uuid ]),
138
                            'link_delete' => $this->url()->fromRoute('jobs-description/competency-types/delete', ['id' => $record->uuid ])
14323 kerby 139
                        ],
140
                        'description'=>$record->description
1 www 141
                    ];
142
 
143
                    array_push($items, $item);
144
                }
145
 
146
                return new JsonModel([
147
                    'success' => true,
148
                    'data' => [
149
                        'items' => $items,
150
                        'total' => $paginator->getTotalItemCount(),
151
                    ]
152
                ]);
153
            } else  {
154
                $form = new CompetencyTypeForm();
155
 
156
                $this->layout()->setTemplate('layout/layout-backend');
157
                $viewModel = new ViewModel();
158
                $viewModel->setTemplate('leaders-linked/competency-types/index.phtml');
159
                $viewModel->setVariable('form', $form);
160
                return $viewModel ;
161
            }
162
 
163
        } else {
164
            return new JsonModel([
165
                'success' => false,
166
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
167
            ]);;
168
        }
169
    }
170
 
171
    public function addAction()
172
    {
173
        $currentUserPlugin = $this->plugin('currentUserPlugin');
174
        $currentUser = $currentUserPlugin->getUser();
28 efrain 175
        $currentCompany = $currentUserPlugin->getCompany();
1 www 176
 
177
        $request = $this->getRequest();
178
 
179
 
180
        if($request->isPost()) {
181
            $form = new  CompetencyTypeForm();
182
            $dataPost = $request->getPost()->toArray();
183
 
184
            $form->setData($dataPost);
185
 
186
            if($form->isValid()) {
187
                $dataPost = (array) $form->getData();
188
 
189
                $hydrator = new ObjectPropertyHydrator();
190
                $competenceType = new CompetencyType();
191
                $hydrator->hydrate($dataPost, $competenceType);
192
 
193
                if(!$competenceType->status) {
194
                    $competenceType->status = CompetencyType::STATUS_INACTIVE;
195
                }
196
 
28 efrain 197
 
198
                if($currentCompany) {
199
                    $competenceType->company_id = $currentCompany->id;
200
                }
1 www 201
 
202
 
203
                $competenceTypeMapper = CompetencyTypeMapper::getInstance($this->adapter);
204
                $result = $competenceTypeMapper->insert($competenceType);
205
 
206
                if($result) {
207
                    $this->logger->info('Se agrego el tipo de competencia ' . $competenceType->name, ['user_id' => $currentUser->id, 'ip' => Functions::getUserIP()]);
208
 
209
                    $data = [
210
                        'success'   => true,
211
                        'data'   => 'LABEL_RECORD_ADDED'
212
                    ];
213
                } else {
214
                    $data = [
215
                        'success'   => false,
216
                        'data'      => $competenceTypeMapper->getError()
217
                    ];
218
 
219
                }
220
 
221
                return new JsonModel($data);
222
 
223
            } else {
224
                $messages = [];
225
                $form_messages = (array) $form->getMessages();
226
                foreach($form_messages  as $fieldname => $field_messages)
227
                {
228
 
229
                    $messages[$fieldname] = array_values($field_messages);
230
                }
231
 
232
                return new JsonModel([
233
                    'success'   => false,
234
                    'data'   => $messages
235
                ]);
236
            }
237
 
238
        } else {
239
            $data = [
240
                'success' => false,
241
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
242
            ];
243
 
244
            return new JsonModel($data);
245
        }
246
 
247
        return new JsonModel($data);
248
    }
249
 
250
    public function editAction()
251
    {
252
        $currentUserPlugin = $this->plugin('currentUserPlugin');
253
        $currentUser = $currentUserPlugin->getUser();
254
 
255
        $request = $this->getRequest();
256
        $id = $this->params()->fromRoute('id');
257
 
258
 
259
        if(!$id) {
260
            $data = [
261
                'success'   => false,
262
                'data'   => 'ERROR_INVALID_PARAMETER'
263
            ];
264
 
265
            return new JsonModel($data);
266
        }
267
 
268
        $competenceTypeMapper = CompetencyTypeMapper::getInstance($this->adapter);
269
        $competenceType = $competenceTypeMapper->fetchOneByUuid($id);
270
        if(!$competenceType) {
271
            $data = [
272
                'success'   => false,
273
                'data'   => 'ERROR_RECORD_NOT_FOUND'
274
            ];
275
 
276
            return new JsonModel($data);
277
        }
278
 
279
        if($request->isPost()) {
280
            $form = new  CompetencyTypeForm();
281
            $dataPost = $request->getPost()->toArray();
282
 
283
            $form->setData($dataPost);
284
 
285
            if($form->isValid()) {
286
                $dataPost = (array) $form->getData();
287
 
288
                $hydrator = new ObjectPropertyHydrator();
289
                $hydrator->hydrate($dataPost, $competenceType);
290
 
291
                if(!$competenceType->status) {
292
                    $competenceType->status = CompetencyType::STATUS_INACTIVE;
293
                }
294
 
295
                $result = $competenceTypeMapper->update($competenceType);
296
 
297
                if($result) {
298
                    $this->logger->info('Se actualizo el tipo de competencia ' . $competenceType->name, ['user_id' => $currentUser->id, 'ip' => Functions::getUserIP()]);
299
 
300
                    $data = [
301
                        'success' => true,
302
                        'data' => 'LABEL_RECORD_UPDATED'
303
                    ];
304
                } else {
305
                    $data = [
306
                        'success'   => false,
307
                        'data'      => $competenceTypeMapper->getError()
308
                    ];
309
                }
310
 
311
                return new JsonModel($data);
312
 
313
            } else {
314
                $messages = [];
315
                $form_messages = (array) $form->getMessages();
316
                foreach($form_messages  as $fieldname => $field_messages)
317
                {
318
                    $messages[$fieldname] = array_values($field_messages);
319
                }
320
 
321
                return new JsonModel([
322
                    'success'   => false,
323
                    'data'   => $messages
324
                ]);
325
            }
326
        } else if ($request->isGet()) {
327
            $hydrator = new ObjectPropertyHydrator();
328
 
329
            $data = [
330
                'success' => true,
331
                'data' => $hydrator->extract($competenceType)
332
            ];
333
 
334
            return new JsonModel($data);
335
        } else {
336
            $data = [
337
                'success' => false,
338
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
339
            ];
340
 
341
            return new JsonModel($data);
342
        }
343
 
344
        return new JsonModel($data);
345
    }
346
 
347
    public function deleteAction()
348
    {
349
        $currentUserPlugin = $this->plugin('currentUserPlugin');
350
        $currentUser = $currentUserPlugin->getUser();
351
 
352
        $request = $this->getRequest();
353
        $id = $this->params()->fromRoute('id');
354
 
355
        if(!$id) {
356
            $data = [
357
                'success'   => false,
358
                'data'   => 'ERROR_INVALID_PARAMETER'
359
            ];
360
 
361
            return new JsonModel($data);
362
        }
363
 
364
 
365
        $competenceTypeMapper = CompetencyTypeMapper::getInstance($this->adapter);
366
        $competenceType = $competenceTypeMapper->fetchOneByUuid($id);
367
        if(!$competenceType) {
368
            $data = [
369
                'success'   => false,
370
                'data'   => 'ERROR_RECORD_NOT_FOUND'
371
            ];
372
 
373
            return new JsonModel($data);
374
        }
375
 
376
        if($request->isPost()) {
377
            $result = $competenceTypeMapper->delete($competenceType);
378
            if($result) {
379
                $this->logger->info('Se borro el tipo de competencia ' . $competenceType->name, ['user_id' => $currentUser->id, 'ip' => Functions::getUserIP()]);
380
 
381
                $data = [
382
                    'success' => true,
383
                    'data' => 'LABEL_RECORD_DELETED'
384
                ];
385
            } else {
386
 
387
                $data = [
388
                    'success'   => false,
389
                    'data'      => $competenceTypeMapper->getError()
390
                ];
391
 
392
                return new JsonModel($data);
393
            }
394
 
395
        } else {
396
            $data = [
397
                'success' => false,
398
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
399
            ];
400
 
401
            return new JsonModel($data);
402
        }
403
 
404
        return new JsonModel($data);
405
    }
28 efrain 406
 
407
    public function importAction()
408
    {
409
        $currentUserPlugin = $this->plugin('currentUserPlugin');
410
        $currentUser = $currentUserPlugin->getUser();
411
        $currentCompany = $currentUserPlugin->getCompany();
412
 
413
        if(!$currentCompany) {
414
            $data = [
415
                'success' => false,
416
                'data' => 'ERROR_UNAUTHORIZED'
417
            ];
418
 
419
            return new JsonModel($data);
420
        }
421
 
422
        $request = $this->getRequest();
423
 
424
        if($request->isPost()) {
425
 
426
            $competencyTypeMapper = CompetencyTypeMapper::getInstance($this->adapter);
427
            $competencyTypesDefault = $competencyTypeMapper->fetchAllByDefault();
428
 
429
            $new_records = 0;
430
            foreach($competencyTypesDefault as $competencyTypeDefault)
431
            {
432
                if($competencyTypeDefault->status == CompetencyType::STATUS_INACTIVE) {
433
                    continue;
434
                }
435
 
436
                $competencyType = $competencyTypeMapper->fetchOneByCompanyId($currentCompany->id, $competencyTypeDefault->id);
437
                if(!$competencyType) {
438
 
439
                    $competencyType = new CompetencyType();
440
                    $competencyType->company_id = $currentCompany->id;
441
                    $competencyType->competency_type_id_default = $competencyTypeDefault->id;
442
                    $competencyType->description = $competencyTypeDefault->description;
443
                    $competencyType->name = $competencyTypeDefault->name;
444
                    $competencyType->status = CompetencyType::STATUS_ACTIVE;
445
 
446
 
447
                    if($competencyTypeMapper->insert($competencyType)) {
448
                        $new_records++;
449
                    } else {
450
                        $data = [
451
                            'success' => false,
452
                            'data' => 'ERROR_CANT_ADD_COMPETENCY_TYPE'
453
                        ];
454
 
455
                        return new JsonModel($data);
456
                    }
457
 
458
 
459
 
460
 
461
                }
462
            }
463
 
464
            if($new_records) {
465
 
466
                if(1 == $new_records) {
467
                    $data = [
468
                        'success' => true,
469
                        'data' => 'LABEL_1_COMPETENCY_TYPE_IMPORTED'
470
                    ];
471
 
472
                    return new JsonModel($data);
473
                } else {
474
                    $data = [
475
                        'success' => true,
476
                        'data' =>  $new_records . ' LABEL_MULTI_COMPETENCY_TYPES_IMPORTED'
477
                    ];
478
 
479
                    return new JsonModel($data);
480
                }
481
 
482
            } else {
483
                $data = [
484
                    'success' => true,
485
                    'data' => 'LABEL_NO_COMPETENCY_TYPE_IMPORTED'
486
                ];
487
 
488
                return new JsonModel($data);
489
            }
490
 
491
 
492
 
493
 
494
        } else {
495
            $data = [
496
                'success' => false,
497
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
498
            ];
499
 
500
            return new JsonModel($data);
501
        }
502
 
503
        return new JsonModel($data);
504
    }
1 www 505
}