Proyectos de Subversion LeadersLinked - Backend

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
7218 eleazar 1
<?php
2
 
3
declare(strict_types=1);
4
 
5
namespace LeadersLinked\Controller;
6
 
7
use Laminas\Db\Adapter\AdapterInterface;
8
use Laminas\Cache\Storage\Adapter\AbstractAdapter;
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\Mapper\QueryMapper;
14
use Laminas\Db\Sql\Select;
15
use LeadersLinked\Library\Functions;
16
use LeadersLinked\Mapper\OrganizationalClimateTestMapper;
17
use LeadersLinked\Mapper\OrganizationalClimateMapper;
18
use LeadersLinked\Mapper\OrganizationalClimateFormMapper;
19
use LeadersLinked\Form\OrganizationalClimateTestForm;
20
use LeadersLinked\Model\OrganizationalClimateTest;
21
use LeadersLinked\Mapper\UserMapper;
22
use LeadersLinked\Hydrator\ObjectPropertyHydrator;
7530 eleazar 23
use LeadersLinked\Library\SurveyReport;
7218 eleazar 24
use PhpOffice\PhpSpreadsheet\Spreadsheet;
25
use PhpOffice\PhpSpreadsheet\Writer\Xlsx;
26
use PhpOffice\PhpSpreadsheet\IOFactory;
27
 
