Proyectos de Subversion LeadersLinked - Backend

Rev

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

Rev Autor Línea Nro. Línea
15461 efrain 1
<?php
2
 
3
declare(strict_types=1);
4
 
5
namespace LeadersLinked\Controller;
6
 
7
use Laminas\Db\Adapter\AdapterInterface;
16768 efrain 8
 
15461 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\Library\Functions;
14
use LeadersLinked\Mapper\RecruitmentSelectionCandidateMapper;
15
use LeadersLinked\Model\RecruitmentSelectionCandidate;
16
use LeadersLinked\Mapper\RecruitmentSelectionVacancyMapper;
17
use LeadersLinked\Mapper\UserMapper;
18
use Laminas\Hydrator\ArraySerializableHydrator;
19
use Laminas\Db\ResultSet\HydratingResultSet;
20
use LeadersLinked\Mapper\QueryMapper;
21
use Laminas\Paginator\Adapter\DbSelect;
22
use Laminas\Paginator\Paginator;
23
use LeadersLinked\Form\RecruitmentSelection\RecruitmentSelectionApplicationVacancyForm;
24
use LeadersLinked\Mapper\RecruitmentSelectionApplicationMapper;
25
use LeadersLinked\Model\RecruitmentSelectionApplication;
26
use LeadersLinked\Form\RecruitmentSelection\RecruitmentSelectionApplicationCandidateForm;
27
use LeadersLinked\Mapper\LocationMapper;
28
use LeadersLinked\Mapper\JobCategoryMapper;
29
use LeadersLinked\Mapper\IndustryMapper;
30
use LeadersLinked\Mapper\JobDescriptionMapper;
31
use LeadersLinked\Mapper\RecruitmentSelectionFileMapper;
32
use LeadersLinked\Mapper\RecruitmentSelectionInterviewMapper;
33
use LeadersLinked\Model\RecruitmentSelectionInterview;
34
use LeadersLinked\Form\RecruitmentSelection\RecruitmentSelectionApplicationFileForm;
35
use LeadersLinked\Form\RecruitmentSelection\RecruitmentSelectionApplicationPointsAndCommentForm;
36
use LeadersLinked\Form\RecruitmentSelection\RecruitmentSelectionApplicationLevelForm;
37
use LeadersLinked\Form\RecruitmentSelection\RecruitmentSelectionApplicationStatusForm;
38
use LeadersLinked\Form\RecruitmentSelection\RecruitmentSelectionApplicationInterviewForm;
39
 
