Proyectos de Subversion LeadersLinked - Backend

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
5866 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\SurveyTestMapper;
17
use LeadersLinked\Mapper\SurveyMapper;
18
use LeadersLinked\Mapper\SurveyFormMapper;
19
use LeadersLinked\Form\SurveyTestForm;
20
use LeadersLinked\Model\SurveyTest;
21
use LeadersLinked\Mapper\UserMapper;
22
use LeadersLinked\Hydrator\ObjectPropertyHydrator;
23
use LeadersLinked\Library\SurveyReport;
7080 eleazar 24
use PhpOffice\PhpSpreadsheet\Spreadsheet;
25
use PhpOffice\PhpSpreadsheet\Writer\Xlsx;
26
use PhpOffice\PhpSpreadsheet\IOFactory;
5866 eleazar 27
 
28
class SurveyReportController 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() {
5911 eleazar 69
 
5866 eleazar 70
        $request = $this->getRequest();
71
        $currentUserPlugin = $this->plugin('currentUserPlugin');
72
        $currentCompany = $currentUserPlugin->getCompany();
73
        $currentUser = $currentUserPlugin->getUser();
74
 
6424 eleazar 75
        try{
5866 eleazar 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) {
5911 eleazar 97
 
5866 eleazar 98
                $search = $this->params()->fromQuery('search', []);
99
                $search = empty($search['value']) ? '' : filter_var($search['value'], FILTER_SANITIZE_STRING);
100
 
15371 efrain 101
                $start = intval($this->params()->fromQuery('start', 0), 10);
5866 eleazar 102
                $records_x_page = intval($this->params()->fromQuery('length', 10), 10);
15371 efrain 103
                $page =  intval($start / $records_x_page);
104
                $page++;
105
 
5866 eleazar 106
                $order = $this->params()->fromQuery('order', []);
107
                $order_field = empty($order[0]['column']) ? 99 : intval($order[0]['column'], 10);
108
                $order_direction = empty($order[0]['dir']) ? 'ASC' : strtoupper(filter_var($order[0]['dir'], FILTER_SANITIZE_STRING));
109
 
6411 eleazar 110
                $fields = ['name'];
6416 eleazar 111
                $order_field = isset($fields[$order_field]) ? $fields[$order_field] : 'name';
5866 eleazar 112
 
113
                if (!in_array($order_direction, ['ASC', 'DESC'])) {
114
                    $order_direction = 'ASC';
115
                }
116
 
6411 eleazar 117
                $surveyMapper = SurveyMapper::getInstance($this->adapter);
6412 eleazar 118
                $paginator = $surveyMapper->fetchAllDataTableByCompanyId($currentCompany->id, $search, $page, $records_x_page, $order_field, $order_direction);
6423 eleazar 119
 
120
                $surveyFormMapper = SurveyFormMapper::getInstance($this->adapter);
121
 
5866 eleazar 122
                $items = [];
123
                $records = $paginator->getCurrentItems();
6866 eleazar 124
 
5866 eleazar 125
                foreach ($records as $record) {
6423 eleazar 126
                    $surveyForm = $surveyFormMapper->fetchOne($record->form_id);
6451 eleazar 127
                    $params = [
128
 
129
                        'id' => $record->uuid,
130
                    ];
5866 eleazar 131
                    $item = [
14215 kerby 132
                        'id' => $record->id,
6426 eleazar 133
                        'name' => $record->name,
6211 eleazar 134
                        'form' => $surveyForm->name,
6427 eleazar 135
                        'status' => $record->status,
5866 eleazar 136
                        'actions' => [
6496 eleazar 137
                            'link_report_all' => $this->url()->fromRoute('survey/report/all', ['survey_id' => $record->uuid]),
15150 efrain 138
                            'link_report_excel' => $this->url()->fromRoute('survey/report/excel', ['survey_id' => $record->uuid]),
6496 eleazar 139
                            'link_overview' => $this->url()->fromRoute('survey/report/overview', ['survey_id' => $record->uuid])
5866 eleazar 140
                        ]
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
                ]);
5911 eleazar 153
            } else {
154
                $surveyMapper = SurveyMapper::getInstance($this->adapter);
155
                $survies = $surveyMapper->fetchAllByCompanyId($currentCompany->id);
156
 
5866 eleazar 157
                $form = new SurveyTestForm($this->adapter, $currentCompany->id);
158
 
159
                $this->layout()->setTemplate('layout/layout-backend');
160
                $viewModel = new ViewModel();
5933 eleazar 161
                $viewModel->setTemplate('leaders-linked/survey-report/index.phtml');
5866 eleazar 162
                $viewModel->setVariables([
5911 eleazar 163
                    'form'      => $form,
164
                    'survies' => $survies
5866 eleazar 165
                ]);
166
                return $viewModel;
167
            }
168
        } else {
169
            return new JsonModel([
170
                'success' => false,
171
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
172
            ]);
173
 
6424 eleazar 174
        }
