Proyectos de Subversion LeadersLinked - Backend

Rev

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

Rev Autor Línea Nro. Línea
1384 efrain 1
<?php
2
 
3
declare(strict_types=1);
4
 
5
namespace LeadersLinked\Controller;
6
 
7
use Laminas\Db\Adapter\AdapterInterface;
16768 efrain 8
 
1384 efrain 9
use Laminas\Mvc\Controller\AbstractActionController;
10
use Laminas\Log\LoggerInterface;
11
use Laminas\View\Model\ViewModel;
12
use Laminas\View\Model\JsonModel;
15457 efrain 13
use LeadersLinked\Form\RecruitmentSelection\RecruitmentSelectionVacancyForm;
1384 efrain 14
use LeadersLinked\Library\Functions;
1386 eleazar 15
use LeadersLinked\Mapper\RecruitmentSelectionVacancyMapper;
1387 eleazar 16
use LeadersLinked\Model\RecruitmentSelectionVacancy;
1384 efrain 17
use LeadersLinked\Hydrator\ObjectPropertyHydrator;
18
use LeadersLinked\Model\Location;
15461 efrain 19
use LeadersLinked\Mapper\BehaviorMapper;
20
use LeadersLinked\Mapper\CompetencyMapper;
21
use LeadersLinked\Mapper\CompetencyTypeMapper;
22
use LeadersLinked\Mapper\JobDescriptionCompetencyBehaviorMapper;
23
use LeadersLinked\Mapper\JobDescriptionCompetencyMapper;
24
use LeadersLinked\Mapper\JobDescriptionSubordinateMapper;
1384 efrain 25
use LeadersLinked\Mapper\LocationMapper;
26
use LeadersLinked\Mapper\IndustryMapper;
27
use LeadersLinked\Mapper\JobDescriptionMapper;
28
use LeadersLinked\Mapper\JobCategoryMapper;
15457 efrain 29
use Laminas\Paginator\Adapter\DbSelect;
30
use Laminas\Paginator\Paginator;
31
use LeadersLinked\Mapper\QueryMapper;
32
use Laminas\Hydrator\ArraySerializableHydrator;
33
use Laminas\Db\ResultSet\HydratingResultSet;
1384 efrain 34
 
