Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 7171 | Rev 7174 | Ir a la última revisión | | Comparar con el anterior | Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
4113 efrain 1
<?php
2
 
3
declare(strict_types=1);
4
 
5
namespace LeadersLinked\Controller;
6
 
7
use Laminas\Db\Adapter\AdapterInterface;
6849 efrain 8
 
4113 efrain 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\UserMapper;
4141 efrain 14
use LeadersLinked\Mapper\CalendarEventMapper;
15
use LeadersLinked\Mapper\ZoomMeetingMapper;
16
use LeadersLinked\Model\CalendarEvent;
17
use LeadersLinked\Library\Functions;
4656 efrain 18
use LeadersLinked\Mapper\PerformanceEvaluationTestMapper;
4300 efrain 19
use LeadersLinked\Mapper\PerformanceEvaluationFormMapper;
4656 efrain 20
use LeadersLinked\Model\PerformanceEvaluationTest;
4300 efrain 21
use LeadersLinked\Mapper\JobDescriptionMapper;
22
use LeadersLinked\Mapper\CompanyUserMapper;
23
use LeadersLinked\Model\CompanyUser;
4398 efrain 24
use LeadersLinked\Mapper\CompanyMapper;
5050 efrain 25
use LeadersLinked\Mapper\RecruitmentSelectionInterviewMapper;
26
use LeadersLinked\Mapper\RecruitmentSelectionCandidateMapper;
27
use LeadersLinked\Mapper\RecruitmentSelectionVacancyMapper;
28
use LeadersLinked\Model\RecruitmentSelectionInterview;
6866 efrain 29
use Laminas\Mvc\I18n\Translator;
30
use LeadersLinked\Cache\CacheInterface;
4113 efrain 31
 
4131 efrain 32
 