175
        } catch (\Throwable $e) {
176
            $e->getMessage();
177
            return new JsonModel([
178
                'success' => false,
179
                'data' => $e
180
            ]);
5866 eleazar 181
        }
6212 eleazar 182
 
5866 eleazar 183
    }
5911 eleazar 184
 
6496 eleazar 185
    public function overviewAction(){
186
        $request = $this->getRequest();
187
        $currentUserPlugin = $this->plugin('currentUserPlugin');
188
        $currentCompany = $currentUserPlugin->getCompany();
189
        $currentUser = $currentUserPlugin->getUser();
190
 
191
        $request = $this->getRequest();
192
        $uuid = $this->params()->fromRoute('survey_id');
193
 
194
        if (!$uuid) {
195
            $data = [
196
                'success' => false,
197
                'data' => 'ERROR_INVALID_PARAMETER'
198
            ];
199
 
200
            return new JsonModel($data);
201
        }
202
 
203
        $surveyMapper = SurveyMapper::getInstance($this->adapter);
204
        $survey = $surveyMapper->fetchOneByUuid($uuid);
205
 
206
        $surveyMapper = SurveyMapper::getInstance($this->adapter);
207
        $survey = $surveyMapper->fetchOneByUuid($uuid);
208
 
209
        $surveyTestMapper = SurveyTestMapper::getInstance($this->adapter);
210
        $surveyTests = $surveyTestMapper->fetchAllBySurveyId($survey->id);
211
 
8355 eleazar 212
        if (!$surveyTests) {
213
            $data = [
214
                'success' => false,
215
                'data' => 'No hay respuestas en esta encuesta'
216
            ];
217
 
218
            return new JsonModel($data);
219
        }
220
 
6496 eleazar 221
        $surveyFormMapper = SurveyFormMapper::getInstance($this->adapter);
222
        $surveyForm = $surveyFormMapper->fetchOne($survey->form_id);
223
 
224
        $sections = json_decode($surveyForm->content, true);
225
 
226
        $allTests = array_map(
227
            function($response) {
228
                return json_decode($response->content, true);
229
            },
230
            $surveyTests,
231
        );
232
 
233
        $averages = [];
234
 
235
        foreach($sections as $section) {
236
            foreach($section['questions'] as $question) {
237
                switch ($question['type']) {
238
                    case 'multiple':
239
                        $totals = [];
240
 
241
                        foreach($question['options'] as $option) {
242
                            $totals[$option['slug_option']] = 0;
243
                        }
244
 
245
                        foreach($question['options'] as $option) {
246
                            $totals[$option['slug_option']] = count(array_filter(
247
                                $allTests,
248
                                function ($test) use($option, $question) {
249
                                    return in_array($option['slug_option'], $test[$question['slug_question']]);
250
                                }
251
                            ));
252
                        }
253
 
254
                        $averages[$question['slug_question']] = $totals;
255
 
256
                        break;
257
 
258
                    case 'simple':
259
                        $totals = [];
260
 
261
                        foreach($question['options'] as $option) {
262
                            $totals[$option['slug_option']] = 0;
263
                        }
264
 
265
                        foreach ($allTests as $test) {
266
                            $totals[$test[$question['slug_question']]]++;
267
                        }
268
 
269
                        foreach($totals as $slug => $amount) {
270
                            $totals[$slug] = ($amount / count($allTests)) * 100;
271
                        }
272
 
273
                        $averages[$question['slug_question']] = $totals;
274
                    break;
275
 
276
                }
277
            }
278
        }
279
 
280
        $this->layout()->setTemplate('layout/layout-backend.phtml');
281
        $viewModel = new ViewModel();
282
        $viewModel->setTemplate('leaders-linked/survey-report/overview.phtml');
283
        $viewModel->setVariables([
6506 eleazar 284
            'sections' => $sections,
6524 eleazar 285
            'averages' => $averages,
6496 eleazar 286
        ]);
287
        return $viewModel ;
288
 
289
    }