40
class RecruitmentSelectionApplicationController extends AbstractActionController{
41
 
42
    /**
43
     *
44
     * @var AdapterInterface
45
     */
46
    private $adapter;
16768 efrain 47
 
15461 efrain 48
    /**
49
     *
50
     * @var  LoggerInterface
51
     */
52
    private $logger;
16768 efrain 53
 
15461 efrain 54
    /**
55
     *
56
     * @var array
57
     */
58
    private $config;
16768 efrain 59
 
15461 efrain 60
    /**
61
     *
62
     * @param AdapterInterface $adapter
63
     * @param LoggerInterface $logger
64
     * @param array $config
65
     */
16768 efrain 66
    public function __construct($adapter, $logger, $config)
67
    {
15461 efrain 68
        $this->adapter = $adapter;
69
        $this->logger = $logger;
70
        $this->config = $config;
71
    }
72
 
73
    public function indexAction() {
74
        $currentUserPlugin = $this->plugin('currentUserPlugin');
75
        $currentUser = $currentUserPlugin->getUser();
76
        $currentCompany = $currentUserPlugin->getCompany();
77
 
78
        $request = $this->getRequest();
79
 
80
        if ($request->isGet()) {
81
 
82
            $headers = $request->getHeaders();
83
 
84
            $isJson = false;
85
            if ($headers->has('Accept')) {
86
                $accept = $headers->get('Accept');
87
 
88
                $prioritized = $accept->getPrioritized();
89
 
90
                foreach ($prioritized as $key => $value) {
91
                    $raw = trim($value->getRaw());
92
 
93
                    if (!$isJson) {
94
                        $isJson = strpos($raw, 'json');
95
                    }
96
                }
97
            }
98
 
99
           // $isJson = true;
100
            if ($isJson) {
101
 
102
                $vacancy_uuid = $this->params()->fromQuery('vacancy_id');
103
 
104
                $data = [
105
                    'items' => [],
106
                    'total' => 0,
107
                    'link_add' => '',
108
                ];
109
 
110
 
111
                if (!$vacancy_uuid) {
112
                    return new JsonModel([
113
                        'success' => true,
114
                        'data' => $data
115
                    ]);
116
                }
117
 
118
 
119
                $vacancyMapper = RecruitmentSelectionVacancyMapper::getInstance($this->adapter);
120
                $vacancy = $vacancyMapper->fetchOneByUuid($vacancy_uuid);
121
                if (! $vacancy) {
122
                    return new JsonModel([
123
                        'success' => true,
124
                        'data' => 'ERROR_VACANCY_NOT_FOUND'
125
                    ]);
126
                }
127
 
128
                if ( $vacancy->company_id != $currentCompany->id) {
129
                    return new JsonModel([
130
                        'success' => true,
131
                        'data' => 'ERROR_UNAUTHORIZED'
132
                    ]);
133
                }
134
 
135
 
136
                $search = $this->params()->fromQuery('search');
16766 efrain 137
                $search = empty($search) ? '' : Functions::sanitizeFilterString($search);
15461 efrain 138
 
139
                $start = intval($this->params()->fromQuery('start', 0), 10);
140
                $records_x_page = intval($this->params()->fromQuery('length', 10), 10);
141
                $page =  intval($start / $records_x_page);
142
                $page++;
143
 
144
                $order = $this->params()->fromQuery('order', []);
145
                $order_field = empty($order[0]['column']) ? 99 : intval($order[0]['column'], 10);
16766 efrain 146
                $order_direction = empty($order[0]['dir']) ? 'ASC' : Functions::sanitizeFilterString(filter_var($order[0]['dir']));
15461 efrain 147
 
148
                $fields = ['first_name', 'last_name', 'email'];
149
                $order_field = isset($fields[$order_field]) ? $fields[$order_field] : 'first_name';
150
 
151
                if (!in_array($order_direction, ['ASC', 'DESC'])) {
152
                    $order_direction = 'ASC';
153
                }
154
 
155
 
156
 
157
 
158
                $acl = $this->getEvent()->getViewModel()->getVariable('acl');
159
                $allowAdd = $acl->isAllowed($currentUser->usertype_id, 'recruitment-and-selection/applications/add');
160
                $allowDelete = $acl->isAllowed($currentUser->usertype_id, 'recruitment-and-selection/applications/delete');
161
                $allowView = $acl->isAllowed($currentUser->usertype_id, 'recruitment-and-selection/applications/view');
162
 
163
 
164
 
165
                $queryMapper = QueryMapper::getInstance($this->adapter);
166
                $sql = $queryMapper->getSql();
167
                $select = $sql->select();
168
                $select->columns(['uuid', 'level', 'status']);
169
                $select->from(['tb1' => RecruitmentSelectionApplicationMapper::_TABLE]);
170
                $select->join(['tb2' => RecruitmentSelectionCandidateMapper::_TABLE], 'tb1.candidate_id  = tb2.id', ['first_name', 'last_name', 'email']);
171
                $select->where->equalTo('tb1.vacancy_id', $vacancy->id);
172
 
173
 
174
                if($search) {
175
                    $select->where->nest()
176
                    ->like('first_name', '%' . $search . '%')
177
                    ->or->like('last_name', '%' . $search . '%')
178
                    ->or->like('email', '%' . $search . '%')
179
                    ->unnest();
180
                }
181
 
182
                $select->order($order_field . ' ' . $order_direction);
183
 
184
               // echo $select->getSqlString($this->adapter->platform); exit;
185
 
186
                $hydrator = new ArraySerializableHydrator();
187
                $resultset = new HydratingResultSet($hydrator);
188
 
189
                $adapter = new DbSelect($select, $sql, $resultset);
190
                $paginator = new Paginator($adapter);
191
                $paginator->setItemCountPerPage($records_x_page);
192
                $paginator->setCurrentPageNumber($page);
193
 
194
 
195
                $items = [];
196
                $records = $paginator->getCurrentItems();
197
 
198
 
199
                foreach ($records as $record) {
200
 
201
                    switch($record['status'])
202
                    {
203
                        case RecruitmentSelectionApplication::STATUS_ACTIVE :
204
                            $status = 'LABEL_ACTIVE';
205
                            break;
206
 
207
 
208
                        case RecruitmentSelectionApplication::STATUS_INACTIVE :
209
                            $status = 'LABEL_INACTIVE';
210
                            break;
211
 
212
                        case RecruitmentSelectionApplication::STATUS_SELECTED :
213
                            $status = 'LABEL_SELECTED';
214
                            break;
215
 
216
                        case RecruitmentSelectionApplication::STATUS_REJECTED :
217
                            $status = 'LABEL_REJECTED';
218
                            break;
219
 
220
                    }
221
 
222
                    switch($record['level'])
223
                    {
224
                        case RecruitmentSelectionApplication::LEVEL_CAPTURE :
225
                            $level = 'LABEL_CAPTURE';
226
                            break;
227
 
228
                        case RecruitmentSelectionApplication::LEVEL_PRE_SELECTION :
229
                            $level =  'LABEL_PRE_SELECTION';
230
                            break;
231
 
232
                        case RecruitmentSelectionApplication::LEVEL_HUMAN_RESOURCE_INTERVIEW :
233
                            $level =  'LABEL_HUMAN_RESOURCE';
234
                            break;
235
 
236
                        case RecruitmentSelectionApplication::LEVEL_BOSS_RESOURCE_INTERVIEW :
237
                            $level =  'LABEL_BOSS_INTERVIEW';
238
                            break;
239
 
240
                        case RecruitmentSelectionApplication::LEVEL_FINISHED :
241
                            $level =  'LABEL_FINISHED';
242
                            break;
243
 
244
                        default :
245
                            $level =  'LABEL_UNKNOWN';
246
                            break;
247
 
248
                    }
249
 
250
                    $item = [
251
                        'first_name' => $record['first_name'],
252
                        'last_name' => $record['last_name'],
253
                        'email' => $record['email'],
254
                        'status' => $status,
255
                        'level' => $level,
256
                        'actions' => [
257
                            'link_delete' => $allowDelete ? $this->url()->fromRoute('recruitment-and-selection/applications/delete', ['vacancy_id' => $vacancy->uuid, 'application_id' => $record['uuid']] ) : '',
258
                            'link_view' => $allowView ? $this->url()->fromRoute('recruitment-and-selection/applications/view', ['vacancy_id' => $vacancy->uuid, 'application_id' => $record['uuid']] ) : '',
259
                        ]
260
                    ];
261
 
262
                    array_push($items, $item);
263
                }
264
 
265
                $data['items'] = $items;
266
                $data['total'] = $paginator->getTotalItemCount();
267
                $data['link_add'] =  $allowAdd ? $this->url()->fromRoute( 'recruitment-and-selection/applications/add', ['vacancy_id' => $vacancy->uuid ]) : '';
268
 
269
 
270
                return new JsonModel([
271
                    'success' => true,
272
                    'data' => $data
273
                ]);
274
            } else {
275
                $formFile = new RecruitmentSelectionApplicationFileForm();
276
                $formAdd = new RecruitmentSelectionApplicationCandidateForm($this->adapter);
277
                $formFilter = new RecruitmentSelectionApplicationVacancyForm($this->adapter, $currentCompany->id);
278
                $formComment = new RecruitmentSelectionApplicationPointsAndCommentForm();
279
                $formLevel = new RecruitmentSelectionApplicationLevelForm();
280
                $formStatus = new RecruitmentSelectionApplicationStatusForm();
281
                $formInterview = new RecruitmentSelectionApplicationInterviewForm($this->adapter, $currentCompany->id);
282
 
283
 
284
                $this->layout()->setTemplate('layout/layout-backend');
285
                $viewModel = new ViewModel();
286
                $viewModel->setTemplate('leaders-linked/recruitment-and-selection-applications/index.phtml');
287
                $viewModel->setVariables([
288
                    'formFilter' => $formFilter,
289
                    'formAdd' => $formAdd,
290
                    'formFile' => $formFile,
291
                    'formComment' => $formComment,
292
                    'formLevel' => $formLevel,
293
                    'formStatus' => $formStatus,
294
                    'formInterview' => $formInterview,
295
                ]);
296
 
297
                return $viewModel;
298
            }
299
        } else {
300
            return new JsonModel([
301
                'success' => false,
302
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
303
            ]);
304
            ;
305
        }
306
    }
307
 
308
    public function userByEmailAction()
309
    {
310
        $currentUserPlugin = $this->plugin('currentUserPlugin');
311
        $currentUser = $currentUserPlugin->getUser();
312
        $currentCompany     = $currentUserPlugin->getCompany();
313
 
314
 
315
        $currentNetworkPlugin = $this->plugin('currentNetworkPlugin');
316
        $currentNetwork = $currentNetworkPlugin->getNetwork();
317
 
318
        $request = $this->getRequest();
319
 
320
        if ($request->isGet()) {
321
 
322
 
323
 
324
            $email = trim(filter_var($this->params()->fromQuery('email'), FILTER_SANITIZE_EMAIL));
325
            if($email) {
326
 
327
                $userMapper = UserMapper::getInstance($this->adapter);
328
                $user = $userMapper->fetchOneActiveByEmailAndNetworkId($email, $currentNetwork->id);
329
                if($user) {
330
                    $data = [
331
                        'success' => true,
332
                        'data' => [
333
                            'uuid' => $user->uuid,
334
                            'first_name' => $user->first_name,
335
                            'last_name' => $user->last_name,
336
                            'email' => $user->email
337
                        ]
338
                    ];
339
                } else {
15463 efrain 340
                    $recruitmentSelectionCandidateMapper = RecruitmentSelectionCandidateMapper::getInstance($this->adapter);
341
                    $candidate = $recruitmentSelectionCandidateMapper->fetchOneActiveByEmailAndCompanyId($email, $currentCompany->id);
342
                    if($candidate) {
343
                        $data = [
344
                            'success' => true,
345
                            'data' => [
346
                                'uuid' => '',
347
                                'first_name' => $candidate->first_name,
348
                                'last_name' => $candidate->last_name,
349
                                'email' => $candidate->email
350
                            ]
351
                        ];
352
                    } else {
353
 
354
                        $data = [
355
                            'success' => false,
356
                            'data' => 'ERROR_EMAIL_NOT_FOUND'
357
                        ];
358
                    }
15461 efrain 359
                }
360
            } else {
361
                $data = [
362
                    'success' => false,
363
                    'data' => 'ERROR_EMAIL_NOT_FOUND'
364
                ];
365
            }
366
        } else {
367
            $data = [
368
                'success' => false,
369
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
370
            ];
371
        }
372
 
373
 
374
        return new JsonModel($data);
375
 
376
    }
377
 
378
 
379
    public function addAction()
380
    {
381
        $currentUserPlugin  = $this->plugin('currentUserPlugin');
382
        $currentCompany     = $currentUserPlugin->getCompany();
383
        $currentUser        = $currentUserPlugin->getUser();
384
 
385
        $request    = $this->getRequest();
386
 
387
        $vacancy_uuid = $this->params()->fromRoute('vacancy_id');
388
 
389
        $vacancyMapper = RecruitmentSelectionVacancyMapper::getInstance($this->adapter);
390
        $vacancy = $vacancyMapper->fetchOneByUuid($vacancy_uuid);
391
 
392
        if(!$vacancy) {
393
            $data = [
394
                'success' => false,
395
                'data' => 'ERROR_VACANCY_NOT_FOUND'
396
            ];
397
 
398
            return new JsonModel($data);
399
        }
400
 
401
 
402
        if($vacancy->company_id != $currentCompany->id) {
403
            $data = [
404
                'success' => false,
405
                'data' => 'ERROR_VACANCY_IS_OTHER_COMPANY',
406
            ];
407
 
408
            return new JsonModel($data);
409
        }
410
 
411
 
412
 
413
 
414
 
415
        if($request->isPost()) {
416
            $dataPost = $request->getPost()->toArray();
417
 
418
            $form = new  RecruitmentSelectionApplicationCandidateForm($this->adapter);
419
            $form->setData($dataPost);
420
 
421
            if($form->isValid()) {
422
                $dataPost = (array) $form->getData();
423
 
424
                $candidateMapper = RecruitmentSelectionCandidateMapper::getInstance($this->adapter);
425
                $candidate = $candidateMapper->fetchOneByEmail($dataPost['email']);
426
                if($candidate) {
427
 
428
 
429
                    $candidate->first_name = $dataPost['first_name'];
430
                    $candidate->last_name = $dataPost['last_name'];
431
 
432
                    $result = $candidateMapper->update($candidate);
433
 
434
                } else {
435
 
436
                    $candidate = new RecruitmentSelectionCandidate();
437
                    $candidate->company_id = $currentCompany->id;
438
                    $candidate->email = strtolower($dataPost['email']);
439
                    $candidate->first_name = $dataPost['first_name'];
440
                    $candidate->last_name = $dataPost['last_name'];
441
 
442
                    $result = $candidateMapper->insert($candidate);
443
                }
444
 
445
 
446
                if(!$result) {
447
                    $data = [
448
                        'success'   => false,
449
                        'data'      => $candidateMapper->getError()
450
                    ];
451
 
452
                    return new JsonModel($data);
453
                }
454
 
455
                $applicationMapper = RecruitmentSelectionApplicationMapper::getInstance($this->adapter);
456
                $application = $applicationMapper->fetchOneByVancancyIdAndCandidateId($vacancy->id, $candidate->id);
457
 
458
 
459
                if($application) {
460
                    $data = [
461
                        'success'   => false,
462
                        'data'      => 'ERROR_VACANCY_CANDIDATE_HAS_BEEN_PREVIOUSLY_ADDED',
463
                    ];
464
 
465
                    return new JsonModel($data);
466
 
467
                }
468
 
469
 
470
                $application = new RecruitmentSelectionApplication();
471
                $application->candidate_id = $candidate->id;
472
                $application->company_id = $currentCompany->id;
473
                $application->level = RecruitmentSelectionApplication::LEVEL_CAPTURE;
474
                $application->status = RecruitmentSelectionApplication::STATUS_ACTIVE;
475
                $application->vacancy_id = $vacancy->id;
476
 
477
 
478
 
479
                if($applicationMapper->insert($application)) {
480
 
481
                    $this->logger->info('Se agrego la aplicación del candidato : ' . $candidate->first_name, ['user_id' => $currentUser->id, 'ip' => Functions::getUserIP()]);
482
 
483
                    $data = [
484
                        'success'   => true,
485
                        'data'   => 'LABEL_RECORD_ADDED'
486
                    ];
487
                } else {
488
                    $data = [
489
                        'success'   => false,
490
                        'data'      => $applicationMapper->getError()
491
                    ];
492
 
493
                }
494
 
495
                return new JsonModel($data);
496
 
497
            } else {
498
                $messages = [];
499
                $form_messages = (array) $form->getMessages();
500
                foreach ($form_messages as $fieldname => $field_messages) {
501
 
502
                    $messages[$fieldname] = array_values($field_messages);
503
                }
504
 
505
                return new JsonModel([
506
                    'success' => false,
507
                    'data' => $messages
508
                ]);
509
 
510
            }
511
 
512
        } else {
513
            $data = [
514
                'success' => false,
515
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
516
            ];
517
 
518
            return new JsonModel($data);
519
        }
520
 
521
        return new JsonModel($data);
522
    }
523
 
524
 
525
    public function commentAction()
526
    {
527
        $request = $this->getRequest();
528
        $currentUserPlugin = $this->plugin('currentUserPlugin');
529
        $currentCompany = $currentUserPlugin->getCompany();
530
        $currentUser = $currentUserPlugin->getUser();
531
 
532
        $request = $this->getRequest();
533
        $application_id = $this->params()->fromRoute('application_id');
534
 
535
        $vacancy_uuid = $this->params()->fromRoute('vacancy_id');
536
 
537
        $vacancyMapper = RecruitmentSelectionVacancyMapper::getInstance($this->adapter);
538
        $vacancy = $vacancyMapper->fetchOneByUuid($vacancy_uuid);
539
 
540
        if(!$vacancy) {
541
            $data = [
542
                'success' => false,
543
                'data' => 'ERROR_VACANCY_NOT_FOUND'
544
            ];
545
 
546
            return new JsonModel($data);
547
        }
548
 
549
 
550
        if($vacancy->company_id != $currentCompany->id) {
551
            $data = [
552
                'success' => false,
553
                'data' => 'ERROR_VACANCY_IS_OTHER_COMPANY',
554
            ];
555
 
556
            return new JsonModel($data);
557
        }
558
 
559
 
560
 
561
        $applicationMapper = RecruitmentSelectionApplicationMapper::getInstance($this->adapter);
562
        $application = $applicationMapper->fetchOneByUuid($application_id);
563
 
564
 
565
        if (!$application) {
566
            $data = [
567
                'success' => false,
568
                'data' => 'ERROR_RECORD_NOT_FOUND'
569
            ];
570
 
571
            return new JsonModel($data);
572
        }
573
 
574
 
575
        if ($application->vacancy_id != $vacancy->id) {
576
            return new JsonModel([
577
                'success' => false,
578
                'data' => 'ERROR_UNAUTHORIZED'
579
            ]);
580
        }
581
 
582
 
583
        if ($request->isGet()) {
584
 
585
            $data = [
586
                'success' => true,
587
                'data' => [
588
                    'points' => $application->points ? intval($application->points, 10) : 0,
589
                    'comment' => $application->comment ? trim($application->comment) : '',
590
                ]
591
            ];
592
 
593
            return new JsonModel($data);
594
 
595
 
596
 
597
        } else if ($request->isPost()) {
598
 
599
 
600
            $dataPost = $request->getPost()->toArray();
601
 
602
            $form = new RecruitmentSelectionApplicationPointsAndCommentForm();
603
            $form->setData($dataPost);
604
 
605
            if($form->isValid()) {
606
                $dataPost = (array) $form->getData();
607
 
608
                $application->points    = $dataPost['points'];
609
                $application->comment   = $dataPost['comment'];
610
 
611
                $result =  $applicationMapper->update($application);
612
                if ($result) {
613
                    $candidateMapper = RecruitmentSelectionCandidateMapper::getInstance($this->adapter);
614
                    $candidate = $candidateMapper->fetchOne($application->candidate_id);
615
 
616
 
617
                    $this->logger->info('Se actualizo los puntos y comentario de la aplicación : ' . $candidate->first_name, ['user_id' => $currentUser->id, 'ip' => Functions::getUserIP()]);
618
 
619
                    $data = [
620
                        'success' => true,
621
                        'data' => [
622
                            'message' => 'LABEL_RECORD_UPDATED',
623
                            'points' => $application->points ? intval($application->points, 10) : 0,
624
                            'comment' => $application->comment ? trim($application->comment) : '',
625
                        ]
626
                    ];
627
 
628
 
629
                } else {
630
 
631
                    $data = [
632
                        'success' => false,
633
                        'data' => $applicationMapper->getError()
634
                    ];
635
 
636
                    return new JsonModel($data);
637
                }
638
 
639
 
640
            } else {
641
                $messages = [];
642
                $form_messages = (array) $form->getMessages();
643
                foreach ($form_messages as $fieldname => $field_messages) {
644
 
645
                    $messages[$fieldname] = array_values($field_messages);
646
                }
647
 
648
                return new JsonModel([
649
                    'success' => false,
650
                    'data' => $messages
651
                ]);
652
            }
653
 
654
 
655
        } else {
656
            $data = [
657
                'success' => false,
658
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
659
            ];
660
 
661
            return new JsonModel($data);
662
        }
663
 
664
        return new JsonModel($data);
665
    }
666
 
667
 
668
    public function statusAction()
669
    {
670
        $request = $this->getRequest();
671
        $currentUserPlugin = $this->plugin('currentUserPlugin');
672
        $currentCompany = $currentUserPlugin->getCompany();
673
        $currentUser = $currentUserPlugin->getUser();
674
 
675
        $request = $this->getRequest();
676
        $application_id = $this->params()->fromRoute('application_id');
677
 
678
        $vacancy_uuid = $this->params()->fromRoute('vacancy_id');
679
 
680
        $vacancyMapper = RecruitmentSelectionVacancyMapper::getInstance($this->adapter);
681
        $vacancy = $vacancyMapper->fetchOneByUuid($vacancy_uuid);
682
 
683
        if(!$vacancy) {
684
            $data = [
685
                'success' => false,
686
                'data' => 'ERROR_VACANCY_NOT_FOUND'
687
            ];
688
 
689
            return new JsonModel($data);
690
        }
691
 
692
 
693
        if($vacancy->company_id != $currentCompany->id) {
694
            $data = [
695
                'success' => false,
696
                'data' => 'ERROR_VACANCY_IS_OTHER_COMPANY',
697
            ];
698
 
699
            return new JsonModel($data);
700
        }
701
 
702
 
703
 
704
        $applicationMapper = RecruitmentSelectionApplicationMapper::getInstance($this->adapter);
705
        $application = $applicationMapper->fetchOneByUuid($application_id);
706
 
707
 
708
        if (!$application) {
709
            $data = [
710
                'success' => false,
711
                'data' => 'ERROR_RECORD_NOT_FOUND'
712
            ];
713
 
714
            return new JsonModel($data);
715
        }
716
 
717
 
718
        if ($application->vacancy_id != $vacancy->id) {
719
            return new JsonModel([
720
                'success' => false,
721
                'data' => 'ERROR_UNAUTHORIZED'
722
            ]);
723
        }
724
 
725
 
726
        if ($request->isGet()) {
727
 
728
            $data = [
729
                'success' => true,
730
                'data' => [
731
                    'status' => $application->status
732
                ]
733
            ];
734
 
735
            return new JsonModel($data);
736
 
737
 
738
 
739
        } else if ($request->isPost()) {
740
 
741
 
742
            $dataPost = $request->getPost()->toArray();
743
 
744
            $form = new RecruitmentSelectionApplicationStatusForm();
745
            $form->setData($dataPost);
746
 
747
            if($form->isValid()) {
748
                $dataPost = (array) $form->getData();
749
 
750
                $application->status    = $dataPost['status'];
751
 
752
                $result =  $applicationMapper->update($application);
753
                if ($result) {
754
                    $candidateMapper = RecruitmentSelectionCandidateMapper::getInstance($this->adapter);
755
                    $candidate = $candidateMapper->fetchOne($application->candidate_id);
756
 
757
 
758
                    $this->logger->info('Se actualizo el estado de la aplicación : ' . $candidate->first_name, ['user_id' => $currentUser->id, 'ip' => Functions::getUserIP()]);
759
 
760
                    switch($application->status)
761
                    {
762
                        case RecruitmentSelectionApplication::STATUS_ACTIVE :
763
                            $status = 'LABEL_ACTIVE';
764
                            break;
765
 
766
 
767
                        case RecruitmentSelectionApplication::STATUS_INACTIVE :
768
                            $status = 'LABEL_INACTIVE';
769
                            break;
770
 
771
                        case RecruitmentSelectionApplication::STATUS_SELECTED :
772
                            $status = 'LABEL_SELECTED';
773
                            break;
774
 
775
                        case RecruitmentSelectionApplication::STATUS_REJECTED :
776
                            $status = 'LABEL_REJECTED';
777
                            break;
778
 
779
                    }
780
 
781
 
782
                    $data = [
783
                        'success' => true,
784
                        'data' => [
785
                            'message' => 'LABEL_RECORD_UPDATED',
786
                            'status' => $status
787
                        ]
788
                    ];
789
 
790
 
791
 
792
                } else {
793
 
794
                    $data = [
795
                        'success' => false,
796
                        'data' => $applicationMapper->getError()
797
                    ];
798
 
799
                    return new JsonModel($data);
800
                }
801
 
802
 
803
            } else {
804
                $messages = [];
805
                $form_messages = (array) $form->getMessages();
806
                foreach ($form_messages as $fieldname => $field_messages) {
807
 
808
                    $messages[$fieldname] = array_values($field_messages);
809
                }
810
 
811
                return new JsonModel([
812
                    'success' => false,
813
                    'data' => $messages
814
                ]);
815
            }
816
 
817
 
818
        } else {
819
            $data = [
820
                'success' => false,
821
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
822
            ];
823
 
824
            return new JsonModel($data);
825
        }
826
 
827
        return new JsonModel($data);
828
    }
829
 
830
 
831
    public function levelAction()
832
    {
833
        $request = $this->getRequest();
834
        $currentUserPlugin = $this->plugin('currentUserPlugin');
835
        $currentCompany = $currentUserPlugin->getCompany();
836
        $currentUser = $currentUserPlugin->getUser();
837
 
838
        $request = $this->getRequest();
839
        $application_id = $this->params()->fromRoute('application_id');
840
 
841
        $vacancy_uuid = $this->params()->fromRoute('vacancy_id');
842
 
843
        $vacancyMapper = RecruitmentSelectionVacancyMapper::getInstance($this->adapter);
844
        $vacancy = $vacancyMapper->fetchOneByUuid($vacancy_uuid);
845
 
846
        if(!$vacancy) {
847
            $data = [
848
                'success' => false,
849
                'data' => 'ERROR_VACANCY_NOT_FOUND'
850
            ];
851
 
852
            return new JsonModel($data);
853
        }
854
 
855
 
856
        if($vacancy->company_id != $currentCompany->id) {
857
            $data = [
858
                'success' => false,
859
                'data' => 'ERROR_VACANCY_IS_OTHER_COMPANY',
860
            ];
861
 
862
            return new JsonModel($data);
863
        }
864
 
865
 
866
 
867
        $applicationMapper = RecruitmentSelectionApplicationMapper::getInstance($this->adapter);
868
        $application = $applicationMapper->fetchOneByUuid($application_id);
869
 
870
 
871
        if (!$application) {
872
            $data = [
873
                'success' => false,
874
                'data' => 'ERROR_RECORD_NOT_FOUND'
875
            ];
876
 
877
            return new JsonModel($data);
878
        }
879
 
880
 
881
        if ($application->vacancy_id != $vacancy->id) {
882
            return new JsonModel([
883
                'success' => false,
884
                'data' => 'ERROR_UNAUTHORIZED'
885
            ]);
886
        }
887
 
888
 
889
        if ($request->isGet()) {
890
 
891
            $data = [
892
                'success' => true,
893
                'data' => [
894
                    'level' => $application->level
895
                ]
896
            ];
897
 
898
            return new JsonModel($data);
899
 
900
 
901
 
902
        } else if ($request->isPost()) {
903
 
904
 
905
            $dataPost = $request->getPost()->toArray();
906
 
907
            $form = new RecruitmentSelectionApplicationLevelForm();
908
            $form->setData($dataPost);
909
 
910
            if($form->isValid()) {
911
                $dataPost = (array) $form->getData();
912
 
913
                $application->level = $dataPost['level'];
914
 
915
                $result =  $applicationMapper->update($application);
916
                if ($result) {
917
                    $candidateMapper = RecruitmentSelectionCandidateMapper::getInstance($this->adapter);
918
                    $candidate = $candidateMapper->fetchOne($application->candidate_id);
919
 
920
 
921
                    $this->logger->info('Se actualizo el nivel de la aplicación : ' . $candidate->first_name, ['user_id' => $currentUser->id, 'ip' => Functions::getUserIP()]);
922
 
923
 
924
                    switch($application->level)
925
                    {
926
                        case RecruitmentSelectionApplication::LEVEL_CAPTURE :
927
                            $level = 'LABEL_CAPTURE';
928
                            break;
929
 
930
                        case RecruitmentSelectionApplication::LEVEL_PRE_SELECTION :
931
                            $level =  'LABEL_PRE_SELECTION';
932
                            break;
933
 
934
                        case RecruitmentSelectionApplication::LEVEL_HUMAN_RESOURCE_INTERVIEW :
935
                            $level =  'LABEL_HUMAN_RESOURCE';
936
                            break;
937
 
938
                        case RecruitmentSelectionApplication::LEVEL_BOSS_RESOURCE_INTERVIEW :
939
                            $level =  'LABEL_BOSS_INTERVIEW';
940
                            break;
941
 
942
                        case RecruitmentSelectionApplication::LEVEL_FINISHED :
943
                            $level =  'LABEL_FINISHED';
944
                            break;
945
 
946
                        default :
947
                            $level =  'LABEL_UNKNOWN';
948
                            break;
949
 
950
                    }
951
 
952
                    $data = [
953
                        'success' => true,
954
                        'data' => [
955
                            'message' => 'LABEL_RECORD_UPDATED',
956
                            'level' => $level
957
                        ]
958
                    ];
959
 
960
                } else {
961
 
962
                    $data = [
963
                        'success' => false,
964
                        'data' => $applicationMapper->getError()
965
                    ];
966
 
967
                    return new JsonModel($data);
968
                }
969
 
970
 
971
            } else {
972
                $messages = [];
973
                $form_messages = (array) $form->getMessages();
974
                foreach ($form_messages as $fieldname => $field_messages) {
975
 
976
                    $messages[$fieldname] = array_values($field_messages);
977
                }
978
 
979
                return new JsonModel([
980
                    'success' => false,
981
                    'data' => $messages
982
                ]);
983
            }
984
 
985
 
986
        } else {
987
            $data = [
988
                'success' => false,
989
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
990
            ];
991
 
992
            return new JsonModel($data);
993
        }
994
 
995
        return new JsonModel($data);
996
    }
997
 
998
 
999
    public function deleteAction()
1000
    {
1001
        $request = $this->getRequest();
1002
        $currentUserPlugin = $this->plugin('currentUserPlugin');
1003
        $currentCompany = $currentUserPlugin->getCompany();
1004
        $currentUser = $currentUserPlugin->getUser();
1005
 
1006
        $request = $this->getRequest();
1007
        $application_id = $this->params()->fromRoute('application_id');
1008
 
1009
        $vacancy_uuid = $this->params()->fromRoute('vacancy_id');
1010
 
1011
        $vacancyMapper = RecruitmentSelectionVacancyMapper::getInstance($this->adapter);
1012
        $vacancy = $vacancyMapper->fetchOneByUuid($vacancy_uuid);
1013
 
1014
        if(!$vacancy) {
1015
            $data = [
1016
                'success' => false,
1017
                'data' => 'ERROR_VACANCY_NOT_FOUND'
1018
            ];
1019
 
1020
            return new JsonModel($data);
1021
        }
1022
 
1023
 
1024
        if($vacancy->company_id != $currentCompany->id) {
1025
            $data = [
1026
                'success' => false,
1027
                'data' => 'ERROR_VACANCY_IS_OTHER_COMPANY',
1028
            ];
1029
 
1030
            return new JsonModel($data);
1031
        }
1032
 
1033
 
1034
 
1035
        $applicationMapper = RecruitmentSelectionApplicationMapper::getInstance($this->adapter);
1036
        $application = $applicationMapper->fetchOneByUuid($application_id);
1037
 
1038
 
1039
        if (!$application) {
1040
            $data = [
1041
                'success' => false,
1042
                'data' => 'ERROR_RECORD_NOT_FOUND'
1043
            ];
1044
 
1045
            return new JsonModel($data);
1046
        }
1047
 
1048
 
1049
        if ($application->vacancy_id != $vacancy->id) {
1050
            return new JsonModel([
1051
                'success' => false,
1052
                'data' => 'ERROR_UNAUTHORIZED'
1053
            ]);
1054
        }
1055
 
1056
 
1057
 
1058
        if ($request->isPost()) {
1059
 
1060
            $result = $applicationMapper->delete($application->id);
1061
            if ($result) {
1062
                $candidateMapper = RecruitmentSelectionCandidateMapper::getInstance($this->adapter);
1063
                $candidate = $candidateMapper->fetchOne($application->candidate_id);
1064
 
1065
 
1066
 
1067
                $this->logger->info('Se borro la aplicación : ' . $candidate->first_name, ['user_id' => $currentUser->id, 'ip' => Functions::getUserIP()]);
1068
 
1069
                $data = [
1070
                    'success' => true,
1071
                    'data' => 'LABEL_RECORD_DELETED'
1072
                ];
1073
            } else {
1074
 
1075
                $data = [
1076
                    'success' => false,
1077
                    'data' => $candidateMapper->getError()
1078
                ];
1079
 
1080
                return new JsonModel($data);
1081
            }
1082
        } else {
1083
            $data = [
1084
                'success' => false,
1085
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
1086
            ];
1087
 
1088
            return new JsonModel($data);
1089
        }
1090
 
1091
        return new JsonModel($data);
1092
    }
1093
 
1094
    public function viewAction()
1095
    {
1096
        $request = $this->getRequest();
1097
        $currentUserPlugin = $this->plugin('currentUserPlugin');
1098
        $currentCompany = $currentUserPlugin->getCompany();
1099
        $currentUser = $currentUserPlugin->getUser();
1100
 
1101
        $request = $this->getRequest();
1102
        $application_id = $this->params()->fromRoute('application_id');
1103
 
1104
        $vacancy_uuid = $this->params()->fromRoute('vacancy_id');
1105
 
1106
        $vacancyMapper = RecruitmentSelectionVacancyMapper::getInstance($this->adapter);
1107
        $vacancy = $vacancyMapper->fetchOneByUuid($vacancy_uuid);
1108
 
1109
        if(!$vacancy) {
1110
            $data = [
1111
                'success' => false,
1112
                'data' => 'ERROR_VACANCY_NOT_FOUND'
1113
            ];
1114
 
1115
            return new JsonModel($data);
1116
        }
1117
 
1118
 
1119
        if($vacancy->company_id != $currentCompany->id) {
1120
            $data = [
1121
                'success' => false,
1122
                'data' => 'ERROR_VACANCY_IS_OTHER_COMPANY',
1123
            ];
1124
 
1125
            return new JsonModel($data);
1126
        }
1127
 
1128
 
1129
 
1130
        $applicationMapper = RecruitmentSelectionApplicationMapper::getInstance($this->adapter);
1131
        $application = $applicationMapper->fetchOneByUuid($application_id);
1132
 
1133
 
1134
        if (!$application) {
1135
            $data = [
1136
                'success' => false,
1137
                'data' => 'ERROR_RECORD_NOT_FOUND'
1138
            ];
1139
 
1140
            return new JsonModel($data);
1141
        }
1142
 
1143
 
1144
        if ($application->vacancy_id != $vacancy->id) {
1145
            return new JsonModel([
1146
                'success' => false,
1147
                'data' => 'ERROR_UNAUTHORIZED'
1148
            ]);
1149
        }
1150
 
1151
 
1152
 
1153
        if ($request->isGet()) {
1154
 
1155
            $acl = $this->getEvent()->getViewModel()->getVariable('acl');
1156
            $allowFile = $acl->isAllowed($currentUser->usertype_id, 'recruitment-and-selection/applications/files');
1157
            $allowFileAdd = $acl->isAllowed($currentUser->usertype_id, 'recruitment-and-selection/applications/files/add');
1158
            $allowFileDelete = $acl->isAllowed($currentUser->usertype_id, 'recruitment-and-selection/applications/files/delete');
1159
            $allowFileView = $acl->isAllowed($currentUser->usertype_id, 'recruitment-and-selection/applications/files/view');
1160
            $allowInterview = $acl->isAllowed($currentUser->usertype_id, 'recruitment-and-selection/applications/interviews');
1161
            $allowInterviewAdd = $acl->isAllowed($currentUser->usertype_id, 'recruitment-and-selection/applications/interviews/add');
1162
            $allowComment = $acl->isAllowed($currentUser->usertype_id, 'recruitment-and-selection/applications/comment');
1163
            $allowLevel = $acl->isAllowed($currentUser->usertype_id, 'recruitment-and-selection/applications/level');
1164
            $allowStatus = $acl->isAllowed($currentUser->usertype_id, 'recruitment-and-selection/applications/status');
1165
 
1166
 
1167
            $candidateMapper = RecruitmentSelectionCandidateMapper::getInstance($this->adapter);
1168
            $candidate = $candidateMapper->fetchOne($application->candidate_id);
1169
 
1170
 
1171
            switch($application->status)
1172
            {
1173
                case RecruitmentSelectionApplication::STATUS_ACTIVE :
1174
                    $status = 'LABEL_ACTIVE';
1175
                    break;
1176
 
1177
 
1178
                case RecruitmentSelectionApplication::STATUS_INACTIVE :
1179
                    $status = 'LABEL_INACTIVE';
1180
                    break;
1181
 
1182
                case RecruitmentSelectionApplication::STATUS_SELECTED :
1183
                    $status = 'LABEL_SELECTED';
1184
                    break;
1185
 
1186
                case RecruitmentSelectionApplication::STATUS_REJECT :
1187
                    $status = 'LABEL_REJECTED';
1188
                    break;
1189
 
1190
            }
1191
 
1192
            switch($application->level)
1193
            {
1194
                case RecruitmentSelectionApplication::LEVEL_CAPTURE :
1195
                    $level = 'LABEL_CAPTURE';
1196
                    break;
1197
 
1198
                case RecruitmentSelectionApplication::LEVEL_PRE_SELECTION :
1199
                    $level =  'LABEL_PRE_SELECTION';
1200
                    break;
1201
 
1202
                case RecruitmentSelectionApplication::LEVEL_HUMAN_RESOURCE_INTERVIEW :
1203
                    $level =  'LABEL_HUMAN_RESOURCE';
1204
                    break;
1205
 
1206
                case RecruitmentSelectionApplication::LEVEL_BOSS_RESOURCE_INTERVIEW :
1207
                    $level =  'LABEL_BOSS_INTERVIEW';
1208
                    break;
1209
 
1210
                case RecruitmentSelectionApplication::LEVEL_FINISHED :
1211
                    $level =  'LABEL_FINISHED';
1212
                    break;
1213
 
1214
                default :
1215
                    $level =  'LABEL_UNKNOWN';
1216
                    break;
1217
 
1218
            }
1219
 
1220
            $jobCategoryMapper = JobCategoryMapper::getInstance($this->adapter);
1221
            $jobCategory = $jobCategoryMapper->fetchOne($vacancy->job_category_id);
1222
 
1223
            $industryMapper = IndustryMapper::getInstance($this->adapter);
1224
            $industry = $industryMapper->fetchOne($vacancy->industry_id);
1225
 
1226
 
1227
            $jobDescriptionMapper = JobDescriptionMapper::getInstance($this->adapter);
1228
            $jobDescription = $jobDescriptionMapper->fetchOne($vacancy->job_description_id);
1229
 
1230
 
1231
            $locationMapper = LocationMapper::getInstance($this->adapter);
1232
            $location = $locationMapper->fetchOne($vacancy->location_id);
1233
 
1234
 
1235
            $dt = \DateTime::createFromFormat('Y-m-d', $vacancy->last_date);
1236
            $last_date = $dt->format('d/m/Y');
1237
 
1238
 
1239
            $recruitmentSelectionFileMapper = RecruitmentSelectionFileMapper::getInstance($this->adapter);
1240
 
1241
 
1242
            $files = [];
1243
            $records = $recruitmentSelectionFileMapper->fetchAllByVacancyId($vacancy->id);
1244
            foreach($records as $record)
1245
            {
1246
                array_push($files, [
1247
                    'name' => $record->name,
1248
                    'filename' => basename($record->file),
1249
                    'link_view' => $allowFileView ? $this->url()->fromRoute('recruitment-and-selection/applications/files/view', ['vacancy_id' => $vacancy->uuid, 'application_id' => $application->uuid, 'id' => $record->uuid]) : '',
1250
                    'link_delete' => $allowFileDelete ? $this->url()->fromRoute('recruitment-and-selection/applications/files/delete', ['vacancy_id' => $vacancy->uuid, 'application_id' => $application->uuid, 'id' => $record->uuid]) : '',
1251
                ]);
1252
            }
1253
 
1254
            $userMapper = UserMapper::getInstance($this->adapter);
1255
            $interviewMapper = RecruitmentSelectionInterviewMapper::getInstance($this->adapter);
1256
 
1257
 
1258
 
1259
 
1260
            $interviews = [];
1261
            $records = $interviewMapper->fetchAllByVacancyId($vacancy->id);
1262
            foreach($records as $record)
1263
            {
1264
                $status = '';
1265
                switch($record->status)
1266
                {
1267
                    case RecruitmentSelectionInterview::STATUS_ACCEPTED :
1268
                        $status = 'LABEL_ACCEPTED';
1269
                        $link_report = $this->url()->fromRoute('recruitment-and-selection/applications/interviews/report', ['vacancy_id' => $vacancy->uuid, 'application_id' => $application->uuid, 'id' => $record->uuid]);
1270
 
1271
                        break;
1272
 
1273
                    case RecruitmentSelectionInterview::STATUS_PENDING :
1274
                        $status = 'LABEL_PENDING';
1275
                        $link_report = '';
1276
                        break;
1277
 
1278
                    case RecruitmentSelectionInterview::STATUS_REJECTED :
1279
                        $status = 'LABEL_REJECTED';
1280
 
1281
                        $link_report = $this->url()->fromRoute('recruitment-and-selection/applications/interviews/report', ['vacancy_id' => $vacancy->uuid, 'application_id' => $application->uuid, 'id' => $record->uuid]);
1282
 
1283
                        break;
1284
 
1285
                    default :
1286
                        $status = 'LABEL_UNKNOWN';
1287
                        $link_report = '';
1288
                        break;
1289
 
1290
                }
1291
 
1292
                $type = '';
1293
                switch($record->type)
1294
                {
1295
                    case RecruitmentSelectionInterview::TYPE_BOSS :
1296
                        $type = 'LABEL_BOSS_INTERVIEW';
1297
                        break;
1298
 
1299
                    case RecruitmentSelectionInterview::TYPE_HUMAN_RESOURCE :
1300
                        $type = 'LABEL_HUMAN_RESOURCE';
1301
                        break;
1302
 
1303
                    default :
1304
                        $type = 'LABEL_UNKNOWN';
1305
                        break;
1306
 
1307
                }
1308
 
1309
                $dt = \DateTime::createFromFormat('Y-m-d',  $record->last_date);
1310
                $last_date = $dt->format('d/m/Y');
1311
 
1312
 
1313
                if($record->actual_date) {
1314
 
1315
                    $dt = \DateTime::createFromFormat('Y-m-d',  $record->actual_date);
1316
                    $actual_date = $dt->format('d/m/Y');
1317
                } else {
1318
                    $actual_date = '';
1319
                }
1320
 
1321
                $user = $userMapper->fetchOne($record->interviewer_id);
1322
                $interviewer = $user->first_name . ' ' . $user->last_name  . '(' . $user->email . ')';
1323
 
1324
 
1325
 
1326
 
1327
                array_push($interviews, [
1328
                    'type' => $type,
1329
                    'status' => $status,
1330
                    'last_date' => $last_date,
1331
                    'actual_date' => $actual_date,
1332
                    'interviewer' => $interviewer,
1333
                    'points' => $record->points,
1334
                    'link_edit' => $this->url()->fromRoute('recruitment-and-selection/applications/interviews/edit', ['vacancy_id' => $vacancy->uuid, 'application_id' => $application->uuid, 'id' => $record->uuid]),
1335
                    'link_report' => $link_report,
1336
                    'link_delete' => $this->url()->fromRoute('recruitment-and-selection/applications/interviews/delete', ['vacancy_id' => $vacancy->uuid, 'application_id' => $application->uuid, 'id' => $record->uuid]),
1337
 
1338
                ]);
1339
            }
1340
 
1341
            $data = [
1342
                'success' => true,
1343
                'data' => [
1344
                    'application' => [
1345
                        'first_name' => $candidate->first_name,
1346
                        'last_name' => $candidate->last_name,
1347
                        'email' => $candidate->email,
1348
                        'level' => $level,
1349
                        'status' => $status,
1350
                        'points' => $application->points,
1351
                        'comment' => $application->comment,
1352
                    ],
1353
                    'vacancy' => [
1354
                        'name' => $vacancy->name,
1355
                        'last_date' => $last_date,
1356
                        'address' => $location->formatted_address,
1357
                        'industry' => $industry->name,
1358
                        'job_category' => $jobCategory->name,
1359
                        'job_description' => $jobDescription->name
1360
                    ],
1361
                    'files' => $files,
1362
                    'interviews' => $interviews,
1363
                    'link_files' => $allowFile ? $this->url()->fromRoute('recruitment-and-selection/applications/files', ['vacancy_id' => $vacancy->uuid, 'application_id' => $application->uuid]) : '',
1364
                    'link_files_add' =>  $allowFileAdd ?  $this->url()->fromRoute('recruitment-and-selection/applications/files/add', ['vacancy_id' => $vacancy->uuid, 'application_id' => $application->uuid]) : '',
1365
                    'interviews' =>  $interviews,
1366
                    'link_interviews' => $allowInterview ? $this->url()->fromRoute('recruitment-and-selection/applications/interviews', ['vacancy_id' => $vacancy->uuid, 'application_id' => $application->uuid]) : '',
1367
                    'link_interviews_add' => $allowInterviewAdd ? $this->url()->fromRoute('recruitment-and-selection/applications/interviews/add', ['vacancy_id' => $vacancy->uuid, 'application_id' => $application->uuid]) : '',
1368
                    'link_comment' => $allowComment ? $this->url()->fromRoute('recruitment-and-selection/applications/comment', ['vacancy_id' => $vacancy->uuid, 'application_id' => $application->uuid]) : '',
1369
                    'link_level' => $allowLevel ? $this->url()->fromRoute('recruitment-and-selection/applications/level', ['vacancy_id' => $vacancy->uuid, 'application_id' => $application->uuid]) : '',
1370
                    'link_status' => $allowStatus ? $this->url()->fromRoute('recruitment-and-selection/applications/status', ['vacancy_id' => $vacancy->uuid, 'application_id' => $application->uuid]) : '',
1371
 
1372
 
1373
 
1374
                ]
1375
            ];
1376
 
1377
            return new JsonModel($data);
1378
        } else {
1379
            $data = [
1380
                'success' => false,
1381
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
1382
            ];
1383
 
1384
            return new JsonModel($data);
1385
        }
1386
 
1387
        return new JsonModel($data);
1388
    }
1389
 
1390
 
1391
 
1392
 
1393
 
1394
 
1395
 
1396
}