28
class OrganizationalClimateReportController extends AbstractActionController {
29
 
30
    /**
31
     *
32
     * @var AdapterInterface
33
     */
34
    private $adapter;
35
 
36
    /**
37
     *
38
     * @var AbstractAdapter
39
     */
40
    private $cache;
41
 
42
    /**
43
     *
44
     * @var  LoggerInterface
45
     */
46
    private $logger;
47
 
48
    /**
49
     *
50
     * @var array
51
     */
52
    private $config;
53
 
54
    /**
55
     *
56
     * @param AdapterInterface $adapter
57
     * @param AbstractAdapter $cache
58
     * @param LoggerInterface $logger
59
     * @param array $config
60
     */
61
    public function __construct($adapter, $cache, $logger, $config) {
62
        $this->adapter = $adapter;
63
        $this->cache = $cache;
64
        $this->logger = $logger;
65
        $this->config = $config;
66
    }
67
 
68
    public function indexAction() {
69
 
70
        $request = $this->getRequest();
71
        $currentUserPlugin = $this->plugin('currentUserPlugin');
72
        $currentCompany = $currentUserPlugin->getCompany();
73
        $currentUser = $currentUserPlugin->getUser();
74
 
75
        try{
76
        $request = $this->getRequest();
77
        if ($request->isGet()) {
78
 
79
            $headers = $request->getHeaders();
80
 
81
            $isJson = false;
82
            if ($headers->has('Accept')) {
83
                $accept = $headers->get('Accept');
84
 
85
                $prioritized = $accept->getPrioritized();
86
 
87
                foreach ($prioritized as $key => $value) {
88
                    $raw = trim($value->getRaw());
89
 
90
                    if (!$isJson) {
91
                        $isJson = strpos($raw, 'json');
92
                    }
93
                }
94
            }
95
 
96
            if ($isJson) {
97
 
98
                $search = $this->params()->fromQuery('search', []);
99
                $search = empty($search['value']) ? '' : filter_var($search['value'], FILTER_SANITIZE_STRING);
100
 
101
                $page = intval($this->params()->fromQuery('start', 1), 10);
102
                $records_x_page = intval($this->params()->fromQuery('length', 10), 10);
103
                $order = $this->params()->fromQuery('order', []);
104
                $order_field = empty($order[0]['column']) ? 99 : intval($order[0]['column'], 10);
105
                $order_direction = empty($order[0]['dir']) ? 'ASC' : strtoupper(filter_var($order[0]['dir'], FILTER_SANITIZE_STRING));
106
 
107
                $fields = ['name'];
108
                $order_field = isset($fields[$order_field]) ? $fields[$order_field] : 'name';
109
 
110
                if (!in_array($order_direction, ['ASC', 'DESC'])) {
111
                    $order_direction = 'ASC';
112
                }
113
 
114
                $organizationalClimateMapper = OrganizationalClimateMapper::getInstance($this->adapter);
115
                $paginator = $organizationalClimateMapper->fetchAllDataTableByCompanyId($currentCompany->id, $search, $page, $records_x_page, $order_field, $order_direction);
116
 
117
                $organizationalClimateFormMapper = OrganizationalClimateFormMapper::getInstance($this->adapter);
118
 
119
                $items = [];
120
                $records = $paginator->getCurrentItems();
121
 
122
                foreach ($records as $record) {
123
                    $organizationalClimateForm = $organizationalClimateFormMapper->fetchOne($record->form_id);
124
                    $params = [
125
 
126
                        'id' => $record->uuid,
127
                    ];
128
                    $item = [
129
                        'id' => $record->id,
130
                        'name' => $record->name,
131
                        'form' => $organizationalClimateForm->name,
132
                        'status' => $record->status,
133
                        'actions' => [
134
                            'link_report_all' => $this->url()->fromRoute('organizational-climate/report/all', ['organizationalClimate_id' => $record->uuid]),
135
                            'link_report_csv' => $this->url()->fromRoute('organizational-climate/report/csv', ['organizationalClimate_id' => $record->uuid]),
136
                            'link_overview' => $this->url()->fromRoute('organizational-climate/report/overview', ['organizationalClimate_id' => $record->uuid])
137
                        ]
138
                    ];
139
 
140
                    array_push($items, $item);
141
                }
142
 
143
                return new JsonModel([
144
                    'success' => true,
145
                    'data' => [
146
                        'items' => $items,
147
                        'total' => $paginator->getTotalItemCount(),
148
                    ]
149
                ]);
150
            } else {
151
                $organizationalClimateMapper = OrganizationalClimateMapper::getInstance($this->adapter);
152
                $survies = $organizationalClimateMapper->fetchAllByCompanyId($currentCompany->id);
153
 
154
                $form = new OrganizationalClimateTestForm($this->adapter, $currentCompany->id);
155
 
156
                $this->layout()->setTemplate('layout/layout-backend');
157
                $viewModel = new ViewModel();
158
                $viewModel->setTemplate('leaders-linked/organizational-climate-report/index.phtml');
159
                $viewModel->setVariables([
160
                    'form'      => $form,
161
                    'survies' => $survies
162
                ]);
163
                return $viewModel;
164
            }
165
        } else {
166
            return new JsonModel([
167
                'success' => false,
168
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
169
            ]);
170
 
171
        }
172
        } catch (\Throwable $e) {
173
            $e->getMessage();
174
            return new JsonModel([
175
                'success' => false,
176
                'data' => $e
177
            ]);
178
        }
179
 
180
    }
181
 
182
    public function overviewAction(){
183
        $request = $this->getRequest();
184
        $currentUserPlugin = $this->plugin('currentUserPlugin');
185
        $currentCompany = $currentUserPlugin->getCompany();
186
        $currentUser = $currentUserPlugin->getUser();
187
 
188
        $request = $this->getRequest();
189
        $uuid = $this->params()->fromRoute('organizationalClimate_id');
190
 
191
        if (!$uuid) {
192
            $data = [
193
                'success' => false,
194
                'data' => 'ERROR_INVALID_PARAMETER'
195
            ];
196
 
197
            return new JsonModel($data);
198
        }
199
 
200
        $organizationalClimateMapper = OrganizationalClimateMapper::getInstance($this->adapter);
201
        $organizationalClimate = $organizationalClimateMapper->fetchOneByUuid($uuid);
202
 
203
        $organizationalClimateMapper = OrganizationalClimateMapper::getInstance($this->adapter);
204
        $organizationalClimate = $organizationalClimateMapper->fetchOneByUuid($uuid);
205
 
206
        $organizationalClimateTestMapper = OrganizationalClimateTestMapper::getInstance($this->adapter);
7532 eleazar 207
        $organizationalClimateTests = $organizationalClimateTestMapper->fetchAllBySurveyId($organizationalClimate->id);
7218 eleazar 208
 
209
        $organizationalClimateFormMapper = OrganizationalClimateFormMapper::getInstance($this->adapter);
210
        $organizationalClimateForm = $organizationalClimateFormMapper->fetchOne($organizationalClimate->form_id);
211
 
212
        $sections = json_decode($organizationalClimateForm->content, true);
213
 
214
        $allTests = array_map(
215
            function($response) {
216
                return json_decode($response->content, true);
217
            },
218
            $organizationalClimateTests,
219
        );
220
 
221
        $averages = [];
222
 
223
        foreach($sections as $section) {
224
            foreach($section['questions'] as $question) {
225
                switch ($question['type']) {
226
                    case 'multiple':
227
                        $totals = [];
228
 
229
                        foreach($question['options'] as $option) {
230
                            $totals[$option['slug_option']] = 0;
231
                        }
232
 
233
                        foreach($question['options'] as $option) {
234
                            $totals[$option['slug_option']] = count(array_filter(
235
                                $allTests,
236
                                function ($test) use($option, $question) {
237
                                    return in_array($option['slug_option'], $test[$question['slug_question']]);
238
                                }
239
                            ));
240
                        }
241
 
242
                        $averages[$question['slug_question']] = $totals;
243
 
244
                        break;
245
 
246
                    case 'simple':
247
                        $totals = [];
248
 
249
                        foreach($question['options'] as $option) {
250
                            $totals[$option['slug_option']] = 0;
251
                        }
252
 
253
                        foreach ($allTests as $test) {
254
                            $totals[$test[$question['slug_question']]]++;
255
                        }
256
 
257
                        foreach($totals as $slug => $amount) {
258
                            $totals[$slug] = ($amount / count($allTests)) * 100;
259
                        }
260
 
261
                        $averages[$question['slug_question']] = $totals;
262
                    break;
263
 
264
                }
265
            }
266
        }
267
 
268
        $this->layout()->setTemplate('layout/layout-backend.phtml');
269
        $viewModel = new ViewModel();
270
        $viewModel->setTemplate('leaders-linked/organizational-climate-report/overview.phtml');
271
        $viewModel->setVariables([
272
            'sections' => $sections,
273
            'averages' => $averages,
274
        ]);
275
        return $viewModel ;
276
 
277
    }
278
 
279
    public function allAction() {
280
        $request = $this->getRequest();
281
        $currentUserPlugin = $this->plugin('currentUserPlugin');
282
        $currentCompany = $currentUserPlugin->getCompany();
283
        $currentUser = $currentUserPlugin->getUser();
284
 
285
        $request = $this->getRequest();
286
        $uuid = $this->params()->fromRoute('organizationalClimate_id');
287
 
288
 
289
 
290
        if (!$uuid) {
291
            $data = [
292
                'success' => false,
293
                'data' => 'ERROR_INVALID_PARAMETER'
294
            ];
295
 
296
            return new JsonModel($data);
297
        }
298
 
299
        $organizationalClimateMapper = OrganizationalClimateMapper::getInstance($this->adapter);
300
        $organizationalClimate = $organizationalClimateMapper->fetchOneByUuid($uuid);
301
 
302
        $organizationalClimateTestMapper = OrganizationalClimateTestMapper::getInstance($this->adapter);
7528 eleazar 303
        $organizationalClimateTests = $organizationalClimateTestMapper->fetchAllBySurveyId($organizationalClimate->id);
7218 eleazar 304
 
305
        if (!$organizationalClimateTests) {
306
            $data = [
307
                'success' => false,
308
                'data' => 'ERROR_RECORD_NOT_FOUND'
309
            ];
310
 
311
            return new JsonModel($data);
312
        }
313
 
314
 
315
        if ($request->isGet()) {
316
            $hydrator = new ObjectPropertyHydrator();
317
 
318
            //get form data
319
            $organizationalClimateFormMapper = OrganizationalClimateFormMapper::getInstance($this->adapter);
320
            $organizationalClimateForm = $organizationalClimateFormMapper->fetchOne($organizationalClimate->form_id);
321
 
322
            if ($organizationalClimateForm) {
323
 
324
                return $this->renderPDF($organizationalClimateForm, $organizationalClimateTests, $organizationalClimate);
325
            } else {
326
 
327
                $data = [
328
                    'success' => false,
329
                    'data' => 'ERROR_METHOD_NOT_ALLOWED'
330
                ];
331
 
332
                return new JsonModel($data);
333
            }
334
        } else {
335
            $data = [
336
                'success' => false,
337
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
338
            ];
339
 
340
            return new JsonModel($data);
341
        }
342
 
343
        return new JsonModel($data);
344
    }
345
 
346
 
347
    public function renderPDF($organizationalClimateForm, $organizationalClimateTests, $organizationalClimate) {
348
 
349
        $target_path = $this->config['leaderslinked.fullpath.company'] . DIRECTORY_SEPARATOR . $organizationalClimate->uuid;
350
 
351
 
352
        if(file_exists($target_path)) {
353
            Functions::deleteFiles($target_path);
354
        } else {
355
            @mkdir($target_path, 0755, true);
356
        }
357
 
358
        // Set Data
359
        $headerFormName = utf8_decode($organizationalClimateForm->name);
7531 eleazar 360
        $headerSurveyName = utf8_decode('Informe de Encuesta: ' . trim($organizationalClimate->name) . ' al ' . date("m-d-Y H:i:s", strtotime($organizationalClimate->added_on)));
7218 eleazar 361
        $sections = json_decode($organizationalClimateForm->content, true);
362
 
363
        $allTests = array_map(
364
            function($response) {
365
                return json_decode($response->content, true);
366
            },
367
            $organizationalClimateTests,
368
        );
369
 
370
        $averages = [];
371
 
372
        foreach($sections as $section) {
373
            foreach($section['questions'] as $question) {
374
                switch ($question['type']) {
375
                    case 'multiple':
376
                        $totals = [];
377
 
378
                        foreach($question['options'] as $option) {
379
                            $totals[$option['slug_option']] = 0;
380
                        }
381
 
382
                        foreach($question['options'] as $option) {
383
                            $totals[$option['slug_option']] = count(array_filter(
384
                                $allTests,
385
                                function ($test) use($option, $question) {
386
                                    return in_array($option['slug_option'], $test[$question['slug_question']]);
387
                                }
388
                            ));
389
                        }
390
 
391
                        $averages[$question['slug_question']] = $totals;
392
 
393
                        break;
394
 
395
                    case 'simple':
396
                        $totals = [];
397
 
398
                        foreach($question['options'] as $option) {
399
                            $totals[$option['slug_option']] = 0;
400
                        }
401
 
402
                        foreach ($allTests as $test) {
403
                            $totals[$test[$question['slug_question']]]++;
404
                        }
405
 
406
                        foreach($totals as $slug => $amount) {
407
                            $totals[$slug] = ($amount / count($allTests)) * 100;
408
                        }
409
 
410
                        $averages[$question['slug_question']] = $totals;
411
                    break;
412
 
413
                }
414
            }
415
        }
416
 
417
        //Generate New PDF
7529 eleazar 418
        $pdf = new SurveyReport();
7218 eleazar 419
 
420
        $pdf->AliasNbPages();
421
        $pdf->AddPage();
422
 
423
        // Set header secundary
7529 eleazar 424
        $pdf->customHeader($headerFormName, $headerSurveyName);
7218 eleazar 425
 
426
        $countSection = 0;
427
 
428
        for ($i = 0; $i < count($sections); $i++) {
429
            if ($countSection > 1) {
430
                $countSection = 0;
431
                $pdf->AddPage();
432
                $pdf->customHeader($headerFormName, $headerUserName);
433
            }
434
            $section = $sections[$i];
435
 
436
            foreach ($section['questions'] as $question) {
437
 
438
                    switch ($question['type']) {
439
                        case 'simple':
440
                            $labels = [];
441
                            $values = [];
442
 
443
                            foreach($question['options'] as $option) {
444
                                $labels []= strip_tags($option['text']) . "\n(%.1f%%)";
445
 
446
                                $values []= $averages[$question['slug_question']][$option['slug_option']];
447
                            }
448
 
449
                            $filename = $target_path . DIRECTORY_SEPARATOR .  $question['slug_question'] . '.png';
450
                            $pdf->Cell(0,10,strip_tags(trim(str_replace(' ', ' ', html_entity_decode($question['text'])))),0,1);
451
                            $pdf->pieChart($labels, $values, '', $filename);
452
                            $pdf->SetFont('Arial', '', 12);
453
                            $pdf->Image($filename, 45, $pdf->getY(), 120);
454
                            $pdf->setY($pdf->getY() + 90);
455
 
456
 
457
                            break;
458
 
459
                        case 'multiple':
460
                            $labels = [];
461
                            $values = [];
462
 
463
                            foreach($question['options'] as $option) {
464
                                $labels []= strip_tags($option['text']);
465
 
466
                                $values []= $averages[$question['slug_question']][$option['slug_option']];
467
                            }
468
 
469
                            $filename = $target_path . DIRECTORY_SEPARATOR .  $question['slug_question'] . '.png';
470
                            $pdf->Cell(0,10,strip_tags($question['text']),0,1);
471
                            $pdf->barChart($labels, $values, '', $filename);
472
                            $pdf->SetFont('Arial', '', 12);
473
                            $pdf->Image($filename, 12, $pdf->getY());
474
                            $pdf->setY($pdf->getY() + (count($values) * 13) + 10);
475
 
476
                            break;
477
                    }
478
                $countSection++;
479
            }
480
 
481
 
482
        }
483
 
484
        return $pdf->Output();
485
    }
486
 
487
    public function csvAction() {
488
        $request = $this->getRequest();
489
        $currentUserPlugin = $this->plugin('currentUserPlugin');
490
        $currentCompany = $currentUserPlugin->getCompany();
491
        $currentUser = $currentUserPlugin->getUser();
492
 
493
        $request = $this->getRequest();
494
        $uuid = $this->params()->fromRoute('organizationalClimate_id');
495
 
496
 
497
 
498
        if (!$uuid) {
499
            $data = [
500
                'success' => false,
501
                'data' => 'ERROR_INVALID_PARAMETER'
502
            ];
503
 
504
            return new JsonModel($data);
505
        }
506
 
507
        $organizationalClimateMapper = OrganizationalClimateMapper::getInstance($this->adapter);
508
        $organizationalClimate = $organizationalClimateMapper->fetchOneByUuid($uuid);
509
 
510
        $organizationalClimateTestMapper = OrganizationalClimateTestMapper::getInstance($this->adapter);
7529 eleazar 511
        $organizationalClimateTests = $organizationalClimateTestMapper->fetchAllBySurveyId($organizationalClimate->id);
7218 eleazar 512
 
513
        if (!$organizationalClimateTests) {
514
            $data = [
515
                'success' => false,
516
                'data' => 'ERROR_RECORD_NOT_FOUND'
517
            ];
518
 
519
            return new JsonModel($data);
520
        }
521
 
522
 
523
        if ($request->isGet()) {
524
            $hydrator = new ObjectPropertyHydrator();
525
 
526
            //get form data
527
            $organizationalClimateFormMapper = OrganizationalClimateFormMapper::getInstance($this->adapter);
528
            $organizationalClimateForm = $organizationalClimateFormMapper->fetchOne($organizationalClimate->form_id);
529
 
530
            if ($organizationalClimateForm) {
531
 
532
                return $this->csvRender($organizationalClimateForm, $organizationalClimateTests, $organizationalClimate);
533
            } else {
534
 
535
                $data = [
536
                    'success' => false,
537
                    'data' => 'ERROR_METHOD_NOT_ALLOWED'
538
                ];
539
 
540
                return new JsonModel($data);
541
            }
542
        } else {
543
            $data = [
544
                'success' => false,
545
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
546
            ];
547
 
548
            return new JsonModel($data);
549
        }
550
 
551
        return new JsonModel($data);
552
    }
553
 
554
 
555
    public function csvRender($organizationalClimateForm, $organizationalClimateTests, $organizationalClimate)
556
    {
557
        $sections = json_decode($organizationalClimateForm->content, true);
558
 
559
        $spreadsheet = new Spreadsheet();
560
        $sheet = $spreadsheet->getActiveSheet();
561
 
562
        $allTests = array_map(
563
            function($response) {
564
                return json_decode($response->content, true);
565
            },
566
            $organizationalClimateTests,
567
        );
568
 
569
        $averages = [];
570
 
571
        foreach($sections as $section) {
572
            foreach($section['questions'] as $question) {
573
                switch ($question['type']) {
574
                    case 'multiple':
575
                        $totals = [];
576
 
577
                        foreach($question['options'] as $option) {
578
                            $totals[$option['slug_option']] = 0;
579
                        }
580
 
581
                        foreach($question['options'] as $option) {
582
                            $totals[$option['slug_option']] = count(array_filter(
583
                                $allTests,
584
                                function ($test) use($option, $question) {
585
                                    return in_array($option['slug_option'], $test[$question['slug_question']]);
586
                                }
587
                            ));
588
                        }
589
 
590
                        $averages[$question['slug_question']] = $totals;
591
 
592
                        break;
593
 
594
                    case 'simple':
595
                        $totals = [];
596
 
597
                        foreach($question['options'] as $option) {
598
                            $totals[$option['slug_option']] = 0;
599
                        }
600
 
601
                        foreach ($allTests as $test) {
602
                            $totals[$test[$question['slug_question']]]++;
603
                        }
604
 
605
                        foreach($totals as $slug => $amount) {
606
                            $totals[$slug] = ($amount / count($allTests)) * 100;
607
                        }
608
 
609
                        $averages[$question['slug_question']] = $totals;
610
                    break;
611
 
612
                }
613
            }
614
        }
615
 
616
        $row = 1;
617
 
618
        for ($i = 0; $i < count($sections); $i++) {
619
            $section = $sections[$i];
620
 
621
           for($j = 0; $j < count($section['questions']); $j++) {
622
                $question = $section['questions'][$j];
623
 
624
                if (!in_array($question['type'], ['simple', 'multiple'])){
625
                    continue;
626
                }
627
                $sheet->setCellValueByColumnAndRow(1, $row++, strip_tags($question['text']));
628
 
629
                switch ($question['type']) {
630
                    case 'simple':
631
                        for($k = 0; $k < count($question['options']); $k++) {
632
                            $option = $question['options'][$k];
633
                            $sheet->setCellValueByColumnAndRow(1, $row, strip_tags($option['text']));
634
                            $sheet->setCellValueByColumnAndRow(2, $row, round($averages[$question['slug_question']][$option['slug_option']], 2) . '%');
635
                            $row++;
636
                        }
637
 
638
                        break;
639
 
640
                    case 'multiple':
641
                        for($k = 0; $k < count($question['options']); $k++) {
642
                            $option = $question['options'][$k];
643
                            $sheet->setCellValueByColumnAndRow(1, $row, strip_tags($option['text']));
644
                            $sheet->setCellValueByColumnAndRow(2, $row,$averages[$question['slug_question']][$option['slug_option']]);
645
                            $row++;
646
                        }
647
 
648
                        break;
649
                }
650
            }
651
 
652
 
653
        }
654
 
655
        header('Content-Description: File Transfer');
656
        header('Content-Type: application/vnd.openxmlformats-officedocument.spreadsheetml.sheet');
657
        header('Content-Disposition: attachment; filename=report.xls');
658
        header('Content-Transfer-Encoding: binary');
659
        header('Expires: 0');
660
        header('Cache-Control: must-revalidate');
661
        header('Pragma: public');
662
 
663
        $writer = new Xlsx($spreadsheet);
664
 
665
        ob_clean();
666
        flush();
667
        $writer->save('php://output');
668
        return;
669
    }
670
}