290
 
6447 eleazar 291
    public function allAction() {
5930 eleazar 292
        $request = $this->getRequest();
293
        $currentUserPlugin = $this->plugin('currentUserPlugin');
294
        $currentCompany = $currentUserPlugin->getCompany();
295
        $currentUser = $currentUserPlugin->getUser();
296
 
297
        $request = $this->getRequest();
6043 eleazar 298
        $uuid = $this->params()->fromRoute('survey_id');
5961 eleazar 299
 
5930 eleazar 300
 
301
 
302
        if (!$uuid) {
303
            $data = [
304
                'success' => false,
305
                'data' => 'ERROR_INVALID_PARAMETER'
306
            ];
307
 
308
            return new JsonModel($data);
309
        }
310
 
6039 eleazar 311
        $surveyMapper = SurveyMapper::getInstance($this->adapter);
312
        $survey = $surveyMapper->fetchOneByUuid($uuid);
6044 eleazar 313
 
5965 eleazar 314
        $surveyTestMapper = SurveyTestMapper::getInstance($this->adapter);
6052 eleazar 315
        $surveyTests = $surveyTestMapper->fetchAllBySurveyId($survey->id);
5966 eleazar 316
 
6052 eleazar 317
        if (!$surveyTests) {
5930 eleazar 318
            $data = [
319
                'success' => false,
5961 eleazar 320
                'data' => 'ERROR_RECORD_NOT_FOUND'
5930 eleazar 321
            ];
322
 
323
            return new JsonModel($data);
324
        }
325
 
5965 eleazar 326
 
5930 eleazar 327
        if ($request->isGet()) {
15150 efrain 328
 
5930 eleazar 329
            $surveyFormMapper = SurveyFormMapper::getInstance($this->adapter);
5965 eleazar 330
            $surveyForm = $surveyFormMapper->fetchOne($survey->form_id);
5930 eleazar 331
 
332
            if ($surveyForm) {
333
 
15150 efrain 334
                return $this->renderPDF($currentCompany, $surveyForm, $surveyTests, $survey);
5930 eleazar 335
            } else {
336
 
337
                $data = [
338
                    'success' => false,
339
                    'data' => 'ERROR_METHOD_NOT_ALLOWED'
340
                ];
341
 
342
                return new JsonModel($data);
343
            }
344
        } else {
345
            $data = [
346
                'success' => false,
347
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
348
            ];
349
 
350
            return new JsonModel($data);
351
        }
352
 
353
        return new JsonModel($data);
354
    }
355
 
356
 
