Proyectos de Subversion LeadersLinked - Backend

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
16766 efrain 1
<?php
2
declare(strict_types=1);
3
 
4
namespace LeadersLinked\Controller;
5
 
6
use Laminas\Authentication\AuthenticationService;
7
use Laminas\Authentication\Result as AuthResult;
8
use Laminas\Db\Adapter\AdapterInterface;
16768 efrain 9
 
16766 efrain 10
use Laminas\Mvc\Controller\AbstractActionController;
11
use Laminas\Mvc\I18n\Translator;
12
use Laminas\Log\LoggerInterface;
13
use Laminas\View\Model\ViewModel;
14
use Laminas\View\Model\JsonModel;
15
use LeadersLinked\Model\PlanningGoals;
16
use LeadersLinked\Hydrator\ObjectPropertyHydrator;
17
use LeadersLinked\Form\Planning\PlanningGoalsForm;
18
 
19
use LeadersLinked\Library\Functions;
20
use LeadersLinked\Mapper\UserMapper;
21
 
22
use LeadersLinked\Mapper\PlanningTaskMapper;
23
use LeadersLinked\Mapper\PlanningGoalsMapper;
24
use LeadersLinked\Mapper\PlanningObjectivesMapper;
25
 
26
class PlanningGoalsController extends AbstractActionController
27
{
16769 efrain 28
    /**
16766 efrain 29
     *
16769 efrain 30
     * @var \Laminas\Db\Adapter\AdapterInterface
16766 efrain 31
     */
32
    private $adapter;
16769 efrain 33
 
16766 efrain 34
    /**
35
     *
16769 efrain 36
     * @var \LeadersLinked\Cache\CacheInterface
16766 efrain 37
     */
16769 efrain 38
    private $cache;
39
 
40
 
41
    /**
42
     *
43
     * @var \Laminas\Log\LoggerInterface
44
     */
16766 efrain 45
    private $logger;
16769 efrain 46
 
16766 efrain 47
    /**
48
     *
49
     * @var array
50
     */
51
    private $config;
16769 efrain 52
 
53
 
16766 efrain 54
    /**
55
     *
16769 efrain 56
     * @var \Laminas\Mvc\I18n\Translator
57
     */
58
    private $translator;
59
 
60
 
61
    /**
62
     *
63
     * @param \Laminas\Db\Adapter\AdapterInterface $adapter
64
     * @param \LeadersLinked\Cache\CacheInterface $cache
65
     * @param \Laminas\Log\LoggerInterface LoggerInterface $logger
16766 efrain 66
     * @param array $config
16769 efrain 67
     * @param \Laminas\Mvc\I18n\Translator $translator
16766 efrain 68
     */
16769 efrain 69
    public function __construct($adapter, $cache, $logger, $config, $translator)
16766 efrain 70
    {
16769 efrain 71
        $this->adapter      = $adapter;
72
        $this->cache        = $cache;
73
        $this->logger       = $logger;
74
        $this->config       = $config;
75
        $this->translator   = $translator;
16766 efrain 76
    }
16768 efrain 77
 
16766 efrain 78
   /*
79
  public function idObjective($uuid){
80
        $currentUserPlugin = $this->plugin('currentUserPlugin');
81
        $currentCompany = $currentUserPlugin->getCompany();
82
        $planningObjectivesMapper = PlanningObjectivesMapper::getInstance($this->adapter);
83
        $objectives = $planningObjectivesMapper->fetchOneByUuid($uuid);
84
 
85
        if (!$objectives) {
86
            return false;
87
 
88
        }else{
89
            if($objectives->company_id==$currentCompany->id){
90
                return $objectives;
91
            }else{
92
                return false;
93
            }
94
 
95
 
96
 
97
        }
98
 
99
 
100
   }*/
101
 
102
 
103
    public function indexAction()
104
    {
105
        $objective_uuid = $this->params()->fromRoute('objective_id');
106
 
107
        if(!$objective_uuid) {
108
            $data = [
109
                'success'   => false,
110
                'data'   => 'ERROR_INVALID_PARAMETER'
111
            ];
112
 
113
            return new JsonModel($data);
114
        }
115
 
116
        $request = $this->getRequest();
117
 
118
        if($request->isGet()) {
119
 
120
 
121
            $headers  = $request->getHeaders();
122
 
123
            $isJson = false;
124
            if($headers->has('Accept')) {
125
                $accept = $headers->get('Accept');
126
 
127
                $prioritized = $accept->getPrioritized();
128
 
129
                foreach($prioritized as $key => $value) {
130
                    $raw = trim($value->getRaw());
131
 
132
                    if(!$isJson) {
133
                        $isJson = strpos($raw, 'json');
134
                    }
135
 
136
                }
137
            }
138
 
139
            if($isJson) {
140
                $currentUserPlugin = $this->plugin('currentUserPlugin');
141
                $currentUser = $currentUserPlugin->getUser();
142
                $currentCompany = $currentUserPlugin->getCompany();
143
                $acl = $this->getEvent()->getViewModel()->getVariable('acl');
144
                $allowEdit = $acl->isAllowed($currentUser->usertype_id, 'planning/objectives/goals/edit');
145
                $allowDelete = $acl->isAllowed($currentUser->usertype_id, 'planning/objectives/goals/delete');
146
                $allowGoals = $acl->isAllowed($currentUser->usertype_id, 'planning/objectives/goals/task');
147
 
148
                $search = $this->params()->fromQuery('search', []);
149
                $search = empty($search['value']) ? '' :  Functions::sanitizeFilterString($search['value']);
150
 
151
                $records_x_page     = intval($this->params()->fromQuery('length', 10), 10);
152
                $page               = (intval($this->params()->fromQuery('start', 1), 10)/$records_x_page)+1;
153
                $order =  $this->params()->fromQuery('order', []);
154
                $order_field        = empty($order[0]['column']) ? 99 :  intval($order[0]['column'], 10);
155
                $order_direction    = empty($order[0]['dir']) ? 'ASC' : strtoupper(Functions::sanitizeFilterString($order[0]['dir']));
156
 
157
                $fields =  ['title'];
158
                $order_field = isset($fields[$order_field]) ? $fields[$order_field] : 'title';
159
 
160
                if(!in_array($order_direction, ['ASC', 'DESC'])) {
161
                    $order_direction = 'ASC';
162
                }
163
 
164
                $planningObjectivesMapper = PlanningObjectivesMapper::getInstance($this->adapter);
165
                $objectives = $planningObjectivesMapper->fetchOneByUuid($objective_uuid);
166
 
167
                if (!$objectives) {
168
                    $data = [
169
                        'success' => false,
170
                        'data' => 'ERROR_RECORD_NOT_FOUND'
171
                    ];
172
 
173
 
174
                        return new JsonModel($data);
175
                }
176
 
177
                if($objectives->company_id!=$currentCompany->id){
178
                        $data = [
179
                            'success' => false,
180
                            'data' => 'ERROR_UNAUTHORIZED',
181
                        ];
182
                        return new JsonModel($data);
183
                }
184
 
185
 
186
                $planningGoalsMapper = PlanningGoalsMapper::getInstance($this->adapter);
187
                $paginator = $planningGoalsMapper->fetchAllDataTable($search, $page, $records_x_page, $order_field, $order_direction, $objectives->id);
188
 
189
                $items = [];
190
 
191
                $records = $paginator->getCurrentItems();
192
                $planningTaskMapper = PlanningTaskMapper::getInstance($this->adapter);
193
                foreach($records as $record)
194
                {
195
 
196
                    $recordsTask = $planningTaskMapper->fetchAll($record->id);
197
 
198
                    $costGoals=0;
199
                    $indicatorGoals=0;
200
                    foreach($recordsTask as $record2){
201
                        $indicatorGoals=$indicatorGoals+$record2->indicator;
202
                        $costGoals=$costGoals+$record2->cost;
203
                    }
204
                    $countRecordsTask = count($recordsTask);
205
                    if($countRecordsTask>0){
206
                        $indicatorGoals=round($indicatorGoals/$countRecordsTask, 2);
207
                    }else{
208
                        $indicatorGoals=-1;
209
                    }
210
 
211
                    $item = [
212
                        'title' => $record->title,
213
                        'description' => $record->description,
214
                        'progress'=>$indicatorGoals,
215
                        'cost' => $costGoals,
216
                        /*'DT_RowData'=>[
217
                            'id' =>$record->uuid,
218
                        ],
219
                        'DT_RowClass'=> 'Goals',*/
220
                        'status'=>$record->status,
221
                        'actions' => [
222
                            'link_edit' => $allowEdit ? $this->url()->fromRoute('planning/objectives/goals/edit', ['objective_id' => $objective_uuid,'id' => $record->uuid]) : '',
223
                            'link_delete' => $allowDelete ? $this->url()->fromRoute('planning/objectives/goals/delete', ['objective_id' => $objective_uuid,'id' => $record->uuid]) : '',
224
                            'link_goals' => $allowGoals ? $this->url()->fromRoute('planning/objectives/goals/task', ['objective_id' => $objective_uuid,'goal_id' => $record->uuid]) : ''
225
                        ]
226
 
227
                    ];
228
 
229
 
230
                    array_push($items, $item);
231
                }
232
 
233
                $recordsGoals = $planningGoalsMapper->fetchAll($objectives->id);
234
 
235
                $costObjective=0;
236
                $indicatorObjective=0;
237
                $contador=0;
238
                $countRecordsGoals = count($recordsGoals);
239
                if($countRecordsGoals>0){
240
                    $planningTaskMapper = PlanningTaskMapper::getInstance($this->adapter);
241
 
242
                    foreach($recordsGoals as $record)
243
                    {
244
                        $recordsTask = $planningTaskMapper->fetchAll($record->id);
245
 
246
                        $costGoals=0;
247
                        $indicatorGoals=0;
248
                        $countRecordsTask = count($recordsTask);
249
                        if($countRecordsTask>0){
250
                            foreach($recordsTask as $record2){
251
                                $indicatorGoals=$indicatorGoals+$record2->indicator;
252
                                $costGoals=$costGoals+$record2->cost;
253
                            }
254
                            $indicatorObjective=$indicatorObjective+($indicatorGoals/$countRecordsTask);
255
                            $costObjective=$costObjective+$costGoals;
256
                            $contador++;
257
                        }
258
                    }
259
                    if($indicatorObjective==0){
260
                        $indicatorObjective=(-1);
261
                    }else{
262
                        $indicatorObjective=round($indicatorObjective/$contador,2);
263
 
264
                    }
265
                }else{
266
                    $indicatorObjective=(-2);
267
                }
268
                $date='Sin fecha';
269
                if($objectives->date!=NULL){
270
                    $dt = \DateTime::createFromFormat('Y-m-d', $objectives->date);
271
                    $date =  $dt->format('d/m/Y');
272
                }
273
 
274
 
275
 
276
                return new JsonModel([
277
                    'success' => true,
278
                    'data' => [
279
                        'items' => $items,
280
                        'total' => $paginator->getTotalItemCount(),
281
                        'objective' => [
282
                            'titleObjective' =>$objectives->title,
283
                            'descriptionObjective' =>$objectives->description,
284
                            'dateObjective' =>$date,
285
                            'costObjective' =>'$'.$costObjective,
286
                            'indicatorObjective'=>$indicatorObjective,
287
                            'statusObjective'=>$objectives->status=='a'?'LABEL_ACTIVE':'LABEL_INACTIVE',
288
 
289
                        ]
290
                    ]
291
                ]);
292
            } else  {
293
                $formAdd = new PlanningGoalsForm();
294
                $this->layout()->setTemplate('layout/layout-backend');
295
                $viewModel = new ViewModel();
296
                $viewModel->setTemplate('leaders-linked/planning-goals/index.phtml');
297
                $viewModel->setVariables([
298
                    'formAdd' => $formAdd,
299
                    'uuid'=> $objective_uuid
300
 
301
                ]);
302
                return $viewModel ;
303
            }
304
        } else {
305
            return new JsonModel([
306
                'success' => false,
307
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
308
            ]);
309
        }
310
    }
311
    public function addAction()
312
    {
313
      $currentUserPlugin = $this->plugin('currentUserPlugin');
314
        $currentUser = $currentUserPlugin->getUser();
315
        $currentCompany = $currentUserPlugin->getCompany();
316
        $objective_uuid = $this->params()->fromRoute('objective_id');
317
 
318
        if(!$objective_uuid) {
319
            $data = [
320
                'success'   => false,
321
                'data'   => 'ERROR_INVALID_PARAMETER'
322
            ];
323
 
324
            return new JsonModel($data);
325
        }
326
 
327
        $request = $this->getRequest();
328
        if($request->isPost()) {
329
            $form = new  PlanningGoalsForm();
330
            $dataPost = $request->getPost()->toArray();
331
            $form->setData($dataPost);
332
 
333
            if($form->isValid()) {
334
                $planningObjectivesMapper = PlanningObjectivesMapper::getInstance($this->adapter);
335
                $objectives = $planningObjectivesMapper->fetchOneByUuidAndCompanyId($objective_uuid, $currentCompany->id);
336
 
337
                if (!$objectives) {
338
                    $data = [
339
                        'success' => false,
340
                        'data' => 'ERROR_RECORD_NOT_FOUND'
341
                    ];
342
 
343
 
344
                    return new JsonModel($data);
345
                }
346
 
347
                if($objectives->company_id!=$currentCompany->id){
348
                        $data = [
349
                            'success' => false,
350
                            'data' => 'ERROR_UNAUTHORIZED',
351
                        ];
352
                        return new JsonModel($data);
353
                }
354
                $dataPost = (array) $form->getData();
355
                $dataPost['status'] =  isset($dataPost['status']) ? $dataPost['status'] : PlanningGoals::STATUS_INACTIVE;
356
                $dataPost['objective_id']=$objectives->id;
357
 
358
                $hydrator = new ObjectPropertyHydrator();
359
                $planningGoals = new PlanningGoals();
360
                $hydrator->hydrate($dataPost, $planningGoals);
361
 
362
                $planningGoalsMapper = PlanningGoalsMapper::getInstance($this->adapter);
363
                $result = $planningGoalsMapper->insert($planningGoals);
364
 
365
                if($result) {
366
                    $this->logger->info('Se agrego la meta ' . $planningGoals->title, ['user_id' => $currentUser->id, 'ip' => Functions::getUserIP()]);
367
 
368
                    $data = [
369
                        'success'   => true,
370
                        'data'   => 'LABEL_RECORD_ADDED'
371
                    ];
372
                } else {
373
                    $data = [
374
                        'success'   => false,
375
                        'data'      => $planningGoalsMapper->getError()
376
                    ];
377
 
378
                }
379
 
380
                return new JsonModel($data);
381
 
382
            } else {
383
                $messages = [];
384
                $form_messages = (array) $form->getMessages();
385
                foreach($form_messages  as $fieldname => $field_messages)
386
                {
387
 
388
                    $messages[$fieldname] = array_values($field_messages);
389
                }
390
 
391
                return new JsonModel([
392
                    'success'   => false,
393
                    'data'   => $messages
394
                ]);
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
 
411
 
412
 
413
     public function editAction(){
414
 
415
        $currentUserPlugin = $this->plugin('currentUserPlugin');
416
        $currentUser = $currentUserPlugin->getUser();
417
        $currentCompany = $currentUserPlugin->getCompany();
418
        $request = $this->getRequest();
419
        $uuid = $this->params()->fromRoute('id');
420
 
421
 
422
        if(!$uuid) {
423
            $data = [
424
                'success'   => false,
425
                'data'   => 'ERROR_INVALID_PARAMETER'
426
            ];
427
 
428
            return new JsonModel($data);
429
        }
430
 
431
        $objective_uuid = $this->params()->fromRoute('objective_id');
432
        if(!$objective_uuid) {
433
            $data = [
434
                'success'   => false,
435
                'data'   => 'ERROR_INVALID_PARAMETER'
436
            ];
437
 
438
            return new JsonModel($data);
439
        }
440
        $planningObjectivesMapper = PlanningObjectivesMapper::getInstance($this->adapter);
441
        $objectives = $planningObjectivesMapper->fetchOneByUuid($objective_uuid);
442
 
443
        if (!$objectives) {
444
            $data = [
445
                'success' => false,
446
                'data' => 'ERROR_RECORD_NOT_FOUND'
447
            ];
448
 
449
 
450
                return new JsonModel($data);
451
        }
452
 
453
        if($objectives->company_id!=$currentCompany->id){
454
                $data = [
455
                    'success' => false,
456
                    'data' => 'ERROR_UNAUTHORIZED',
457
                ];
458
                return new JsonModel($data);
459
        }
460
 
461
        $planningGoalsMapper = PlanningGoalsMapper::getInstance($this->adapter);
462
        $goals = $planningGoalsMapper->fetchOneByUuid($uuid);
463
 
464
        if (!$goals) {
465
            $data = [
466
                'success' => false,
467
                'data' => 'ERROR_RECORD_NOT_FOUND'
468
            ];
469
 
470
            return new JsonModel($data);
471
        }
472
 
473
 
474
        if($request->isPost()) {
475
            $form = new  PlanningGoalsForm();
476
            $dataPost = $request->getPost()->toArray();
477
            $dataPost['status'] =  isset($dataPost['status']) ? $dataPost['status'] : PlanningGoals::STATUS_INACTIVE;
478
            $form->setData($dataPost);
479
 
480
            if($form->isValid()) {
481
                $dataPost = (array) $form->getData();
482
 
483
                $hydrator = new ObjectPropertyHydrator();
484
                $hydrator->hydrate($dataPost, $goals);
485
                $result = $planningGoalsMapper->update($goals);
486
 
487
                if($result) {
488
                    $this->logger->info('Se actualizo la meta ' . $goals->title, ['user_id' => $currentUser->id, 'ip' => Functions::getUserIP()]);
489
 
490
                    $data = [
491
                        'success' => true,
492
                        'data' => 'LABEL_RECORD_UPDATED'
493
                    ];
494
                } else {
495
                    $data = [
496
                        'success'   => false,
497
                        'data'      => $planningGoalsMapper->getError()
498
                    ];
499
                }
500
 
501
                return new JsonModel($data);
502
 
503
            } else {
504
                $messages = [];
505
                $form_messages = (array) $form->getMessages();
506
                foreach($form_messages  as $fieldname => $field_messages)
507
                {
508
                    $messages[$fieldname] = array_values($field_messages);
509
                }
510
 
511
                return new JsonModel([
512
                    'success'   => false,
513
                    'data'   => $messages
514
                ]);
515
            }
516
        }else if ($request->isGet()) {
517
            $hydrator = new ObjectPropertyHydrator();
518
 
519
            $data = [
520
                'success' => true,
521
                'data' => $hydrator->extract($goals)
522
            ];
523
 
524
            return new JsonModel($data);
525
        } else {
526
            $data = [
527
                'success' => false,
528
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
529
            ];
530
 
531
            return new JsonModel($data);
532
        }
533
 
534
        return new JsonModel($data);
535
 
536
    }
537
 
538
 
539
 
540
 
541
    public function deleteAction(){
542
        $currentUserPlugin = $this->plugin('currentUserPlugin');
543
        $currentCompany = $currentUserPlugin->getCompany();
544
        $currentUser = $currentUserPlugin->getUser();
545
 
546
        $request = $this->getRequest();
547
        $uuid = $this->params()->fromRoute('id');
548
 
549
 
550
        if (!$uuid) {
551
            $data = [
552
                'success' => false,
553
                'data' => 'ERROR_INVALID_PARAMETER'
554
            ];
555
 
556
            return new JsonModel($data);
557
        }
558
 
559
        $objective_uuid = $this->params()->fromRoute('objective_id');
560
        if(!$objective_uuid) {
561
            $data = [
562
                'success'   => false,
563
                'data'   => 'ERROR_INVALID_PARAMETER'
564
            ];
565
 
566
            return new JsonModel($data);
567
        }
568
        $planningObjectivesMapper = PlanningObjectivesMapper::getInstance($this->adapter);
569
        $objectives = $planningObjectivesMapper->fetchOneByUuid($objective_uuid);
570
 
571
        if (!$objectives) {
572
            $data = [
573
                'success' => false,
574
                'data' => 'ERROR_RECORD_NOT_FOUND'
575
            ];
576
 
577
 
578
                return new JsonModel($data);
579
        }
580
 
581
        if($objectives->company_id!=$currentCompany->id){
582
                $data = [
583
                    'success' => false,
584
                    'data' => 'ERROR_UNAUTHORIZED',
585
                ];
586
                return new JsonModel($data);
587
        }
588
 
589
 
590
        $planningGoalsMapper = PlanningGoalsMapper::getInstance($this->adapter);
591
        $goals = $planningGoalsMapper->fetchOneByUuid($uuid);
592
 
593
        if (!$goals) {
594
            $data = [
595
                'success' => false,
596
                'data' => 'ERROR_RECORD_NOT_FOUND'
597
            ];
598
 
599
            return new JsonModel($data);
600
        }
601
 
602
 
603
        if ($request->isPost()) {
604
 
605
 
606
            $result = $planningGoalsMapper->delete($goals->id);
607
            if ($result) {
608
                $this->logger->info('Se borro la meta con el titulo ' . $goals->title, ['user_id' => $currentUser->id, 'ip' => Functions::getUserIP()]);
609
 
610
                $data = [
611
                    'success' => true,
612
                    'data' => 'LABEL_RECORD_DELETED'
613
                ];
614
            } else {
615
 
616
                $data = [
617
                    'success' => false,
618
                    'data' => $planningGoalsMapper->getError()
619
                ];
620
 
621
                return new JsonModel($data);
622
            }
623
        } else {
624
            $data = [
625
                'success' => false,
626
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
627
            ];
628
 
629
            return new JsonModel($data);
630
        }
631
 
632
        return new JsonModel($data);
633
    }
634
 
635
 
636
 
637
 
638
}