Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 16820 | Ir a la última revisión | | Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
16817 efrain 1
<?php
2
declare(strict_types=1);
3
 
4
namespace LeadersLinked\Controller;
5
 
6
use Laminas\Db\Adapter\AdapterInterface;
7
 
8
use Laminas\Mvc\Controller\AbstractActionController;
9
use Laminas\Log\LoggerInterface;
10
use Laminas\View\Model\JsonModel;
11
use Laminas\View\Model\ViewModel;
12
use LeadersLinked\Library\Functions;
13
use LeadersLinked\Mapper\QueryMapper;
14
use LeadersLinked\Mapper\UserMapper;
15
use Laminas\Hydrator\ArraySerializableHydrator;
16
use Laminas\Db\ResultSet\HydratingResultSet;
17
use Laminas\Paginator\Adapter\DbSelect;
18
use Laminas\Paginator\Paginator;
19
use Laminas\Mvc\I18n\Translator;
20
use LeadersLinked\Cache\CacheInterface;
21
use LeadersLinked\Cache\CacheImpl;
22
use LeadersLinked\Mapper\SurveyTestMapper;
23
use LeadersLinked\Form\Survey\SurveyTakeAnTestForm;
24
use LeadersLinked\Model\SurveyTest;
25
use LeadersLinked\Library\UniqueSurveyReport;
26
use Laminas\Http\Response;
27
use LeadersLinked\Mapper\SurveyCampaignMapper;
28
 
29
 