15150 efrain 357
    public function renderPDF($company, $surveyForm, $surveyTests, $survey) {
5930 eleazar 358
 
15150 efrain 359
 
360
 
5930 eleazar 361
 
362
 
15150 efrain 363
        $target_path = $this->config['leaderslinked.fullpath.company'] . DIRECTORY_SEPARATOR . $company->uuid;
364
 
365
        $header = $company->header ? $target_path . DIRECTORY_SEPARATOR . $company->header : '';
366
        if(empty($header) || !file_exists($header)) {
367
            $header = $this->config['leaderslinked.images_default.company_pdf_header'];
368
        }
369
 
370
        $footer = $company->footer ? $target_path . DIRECTORY_SEPARATOR . $company->footer : '';
371
        if(empty($footer) || !file_exists($footer)) {
372
            $footer = $this->config['leaderslinked.images_default.company_pdf_footer'];
373
        }
374
 
375
 
376
        //Generate New PDF
377
        $pdf = new SurveyReport();
378
 
379
 
380
        $pdf->header = $header;
381
        $pdf->footer = $footer;
382
 
383
 
384
 
385
        $target_path = $this->config[ 'leaderslinked.fullpath.survey'] . DIRECTORY_SEPARATOR . $survey->uuid;
386
        if(!file_exists($target_path)) {
387
            mkdir($target_path, 0755, true);
388
        } else {
5930 eleazar 389
            Functions::deleteFiles($target_path);
390
        }
391
        // Set Data
15150 efrain 392
        $headerFormName = $this->cleanStringToPdf($surveyForm->name);
393
        $headerSurveyName = $this->cleanStringToPdf('Informe de Encuesta: ' . trim($survey->name) . ' al ' . date("m-d-Y H:i:s", strtotime($survey->added_on)));
6052 eleazar 394
        $sections = json_decode($surveyForm->content, true);
395
 
6053 eleazar 396
        $allTests = array_map(
6052 eleazar 397
            function($response) {
398
                return json_decode($response->content, true);
399
            },
400
            $surveyTests,
401
        );
15150 efrain 402
 
403
 
6052 eleazar 404
 
15150 efrain 405
 
6052 eleazar 406
        $averages = [];
407
 
408
        foreach($sections as $section) {
409
            foreach($section['questions'] as $question) {
410
                switch ($question['type']) {
6054 eleazar 411
                    case 'multiple':
6056 eleazar 412
                        $totals = [];
413
 
414
                        foreach($question['options'] as $option) {
415
                            $totals[$option['slug_option']] = 0;
416
                        }
417
 
418
                        foreach($question['options'] as $option) {
6057 eleazar 419
                            $totals[$option['slug_option']] = count(array_filter(
6056 eleazar 420
                                $allTests,
6452 eleazar 421
                                function ($test) use($option, $question) {
6450 eleazar 422
                                    return in_array($option['slug_option'], $test[$question['slug_question']]);
6056 eleazar 423
                                }
424
                            ));
425
                        }
6084 eleazar 426
 
6056 eleazar 427
                        $averages[$question['slug_question']] = $totals;
428
 
429
                        break;
6449 eleazar 430
 
6052 eleazar 431
                    case 'simple':
6053 eleazar 432
                        $totals = [];
6052 eleazar 433
 
434
                        foreach($question['options'] as $option) {
6053 eleazar 435
                            $totals[$option['slug_option']] = 0;
6052 eleazar 436
                        }
437
 
6053 eleazar 438
                        foreach ($allTests as $test) {
439
                            $totals[$test[$question['slug_question']]]++;
6052 eleazar 440
                        }
441
 
6053 eleazar 442
                        foreach($totals as $slug => $amount) {
443
                            $totals[$slug] = ($amount / count($allTests)) * 100;
6052 eleazar 444
                        }
445
 
6084 eleazar 446
                        $averages[$question['slug_question']] = $totals;
6052 eleazar 447
                    break;
6071 eleazar 448
 
6052 eleazar 449
                }
450
            }
451
        }
452
 
5930 eleazar 453
 
454
        $pdf->AliasNbPages();
455
        $pdf->AddPage();
456
 
457
        // Set header secundary
6071 eleazar 458
        $pdf->customHeader($headerFormName, $headerSurveyName);
5930 eleazar 459
 
6609 eleazar 460
        $countSection = 0;
461
 
15150 efrain 462
        for ($i = 0, $max = count($sections);  $i < $max ; $i++) {
463
            $headerUserName = '';
464
 
6615 eleazar 465
            if ($countSection > 1) {
466
                $countSection = 0;
467
                $pdf->AddPage();
468
                $pdf->customHeader($headerFormName, $headerUserName);
469
            }
470
            $section = $sections[$i];
6084 eleazar 471
 
472
            foreach ($section['questions'] as $question) {
6615 eleazar 473
 
6614 eleazar 474
                    switch ($question['type']) {
475
                        case 'simple':
476
                            $labels = [];
477
                            $values = [];
6039 eleazar 478
 
6614 eleazar 479
                            foreach($question['options'] as $option) {
15150 efrain 480
                                $label = $this->cleanStringToPdf($option['text']) . "\n(%.1f%%)";
481
                                $value = $averages[$question['slug_question']][$option['slug_option']];
482
                                if(empty($value)) {
483
                                    continue;
484
                                }
485
 
486
                                array_push($labels, $label);
487
 
488
                                array_push($values, $value);
6614 eleazar 489
                            }
490
 
491
                            $filename = $target_path . DIRECTORY_SEPARATOR .  $question['slug_question'] . '.png';
15150 efrain 492
                            $pdf->Cell(0,10, $this->cleanStringToPdf($question['text'], false),0,1);
6914 eleazar 493
                            $pdf->pieChart($labels, $values, '', $filename);
6614 eleazar 494
                            $pdf->SetFont('Arial', '', 12);
15150 efrain 495
                            $pdf->Image($filename, 10, $pdf->getY(), 190);
6614 eleazar 496
                            $pdf->setY($pdf->getY() + 90);
6912 eleazar 497
 
6614 eleazar 498
 
499
                            break;
500
 
501
                        case 'multiple':
502
                            $labels = [];
503
                            $values = [];
504
 
15150 efrain 505
                            foreach($question['options'] as $option)
506
                            {
507
                                $label = $this->cleanStringToPdf($option['text']) . "\n(%.1f%%)";
508
                                $value = $averages[$question['slug_question']][$option['slug_option']];
509
                                if(empty($value)) {
510
                                    continue;
511
                                }
512
 
513
                                array_push($labels, $label);
6614 eleazar 514
 
15150 efrain 515
                                array_push($values, $value);
6614 eleazar 516
                            }
517
 
518
                            $filename = $target_path . DIRECTORY_SEPARATOR .  $question['slug_question'] . '.png';
15150 efrain 519
                            $pdf->Cell(0,10,$this->cleanStringToPdf($question['text'], false),0,1);
520
                            $pdf->pieChart($labels, $values, '', $filename);
6614 eleazar 521
                            $pdf->SetFont('Arial', '', 12);
15150 efrain 522
                            $pdf->Image($filename, 10, $pdf->getY(), 190);
6614 eleazar 523
                            $pdf->setY($pdf->getY() + (count($values) * 13) + 10);
524
 
525
                            break;
526
                    }
6615 eleazar 527
                $countSection++;
6084 eleazar 528
            }
6608 eleazar 529
 
6615 eleazar 530
 
5930 eleazar 531
        }
532
 
7021 eleazar 533
        return $pdf->Output();
534
    }
