Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 15464 | Rev 16768 | 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;
16766 efrain 8
use LeadersLinked\Cache\CacheInterface;
15461 efrain 9
use Laminas\Mvc\Controller\AbstractActionController;
10
use Laminas\Log\LoggerInterface;
11
use Laminas\View\Model\JsonModel;
12
use LeadersLinked\Form\InterviewFileForm;
13
use LeadersLinked\Hydrator\ObjectPropertyHydrator;
14
use LeadersLinked\Library\Functions;
15
use LeadersLinked\Mapper\RecruitmentSelectionApplicationMapper;
16
use LeadersLinked\Mapper\RecruitmentSelectionFileMapper;
17
use LeadersLinked\Mapper\RecruitmentSelectionInterviewMapper;
18
use LeadersLinked\Mapper\RecruitmentSelectionVacancyMapper;
19
use LeadersLinked\Mapper\RecruitmentSelectionCandidateMapper;
20
use LeadersLinked\Model\RecruitmentSelectionApplication;
21
use Laminas\View\Model\ViewModel;
22
use LeadersLinked\Form\RecruitmentSelection\RecruitmentSelectionApplicationFileForm;
23
use LeadersLinked\Model\RecruitmentSelectionCandidate;
24
use LeadersLinked\Model\RecruitmentSelectionFile;
25
use LeadersLinked\Model\RecruitmentSelectionVacancy;
26
 
