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