535
 
15150 efrain 536
    public function excelAction() {
7021 eleazar 537
        $request = $this->getRequest();
538
        $currentUserPlugin = $this->plugin('currentUserPlugin');
539
        $currentCompany = $currentUserPlugin->getCompany();
540
        $currentUser = $currentUserPlugin->getUser();
541
 
542
        $request = $this->getRequest();
543
        $uuid = $this->params()->fromRoute('survey_id');
544
 
545
 
546
 
547
        if (!$uuid) {
548
            $data = [
549
                'success' => false,
550
                'data' => 'ERROR_INVALID_PARAMETER'
551
            ];
552
 
553
            return new JsonModel($data);
554
        }
555
 
556
        $surveyMapper = SurveyMapper::getInstance($this->adapter);
557
        $survey = $surveyMapper->fetchOneByUuid($uuid);
558
 
559
        $surveyTestMapper = SurveyTestMapper::getInstance($this->adapter);
560
        $surveyTests = $surveyTestMapper->fetchAllBySurveyId($survey->id);
561
 
562
        if (!$surveyTests) {
563
            $data = [
564
                'success' => false,
565
                'data' => 'ERROR_RECORD_NOT_FOUND'
566
            ];
567
 
568
            return new JsonModel($data);
569
        }
570
 
571
 
572
        if ($request->isGet()) {
15150 efrain 573
 
7021 eleazar 574
            $surveyFormMapper = SurveyFormMapper::getInstance($this->adapter);
575
            $surveyForm = $surveyFormMapper->fetchOne($survey->form_id);
576
 
577
            if ($surveyForm) {
578
 
15150 efrain 579
                $filename = $this->excelRender($surveyForm, $surveyTests, $survey);
580
                $content = file_get_contents($filename);
581
 
582
 
583
                $response = $this->getResponse();
584
                $headers = $response->getHeaders();
585
                $headers->clearHeaders();
586
 
587
 
588
                $headers->addHeaderLine('Content-Description: File Transfer');
589
                $headers->addHeaderLine('Content-Type: application/vnd.openxmlformats-officedocument.spreadsheetml.sheet');
590
                $headers->addHeaderLine('Content-Disposition: attachment; filename='.$survey->uuid.'.xls');
591
                $headers->addHeaderLine('Content-Transfer-Encoding: binary');
592
                $headers->addHeaderLine('Expires: 0');
593
                $headers->addHeaderLine('Cache-Control: must-revalidate');
594
                $headers->addHeaderLine('Pragma: public');
595
 
596
 
597
                $response->setStatusCode(200);
598
                $response->setContent($content);
599
 
600
 
601
                return $response;
7021 eleazar 602
            } else {
603
 
604
                $data = [
605
                    'success' => false,
15150 efrain 606
                    'data' => 'ERROR_SURVEY_NOT_FOUND'
7021 eleazar 607
                ];
608
 
609
                return new JsonModel($data);
610
            }
611
        } else {
612
            $data = [
613
                'success' => false,
614
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
615
            ];
616
 
617
            return new JsonModel($data);
618
        }
619
 
620
        return new JsonModel($data);
621
    }