12314 stevensc 35
class RecruitmentSelectionVacancyController extends AbstractActionController
36
{
1384 efrain 37
 
38
    /**
39
     *
16769 efrain 40
     * @var \Laminas\Db\Adapter\AdapterInterface
1384 efrain 41
     */
42
    private $adapter;
16768 efrain 43
 
1384 efrain 44
    /**
45
     *
16769 efrain 46
     * @var \LeadersLinked\Cache\CacheInterface
1384 efrain 47
     */
16769 efrain 48
    private $cache;
49
 
50
 
51
    /**
52
     *
53
     * @var \Laminas\Log\LoggerInterface
54
     */
1384 efrain 55
    private $logger;
16768 efrain 56
 
1384 efrain 57
    /**
58
     *
59
     * @var array
60
     */
61
    private $config;
16768 efrain 62
 
16769 efrain 63
 
1384 efrain 64
    /**
65
     *
16769 efrain 66
     * @var \Laminas\Mvc\I18n\Translator
67
     */
68
    private $translator;
69
 
70
 
71
    /**
72
     *
73
     * @param \Laminas\Db\Adapter\AdapterInterface $adapter
74
     * @param \LeadersLinked\Cache\CacheInterface $cache
75
     * @param \Laminas\Log\LoggerInterface LoggerInterface $logger
1384 efrain 76
     * @param array $config
16769 efrain 77
     * @param \Laminas\Mvc\I18n\Translator $translator
1384 efrain 78
     */
16769 efrain 79
    public function __construct($adapter, $cache, $logger, $config, $translator)
12314 stevensc 80
    {
16769 efrain 81
        $this->adapter      = $adapter;
82
        $this->cache        = $cache;
83
        $this->logger       = $logger;
84
        $this->config       = $config;
85
        $this->translator   = $translator;
1384 efrain 86
    }
87
 
12314 stevensc 88
    public function indexAction()
89
    {
1384 efrain 90
        $request = $this->getRequest();
91
        $currentUserPlugin = $this->plugin('currentUserPlugin');
92
        $currentCompany = $currentUserPlugin->getCompany();
93
        $currentUser = $currentUserPlugin->getUser();
94
 
95
 
96
        $request = $this->getRequest();
97
        if ($request->isGet()) {
98
            $sandbox = $this->config['leaderslinked.runmode.sandbox'];
12314 stevensc 99
            if ($sandbox) {
1384 efrain 100
                $google_map_key  = $this->config['leaderslinked.google_map.sandbox_api_key'];
101
            } else {
102
                $google_map_key  = $this->config['leaderslinked.google_map.production_api_key'];
103
            }
104
 
12314 stevensc 105
 
1384 efrain 106
            $headers = $request->getHeaders();
107
 
108
            $isJson = false;
109
            if ($headers->has('Accept')) {
110
                $accept = $headers->get('Accept');
111
 
112
                $prioritized = $accept->getPrioritized();
113
 
114
                foreach ($prioritized as $key => $value) {
115
                    $raw = trim($value->getRaw());
116
 
117
                    if (!$isJson) {
118
                        $isJson = strpos($raw, 'json');
119
                    }
120
                }
121
            }
122
 
123
            //$isJson = true;
124
            if ($isJson) {
10093 stevensc 125
                $search = $this->params()->fromQuery('search');
16778 efrain 126
                $search = empty($search['value']) ? '' : Functions::sanitizeFilterString($search['value']);
1384 efrain 127
 
15371 efrain 128
                $start = intval($this->params()->fromQuery('start', 0), 10);
1384 efrain 129
                $records_x_page = intval($this->params()->fromQuery('length', 10), 10);
15371 efrain 130
                $page =  intval($start / $records_x_page);
131
                $page++;
132
 
1384 efrain 133
                $order = $this->params()->fromQuery('order', []);
134
                $order_field = empty($order[0]['column']) ? 99 : intval($order[0]['column'], 10);
16766 efrain 135
                $order_direction = empty($order[0]['dir']) ? 'ASC' : Functions::sanitizeFilterString(filter_var($order[0]['dir']));
1384 efrain 136
 
137
                $fields = ['name'];
138
                $order_field = isset($fields[$order_field]) ? $fields[$order_field] : 'name';
139
 
140
                if (!in_array($order_direction, ['ASC', 'DESC'])) {
141
                    $order_direction = 'ASC';
142
                }
143
 
1434 eleazar 144
                $acl = $this->getEvent()->getViewModel()->getVariable('acl');
1477 efrain 145
                $allowDelete = $acl->isAllowed($currentUser->usertype_id, 'recruitment-and-selection/vacancies/delete');
146
                $allowEdit = $acl->isAllowed($currentUser->usertype_id, 'recruitment-and-selection/vacancies/edit');
1434 eleazar 147
 
12314 stevensc 148
 
15457 efrain 149
                $queryMapper = QueryMapper::getInstance($this->adapter);
150
                $select = $queryMapper->getSql()->select();
151
                $select->from(['tb1' => RecruitmentSelectionVacancyMapper::_TABLE]);
152
                $select->columns(['uuid', 'name', 'last_date', 'status']);
153
                $select->join(['tb2' => JobDescriptionMapper::_TABLE], 'tb1.job_description_id = tb2.id AND tb1.company_id = tb2.company_id', ['job_description' => 'name']);
154
 
155
                $select->where->equalTo('tb1.company_id', $currentCompany->network_id);
156
 
157
                if($search) {
158
                    $select->where->like('tb1.name', '%' . $search . '%');
159
                }
160
                $select->order($order_field . ' ' . $order_direction);
161
 
162
                //echo $select->getSqlString($this->adapter->platform); exit;
163
 
164
                $hydrator   = new ArraySerializableHydrator();
165
                $resultset  = new HydratingResultSet($hydrator);
166
 
167
                $adapter = new DbSelect($select, $queryMapper->getSql(), $resultset);
168
                $paginator = new Paginator($adapter);
169
                $paginator->setItemCountPerPage($records_x_page);
170
                $paginator->setCurrentPageNumber($page);
171
 
172
 
1384 efrain 173
 
174
                $items = [];
175
                $records = $paginator->getCurrentItems();
12314 stevensc 176
 
1384 efrain 177
                foreach ($records as $record) {
15457 efrain 178
                    $dt = \DateTime::createFromFormat('Y-m-d', $record['last_date']);
179
 
15461 efrain 180
 
181
 
15457 efrain 182
                    switch($record['status'])
183
                    {
184
                        case RecruitmentSelectionVacancy::STATUS_ACTIVE :
185
                            $status = 'LABEL_ACTIVE';
186
                            break;
187
 
188
                        case RecruitmentSelectionVacancy::STATUS_INACTIVE :
189
                            $status = 'LABEL_INACTIVE';
190
                            break;
191
 
192
                        case RecruitmentSelectionVacancy::STATUS_EXPIRED :
193
                            $status = 'LABEL_EXPIRED';
194
                            break;
195
 
196
                        case RecruitmentSelectionVacancy::STATUS_COMPLETED :
197
                            $status = 'LABEL_COMPLETED';
198
                            break;
199
 
200
                        default :
201
                            $status = 'LABEL_UNKNOWN';
202
                            break;
203
 
1384 efrain 204
                    }
15457 efrain 205
 
15461 efrain 206
 
207
                    if($record['status'] == RecruitmentSelectionVacancy::STATUS_ACTIVE || $record['status'] ==  RecruitmentSelectionVacancy::STATUS_INACTIVE) {
208
                        $actions = [
209
                            'link_edit' => $allowEdit ? $this->url()->fromRoute('recruitment-and-selection/vacancies/edit', ['id' => $record['uuid']]) : '',
210
                            'link_delete' => $allowDelete ? $this->url()->fromRoute('recruitment-and-selection/vacancies/delete', ['id' => $record['uuid']]) : ''
211
                        ];
212
                    } else {
213
 
214
                        $actions = [
215
                            'link_edit' => '',
216
                            'link_delete' => '',
217
                        ];
218
                    }
219
 
15457 efrain 220
                    $item = [
221
                      'name' => $record['name'],
222
                      'job_description' => $record['job_description'],
223
                      'last_date' => $dt->format('d/m/Y'),
15461 efrain 224
                      'status' => $status,
225
                      'actions' =>  $actions,
15457 efrain 226
                    ];
227
 
1384 efrain 228
 
229
                    array_push($items, $item);
230
                }
231
 
232
                return new JsonModel([
233
                    'success' => true,
234
                    'data' => [
235
                        'items' => $items,
236
                        'total' => $paginator->getTotalItemCount(),
237
                    ]
238
                ]);
239
            } else {
240
 
1544 eleazar 241
                $form = new RecruitmentSelectionVacancyForm($this->adapter, $currentCompany->id);
1384 efrain 242
 
1549 eleazar 243
                $jobDescriptionMapper = JobDescriptionMapper::getInstance($this->adapter);
244
                $industryMapper = industryMapper::getInstance($this->adapter);
12314 stevensc 245
                $jobCategoryMapper = JobCategoryMapper::getInstance($this->adapter);
246
 
247
                $jobDescritions = [];
248
                $industries = [];
249
                $jobCategories = [];
250
 
15087 efrain 251
                $records = $jobCategoryMapper->fetchAllActive();
12314 stevensc 252
 
253
                foreach ($records as $record) {
254
                    $jobCategories[$record->uuid] = $record->name;
255
                }
256
 
15087 efrain 257
                $records = $industryMapper->fetchAllActive();
12314 stevensc 258
 
259
                foreach ($records as $record) {
260
                    $industries[$record->uuid] = $record->name;
261
                }
262
 
263
                $records = $currentCompany ?
264
                    $jobDescriptionMapper->fetchAllActiveByCompanyId($currentCompany->id) :
15087 efrain 265
                    $jobDescriptionMapper->fetchAllActiveByDefault();
266
 
12314 stevensc 267
                foreach ($records as $record) {
268
                    $jobDescritions[$record->uuid] = $record->name;
269
                }
270
 
15087 efrain 271
 
272
                //print_r($jobDescritions); exit;
273
 
1384 efrain 274
                $this->layout()->setTemplate('layout/layout-backend');
275
                $viewModel = new ViewModel();
1396 eleazar 276
                $viewModel->setTemplate('leaders-linked/recruitment-and-selection-vacancies/index.phtml');
1384 efrain 277
                $viewModel->setVariable('form', $form);
10112 stevensc 278
                $viewModel->setVariable('google_map_key', $google_map_key);
12314 stevensc 279
                $viewModel->setVariable('jobDescritions', $jobDescritions);
280
                $viewModel->setVariable('industries', $industries);
281
                $viewModel->setVariable('jobCategories', $jobCategories);
1561 efrain 282
 
1384 efrain 283
                return $viewModel;
284
            }
285
        } else {
286
            return new JsonModel([
287
                'success' => false,
288
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
12314 stevensc 289
            ]);;
1384 efrain 290
        }
291
    }
292
 
12314 stevensc 293
    public function addAction()
294
    {
1384 efrain 295
        $request = $this->getRequest();
296
        $currentUserPlugin = $this->plugin('currentUserPlugin');
297
        $currentCompany = $currentUserPlugin->getCompany();
298
        $currentUser = $currentUserPlugin->getUser();
299
 
300
        $request = $this->getRequest();
301
 
302
 
303
        if ($request->isPost()) {
1544 eleazar 304
            $form = new RecruitmentSelectionVacancyForm($this->adapter, $currentCompany->id);
1384 efrain 305
            $dataPost = $request->getPost()->toArray();
15087 efrain 306
 
307
 
15461 efrain 308
            if(!empty($dataPost['last_date'])) {
309
                $dt = \DateTime::createFromFormat('d/m/Y', $dataPost['last_date']);
310
                if($dt) {
311
                    $dataPost['last_date'] = $dt->format('Y-m-d');
312
                } else {
313
                    $dataPost['last_date'] = date('Y-m-d');
314
                }
315
            }
316
 
15087 efrain 317
 
318
 
1387 eleazar 319
            $dataPost['status'] = isset($dataPost['status']) ? $dataPost['status'] : RecruitmentSelectionVacancy::STATUS_INACTIVE;
1384 efrain 320
 
321
            $form->setData($dataPost);
322
 
323
            if ($form->isValid()) {
324
                $dataPost = (array) $form->getData();
325
 
15087 efrain 326
 
1384 efrain 327
                $hydrator = new ObjectPropertyHydrator();
328
 
1417 eleazar 329
                $location = new Location();
330
                $hydrator->hydrate($dataPost, $location);
12314 stevensc 331
 
332
                $locationMapper = LocationMapper::getInstance($this->adapter);
1452 eleazar 333
                $result = $locationMapper->insert($location);
1451 eleazar 334
 
1417 eleazar 335
 
1418 eleazar 336
                if (!$result) {
337
                    return new JsonModel([
338
                        'success'   => false,
15461 efrain 339
                        'data' => $locationMapper->getError()
1418 eleazar 340
                    ]);
341
                }
1417 eleazar 342
 
1539 eleazar 343
                $vacancy = new RecruitmentSelectionVacancy();
344
                $hydrator->hydrate($dataPost, $vacancy);
1427 eleazar 345
 
1539 eleazar 346
                $vacancy->location_id = $location->id;
1544 eleazar 347
                $vacancy->company_id = $currentCompany->id;
1384 efrain 348
 
1427 eleazar 349
                $jobDescriptionMapper = JobDescriptionMapper::getInstance($this->adapter);
350
                $jobDescription = $jobDescriptionMapper->fetchOneByUuid($dataPost['job_description_id']);
1539 eleazar 351
                $vacancy->job_description_id = $jobDescription->id;
15461 efrain 352
                $vacancy->content =  $this->serialize($jobDescription);
1427 eleazar 353
 
354
                $jobCategoryMapper = JobCategoryMapper::getInstance($this->adapter);
12314 stevensc 355
                $jobCategory = $jobCategoryMapper->fetchOneByUuid($dataPost['job_category_id']);
1539 eleazar 356
                $vacancy->job_category_id = $jobCategory->id;
1427 eleazar 357
 
1428 eleazar 358
                $industryMapper = IndustryMapper::getInstance($this->adapter);
359
                $industry = $industryMapper->fetchOneByUuid($dataPost['industry_id']);
1539 eleazar 360
                $vacancy->industry_id = $industry->id;
1425 eleazar 361
 
1539 eleazar 362
                $vacancy->description = $dataPost['description'];
12314 stevensc 363
 
1428 eleazar 364
 
15087 efrain 365
 
1427 eleazar 366
                $recruitmentSelectionVacancyMapper = RecruitmentSelectionVacancyMapper::getInstance($this->adapter);
1539 eleazar 367
                $result = $recruitmentSelectionVacancyMapper->insert($vacancy);
1384 efrain 368
 
369
                if ($result) {
15461 efrain 370
                    $this->logger->info('Se agrego la vacante : ' . $vacancy->name, ['user_id' => $currentUser->id, 'ip' => Functions::getUserIP()]);
1384 efrain 371
 
372
                    $data = [
373
                        'success' => true,
374
                        'data' => 'LABEL_RECORD_ADDED'
375
                    ];
376
                } else {
377
                    $data = [
378
                        'success' => false,
1412 eleazar 379
                        'data' => $recruitmentSelectionVacancyMapper->getError()
1384 efrain 380
                    ];
381
                }
382
 
383
                return new JsonModel($data);
384
            } else {
385
                $messages = [];
386
                $form_messages = (array) $form->getMessages();
387
                foreach ($form_messages as $fieldname => $field_messages) {
388
 
389
                    $messages[$fieldname] = array_values($field_messages);
390
                }
391
 
392
                return new JsonModel([
393
                    'success' => false,
394
                    'data' => $messages
395
                ]);
396
            }
397
        } else {
398
            $data = [
399
                'success' => false,
1575 eleazar 400
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
1384 efrain 401
            ];
402
 
403
            return new JsonModel($data);
404
        }
405
 
406
        return new JsonModel($data);
407
    }
408
 
12314 stevensc 409
    public function editAction()
410
    {
1384 efrain 411
        $request = $this->getRequest();
412
        $currentUserPlugin = $this->plugin('currentUserPlugin');
413
        $currentCompany = $currentUserPlugin->getCompany();
414
        $currentUser = $currentUserPlugin->getUser();
415
 
416
        $request = $this->getRequest();
417
        $uuid = $this->params()->fromRoute('id');
418
 
419
 
420
        if (!$uuid) {
421
            $data = [
422
                'success' => false,
423
                'data' => 'ERROR_INVALID_PARAMETER'
424
            ];
425
 
426
            return new JsonModel($data);
427
        }
428
 
1386 eleazar 429
        $recruitmentSelectionVacancyMapper = RecruitmentSelectionVacancyMapper::getInstance($this->adapter);
1575 eleazar 430
        $vacancy = $recruitmentSelectionVacancyMapper->fetchOneByUuid($uuid);
431
        if (!$vacancy) {
1384 efrain 432
            $data = [
433
                'success' => false,
434
                'data' => 'ERROR_RECORD_NOT_FOUND'
435
            ];
436
 
437
            return new JsonModel($data);
438
        }
439
 
1575 eleazar 440
        if ($vacancy->company_id != $currentCompany->id) {
1384 efrain 441
            return new JsonModel([
442
                'success' => false,
443
                'data' => 'ERROR_UNAUTHORIZED'
444
            ]);
445
        }
446
 
447
 
448
        if ($request->isPost()) {
1544 eleazar 449
            $form = new RecruitmentSelectionVacancyForm($this->adapter, $currentCompany->id);
1384 efrain 450
            $dataPost = $request->getPost()->toArray();
15461 efrain 451
 
452
            if(!empty($dataPost['last_date'])) {
453
                $dt = \DateTime::createFromFormat('d/m/Y', $dataPost['last_date']);
454
                if($dt) {
455
                    $dataPost['last_date'] = $dt->format('Y-m-d');
456
                } else {
457
                    $dataPost['last_date'] = date('Y-m-d');
458
                }
459
            }
460
 
1387 eleazar 461
            $dataPost['status'] = isset($dataPost['status']) ? $dataPost['status'] : RecruitmentSelectionVacancy::STATUS_INACTIVE;
1384 efrain 462
 
463
            $form->setData($dataPost);
464
 
465
            if ($form->isValid()) {
466
                $dataPost = (array) $form->getData();
467
 
468
                $hydrator = new ObjectPropertyHydrator();
1575 eleazar 469
                $hydrator->hydrate($dataPost, $vacancy);
1384 efrain 470
 
1575 eleazar 471
                if (!$vacancy->status) {
472
                    $vacancy->status = RecruitmentSelectionVacancy::STATUS_INACTIVE;
1384 efrain 473
                }
15118 efrain 474
 
1578 eleazar 475
                $locationMapper = LocationMapper::getInstance($this->adapter);
476
                $location = $locationMapper->fetchOne($vacancy->location_id);
477
                $hydrator->hydrate($dataPost, $location);
478
                $locationMapper->update($location);
479
 
1384 efrain 480
                $jobDescriptionMapper = JobDescriptionMapper::getInstance($this->adapter);
481
                $jobDescription = $jobDescriptionMapper->fetchOneByUuid($dataPost['job_description_id']);
1575 eleazar 482
                $vacancy->job_description_id = $jobDescription->id;
1384 efrain 483
 
1439 eleazar 484
                $jobCategoryMapper = JobCategoryMapper::getInstance($this->adapter);
12314 stevensc 485
                $jobCategory = $jobCategoryMapper->fetchOneByUuid($dataPost['job_category_id']);
1575 eleazar 486
                $vacancy->job_category_id = $jobCategory->id;
1384 efrain 487
 
1439 eleazar 488
                $industryMapper = IndustryMapper::getInstance($this->adapter);
489
                $industry = $industryMapper->fetchOneByUuid($dataPost['industry_id']);
1575 eleazar 490
                $vacancy->industry_id = $industry->id;
15461 efrain 491
 
1439 eleazar 492
 
1577 eleazar 493
                $result = $recruitmentSelectionVacancyMapper->update($vacancy);
1439 eleazar 494
 
12314 stevensc 495
 
1384 efrain 496
                if ($result) {
15461 efrain 497
                    $this->logger->info('Se actualizo la vancante : ' . $vacancy->name, ['user_id' => $currentUser->id, 'ip' => Functions::getUserIP()]);
1384 efrain 498
                    $data = [
499
                        'success' => true,
500
                        'data' => 'LABEL_RECORD_UPDATED'
501
                    ];
502
                } else {
503
                    $data = [
504
                        'success' => false,
1386 eleazar 505
                        'data' => $recruitmentSelectionVacancyMapper->getError()
1384 efrain 506
                    ];
507
                }
508
 
509
                return new JsonModel($data);
510
            } else {
511
                $messages = [];
512
                $form_messages = (array) $form->getMessages();
513
                foreach ($form_messages as $fieldname => $field_messages) {
514
                    $messages[$fieldname] = array_values($field_messages);
515
                }
516
 
517
                return new JsonModel([
518
                    'success' => false,
519
                    'data' => $messages
520
                ]);
521
            }
522
        } else if ($request->isGet()) {
523
            $hydrator = new ObjectPropertyHydrator();
524
 
1441 eleazar 525
            $locationMapper = LocationMapper::getInstance($this->adapter);
1575 eleazar 526
            $location = $locationMapper->fetchOne($vacancy->location_id);
1441 eleazar 527
 
1384 efrain 528
            $jobDescriptionMapper = JobDescriptionMapper::getInstance($this->adapter);
1575 eleazar 529
            $jobDescription = $jobDescriptionMapper->fetchOne($vacancy->job_description_id);
15461 efrain 530
 
531
            $jobCategoryMapper =  JobCategoryMapper::getInstance($this->adapter);
1575 eleazar 532
            $jobCategory = $jobCategoryMapper->fetchOne($vacancy->job_category_id);
15461 efrain 533
 
1445 eleazar 534
            $industryMapper = IndustryMapper::getInstance($this->adapter);
1575 eleazar 535
            $industry = $industryMapper->fetchOne($vacancy->industry_id);
15087 efrain 536
 
15461 efrain 537
 
15087 efrain 538
            $dt = \DateTime::createFromFormat('Y-m-d', $vacancy->last_date);
15461 efrain 539
            $last_date = $dt->format('d/m/Y');
15087 efrain 540
 
1384 efrain 541
            $data = [
542
                'success' => true,
543
                'data' => [
1575 eleazar 544
                    'name' => $vacancy->name,
15461 efrain 545
                    'job_description_id' =>  $jobDescription->uuid,
546
                    'job_category_id' => $jobCategory->uuid,
547
                    'industry_id' => $industry->uuid,
1572 eleazar 548
                    'location_search' => $location->formatted_address,
1570 eleazar 549
                    'formatted_address' => $location->formatted_address,
1572 eleazar 550
                    'address1' => $location->address1,
551
                    'address2' => $location->address2,
1568 eleazar 552
                    'country' => $location->country,
553
                    'state' => $location->state,
12314 stevensc 554
                    'city1' => $location->city1,
1568 eleazar 555
                    'city2' => $location->city2,
556
                    'postal_code' => $location->postal_code,
557
                    'latitude' => $location->latitude,
558
                    'longitude' => $location->longitude,
1575 eleazar 559
                    'description' => $vacancy->description,
15087 efrain 560
                    'last_date' => $last_date,
1575 eleazar 561
                    'status' => $vacancy->status,
15461 efrain 562
 
1384 efrain 563
                ]
564
            ];
565
 
15461 efrain 566
 
1384 efrain 567
        } else {
568
            $data = [
569
                'success' => false,
1574 eleazar 570
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
1384 efrain 571
            ];
572
 
15461 efrain 573
 
1384 efrain 574
        }
575
 
576
        return new JsonModel($data);
577
    }
578
 
12314 stevensc 579
    public function deleteAction()
580
    {
1384 efrain 581
        $request = $this->getRequest();
582
        $currentUserPlugin = $this->plugin('currentUserPlugin');
583
        $currentCompany = $currentUserPlugin->getCompany();
584
        $currentUser = $currentUserPlugin->getUser();
585
 
586
        $request = $this->getRequest();
587
        $uuid = $this->params()->fromRoute('id');
588
 
589
        if (!$uuid) {
590
            $data = [
591
                'success' => false,
592
                'data' => 'ERROR_INVALID_PARAMETER'
593
            ];
594
 
595
            return new JsonModel($data);
596
        }
597
 
1386 eleazar 598
        $recruitmentSelectionVacancyMapper = RecruitmentSelectionVacancyMapper::getInstance($this->adapter);
1539 eleazar 599
        $vacancyMapper = $recruitmentSelectionVacancyMapper->fetchOneByUuid($uuid);
600
        if (!$vacancyMapper) {
1384 efrain 601
            $data = [
602
                'success' => false,
603
                'data' => 'ERROR_RECORD_NOT_FOUND'
604
            ];
605
 
606
            return new JsonModel($data);
607
        }
608
 
1544 eleazar 609
        if ($vacancyMapper->company_id != $currentCompany->id) {
1384 efrain 610
            return new JsonModel([
611
                'success' => false,
612
                'data' => 'ERROR_UNAUTHORIZED'
613
            ]);
614
        }
615
 
616
        if ($request->isPost()) {
617
 
618
 
1539 eleazar 619
            $result = $recruitmentSelectionVacancyMapper->delete($vacancyMapper->id);
1384 efrain 620
            if ($result) {
1539 eleazar 621
                $this->logger->info('Se borro el formulario de reclutamiento ' . $vacancyMapper->name, ['user_id' => $currentUser->id, 'ip' => Functions::getUserIP()]);
1384 efrain 622
 
623
                $data = [
624
                    'success' => true,
625
                    'data' => 'LABEL_RECORD_DELETED'
626
                ];
627
            } else {
628
 
629
                $data = [
630
                    'success' => false,
1386 eleazar 631
                    'data' => $recruitmentSelectionVacancyMapper->getError()
1384 efrain 632
                ];
633
 
634
                return new JsonModel($data);
635
            }
636
        } else {
637
            $data = [
638
                'success' => false,
639
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
640
            ];
641
 
642
            return new JsonModel($data);
643
        }
644
 
645
        return new JsonModel($data);
646
    }
15461 efrain 647
 
648
 
649
 
650
    public function serialize($jobDescription)
651
    {
652
 
653
 
654
 
655
 
656
        $behaviorMapper = BehaviorMapper::getInstance($this->adapter);
657
        $competencyMapper = CompetencyMapper::getInstance($this->adapter);
658
        $competencyTypeMapper = CompetencyTypeMapper::getInstance($this->adapter);
659
 
660
        $competencyTypes = [];
661
        $competencies = [];
662
        $behaviors = [];
663
        $competencies_selected = [];
664
        $subordinates_selected = [];
665
 
666
        $jobDescriptionCompetencyMapper = JobDescriptionCompetencyMapper::getInstance($this->adapter);
667
        $jobDescriptionCompetencyBehaviorMapper = JobDescriptionCompetencyBehaviorMapper::getInstance($this->adapter);
668
 
669
        $jobDescriptionCompetencies = $jobDescriptionCompetencyMapper->fetchAllByJobDescriptionId($jobDescription->id);
670
        foreach($jobDescriptionCompetencies as $jobDescriptionCompetency)
671
        {
672
 
673
            if(isset($competencies[$jobDescriptionCompetency->competency_id])) {
674
                $competency = $competencies[$jobDescriptionCompetency->competency_id];
675
            } else {
676
 
677
                $competency = $competencyMapper->fetchOne($jobDescriptionCompetency->competency_id);
678
                if(!$competency) {
679
                    continue;
680
                }
681
 
682
 
683
 
684
                $competencies[$jobDescriptionCompetency->competency_id] = new \stdClass();
685
                $competencies[$jobDescriptionCompetency->competency_id]->uuid = $competency->uuid;
686
                $competencies[$jobDescriptionCompetency->competency_id]->name = $competency->name;
687
                $competencies[$jobDescriptionCompetency->competency_id]->description = $competency->description;
688
 
689
            }
690
 
691
 
692
            if(isset($competencyTypes[$competency->competency_type_id])) {
693
                $competencyType = $competencyTypes[$competency->competency_type_id];
694
            } else {
695
 
696
                $competencyType = $competencyTypeMapper->fetchOne($competency->competency_type_id);
697
                if(!$competencyType) {
698
                    continue;
699
                }
700
 
701
                $competencyTypes[$competency->competency_type_id] = new \stdClass();
702
                $competencyTypes[$competency->competency_type_id]->uuid = $competencyType->uuid;
703
                $competencyTypes[$competency->competency_type_id]->name = $competencyType->name;
704
                $competencyTypes[$competency->competency_type_id]->description = $competencyType->description;
705
 
706
            }
707
 
708
            $competency_selected = [
709
                'uuid' => $competency->uuid,
710
                'competency_type_uuid' => $competencyType->uuid,
711
                'behaviors' => []
712
            ];
713
 
714
 
715
            $jobDescriptionCompetencyBehaviors = $jobDescriptionCompetencyBehaviorMapper->fetchAllByJobDescriptionIdAndCompetencyId($jobDescriptionCompetency->job_description_id, $jobDescriptionCompetency->competency_id);
716
            foreach($jobDescriptionCompetencyBehaviors as $jobDescriptionCompetencyBehavior)
717
            {
718
 
719
 
720
                if(isset($behaviors[$jobDescriptionCompetencyBehavior->behavior_id])) {
721
                    $behavior = $behaviors[$jobDescriptionCompetencyBehavior->behavior_id];
722
                } else {
723
 
724
                    $behavior = $behaviorMapper->fetchOne($jobDescriptionCompetencyBehavior->behavior_id);
725
                    if(!$behavior) {
726
 
727
                        continue;
728
                    }
729
 
730
                    $behaviors[$jobDescriptionCompetencyBehavior->behavior_id] = new \stdClass();
731
                    $behaviors[$jobDescriptionCompetencyBehavior->behavior_id]->uuid = $behavior->uuid;
732
                    $behaviors[$jobDescriptionCompetencyBehavior->behavior_id]->description = $behavior->description;
733
 
734
                }
735
 
736
 
737
 
738
 
739
                array_push($competency_selected['behaviors'], ['uuid' => $behavior->uuid, 'level' => $jobDescriptionCompetencyBehavior->level]);
740
 
741
 
742
            }
743
 
744
            array_push($competencies_selected, $competency_selected);
745
 
746
 
747
 
748
        }
749
 
750
 
751
        $jobDescriptionMapper = JobDescriptionMapper::getInstance($this->adapter);
752
 
753
        $jobDescriptionSubordinateMapper = JobDescriptionSubordinateMapper::getInstance($this->adapter);
754
        $jobDescriptionSubordinates = $jobDescriptionSubordinateMapper->fetchAllByJobDescriptionIdTopLevel($jobDescription->id);
755
 
756
        foreach($jobDescriptionSubordinates as $jobDescriptionSubordinate)
757
        {
758
            $jobDescriptionForSubordinate = $jobDescriptionMapper->fetchOne($jobDescriptionSubordinate->job_description_id_low_level);
759
            if($jobDescriptionForSubordinate) {
760
                array_push($subordinates_selected, ['uuid' => $jobDescriptionForSubordinate->uuid ]);
761
            }
762
 
763
 
764
 
765
        }
766
 
767
        if($jobDescription->job_description_id_boss) {
768
 
769
            $jobDescriptionBoss = $jobDescriptionMapper->fetchOne($jobDescription->job_description_id_boss);
770
            if($jobDescriptionBoss) {
771
                $job_description_id_boss = $jobDescriptionBoss->uuid;
772
            }
773
        } else {
774
            $job_description_id_boss = '';
775
        }
776
 
777
        $content = [
778
            'uuid' => $jobDescription->uuid,
779
            'name' => $jobDescription->name,
780
            'functions' => $jobDescription->functions,
781
            'objectives' => $jobDescription->objectives,
782
            'job_description_id_boss' => $job_description_id_boss,
783
            'competency_types' => $competencyTypes,
784
            'competencies' => $competencies,
785
            'behaviors' => $behaviors,
786
            'competencies_selected' => $competencies_selected,
787
            'subordinates_selected' => $subordinates_selected,
788
 
789
        ];
790
 
791
        return json_encode($content);
792
    }
1384 efrain 793
}