30
class ActivityCenterOrganizationalClimateController extends AbstractActionController
31
{
32
    /**
33
     *
34
     * @var \Laminas\Db\Adapter\AdapterInterface
35
     */
36
    private $adapter;
37
 
38
    /**
39
     *
40
     * @var \LeadersLinked\Cache\CacheInterface
41
     */
42
    private $cache;
43
 
44
 
45
    /**
46
     *
47
     * @var \Laminas\Log\LoggerInterface
48
     */
49
    private $logger;
50
 
51
    /**
52
     *
53
     * @var array
54
     */
55
    private $config;
56
 
57
 
58
    /**
59
     *
60
     * @var \Laminas\Mvc\I18n\Translator
61
     */
62
    private $translator;
63
 
64
 
65
    /**
66
     *
67
     * @param \Laminas\Db\Adapter\AdapterInterface $adapter
68
     * @param \LeadersLinked\Cache\CacheInterface $cache
69
     * @param \Laminas\Log\LoggerInterface LoggerInterface $logger
70
     * @param array $config
71
     * @param \Laminas\Mvc\I18n\Translator $translator
72
     */
73
    public function __construct($adapter, $cache, $logger, $config, $translator)
74
    {
75
        $this->adapter      = $adapter;
76
        $this->cache        = $cache;
77
        $this->logger       = $logger;
78
        $this->config       = $config;
79
        $this->translator   = $translator;
80
    }
81
 
82
    public function indexAction()
83
    {
84
        $request = $this->getRequest();
85
        $currentUserPlugin = $this->plugin('currentUserPlugin');
86
        $currentCompany = $currentUserPlugin->getCompany();
87
        $currentUser = $currentUserPlugin->getUser();
88
 
89
 
90
        $request = $this->getRequest();
91
        if ($request->isGet()) {
92
 
93
            $headers = $request->getHeaders();
94
 
95
            $isJson = false;
96
            if ($headers->has('Accept')) {
97
                $accept = $headers->get('Accept');
98
 
99
                $prioritized = $accept->getPrioritized();
100
 
101
                foreach ($prioritized as $key => $value) {
102
                    $raw = trim($value->getRaw());
103
 
104
                    if (!$isJson) {
105
                        $isJson = strpos($raw, 'json');
106
                    }
107
                }
108
            }
109
 
110
            //$isJson = true;
111
            if ($isJson) {
112
 
113
                $acl = $this->getEvent()->getViewModel()->getVariable('acl');
114
                $allowTakeATest = $acl->isAllowed($currentUser->usertype_id, 'activities-center/organizational-climate/take-a-test');
115
                $allowReport = $acl->isAllowed($currentUser->usertype_id, 'activities-center/organizational-climate/report');
116
 
117
 
118
 
119
                $search = $this->params()->fromQuery('search', []);
120
                $search = empty($search['value']) ? '' :  Functions::sanitizeFilterString($search['value']);
121
 
122
                $start = intval($this->params()->fromQuery('start', 0), 10);
123
                $records_x_page = intval($this->params()->fromQuery('length', 10), 10);
124
                $page =  intval($start / $records_x_page);
125
                $page++;
126
 
127
                $order = $this->params()->fromQuery('order', []);
128
                $order_field = empty($order[0]['column']) ? 99 : intval($order[0]['column'], 10);
129
                $order_direction = empty($order[0]['dir']) ? 'ASC' : Functions::sanitizeFilterString(filter_var($order[0]['dir']));
130
 
131
                $fields = ['name', 'start_date', 'end_date', 'status'];
132
                $order_field = isset($fields[$order_field]) ? $fields[$order_field] : 'name';
133
 
134
                if (!in_array($order_direction, ['ASC', 'DESC'])) {
135
                    $order_direction = 'ASC';
136
                }
137
 
138
                $surveyTestMapper = SurveyTestMapper::getInstance($this->adapter);
139
                $paginator = $surveyTestMapper->fetchAllOrganizationalClimateDataTableByUserId($currentUser->id, $search, $page, $records_x_page, $order_field, $order_direction);
140
 
141
                $items = [];
142
                $records = $paginator->getCurrentItems();
143
 
144
                foreach ($records as $record)
145
                {
146
                    $link_pdf = '';
147
                    $link_take_a_test = '';
148
 
149
                    if($allowReport && $record['status'] == SurveyTest::STATUS_COMPLETED) {
150
                        $link_pdf = $this->url()->fromRoute('activities-center/organizational-climate/report', ['id' => $record['uuid']]);
151
                        $link_take_a_test = '';
152
 
153
 
154
                    }
155
                    if($allowTakeATest && $record['status'] == SurveyTest::STATUS_PENDING) {
156
                        $link_pdf = '';
157
                        $link_take_a_test = $this->url()->fromRoute('activities-center/organizational-climate/take-a-test', ['id' => $record['uuid']]);
158
                    }
159
 
160
 
161
 
162
 
163
                    switch($record['status'])
164
                    {
165
                        case SurveyTest::STATUS_PENDING :
166
                            $status = 'LABEL_PENDING';
167
                            break;
168
 
169
                        case SurveyTest::STATUS_COMPLETED :
170
                            $status = 'LABEL_COMPLETED';
171
                            break;
172
 
173
                        default :
174
                            $status = 'LABEL_UNKNOWD';
175
                            break;
176
 
177
                    }
178
 
179
                    $dtStart = \DateTime::createFromFormat('Y-m-d', $record['start_date']);
180
                    $dtEnd = \DateTime::createFromFormat('Y-m-d', $record['end_date']);
181
 
182
                    $item = [
183
                        'name' => $record['name'],
184
                        'start_date' => $dtStart->format('d/m/Y'),
185
                        'end_date' => $dtEnd->format('d/m/Y'),
186
                        'status' => $status,
187
                        'actions' => [
188
                            'link_pdf' => $link_pdf,
189
                            'link_take_a_test' => $link_take_a_test,
190
 
191
                        ]
192
                    ];
193
 
194
                    array_push($items, $item);
195
                }
196
 
197
                return new JsonModel([
198
                    'success' => true,
199
                    'data' => [
200
                        'items' => $items,
201
                        'total' => $paginator->getTotalItemCount(),
202
                    ]
203
                ]);
204
            } else {
205
                if($this->cache->hasItem('ORGANIZATIONAL_CLIMATE_RELATIONAL')) {
206
                    $search =  $this->cache->getItem('ORGANIZATIONAL_CLIMATE_RELATIONAL');
207
                    $this->cache->removeItem('ORGANIZATIONAL_CLIMATE_RELATIONAL');
208
                } else {
209
                    $search = '';
210
                }
211
 
212
                $form = new SurveyTakeAnTestForm();
213
 
214
                $this->layout()->setTemplate('layout/layout-backend');
215
                $viewModel = new ViewModel();
216
                $viewModel->setTemplate('leaders-linked/activity-center-organizational-climate/index.phtml');
217
                $viewModel->setVariables([
218
                    'form'      => $form,
219
                    'search'    => $search
220
                ]);
221
                return $viewModel;
222
            }
223
        } else {
224
            return new JsonModel([
225
                'success' => false,
226
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
227
            ]);
228
 
229
        }
230
    }
231
 
232
    public function takeaTestAction()
233
    {
234
        $request = $this->getRequest();
235
        $currentUserPlugin = $this->plugin('currentUserPlugin');
236
        $currentCompany = $currentUserPlugin->getCompany();
237
        $currentUser = $currentUserPlugin->getUser();
238
 
239
        $request = $this->getRequest();
240
        $uuid = $this->params()->fromRoute('id');
241
 
242
        if (!$uuid) {
243
            $data = [
244
                'success' => false,
245
                'data' => 'ERROR_INVALID_PARAMETER'
246
            ];
247
 
248
            return new JsonModel($data);
249
        }
250
 
251
        $surveyTestMapper = SurveyTestMapper::getInstance($this->adapter);
252
        $surveyTest = $surveyTestMapper->fetchOneByUuid($uuid);
253
        if (! $surveyTest) {
254
            $data = [
255
                'success' => false,
256
                'data' => 'ERROR_RECORD_NOT_FOUND'
257
            ];
258
 
259
            return new JsonModel($data);
260
        }
261
 
262
 
263
        if ( $surveyTest->company_id != $currentCompany->id) {
264
            return new JsonModel([
265
                'success' => false,
266
                'data' => 'ERROR_UNAUTHORIZED'
267
            ]);
268
        }
269
 
270
        if ($surveyTest->user_id != $currentUser->id ) {
271
            return new JsonModel([
272
                'success' => false,
273
                'data' => 'ERROR_UNAUTHORIZED'
274
            ]);
275
        }
276
 
277
        if($surveyTest->status == SurveyTest::STATUS_COMPLETED) {
278
            return new JsonModel([
279
                'success' => false,
280
                'data' =>   'ERROR_SURVEY_ALREADY_COMPLETED'
281
            ]);
282
 
283
        }
284
 
285
 
286
 
287
        $request = $this->getRequest();
288
        if ($request->isGet()) {
289
 
290
            $content = json_decode($surveyTest->content);
291
 
292
            return new JsonModel([
293
                'success' => true,
294
                'data' =>   [
295
                    'name' => $content->name,
296
                    'text' => $content->text,
297
                    'content' => $content->content
298
                ]
299
            ]);
300
 
301
 
302
 
303
            return ;
304
        }
305
        else if ( $request->isPost()) {
306
 
307
            $surveyTestContent = json_decode($surveyTest->content, true);
308
 
309
            $max_sections = count($surveyTestContent['content']);
310
            for($i = 0; $i < $max_sections; $i++)
311
            {
312
                $max_questions = count($surveyTestContent['content'][$i]['questions']);
313
                for($j = 0; $j < $max_questions; $j++)
314
                {
315
 
316
                    if($surveyTestContent['content'][$i]['questions'][$j]['type'] == 'open') {
317
                        $surveyTestContent['content'][$i]['questions'][$j]['answer'] = Functions::sanitizeFilterString( $this->params()->fromPost($surveyTestContent['content'][$i]['questions'][$j]['slug_question'],  ''));
318
                    }
319
                    else if($surveyTestContent['content'][$i]['questions'][$j]['type'] == 'simple') {
320
                        $val = Functions::sanitizeFilterString( $this->params()->fromPost($surveyTestContent['content'][$i]['questions'][$j]['slug_question'],  ''));
321
 
322
                        $max_options = count($surveyTestContent['content'][$i]['questions'][$j]['options']);
323
                        for($x = 0; $x < $max_options; $x++)
324
                        {
325
                            $surveyTestContent['content'][$i]['questions'][$j]['options'][$x]['checked'] = $surveyTestContent['content'][$i]['questions'][$j]['options'][$x]['slug_option'] == $val ? 1 : 0;
326
                        }
327
 
328
                    } else if($surveyTestContent['content'][$i]['questions'][$j]['type'] == 'multiple') {
329
                        $val = $this->params()->fromPost($surveyTestContent['content'][$i]['questions'][$j]['slug_question']);
330
                        $val = is_array($val) ? $val : [];
331
 
332
                        $max_options = count($surveyTestContent['content'][$i]['questions'][$j]['options']);
333
                        for($x = 0; $x < $max_options; $x++)
334
                        {
335
                            $surveyTestContent['content'][$i]['questions'][$j]['options'][$x]['checked'] = in_array($surveyTestContent['content'][$i]['questions'][$j]['options'][$x]['slug_option'], $val) ? 1 : 0;
336
                        }
337
 
338
                    } else if($surveyTestContent['content'][$i]['questions'][$j]['type'] == 'range1to5') {
339
                        $surveyTestContent['content'][$i]['questions'][$j]['answer'] = intval($this->params()->fromPost($surveyTestContent['content'][$i]['questions'][$j]['slug_question'],  '0'), 10);
340
                    }
341
                }
342
            }
343
 
344
 
345
            $surveyTest->content = json_encode($surveyTestContent);
346
            $surveyTest->status = SurveyTest::STATUS_COMPLETED;
347
 
348
            if($surveyTestMapper->update($surveyTest)) {
349
 
350
 
351
                return new JsonModel([
352
                    'success' => true,
353
                    'data' => 'LABEL_SURVEY_TEST_COMPLETED'
354
                ]);
355
            } else {
356
                return new JsonModel([
357
                    'success' => false,
358
                    'data' => $surveyTestMapper->getError()
359
                ]);
360
 
361
            }
362
 
363
        } else {
364
 
365
 
366
            return new JsonModel([
367
                'success' => false,
368
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
369
            ]);
370
        }
371
    }
372
 
373
    public function reportAction()
374
    {
375
        $request = $this->getRequest();
376
        $currentUserPlugin = $this->plugin('currentUserPlugin');
377
        $currentCompany = $currentUserPlugin->getCompany();
378
        $currentUser = $currentUserPlugin->getUser();
379
 
380
        $request = $this->getRequest();
381
        $uuid = $this->params()->fromRoute('id');
382
 
383
        if (!$uuid) {
384
            $data = [
385
                'success' => false,
386
                'data' => 'ERROR_INVALID_PARAMETER'
387
            ];
388
 
389
            return new JsonModel($data);
390
        }
391
 
392
        $surveyTestMapper = SurveyTestMapper::getInstance($this->adapter);
393
        $surveyTest = $surveyTestMapper->fetchOneByUuid($uuid);
394
        if (! $surveyTest) {
395
            $data = [
396
                'success' => false,
397
                'data' => 'ERROR_RECORD_NOT_FOUND'
398
            ];
399
 
400
            return new JsonModel($data);
401
        }
402
 
403
 
404
        if ( $surveyTest->company_id != $currentCompany->id) {
405
            return new JsonModel([
406
                'success' => false,
407
                'data' => 'ERROR_UNAUTHORIZED'
408
            ]);
409
        }
410
 
411
        if ($surveyTest->user_id != $currentUser->id ) {
412
            return new JsonModel([
413
                'success' => false,
414
                'data' => 'ERROR_UNAUTHORIZED'
415
            ]);
416
        }
417
 
418
        if($surveyTest->status != SurveyTest::STATUS_COMPLETED) {
419
            return new JsonModel([
420
                'success' => false,
421
                'data' =>   'ERROR_SURVEY_IS_NOT_COMPLETED'
422
            ]);
423
 
424
        }
425
 
426
        $request = $this->getRequest();
427
        if ($request->isGet()) {
428
 
429
            //Generate New PDF
430
            $pdf = new UniqueSurveyReport();
431
            $pdf->translator = $this->translator;
432
 
433
            $target_path = $this->config['leaderslinked.fullpath.company'] . DIRECTORY_SEPARATOR . $currentCompany->uuid;
434
            $header = $currentCompany->header ? $target_path . DIRECTORY_SEPARATOR . $currentCompany->header : '';
435
            if (empty($header) || !file_exists($header)) {
436
                $header = $this->config['leaderslinked.images_default.company_pdf_header'];
437
            }
438
 
439
            $footer = $currentCompany->footer ? $target_path . DIRECTORY_SEPARATOR . $currentCompany->footer : '';
440
            if (empty($footer) || !file_exists($footer)) {
441
                $footer = $this->config['leaderslinked.images_default.company_pdf_footer'];
442
            }
443
 
444
            $pdf->header = $header;
445
            $pdf->footer = $footer;
446
 
447
 
448
 
449
 
450
            $userMapper = UserMapper::getInstance($this->adapter);
451
            $user = $userMapper->fetchOne($surveyTest->user_id);
452
 
453
            $content = json_decode($surveyTest->content, true);
454
 
455
            $dt = \DateTime::createFromFormat('Y-m-d H:i:s', $surveyTest->update_on);
456
 
457
            $pdf->SetTitle(Functions::utf8_decode($content['name']));
458
            $pdf->formName = Functions::utf8_decode($content['name']);
459
            $pdf->formText = Functions::utf8_decode($content['text']);
460
            $pdf->formDate = $dt->format('d/m/Y H:i a');
461
            $pdf->userName = Functions::utf8_decode($user->first_name . ' ' . $user->last_name) . ' (' . $user->email . ') ';
462
 
463
 
464
 
465
            $pdf->SetMargins(10, 0, 10);
466
 
467
            $pdf->AliasNbPages();
468
            $pdf->AddPage();
469
 
470
            /*
471
            echo '<pre>';
472
            print_r($content);
473
            echo '</pre>';
474
            exit;
475
            */
476
 
477
            foreach($content['content'] as $section)
478
            {
479
                if($pdf->GetY() > 250) {
480
                    $pdf->AddPage();
481
                }
482
 
483
                $pdf->addSection($section['name'], $section['text']);
484
 
485
 
486
 
487
                foreach($section['questions'] as $question)
488
                {
489
                    switch($question['type']) {
490
                        case 'range1to5' :
491
                            $pdf->questionAndAnswer($question['text'], $question['answer']);
492
                            break;
493
 
494
                        case 'multiple' :
495
                        case 'simple' :
496
                            $values = [];
497
 
498
                            foreach($question['options'] as $option)
499
                            {
500
                                if($option['checked']) {
501
                                    array_push($values, $option['text']);
502
                                }
503
                            }
504
 
505
                            $pdf->questionAndAnswers($question['text'], $values);
506
                            break;
507
 
508
                    }
509
                }
510
 
511
            }
512
 
513
 
514
            $content = $pdf->Output('S');
515
 
516
            $response = new Response();
517
            $response->setStatusCode(200);
518
            $response->setContent($content);
519
 
520
 
521
 
522
            $headers = $response->getHeaders();
523
            $headers->clearHeaders();
524
 
525
            $headers->addHeaderLine('Content-Description: File Transfer');
526
            $headers->addHeaderLine('Content-Type: application/pdf');
527
            //$headers->addHeaderLine('Content-Disposition: attachment; filename=' . $filename);
528
            $headers->addHeaderLine('Content-Transfer-Encoding: binary');
529
            $headers->addHeaderLine('Expires: 0');
530
            $headers->addHeaderLine('Cache-Control: must-revalidate');
531
            $headers->addHeaderLine('Pragma: public');
532
            return $response;
533
 
534
        } else {
535
 
536
 
537
            return new JsonModel([
538
                'success' => false,
539
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
540
            ]);
541
        }
542
    }
543
 
544
 
545
 
546
 
547
 
548
}