622
 
623
 
15150 efrain 624
    public function excelRender($surveyForm, $surveyTests, $survey)
7021 eleazar 625
    {
7026 eleazar 626
        $sections = json_decode($surveyForm->content, true);
7020 eleazar 627
 
7088 eleazar 628
        $spreadsheet = new Spreadsheet();
629
        $sheet = $spreadsheet->getActiveSheet();
630
 
7025 eleazar 631
        $allTests = array_map(
632
            function($response) {
633
                return json_decode($response->content, true);
634
            },
635
            $surveyTests,
636
        );
637
 
638
        $averages = [];
639
 
640
        foreach($sections as $section) {
641
            foreach($section['questions'] as $question) {
642
                switch ($question['type']) {
643
                    case 'multiple':
644
                        $totals = [];
645
 
646
                        foreach($question['options'] as $option) {
647
                            $totals[$option['slug_option']] = 0;
648
                        }
649
 
650
                        foreach($question['options'] as $option) {
651
                            $totals[$option['slug_option']] = count(array_filter(
652
                                $allTests,
653
                                function ($test) use($option, $question) {
654
                                    return in_array($option['slug_option'], $test[$question['slug_question']]);
655
                                }
656
                            ));
657
                        }
658
 
659
                        $averages[$question['slug_question']] = $totals;
660
 
661
                        break;
662
 
663
                    case 'simple':
664
                        $totals = [];
665
 
666
                        foreach($question['options'] as $option) {
667
                            $totals[$option['slug_option']] = 0;
668
                        }
669
 
670
                        foreach ($allTests as $test) {
671
                            $totals[$test[$question['slug_question']]]++;
672
                        }
673
 
674
                        foreach($totals as $slug => $amount) {
675
                            $totals[$slug] = ($amount / count($allTests)) * 100;
676
                        }
677
 
678
                        $averages[$question['slug_question']] = $totals;
679
                    break;
680
 
681
                }
682
            }
683
        }
684
 
7101 eleazar 685
        $row = 1;
686
 
7025 eleazar 687
        for ($i = 0; $i < count($sections); $i++) {
688
            $section = $sections[$i];
689
 
7096 eleazar 690
           for($j = 0; $j < count($section['questions']); $j++) {
7099 eleazar 691
                $question = $section['questions'][$j];
7095 eleazar 692
 
7101 eleazar 693
                if (!in_array($question['type'], ['simple', 'multiple'])){
694
                    continue;
695
                }
15150 efrain 696
 
697
                $row++;
698
                $sheet->setCellValue('A' . $row , $this->cleanStringToExcel($question['text']));
7101 eleazar 699
 
7028 eleazar 700
                switch ($question['type']) {
7032 eleazar 701
                    case 'simple':
7102 eleazar 702
                        for($k = 0; $k < count($question['options']); $k++) {
15150 efrain 703
                            $row++;
704
 
7102 eleazar 705
                            $option = $question['options'][$k];
15150 efrain 706
 
707
 
708
                            $sheet->setCellValue('B' . $row , $this->cleanStringToExcel($option['text']));
709
                            $sheet->setCellValue('C' . $row , round($averages[$question['slug_question']][$option['slug_option']], 2) . '%');
710
 
7032 eleazar 711
                        }
7025 eleazar 712
 
7032 eleazar 713
                        break;
7025 eleazar 714
 
7032 eleazar 715
                    case 'multiple':
7102 eleazar 716
                        for($k = 0; $k < count($question['options']); $k++) {
15150 efrain 717
 
718
                            $row++;
7102 eleazar 719
                            $option = $question['options'][$k];
15150 efrain 720
                            $sheet->setCellValue('B' . $row , $this->cleanStringToExcel($option['text']));
721
                            $sheet->setCellValue('C' . $row , round($averages[$question['slug_question']][$option['slug_option']]));
722
 
7032 eleazar 723
                        }
7025 eleazar 724
 
7032 eleazar 725
                        break;
726
                }
7025 eleazar 727
            }
728
 
729
 
730
        }
731
 
15150 efrain 732
 
733
 
734
        $target_path = $this->config[ 'leaderslinked.fullpath.survey'] . DIRECTORY_SEPARATOR . $survey->uuid;
735
        if(!file_exists($target_path)) {
736
            mkdir($target_path, 0755, true);
737
        }
738
 
739
        $filename = $target_path  . DIRECTORY_SEPARATOR . $survey->uuid . '.xls';
740
 
7088 eleazar 741
        $writer = new Xlsx($spreadsheet);
15150 efrain 742
        $writer->save($filename);
743
 
744
        return $filename;
745
 
746
    }
747
 
7088 eleazar 748
 
15150 efrain 749
 
750
    private function cleanStringToPdf($s, $mbConvert = true)
751
    {
752
 
753
        $s = html_entity_decode($s);
754
 
755
 
756
        if($mbConvert) {
757
            $detect = mb_detect_encoding($s);
758
            if(strtoupper($detect) != 'UTF8') {
759
 
760
                $s = mb_convert_encoding($s, 'UTF8', $detect);
761
 
762
            }
763
        } else {
764
            $s = utf8_decode($s);
765
        }
766
 
767
 
768
        return strip_tags($s);
5930 eleazar 769
    }
15150 efrain 770
 
771
    private function cleanStringToExcel($s)
772
    {
773
 
774
        $s = html_entity_decode($s);
775
        return strip_tags($s);
776
    }
5866 eleazar 777
}