4113 efrain 33
class CalendarController extends AbstractActionController
34
{
35
    /**
36
     *
6866 efrain 37
     * @var \Laminas\Db\Adapter\AdapterInterface
4113 efrain 38
     */
39
    private $adapter;
6866 efrain 40
 
4113 efrain 41
    /**
42
     *
6866 efrain 43
     * @var \LeadersLinked\Cache\CacheInterface
4113 efrain 44
     */
6866 efrain 45
    private $cache;
46
 
47
 
48
    /**
49
     *
50
     * @var \Laminas\Log\LoggerInterface
51
     */
4113 efrain 52
    private $logger;
6866 efrain 53
 
4113 efrain 54
    /**
55
     *
56
     * @var array
57
     */
58
    private $config;
6866 efrain 59
 
60
 
4113 efrain 61
    /**
62
     *
6866 efrain 63
     * @var \Laminas\Mvc\I18n\Translator
64
     */
65
    private $translator;
66
 
67
 
68
    /**
69
     *
70
     * @param \Laminas\Db\Adapter\AdapterInterface $adapter
71
     * @param \LeadersLinked\Cache\CacheInterface $cache
72
     * @param \Laminas\Log\LoggerInterface LoggerInterface $logger
4113 efrain 73
     * @param array $config
6866 efrain 74
     * @param \Laminas\Mvc\I18n\Translator $translator
4113 efrain 75
     */
6866 efrain 76
    public function __construct($adapter, $cache, $logger, $config, $translator)
4113 efrain 77
    {
78
        $this->adapter      = $adapter;
6866 efrain 79
        $this->cache        = $cache;
4113 efrain 80
        $this->logger       = $logger;
81
        $this->config       = $config;
6866 efrain 82
        $this->translator   = $translator;
4113 efrain 83
    }
84
 
85
 
86
 
87
    public function indexAction()
88
    {
4131 efrain 89
        $currentUserPlugin = $this->plugin('currentUserPlugin');
90
        $currentUser = $currentUserPlugin->getUser();
91
 
4113 efrain 92
 
93
 
94
        $this->layout()->setTemplate('layout/layout.phtml');
95
        $viewModel = new ViewModel();
96
        $viewModel->setTemplate('leaders-linked/calendar/index.phtml');
4131 efrain 97
 
4113 efrain 98
        return $viewModel;
99
    }
100
 
101
 
102
 
103
 
104
    public function eventsAction()
105
    {
106
 
4141 efrain 107
        $request = $this->getRequest();
108
        if($request->isGet()) {
109
 
110
            $currentUserPlugin = $this->plugin('currentUserPlugin');
111
            $currentUser = $currentUserPlugin->getUser();
112
 
4155 efrain 113
            $currentNetworkPlugin = $this->plugin('currentNetworkPlugin');
114
            $currentNetwork = $currentNetworkPlugin->getNetwork();
4141 efrain 115
 
4155 efrain 116
 
117
 
4141 efrain 118
            $start  = $this->params()->fromQuery('start');
119
            $end    = $this->params()->fromQuery('end');
120
 
121
            if(!empty($start) && !empty($end)) {
122
 
123
                $dtStart = \DateTime::createFromFormat('Y-m-d', $start);
124
                $dtEnd = \DateTime::createFromFormat('Y-m-d', $end);
125
            } else {
126
                $dtStart = null;
127
                $dtEnd = null;
128
            }
129
 
130
            if(!$dtStart || !$dtEnd) {
131
              $t = time();
132
              $year = intval(date('Y', $t), 10);
133
              $month = intval(date('m', $t), 10);
134
              $last_day = intval(date('t', $t), 10);
135
 
136
              $start = mktime(0, 0, 0, $month, 1, $year);
137
              $start = date('Y-m-d H:i:s');
138
 
139
              $start = mktime(23, 56, 59, $month, $last_day, $year);
140
              $end = date('Y-m-d H:i:s');
141
 
142
            } else {
143
                $dtStart->setTime(0, 0, 0);
144
                $start = $dtStart->format('Y-m-d H:i:s');
145
 
146
                $dtEnd->setTime(23, 59, 59);
147
                $end  = $dtEnd->format('Y-m-d H:i:s');
148
            }
149
 
150
 
151
            $events = [];
4113 efrain 152
 
4141 efrain 153
 
4155 efrain 154
 
155
            //3 días
4156 efrain 156
            $expirePeriod = 86400 * 3;
4155 efrain 157
            $t1 = time();
158
 
4300 efrain 159
 
4398 efrain 160
            $companies = [];
161
            $companyMapper = CompanyMapper::getInstance($this->adapter);
162
 
163
            $companyUsers = [];
4300 efrain 164
            $companyUserMapper = CompanyUserMapper::getInstance($this->adapter);
165
            $records = $companyUserMapper->fetchAllByUserId($currentUser->id);
166
 
167
            foreach($records as $record) {
168
                $companyUsers[$record->company_id] = $record->backend == CompanyUser::BACKEND_YES;
169
             }
7168 efrain 170
 
4300 efrain 171
 
172
 
7169 efrain 173
 
4398 efrain 174
 
4141 efrain 175
 
176
            $zoomMeetingMapper = ZoomMeetingMapper::getInstance($this->adapter);
5050 efrain 177
            $recruitmentSelectionCandidateMapper = RecruitmentSelectionCandidateMapper::getInstance($this->adapter);
178
            $recruitmentSelectionVacancyMapper = RecruitmentSelectionVacancyMapper::getInstance($this->adapter);
179
            $recruitmentSelectionInterviewMapper = RecruitmentSelectionInterviewMapper::getInstance($this->adapter);
4656 efrain 180
            $performanceEvaluationTestMapper = PerformanceEvaluationTestMapper::getInstance($this->adapter);
4300 efrain 181
            $performanceEvaluationFormMapper = PerformanceEvaluationFormMapper::getInstance($this->adapter);
182
            $jobDescriptionMapper = JobDescriptionMapper::getInstance($this->adapter);
183
            $userMapper = UserMapper::getInstance($this->adapter);
4141 efrain 184
 
185
            $calendarEventMapper = CalendarEventMapper::getInstance($this->adapter);
186
            $records = $calendarEventMapper->fetchAllByUserIdAndStartTimeAndEndTime($currentUser->id, $start, $end);
187
            foreach($records as $record)
188
            {
189
                switch($record->type)
190
                {
5050 efrain 191
                    case CalendarEvent::TYPE_RECRUITMENT_SELECTION_INTERVIEW  :
192
                        $backgroundColor = $currentNetwork->css_calendar_recruitment_and_selection_bg_color ;
193
                        $textColor = $currentNetwork->css_calendar_recruitment_and_selection_text_color;
194
 
195
 
196
                        $recruitmentSelectionInterview = $recruitmentSelectionInterviewMapper->fetchOne($record->relational_id);
197
                        if($recruitmentSelectionInterview) {
198
 
199
                            $recruitmentSelectionVacancy = $recruitmentSelectionVacancyMapper->fetchOne($recruitmentSelectionInterview->vacancy_id);
200
 
201
 
202
 
203
                            $recruitmentSelectionCandidate = $recruitmentSelectionCandidateMapper->fetchOne($recruitmentSelectionInterview->candidate_id);
204
                            if($recruitmentSelectionVacancy && $recruitmentSelectionCandidate) {
205
                                $jobDescription = $jobDescriptionMapper->fetchOne($recruitmentSelectionVacancy->job_description_id);
206
                                if($jobDescription) {
207
                                    $hasLink = false;
208
                                    if(isset($companyUsers[$currentUser->id])) {
209
                                        if($companyUsers[$currentUser->id]) {
210
                                            $hasLink = true;
211
                                        }
212
                                    }
213
 
214
                                    if($hasLink) {
215
 
216
                                        if(!isset($companies[$recruitmentSelectionInterview->company_id])) {
217
                                            $company  = $companyMapper->fetchOne($recruitmentSelectionInterview->company_id);
218
 
219
                                            $companies[ $company->id ]  = $company;
220
                                        } else {
221
                                            $company = $companies[ $recruitmentSelectionInterview->company_id ];
222
                                        }
223
 
224
 
225
                                        $href = $this->url()->fromRoute('backend/signin-company', [
226
                                            'id' => $company->uuid,
227
                                            'relational' => $recruitmentSelectionInterview->uuid,
228
                                            'type' => CalendarEvent::TYPE_RECRUITMENT_SELECTION_INTERVIEW
229
                                        ]);
230
 
231
 
232
                                        $agenda = '<a href="'.$href.'" class="goto-backend"><br>';
7166 efrain 233
                                    } else {
234
                                        $agenda = '';
5050 efrain 235
                                    }
236
 
237
                                    $agenda .= " LABEL_RECRUITMENT_SELECTION_JOB_DESCRIPTION : " . $jobDescription->name . "<br>";
238
                                    switch($recruitmentSelectionInterview->type)
239
                                    {
240
                                        case RecruitmentSelectionInterview::TYPE_BOSS :
241
                                            $agenda .= " LABEL_RECRUITMENT_SELECTION_TYPE : LABEL_RECRUITMENT_SELECTION_TYPE_BOSS_INTERVIEW <br>";
242
                                            break;
243
 
244
                                        case RecruitmentSelectionInterview::TYPE_HUMAN_RESOURCE :
245
                                            $agenda .= " LABEL_RECRUITMENT_SELECTION_TYPE : LABEL_RECRUITMENT_SELECTION_TYPE_HUMAN_RESOURCE <br>";
246
                                            break;
247
                                    }
248
 
249
                                    $agenda .= " LABEL_RECRUITMENT_SELECTION_CANDIDATE : " . trim($recruitmentSelectionCandidate->first_name . ' ' . $recruitmentSelectionCandidate->last_name) . " <br>";
250
 
251
 
252
 
253
                                    $dtStart = \DateTime::createFromFormat('Y-m-d', $recruitmentSelectionInterview->last_date);
254
                                    $agenda .= " LABEL_PERFORMANCE_EVALUATION_LAST_DATE : " . $dtStart->format('Y-m-d') . "<br>" ;
255
 
256
                                    if($hasLink) {
257
                                        $agenda .= "</a><br>";
258
                                    }
259
 
260
 
261
 
262
 
263
                                    array_push($events, [
264
                                        'id'                => $recruitmentSelectionInterview->uuid,
265
                                        'title'             => $recruitmentSelectionVacancy->name,
266
                                        'agenda'            => $agenda,
267
                                        'start'             => $dtStart->format('Y-m-d'),
268
                                        'url'               => '',
269
                                        'backgroundColor'   => $backgroundColor,
270
                                        'textColor'         => $textColor,
271
                                        'allDay'            => true,
272
                                        'type'              => 'task',
273
                                    ]);
274
                                }
275
                            }
276
                        }
277
 
278
 
279
                        break;
4300 efrain 280
 
281
                    case CalendarEvent::TYPE_PERFORMANCE_EVALUATION :
4696 efrain 282
 
283
 
4300 efrain 284
                        $backgroundColor = $currentNetwork->css_calendar_performance_evaluation_bg_color ;
285
                        $textColor = $currentNetwork->css_calendar_performance_evaluation_text_color;
286
 
287
 
4656 efrain 288
                        $performanceEvaluationTest = $performanceEvaluationTestMapper->fetchOne($record->relational_id);
289
                        if($performanceEvaluationTest) {
4300 efrain 290
 
7170 efrain 291
 
292
 
4656 efrain 293
                            $performanceEvaluationForm = $performanceEvaluationFormMapper->fetchOne($performanceEvaluationTest->form_id);
4398 efrain 294
                            if($performanceEvaluationForm) {
7172 efrain 295
                                $jobDescription = $jobDescriptionMapper->fetchOne($performanceEvaluationForm->job_description_id);
296
                                if($jobDescription) {
297
                                    if($performanceEvaluationTest->supervisor_id) {
298
                                        $supervisor = $userMapper->fetchOne($performanceEvaluationTest->supervisor_id);
299
                                    } else {
300
                                        $supervisor = '';
301
                                    }
302
 
303
                                    if($performanceEvaluationTest->employee_id) {
304
                                        $employee = $userMapper->fetchOne($performanceEvaluationTest->employee_id);
305
                                    } else {
306
                                        $employee = '';
307
                                    }
4300 efrain 308
 
7172 efrain 309
 
310
                                    $hasLink = false;
311
                                    if(!empty($companyUsers[$performanceEvaluationTest->company_id])) {
312
                                        $hasLink = true;
313
 
314
                                    }
4300 efrain 315
 
7172 efrain 316
                                    switch ($performanceEvaluationTest->type)
317
                                    {
318
                                        case PerformanceEvaluationTest::TYPE_SUPERVISOR :
319
                                        case PerformanceEvaluationTest::TYPE_BOTH  :
320
                                            if($performanceEvaluationTest->supervisor_id != $currentUser->id) {
321
                                                $hasLink = false;
322
                                            }
323
                                            break;
324
 
325
                                        case  PerformanceEvaluationTest::TYPE_EMPLOYEE  :
326
                                            if($performanceEvaluationTest->employee_id != $currentUser->id) {
327
                                                $hasLink = false;
328
                                            }
329
                                            break;
330
 
331
                                        default :
7170 efrain 332
                                            $hasLink = false;
7172 efrain 333
                                            break;
334
                                    }
7170 efrain 335
 
336
 
4398 efrain 337
 
338
                                    if($hasLink) {
339
 
4656 efrain 340
                                        if(!isset($companies[$performanceEvaluationTest->company_id])) {
341
                                            $company  = $companyMapper->fetchOne($performanceEvaluationTest->company_id);
4398 efrain 342
 
343
                                            $companies[ $company->id ]  = $company;
344
                                        } else {
4656 efrain 345
                                            $company = $companies[ $performanceEvaluationTest->company_id ];
4398 efrain 346
                                        }
347
 
348
 
349
                                        $href = $this->url()->fromRoute('backend/signin-company', [
350
                                            'id' => $company->uuid,
4656 efrain 351
                                            'relational' => $performanceEvaluationTest->uuid,
4398 efrain 352
                                            'type' => CalendarEvent::TYPE_PERFORMANCE_EVALUATION
353
                                        ]);
354
 
355
 
356
                                        $agenda = '<a href="'.$href.'" class="goto-backend"><br>';
7166 efrain 357
                                    } else {
358
                                        $agenda = '';
4398 efrain 359
                                    }
360
 
361
                                    $agenda .= " LABEL_PERFORMANCE_EVALUATION_FORM_NAME : " . $performanceEvaluationForm->name . "<br>";
362
                                    $agenda .= " LABEL_PERFORMANCE_EVALUATION_JOB_DESCRIPTION : " . $jobDescription->name . "<br>";
4300 efrain 363
 
4656 efrain 364
                                    switch($performanceEvaluationTest->type)
4398 efrain 365
                                    {
4656 efrain 366
                                        case PerformanceEvaluationTest::TYPE_BOTH :
4398 efrain 367
                                            $agenda .= " LABEL_PERFORMANCE_EVALUATION_TYPE : LABEL_PERFORMANCE_EVALUATION_TYPE_BOTH <br>";
368
                                            break;
369
 
4656 efrain 370
                                        case PerformanceEvaluationTest::TYPE_SUPERVISOR :
4398 efrain 371
                                            $agenda .= " LABEL_PERFORMANCE_EVALUATION_TYPE : LABEL_PERFORMANCE_EVALUATION_TYPE_SUPERVISOR <br>";
372
                                            break;
373
 
4656 efrain 374
                                        case PerformanceEvaluationTest::TYPE_EMPLOYEE :
4398 efrain 375
                                            $agenda .= " LABEL_PERFORMANCE_EVALUATION_TYPE : LABEL_PERFORMANCE_EVALUATION_TYPE_EMPLOYEE <br>";
376
                                            break;
377
 
378
 
379
                                    }
380
 
381
                                    if($supervisor) {
382
                                        $agenda .= " LABEL_PERFORMANCE_EVALUATION_SUPERVISOR : " . trim($supervisor->first_name . ' ' . $supervisor->last_name) . " <br>";
383
 
384
                                    }
385
                                    if($employee) {
386
                                        $agenda .= " LABEL_PERFORMANCE_EVALUATION_EMPLOYEE : " . trim($employee->first_name . ' ' . $employee->last_name) . " <br>";
387
 
388
                                    }
389
 
4656 efrain 390
                                    $dtStart = \DateTime::createFromFormat('Y-m-d', $performanceEvaluationTest->last_date);
4398 efrain 391
                                    $agenda .= " LABEL_PERFORMANCE_EVALUATION_LAST_DATE : " . $dtStart->format('Y-m-d') . "<br>" ;
392
 
393
                                    if($hasLink) {
394
                                        $agenda .= "</a><br>";
395
                                    }
396
 
4632 efrain 397
 
398
 
4398 efrain 399
 
400
                                    array_push($events, [
4656 efrain 401
                                        'id'                => $performanceEvaluationTest->uuid,
4398 efrain 402
                                        'title'             =>  $performanceEvaluationForm->name,
403
                                        'agenda'            => $agenda,
4632 efrain 404
                                        'start'             => $dtStart->format('Y-m-d'),
4398 efrain 405
                                        'url'               => '',
406
                                        'backgroundColor'   => $backgroundColor,
407
                                        'textColor'         => $textColor,
4632 efrain 408
                                        'allDay'            => true,
4700 efrain 409
                                        'type'              => 'task',
4398 efrain 410
                                    ]);
7172 efrain 411
                                }
4300 efrain 412
                            }
413
 
414
                        }
415
 
416
 
417
 
418
 
419
 
420
                        break;
421
 
4141 efrain 422
                    case CalendarEvent::TYPE_ZOOM :
423
                        $zoomMeeting = $zoomMeetingMapper->fetchOne($record->relational_id);
424
                        if($zoomMeeting) {
425
 
4155 efrain 426
                            $backgroundColor = $currentNetwork->css_calendar_zoom_bg_color ;
427
                            $textColor = $currentNetwork->css_calendar_zoom_text_color;
4141 efrain 428
 
4155 efrain 429
                            $dtStart = \DateTime::createFromFormat('Y-m-d H:i:s', $zoomMeeting->start_time);
430
                            $t2 = $dtStart->getTimestamp();
431
 
432
                            if($t2 > $t1) {
433
 
434
                                $t3 = $t1 + $expirePeriod;
435
                                if($t3 > $t2) {
436
                                    $backgroundColor = $currentNetwork->css_calendar_expire_bg_color;
437
                                    $textColor = $currentNetwork->css_calendar_expire_text_color;
438
                                }
439
 
440
                            }
441
 
442
 
443
 
4141 efrain 444
                            if($currentUser->timezone && $currentUser->timezone != $zoomMeeting->timezone) {
445
 
446
                                $start =  str_replace(' ', 'T', Functions::convertDateTimeBetweenTimeZones($zoomMeeting->start_time, $zoomMeeting->timezone, $currentUser->timezone));
447
                                $end =  str_replace(' ', 'T', Functions::convertDateTimeBetweenTimeZones($zoomMeeting->end_time, $zoomMeeting->timezone, $currentUser->timezone));
448
 
449
 
450
 
451
 
452
 
453
                            } else {
454
                                $start = str_replace(' ', 'T', $zoomMeeting->start_time);
455
                                $end = str_replace(' ', 'T', $zoomMeeting->end_time);
456
                            }
457
 
458
 
4155 efrain 459
 
460
 
461
 
462
 
4141 efrain 463
                            $agenda = "<a href=\"{$zoomMeeting->join_url}\" target=\"_blank\">" .  $zoomMeeting->agenda . "<br>" .
464
                                " LABEL_ZOOM_MEETING_START_DATE : " . $dtStart->format('Y-m-d') . "<br>" .
465
                                " LABEL_ZOOM_MEETING_START_TIME : " . $dtStart->format('H:i a') . "<br>" .
466
                                " LABEL_ZOOM_MEETING_TIMEZONE : " . $zoomMeeting->timezone . "<br>" .
467
                                " LABEL_ZOOM_MEETING_TITLE :  " . $zoomMeeting->topic  . "<br>" .
468
                                " LABEL_ZOOM_MEETING_URL : " . $zoomMeeting->join_url . "<br>" .
469
                                " LABEL_ZOOM_MEETING_PASSWORD : " . $zoomMeeting->password . "<br>" .
470
                                "</a>";
471
 
472
                            array_push($events, [
473
                                'id'                => $zoomMeeting->id,
4148 efrain 474
                                'title'             => $zoomMeeting->topic,
4141 efrain 475
                                'agenda'            => $agenda,
476
                                'start'             => $start,
477
                                'end'               => $end,
478
                                'url'               => $zoomMeeting->join_url,
4155 efrain 479
                                'backgroundColor'   => $backgroundColor,
480
                                'textColor'         => $textColor,
4700 efrain 481
                                'type'              => 'event',
4141 efrain 482
                            ]);
483
                        }
484
                        break;
485
 
486
 
487
                }
488
 
489
 
490
 
491
            }
492
 
493
 
494
 
495
 
496
 
497
 
498
 
499
 
4113 efrain 500
 
501
 
4141 efrain 502
            return new JsonModel($events);
4113 efrain 503
 
4141 efrain 504
        } else {
505
            $response = [
506
                'success' => false,
507
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
508
            ];
509
        }
4113 efrain 510
 
4141 efrain 511
        return new JsonModel($response);
4113 efrain 512
    }
513
 
514
 
515
 
516
 
517
}