27
class RecruitmentSelectionFileController extends AbstractActionController {
28
 
29
    /**
30
     *
31
     * @var AdapterInterface
32
     */
33
    private $adapter;
34
 
35
    /**
36
     *
16766 efrain 37
     * @var CacheInterface
15461 efrain 38
     */
39
    private $cache;
40
 
41
    /**
42
     *
43
     * @var  LoggerInterface
44
     */
45
    private $logger;
46
 
47
    /**
48
     *
49
     * @var array
50
     */
51
    private $config;
52
 
53
    /**
54
     *
55
     * @param AdapterInterface $adapter
16766 efrain 56
     *@param CacheInterface $cache
15461 efrain 57
     * @param LoggerInterface $logger
58
     * @param array $config
59
     */
60
    public function __construct($adapter, $cache, $logger, $config) {
61
        $this->adapter = $adapter;
62
        $this->cache = $cache;
63
        $this->logger = $logger;
64
        $this->config = $config;
65
    }
66
 
67
    public function indexAction()
68
    {
69
            $data = [
70
                'success' => false,
71
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
72
            ];
73
 
74
            return new JsonModel($data);
75
    }
76
 
77
    public function addAction()
78
    {
79
        $request = $this->getRequest();
80
        $currentUserPlugin = $this->plugin('currentUserPlugin');
81
        $currentCompany = $currentUserPlugin->getCompany();
82
        $currentUser = $currentUserPlugin->getUser();
83
 
84
        $request = $this->getRequest();
85
        $application_id = $this->params()->fromRoute('application_id');
86
 
87
        $vacancy_uuid = $this->params()->fromRoute('vacancy_id');
88
 
89
        $vacancyMapper = RecruitmentSelectionVacancyMapper::getInstance($this->adapter);
90
        $vacancy = $vacancyMapper->fetchOneByUuid($vacancy_uuid);
91
 
92
        if(!$vacancy) {
93
            $data = [
94
                'success' => false,
95
                'data' => 'ERROR_VACANCY_NOT_FOUND'
96
            ];
97
 
98
            return new JsonModel($data);
99
        }
100
 
101
 
102
        if($vacancy->company_id != $currentCompany->id) {
103
            $data = [
104
                'success' => false,
105
                'data' => 'ERROR_VACANCY_IS_OTHER_COMPANY',
106
            ];
107
 
108
            return new JsonModel($data);
109
        }
110
 
111
 
112
 
113
        $applicationMapper = RecruitmentSelectionApplicationMapper::getInstance($this->adapter);
114
        $application = $applicationMapper->fetchOneByUuid($application_id);
115
 
116
 
117
        if (!$application) {
118
            $data = [
119
                'success' => false,
120
                'data' => 'ERROR_RECORD_NOT_FOUND'
121
            ];
122
 
123
            return new JsonModel($data);
124
        }
125
 
126
 
127
        if ($application->vacancy_id != $vacancy->id) {
128
            return new JsonModel([
129
                'success' => false,
130
                'data' => 'ERROR_UNAUTHORIZED'
131
            ]);
132
        }
133
 
134
        if($request->isPost()) {
135
            $form = new  RecruitmentSelectionApplicationFileForm();
136
 
137
            $dataPost = array_merge(
138
                $request->getPost()->toArray(),
139
                $request->getFiles()->toArray(),
140
            );
141
 
142
            $form->setData($dataPost);
143
 
144
            if($form->isValid()) {
145
 
146
                $dataPost = (array) $form->getData();
147
                $files = $this->getRequest()->getFiles()->toArray();
148
 
149
                //if(!isset($files['file']) && empty($files['file']['error'])) {
150
 
15464 efrain 151
                $original_filename = Functions::normalizeStringFilename($files['file']['name']);
15461 efrain 152
 
153
                $file = new RecruitmentSelectionFile();
154
                $file->name = $dataPost['name'];
155
                $file->company_id = $currentCompany->id;
156
                $file->application_id = $application->id;
157
                $file->vacancy_id = $vacancy->id;
158
                $file->file = $original_filename;
159
 
160
                $fileMapper = RecruitmentSelectionFileMapper::getInstance($this->adapter);
161
 
162
                if($fileMapper->insert($file)) {
163
 
164
                     $target_path = $this->config['leaderslinked.fullpath.recruitment_selection'].$application->uuid;
165
                     if(!file_exists($target_path)) {
166
                         mkdir($target_path, 0755, true);
167
                     }
168
 
169
                     $target_filename = $target_path . DIRECTORY_SEPARATOR . $original_filename;
170
 
171
 
172
                     if(!move_uploaded_file($files['file']['tmp_name'], $target_filename)) {
173
 
174
                         $fileMapper->delete($file->id);
175
 
176
 
177
                         $data = [
178
                             'success'   => false,
179
                             'data'      =>  'ERROR_UPLOAD_FILE'
180
                         ];
181
 
182
                     } else {
183
 
184
 
185
                        $this->logger->info('Se agrego el archivo : '  . $file->name . ' (' . $original_filename . ')', ['user_id' => $currentUser->id, 'ip' => Functions::getUserIP()]);
186
 
187
                        $data = [
188
                            'success'   => true,
189
                            'data'   => [
190
                                'message' => 'LABEL_RECORD_ADDED',
191
                                'files' => $this->renderFiles($vacancy, $application)
192
                             ],
193
                        ];
194
                     }
195
                } else {
196
                    $data = [
197
                        'success'   => false,
198
                        'data'      => $fileMapper->getError()
199
                    ];
200
 
201
                }
202
 
203
                return new JsonModel($data);
204
 
205
            } else {
206
                $messages = [];
207
                $form_messages = (array) $form->getMessages();
208
                foreach ($form_messages as $fieldname => $field_messages) {
209
                    $messages[$fieldname] = array_values($field_messages);
210
                }
211
 
212
                return new JsonModel([
213
                    'success' => false,
214
                    'data' => $messages
215
                ]);
216
 
217
            }
218
 
219
        } else {
220
            $data = [
221
                'success' => false,
222
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
223
            ];
224
 
225
            return new JsonModel($data);
226
        }
227
 
228
    }
229
 
230
 
231
 
232
 
233
 
234
    public function deleteAction()
235
    {
236
        $request = $this->getRequest();
237
        $currentUserPlugin = $this->plugin('currentUserPlugin');
238
        $currentCompany = $currentUserPlugin->getCompany();
239
        $currentUser = $currentUserPlugin->getUser();
240
 
241
        $request = $this->getRequest();
242
        $application_id = $this->params()->fromRoute('application_id');
243
        $vacancy_uuid   = $this->params()->fromRoute('vacancy_id');
244
        $id             = $this->params()->fromRoute('id');
245
 
246
        $vacancyMapper = RecruitmentSelectionVacancyMapper::getInstance($this->adapter);
247
        $vacancy = $vacancyMapper->fetchOneByUuid($vacancy_uuid);
248
 
249
        if(!$vacancy) {
250
            $data = [
251
                'success' => false,
252
                'data' => 'ERROR_VACANCY_NOT_FOUND'
253
            ];
254
 
255
            return new JsonModel($data);
256
        }
257
 
258
 
259
        if($vacancy->company_id != $currentCompany->id) {
260
            $data = [
261
                'success' => false,
262
                'data' => 'ERROR_VACANCY_IS_OTHER_COMPANY',
263
            ];
264
 
265
            return new JsonModel($data);
266
        }
267
 
268
 
269
 
270
        $applicationMapper = RecruitmentSelectionApplicationMapper::getInstance($this->adapter);
271
        $application = $applicationMapper->fetchOneByUuid($application_id);
272
 
273
 
274
        if (!$application) {
275
            $data = [
276
                'success' => false,
277
                'data' => 'ERROR_RECORD_NOT_FOUND'
278
            ];
279
 
280
            return new JsonModel($data);
281
        }
282
 
283
 
284
        if ($application->vacancy_id != $vacancy->id) {
285
            return new JsonModel([
286
                'success' => false,
287
                'data' => 'ERROR_UNAUTHORIZED'
288
            ]);
289
        }
290
 
291
 
292
        $fileMapper = RecruitmentSelectionFileMapper::getInstance($this->adapter);
293
        $file = $fileMapper->fetchOneByUuid($id);
294
        if (!$file) {
295
            $data = [
296
                'success' => false,
297
                'data' => 'ERROR_FILE_NOT_FOUND'
298
            ];
299
 
300
            return new JsonModel($data);
301
        }
302
 
303
        if ($file->application_id != $application->id) {
304
            return new JsonModel([
305
                'success' => false,
306
                'data' => 'ERROR_UNAUTHORIZED'
307
            ]);
308
        }
309
 
310
        if ($request->isPost()) {
311
 
312
            $target_path = $this->config['leaderslinked.fullpath.recruitment_selection'].$application->uuid;
313
            if(!file_exists($target_path)) {
314
                mkdir($target_path, 0755, true);
315
            }
316
 
317
            Functions::deleteFilename($target_path, $file->file);
318
 
319
 
320
            $result = $fileMapper->delete($file->id);
321
            if ($result) {
322
                $this->logger->info('Se borro el archivo  : '  . $file->name , ['user_id' => $currentUser->id, 'ip' => Functions::getUserIP()]);
323
 
324
                $data = [
325
                    'success' => true,
326
                    'data' => [
327
                        'message' => 'LABEL_FILE_DELETED',
328
                        'files' => $this->renderFiles($vacancy, $application),
329
                     ]
330
                ];
331
            } else {
332
 
333
                $data = [
334
                    'success' => false,
335
                    'data' => $fileMapper->getError()
336
                ];
337
 
338
                return new JsonModel($data);
339
            }
340
        } else {
341
            $data = [
342
                'success' => false,
343
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
344
            ];
345
 
346
            return new JsonModel($data);
347
        }
348
 
349
        return new JsonModel($data);
350
    }
351
 
352
    public function viewAction()
353
    {
354
        $request = $this->getRequest();
355
        $currentUserPlugin = $this->plugin('currentUserPlugin');
356
        $currentCompany = $currentUserPlugin->getCompany();
357
        $currentUser = $currentUserPlugin->getUser();
358
 
359
        $request = $this->getRequest();
360
        $application_id = $this->params()->fromRoute('application_id');
361
        $vacancy_uuid   = $this->params()->fromRoute('vacancy_id');
362
        $id             = $this->params()->fromRoute('id');
363
 
364
        $vacancyMapper = RecruitmentSelectionVacancyMapper::getInstance($this->adapter);
365
        $vacancy = $vacancyMapper->fetchOneByUuid($vacancy_uuid);
366
 
367
        if(!$vacancy) {
368
            $data = [
369
                'success' => false,
370
                'data' => 'ERROR_VACANCY_NOT_FOUND'
371
            ];
372
 
373
            return new JsonModel($data);
374
        }
375
 
376
 
377
        if($vacancy->company_id != $currentCompany->id) {
378
            $data = [
379
                'success' => false,
380
                'data' => 'ERROR_VACANCY_IS_OTHER_COMPANY',
381
            ];
382
 
383
            return new JsonModel($data);
384
        }
385
 
386
 
387
 
388
        $applicationMapper = RecruitmentSelectionApplicationMapper::getInstance($this->adapter);
389
        $application = $applicationMapper->fetchOneByUuid($application_id);
390
 
391
 
392
        if (!$application) {
393
            $data = [
394
                'success' => false,
395
                'data' => 'ERROR_RECORD_NOT_FOUND'
396
            ];
397
 
398
            return new JsonModel($data);
399
        }
400
 
401
 
402
        if ($application->vacancy_id != $vacancy->id) {
403
            return new JsonModel([
404
                'success' => false,
405
                'data' => 'ERROR_UNAUTHORIZED'
406
            ]);
407
        }
408
 
409
 
410
        $fileMapper = RecruitmentSelectionFileMapper::getInstance($this->adapter);
411
        $file = $fileMapper->fetchOneByUuid($id);
412
        if (!$file) {
413
            $data = [
414
                'success' => false,
415
                'data' => 'ERROR_FILE_NOT_FOUND'
416
            ];
417
 
418
            return new JsonModel($data);
419
        }
420
 
421
        if ($file->application_id != $application->id) {
422
            return new JsonModel([
423
                'success' => false,
424
                'data' => 'ERROR_UNAUTHORIZED'
425
            ]);
426
        }
427
 
428
 
15464 efrain 429
        if($request->isGet()) {
15461 efrain 430
            $target_path = $this->config['leaderslinked.fullpath.recruitment_selection'].$application->uuid;
431
            if(!file_exists($target_path)) {
432
                mkdir($target_path, 0755, true);
433
            }
434
 
15464 efrain 435
            $target_filename = $target_path . DIRECTORY_SEPARATOR . $file->file;
15461 efrain 436
 
437
 
15464 efrain 438
            $filename = $file->file;
15461 efrain 439
            $content = base64_encode(file_get_contents($target_filename));
440
 
441
            $data = [
442
                'success' => true,
443
                'data' => [
444
                    'basename' => $filename,
445
                    'content' => $content
446
                ]
447
            ];
448
 
449
            return new JsonModel($data);
450
 
451
        } else {
452
            return new JsonModel([
453
                'success' => false,
454
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
455
            ]);
456
        }
457
    }
458
 
459
 
460
    /**
461
     *
462
     * @param RecruitmentSelectionVacancy $vacany
463
     * @param RecruitmentSelectionApplication $application
464
     * @return array
465
     */
466
    private function renderFiles($vacancy, $application)
467
    {
468
        $currentUserPlugin = $this->plugin('currentUserPlugin');
469
        $currentCompany = $currentUserPlugin->getCompany();
470
        $currentUser = $currentUserPlugin->getUser();
471
 
472
        $acl = $this->getEvent()->getViewModel()->getVariable('acl');
473
        $allowFileDelete = $acl->isAllowed($currentUser->usertype_id, 'recruitment-and-selection/applications/files/delete');
474
        $allowFileView = $acl->isAllowed($currentUser->usertype_id, 'recruitment-and-selection/applications/files/view');
475
 
476
 
477
 
478
        $recruitmentSelectionFileMapper = RecruitmentSelectionFileMapper::getInstance($this->adapter);
479
 
480
 
481
        $data = [];
482
        $records = $recruitmentSelectionFileMapper->fetchAllByVacancyId($vacancy->id);
483
        foreach($records as $record)
484
        {
485
            array_push($data, [
486
                'name' => $record->name,
487
                'filename' => basename($record->file),
488
                'link_view' => $allowFileView ? $this->url()->fromRoute('recruitment-and-selection/applications/files/view', ['vacancy_id' => $vacancy->uuid, 'application_id' => $application->uuid, 'id' => $record->uuid]) : '',
489
                'link_delete' => $allowFileDelete ? $this->url()->fromRoute('recruitment-and-selection/applications/files/delete', ['vacancy_id' => $vacancy->uuid, 'application_id' => $application->uuid, 'id' => $record->uuid]) : '',
490
 
491
            ]);
492
        }
493
 
494
        return $data;
495
    }
496
}