Proyectos de Subversion LeadersLinked - Backend

Rev

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

Rev Autor Línea Nro. Línea
1 www 1
<?php
2
declare(strict_types=1);
3
 
4
namespace LeadersLinked\Controller;
5
 
6
use Laminas\Db\Adapter\AdapterInterface;
7
use Laminas\Cache\Storage\Adapter\AbstractAdapter;
8
use Laminas\Mvc\Controller\AbstractActionController;
9
use Laminas\Log\LoggerInterface;
10
use Laminas\View\Model\ViewModel;
11
use Laminas\View\Model\JsonModel;
12
use LeadersLinked\Library\Functions;
13
use LeadersLinked\Mapper\CompanyMicrolearningTopicMapper;
14
use LeadersLinked\Mapper\CompanyMicrolearningCapsuleMapper;
15
use LeadersLinked\Form\PushMicrolearningNotificationForm;
16
use LeadersLinked\Mapper\CompanyMicrolearningCapsuleUserMapper;
17
use LeadersLinked\Mapper\UserMapper;
18
 
19
use LeadersLinked\Model\User;
20
 
21
use LeadersLinked\Mapper\CompanyMicrolearningUserLogMapper;
22
use LeadersLinked\Mapper\CompanyMicrolearningSlideMapper;
23
use LeadersLinked\Form\ExtendUserMicrolearningForm;
24
use LeadersLinked\Form\ChangePasswordForm;
25
use LeadersLinked\Mapper\CompanyMicrolearningUserProgressMapper;
26
use LeadersLinked\Model\CompanyMicrolearningExtendUser;
27
use LeadersLinked\Mapper\CompanyMicrolearningExtendUserMapper;
28
 
29
use LeadersLinked\Mapper\CompanyMicrolearningExtendUserCompanyMapper;
30
use LeadersLinked\Mapper\CompanyMicrolearningExtendUserFunctionMapper;
31
use LeadersLinked\Mapper\CompanyMicrolearningExtendUserGroupMapper;
32
use LeadersLinked\Mapper\CompanyMicrolearningExtendUserInstitutionMapper;
33
use LeadersLinked\Mapper\CompanyMicrolearningExtendUserProgramMapper;
34
use LeadersLinked\Mapper\CompanyMicrolearningExtendUserPartnerMapper;
35
use LeadersLinked\Mapper\CompanyMicrolearningExtendUserSectorMapper;
36
use LeadersLinked\Mapper\CompanyMicrolearningExtendUserStudentTypeMapper;
37
use LeadersLinked\Mapper\CompanyUserMapper;
38
use LeadersLinked\Mapper\UserPasswordMapper;
39
 
40
 
41
class MicrolearningStudentsController extends AbstractActionController
42
{
43
    /**
44
     *
45
     * @var AdapterInterface
46
     */
47
    private $adapter;
48
 
49
 
50
    /**
51
     *
52
     * @var AbstractAdapter
53
     */
54
    private $cache;
55
 
56
    /**
57
     *
58
     * @var  LoggerInterface
59
     */
60
    private $logger;
61
 
62
 
63
    /**
64
     *
65
     * @var array
66
     */
67
    private $config;
68
 
69
    /**
70
     *
71
     * @param AdapterInterface $adapter
72
     * @param AbstractAdapter $cache
73
     * @param LoggerInterface $logger
74
     * @param array $config
75
     */
76
    public function __construct($adapter, $cache , $logger,  $config)
77
    {
78
        $this->adapter      = $adapter;
79
        $this->cache        = $cache;
80
        $this->logger       = $logger;
81
        $this->config       = $config;
82
 
83
    }
84
 
85
    public function indexAction()
86
    {
87
        $currentUserPlugin = $this->plugin('currentUserPlugin');
88
        $currentUser = $currentUserPlugin->getUser();
89
        $currentCompany = $currentUserPlugin->getCompany();
90
 
91
        $request = $this->getRequest();
92
 
93
        if($request->isGet())
94
        {
95
 
96
            $headers  = $request->getHeaders();
97
 
98
            $isJson = false;
99
            if($headers->has('Accept')) {
100
                $accept = $headers->get('Accept');
101
 
102
                $prioritized = $accept->getPrioritized();
103
 
104
                foreach($prioritized as $key => $value) {
105
                    $raw = trim($value->getRaw());
106
 
107
                    if(!$isJson) {
108
                        $isJson = strpos($raw, 'json');
109
                    }
110
 
111
                }
112
            }
113
 
114
            if($isJson) {
115
 
116
                $search = $this->params()->fromQuery('search', []);
117
                $search = empty($search['value']) ? '' : filter_var($search['value'], FILTER_SANITIZE_STRING);
118
 
119
                $page               = intval($this->params()->fromQuery('start', 1), 10);
120
                $records_x_page     = intval($this->params()->fromQuery('length', 10), 10);
121
                $order =  $this->params()->fromQuery('order', []);
122
                $order_field        = empty($order[0]['column']) ? 99 :  intval($order[0]['column'], 10);
123
                $order_direction    = empty($order[0]['dir']) ? 'ASC' : strtoupper(filter_var( $order[0]['dir'], FILTER_SANITIZE_STRING));
124
 
125
                $fields =  ['first_name', 'last_name', 'email'];
126
                $order_field = isset($fields[$order_field]) ? $fields[$order_field] : 'first_name';
127
 
128
                if(!in_array($order_direction, ['ASC', 'DESC'])) {
129
                    $order_direction = 'ASC';
130
                }
131
 
132
                //$companyMicrolearningCapsuleMapper = CompanyMicrolearningCapsuleMapper::getInstance($this->adapter);
133
                $companyUserMapper = CompanyUserMapper::getInstance($this->adapter);
134
                $companyMicrolearningCapsulUserMapper = CompanyMicrolearningCapsuleUserMapper::getInstance($this->adapter);
135
                $companyMicrolearningUserProgressMapper = CompanyMicrolearningUserProgressMapper::getInstance($this->adapter);
136
 
137
                $userMapper = UserMapper::getInstance($this->adapter);
138
                $paginator = $userMapper->fetchAllDataTableStudensByCompanyId($currentCompany->id, $search, $page, $records_x_page, $order_field, $order_direction);
139
 
140
                $acl = $this->getEvent()->getViewModel()->getVariable('acl');
141
                $allowEdit = $acl->isAllowed($currentUser->usertype_id, 'microlearning/students/edit');
142
                $allowTimeline = $acl->isAllowed($currentUser->usertype_id, 'microlearning/students/timeline');
143
                $allowUnblock = $acl->isAllowed($currentUser->usertype_id, 'microlearning/students/unblock');
144
                $allowChangePassword = $acl->isAllowed($currentUser->usertype_id, 'microlearning/students/change-password');
145
 
146
 
147
 
148
                $items = [ ];
149
                $records = $paginator->getCurrentItems();
150
 
151
 
152
 
153
                foreach($records as $record)
154
                {
155
 
156
 
157
                    $userCapsules = $companyMicrolearningCapsulUserMapper->fetchAllActiveByUserId($record['id']);
158
 
159
                    $total_asigned = count($userCapsules);
160
                    $total_without_starting = 0;
161
                    $total_started = 0;
162
                    $total_completed = 0;
163
 
164
                    foreach($userCapsules as $userCapsule)
165
                    {
166
                        $userProgress = $companyMicrolearningUserProgressMapper->fetchOneByUseridAndCapsuleId($userCapsule->user_id, $userCapsule->capsule_id);
167
                        if($userProgress) {
168
 
169
                            if($userProgress->completed) {
170
                                $total_completed++;
171
                            }  else {
172
                                $total_started++;
173
                            }
174
 
175
                        } else {
176
                            $total_without_starting++;
177
                        }
178
 
179
                    }
180
 
181
 
182
                    $actions = [];
183
                    if($allowEdit) {
184
                        $actions['link_edit'] = $this->url()->fromRoute('microlearning/students/edit', ['id' => $record['uuid'] ]  );
185
                    }
186
                    if($allowTimeline) {
187
                        $actions['link_timeline'] = $this->url()->fromRoute('microlearning/students/timeline', ['id' => $record['uuid'] ]  );
188
                    }
189
 
190
                    $totalOtherCompanies = $companyUserMapper->fetchCountOtherCompaniesByCompanyIdAndUserId($currentCompany->id, $record['id']);
191
                    if(!$totalOtherCompanies) {
192
 
193
                        $actions['link_change_password'] = $allowChangePassword ? $this->url()->fromRoute('microlearning/students/change-password', ['id' => $record['uuid'] ]) : '';
194
                        if($record['blocked'] == User::BLOCKED_YES ) {
195
                            $actions['link_unblock'] = $allowUnblock ? $this->url()->fromRoute('microlearning/students/unblock', ['id' => $record['uuid'] ]) : '';
196
                        }
197
                    }
198
 
199
                    $details = [
200
                        'total_asigned' => $total_asigned,
201
                        'total_without_starting' => $total_without_starting,
202
                        'total_started' => $total_started,
203
                        'total_completed' => $total_completed,
204
                    ];
205
 
206
 
207
                    $item = [
208
                        'uuid' => $record['uuid'],
209
                        'first_name' => $record['first_name'],
210
                        'last_name' => $record['last_name'],
211
                        'email' => $record['email'],
212
                        'details' => $details,
213
                        'actions' => $actions
214
                    ];
215
 
216
 
217
                    array_push($items, $item);
218
 
219
 
220
                }
221
 
222
                $data['items'] = $items;
223
                $data['total'] = $paginator->getTotalItemCount();
224
 
225
 
226
                return new JsonModel([
227
                    'success' => true,
228
                    'data' => $data
229
                ]);
230
            } else {
15386 efrain 231
                $formPushNotification = new PushMicrolearningNotificationForm($this->adapter, $currentCompany->id);
1 www 232
 
233
                $formExtendUser = new ExtendUserMicrolearningForm($this->adapter, $currentCompany->id);
234
                $formChangePassword = new ChangePasswordForm();
235
 
236
                $this->layout()->setTemplate('layout/layout-backend');
237
                $viewModel = new ViewModel();
238
                $viewModel->setTemplate('leaders-linked/microlearning-students/index.phtml');
239
                $viewModel->setVariables([
240
                    'formPushNotification' => $formPushNotification,
241
                    'formExtendUser' => $formExtendUser,
242
                    'formChangePassword' => $formChangePassword,
243
                ]);
244
 
245
                return $viewModel ;
246
            }
247
 
248
        } else {
249
            return new JsonModel([
250
                'success' => false,
251
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
252
            ]);;
253
        }
254
    }
255
 
256
 
257
 
258
    public function editAction()
259
    {
260
 
261
        $currentUserPlugin = $this->plugin('currentUserPlugin');
262
        $currentUser    = $currentUserPlugin->getUser();
263
        $currentCompany = $currentUserPlugin->getCompany();
264
 
265
        $request    = $this->getRequest();
266
        $user_uuid  = $this->params()->fromRoute('id');
267
 
268
 
269
        $userMapper = UserMapper::getInstance($this->adapter);
270
        $user = $userMapper->fetchOneByUuid($user_uuid);
271
 
272
        if(!$user) {
273
            return new JsonModel([
274
                'success'   => false,
275
                'data'   => 'ERROR_USER_NOT_FOUND'
276
            ]);
277
        }
278
 
279
        $companyMicrolearningCapsuleUserMapper = CompanyMicrolearningCapsuleUserMapper::getInstance($this->adapter);
280
        $total = $companyMicrolearningCapsuleUserMapper->fetchCountByCompanyIdAndUserId($currentCompany->id, $user->id);
281
 
282
        if(!$total) {
283
            return new JsonModel([
284
                'success'   => false,
285
                'data'   => 'ERROR_UNAUTHORIZED'
286
            ]);
287
        }
288
 
289
 
290
        if($request->isGet()) {
291
 
292
 
293
            $data = [
294
                'first_name' => $user->first_name,
295
                'last_name' => $user->last_name,
296
                'email' => $user->email,
297
                'company_id' => '',
298
                'function_id' => '',
299
                'group_id' => '',
300
                'institution_id' => '',
301
                'partner_id' => '',
302
                'program_id' => '',
303
                'sector_id' => '',
304
                'student_type_id' => '',
305
 
306
            ];
307
 
308
            $companyMicrolearningExtendUserMapper = CompanyMicrolearningExtendUserMapper::getInstance($this->adapter);
309
            $companyMicrolearningExtendUser = $companyMicrolearningExtendUserMapper->fetchOneByCompanyIdAndUserId($currentCompany->id, $user->id);
310
 
311
            if($companyMicrolearningExtendUser) {
312
                if($companyMicrolearningExtendUser->extend_company_id) {
313
                    $companyMicrolearningExtendUserCompanyMapper = CompanyMicrolearningExtendUserCompanyMapper::getInstance($this->adapter);
314
                    $companyMicrolearningExtendUserCompany = $companyMicrolearningExtendUserCompanyMapper->fetchOne($companyMicrolearningExtendUser->extend_company_id);
315
                    if($companyMicrolearningExtendUserCompany) {
316
                        $data['company_id'] = $companyMicrolearningExtendUserCompany->uuid;
317
                    }
318
                }
319
 
320
            }
321
 
322
            if($companyMicrolearningExtendUser) {
323
                if($companyMicrolearningExtendUser->extend_function_id) {
324
                    $companyMicrolearningExtendUserFunctionMapper = CompanyMicrolearningExtendUserFunctionMapper::getInstance($this->adapter);
325
                    $companyMicrolearningExtendUserFunction = $companyMicrolearningExtendUserFunctionMapper->fetchOne($companyMicrolearningExtendUser->extend_function_id);
326
                    if($companyMicrolearningExtendUserFunction) {
327
                        $data['function_id'] = $companyMicrolearningExtendUserFunction->uuid;
328
                    }
329
                }
330
            }
331
 
332
            if($companyMicrolearningExtendUser) {
333
                if($companyMicrolearningExtendUser->extend_group_id) {
334
                    $companyMicrolearningExtendUserGroupMapper = CompanyMicrolearningExtendUserGroupMapper::getInstance($this->adapter);
335
                    $companyMicrolearningExtendUserGroup = $companyMicrolearningExtendUserGroupMapper->fetchOne($companyMicrolearningExtendUser->extend_group_id);
336
                    if($companyMicrolearningExtendUserGroup) {
337
                        $data['group_id'] = $companyMicrolearningExtendUserGroup->uuid;
338
                    }
339
                }
340
            }
341
 
342
            if($companyMicrolearningExtendUser) {
343
                if($companyMicrolearningExtendUser->extend_institution_id) {
344
                    $companyMicrolearningExtendUserInstitutionMapper = CompanyMicrolearningExtendUserInstitutionMapper::getInstance($this->adapter);
345
                    $companyMicrolearningExtendUserInstitution = $companyMicrolearningExtendUserInstitutionMapper->fetchOne($companyMicrolearningExtendUser->extend_institution_id);
346
                    if($companyMicrolearningExtendUserInstitution) {
347
                        $data['institution_id'] = $companyMicrolearningExtendUserInstitution->uuid;
348
                    }
349
                }
350
            }
351
 
352
            if($companyMicrolearningExtendUser) {
353
                if($companyMicrolearningExtendUser->extend_partner_id) {
354
                    $companyMicrolearningExtendUserPartnerMapper = CompanyMicrolearningExtendUserPartnerMapper::getInstance($this->adapter);
355
                    $companyMicrolearningExtendUserPartner = $companyMicrolearningExtendUserPartnerMapper->fetchOne($companyMicrolearningExtendUser->extend_partner_id);
356
                    if($companyMicrolearningExtendUserPartner) {
357
                        $data['partner_id'] = $companyMicrolearningExtendUserPartner->uuid;
358
                    }
359
                }
360
            }
361
 
362
            if($companyMicrolearningExtendUser) {
363
                if($companyMicrolearningExtendUser->extend_program_id) {
364
                    $companyMicrolearningExtendUserProgramMapper = CompanyMicrolearningExtendUserProgramMapper::getInstance($this->adapter);
365
                    $companyMicrolearningExtendUserProgram = $companyMicrolearningExtendUserProgramMapper->fetchOne($companyMicrolearningExtendUser->extend_program_id);
366
                    if($companyMicrolearningExtendUserProgram) {
367
                        $data['program_id'] = $companyMicrolearningExtendUserProgram->uuid;
368
                    }
369
                }
370
            }
371
 
372
            if($companyMicrolearningExtendUser) {
373
                if($companyMicrolearningExtendUser->extend_sector_id) {
374
                    $companyMicrolearningExtendUserSectorMapper = CompanyMicrolearningExtendUserSectorMapper::getInstance($this->adapter);
375
                    $companyMicrolearningExtendUserSector = $companyMicrolearningExtendUserSectorMapper->fetchOne($companyMicrolearningExtendUser->extend_sector_id);
376
                    if($companyMicrolearningExtendUserSector) {
377
                        $data['sector_id'] = $companyMicrolearningExtendUserSector->uuid;
378
                    }
379
                }
380
            }
381
 
382
            if($companyMicrolearningExtendUser) {
383
                if($companyMicrolearningExtendUser->extend_student_type_id) {
384
                    $companyMicrolearningExtendUserStudentTypeMapper = CompanyMicrolearningExtendUserStudentTypeMapper::getInstance($this->adapter);
385
                    $companyMicrolearningExtendUserStudentType = $companyMicrolearningExtendUserStudentTypeMapper->fetchOne($companyMicrolearningExtendUser->extend_student_type_id);
386
                    if($companyMicrolearningExtendUserStudentType) {
387
                        $data['student_type_id'] = $companyMicrolearningExtendUserStudentType->uuid;
388
                    }
389
                }
390
            }
391
 
392
 
393
            return new JsonModel([
394
                'success'   => true,
395
                'data'   => $data,
396
            ]);
397
 
398
        }
399
 
400
 
401
        if($request->isPost()) {
402
            $form = new  ExtendUserMicrolearningForm($this->adapter, $currentCompany->id);
403
            $dataPost = $request->getPost()->toArray();
404
 
405
            $form->setData($dataPost);
406
 
407
            if($form->isValid()) {
408
                $dataPost = (array) $form->getData();
409
 
410
                $companyMicrolearningExtendUserMapper = CompanyMicrolearningExtendUserMapper::getInstance($this->adapter);
411
                $companyMicrolearningExtendUser = $companyMicrolearningExtendUserMapper->fetchOneByCompanyIdAndUserId($currentCompany->id, $user->id);
412
                if(!$companyMicrolearningExtendUser) {
413
                    $companyMicrolearningExtendUser = new CompanyMicrolearningExtendUser();
414
                    $companyMicrolearningExtendUser->company_id = $currentCompany->id;
415
                    $companyMicrolearningExtendUser->user_id = $user->id;
416
                }
417
 
418
 
419
                $extend_company_uuid        = filter_var( $this->params()->fromPost('company_id'), FILTER_SANITIZE_STRING);
420
                $extend_function_uuid       = filter_var( $this->params()->fromPost('function_id'), FILTER_SANITIZE_STRING);
421
                $extend_group_uuid          = filter_var( $this->params()->fromPost('group_id'), FILTER_SANITIZE_STRING);
422
                $extend_institution_uuid    = filter_var( $this->params()->fromPost('institution_id'), FILTER_SANITIZE_STRING);
423
                $extend_program_uuid        = filter_var( $this->params()->fromPost('program_id'), FILTER_SANITIZE_STRING);
424
                $extend_partner_uuid        = filter_var( $this->params()->fromPost('partner_id'), FILTER_SANITIZE_STRING);
425
                $extend_sector_uuid         = filter_var( $this->params()->fromPost('sector_id'), FILTER_SANITIZE_STRING);
426
                $extend_student_type_uuid   = filter_var( $this->params()->fromPost('student_type_id'), FILTER_SANITIZE_STRING);
427
 
428
 
429
                if($extend_company_uuid) {
430
                    $companyMicrolearningExtendUserCompanyMapper = CompanyMicrolearningExtendUserCompanyMapper::getInstance($this->adapter);
431
                    $companyMicrolearningExtendUserCompany = $companyMicrolearningExtendUserCompanyMapper->fetchOneByUuid($extend_company_uuid);
432
                    if($companyMicrolearningExtendUserCompany && $companyMicrolearningExtendUserCompany->company_id = $currentCompany->id) {
433
                        $companyMicrolearningExtendUser->extend_company_id = $companyMicrolearningExtendUserCompany->id;
434
                    } else {
435
                        $companyMicrolearningExtendUser->extend_company_id = null;
436
                    }
437
 
438
                } else {
439
                    $companyMicrolearningExtendUser->extend_company_id = null;
440
                }
441
 
442
 
443
                if($extend_function_uuid) {
444
                    $companyMicrolearningExtendUserFunctionMapper = CompanyMicrolearningExtendUserFunctionMapper::getInstance($this->adapter);
445
                    $companyMicrolearningExtendUserFunction = $companyMicrolearningExtendUserFunctionMapper->fetchOneByUuid($extend_function_uuid);
446
                    if($companyMicrolearningExtendUserFunction && $companyMicrolearningExtendUserFunction->company_id = $currentCompany->id) {
447
                        $companyMicrolearningExtendUser->extend_function_id = $companyMicrolearningExtendUserFunction->id;
448
                    } else {
449
                        $companyMicrolearningExtendUser->extend_function_id = null;
450
                    }
451
 
452
                } else {
453
                    $companyMicrolearningExtendUser->extend_function_id = null;
454
                }
455
 
456
                if($extend_group_uuid) {
457
                    $companyMicrolearningExtendUserGroupMapper = CompanyMicrolearningExtendUserGroupMapper::getInstance($this->adapter);
458
                    $companyMicrolearningExtendUserGroup = $companyMicrolearningExtendUserGroupMapper->fetchOneByUuid($extend_group_uuid);
459
                    if($companyMicrolearningExtendUserGroup && $companyMicrolearningExtendUserGroup->company_id = $currentCompany->id) {
460
                        $companyMicrolearningExtendUser->extend_group_id = $companyMicrolearningExtendUserGroup->id;
461
                    } else {
462
                        $companyMicrolearningExtendUser->extend_group_id = null;
463
                    }
464
 
465
                } else {
466
                    $companyMicrolearningExtendUser->extend_group_id = null;
467
                }
468
 
469
                if($extend_institution_uuid) {
470
                    $companyMicrolearningExtendUserInstitutionMapper = CompanyMicrolearningExtendUserInstitutionMapper::getInstance($this->adapter);
471
                    $companyMicrolearningExtendUserInstitution = $companyMicrolearningExtendUserInstitutionMapper->fetchOneByUuid($extend_institution_uuid);
472
                    if($companyMicrolearningExtendUserInstitution && $companyMicrolearningExtendUserInstitution->company_id = $currentCompany->id) {
473
                        $companyMicrolearningExtendUser->extend_institution_id = $companyMicrolearningExtendUserInstitution->id;
474
                    } else {
475
                        $companyMicrolearningExtendUser->extend_institution_id = null;
476
                    }
477
 
478
                } else {
479
                    $companyMicrolearningExtendUser->extend_institution_id = null;
480
                }
481
 
482
                if($extend_program_uuid) {
483
                    $companyMicrolearningExtendUserProgramMapper = CompanyMicrolearningExtendUserProgramMapper::getInstance($this->adapter);
484
                    $companyMicrolearningExtendUserProgram = $companyMicrolearningExtendUserProgramMapper->fetchOneByUuid($extend_program_uuid);
485
                    if($companyMicrolearningExtendUserProgram && $companyMicrolearningExtendUserProgram->company_id = $currentCompany->id) {
486
                        $companyMicrolearningExtendUser->extend_program_id = $companyMicrolearningExtendUserProgram->id;
487
                    } else {
488
                        $companyMicrolearningExtendUser->extend_program_id = null;
489
                    }
490
 
491
                } else {
492
                    $companyMicrolearningExtendUser->extend_program_id = null;
493
                }
494
 
495
                if($extend_partner_uuid) {
496
                    $companyMicrolearningExtendUserPartnerMapper = CompanyMicrolearningExtendUserPartnerMapper::getInstance($this->adapter);
497
                    $companyMicrolearningExtendUserPartner = $companyMicrolearningExtendUserPartnerMapper->fetchOneByUuid($extend_partner_uuid);
498
                    if($companyMicrolearningExtendUserPartner && $companyMicrolearningExtendUserPartner->company_id = $currentCompany->id) {
499
                        $companyMicrolearningExtendUser->extend_partner_id = $companyMicrolearningExtendUserPartner->id;
500
                    } else {
501
                        $companyMicrolearningExtendUser->extend_partner_id = null;
502
                    }
503
 
504
                } else {
505
                    $companyMicrolearningExtendUser->extend_partner_id = null;
506
                }
507
 
508
                if($extend_sector_uuid) {
509
                    $companyMicrolearningExtendUserSectorMapper = CompanyMicrolearningExtendUserSectorMapper::getInstance($this->adapter);
510
                    $companyMicrolearningExtendUserSector = $companyMicrolearningExtendUserSectorMapper->fetchOneByUuid($extend_sector_uuid);
511
                    if($companyMicrolearningExtendUserSector && $companyMicrolearningExtendUserSector->company_id = $currentCompany->id) {
512
                        $companyMicrolearningExtendUser->extend_sector_id = $companyMicrolearningExtendUserSector->id;
513
                    } else {
514
                        $companyMicrolearningExtendUser->extend_sector_id = null;
515
                    }
516
 
517
                } else {
518
                    $companyMicrolearningExtendUser->extend_sector_id = null;
519
                }
520
 
521
                if($extend_student_type_uuid) {
522
                    $companyMicrolearningExtendUserStudentTypeMapper = CompanyMicrolearningExtendUserStudentTypeMapper::getInstance($this->adapter);
523
                    $companyMicrolearningExtendUserStudentType = $companyMicrolearningExtendUserStudentTypeMapper->fetchOneByUuid($extend_student_type_uuid);
524
                    if($companyMicrolearningExtendUserStudentType && $companyMicrolearningExtendUserStudentType->company_id = $currentCompany->id) {
525
                        $companyMicrolearningExtendUser->extend_student_type_id = $companyMicrolearningExtendUserStudentType->id;
526
                    } else {
527
                        $companyMicrolearningExtendUser->extend_student_type_id = null;
528
                    }
529
 
530
                } else {
531
                    $companyMicrolearningExtendUser->extend_student_type_id = null;
532
                }
533
 
534
 
535
 
536
                if($companyMicrolearningExtendUser->id) {
537
                    $result = $companyMicrolearningExtendUserMapper->update($companyMicrolearningExtendUser);
538
                    if($result) {
539
                        $this->logger->info('Se actualizo la información extendida de micro aprendizaje  del usuario ' . $user->email, ['user_id' => $currentUser->id, 'ip' => Functions::getUserIP()]);
540
 
541
                        $data = [
542
                            'success'   => true,
543
                            'data'   => 'LABEL_RECORD_ADDED'
544
                        ];
545
                    } else {
546
                        $data = [
547
                            'success'   => false,
548
                            'data'      => $companyMicrolearningExtendUserMapper->getError()
549
                        ];
550
 
551
                    }
552
                } else {
553
                    $result = $companyMicrolearningExtendUserMapper->insert($companyMicrolearningExtendUser);
554
                    if($result) {
555
                        $this->logger->info('Se agrego la información extendida de micro aprendizaje  del usuario ' . $user->email, ['user_id' => $currentUser->id, 'ip' => Functions::getUserIP()]);
556
 
557
                        $data = [
558
                            'success'   => true,
559
                            'data'   => 'LABEL_RECORD_ADDED'
560
                        ];
561
                    } else {
562
                        $data = [
563
                            'success'   => false,
564
                            'data'      => $companyMicrolearningExtendUserMapper->getError()
565
                        ];
566
 
567
                    }
568
                }
569
 
570
 
571
 
572
 
573
                return new JsonModel($data);
574
 
575
            } else {
576
                $messages = [];
577
                $form_messages = (array) $form->getMessages();
578
                foreach($form_messages  as $fieldname => $field_messages)
579
                {
580
 
581
                    $messages[$fieldname] = array_values($field_messages);
582
                }
583
 
584
                return new JsonModel([
585
                    'success'   => false,
586
                    'data'   => $messages
587
                ]);
588
            }
589
 
590
        } else {
591
            $data = [
592
                'success' => false,
593
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
594
            ];
595
 
596
            return new JsonModel($data);
597
        }
598
 
599
        return new JsonModel([
600
            'success' => false,
601
            'data' => 'ERROR_METHOD_NOT_ALLOWED'
602
        ]);
603
    }
604
 
605
    public function timelineAction()
606
    {
607
 
608
        $currentUserPlugin = $this->plugin('currentUserPlugin');
609
        $currentUser    = $currentUserPlugin->getUser();
610
        $currentCompany = $currentUserPlugin->getCompany();
611
 
612
        $request    = $this->getRequest();
613
        $user_uuid  = $this->params()->fromRoute('id');
614
 
615
 
616
        $userMapper = UserMapper::getInstance($this->adapter);
617
        $user = $userMapper->fetchOneByUuid($user_uuid);
618
 
619
        if(!$user) {
620
            return new JsonModel([
621
                'success'   => false,
622
                'data'   => 'ERROR_USER_NOT_FOUND'
623
            ]);
624
        }
625
 
626
        if($request->isGet()) {
627
            $page = intval(filter_var($this->params()->fromQuery('page'), FILTER_SANITIZE_NUMBER_INT) , 10);
628
            if(!$page) {
629
                $page = 1;
630
            }
631
            $records_x_page = 10;
632
 
633
            $companyMicrolearningTopicMapper = CompanyMicrolearningTopicMapper::getInstance($this->adapter);
634
            $companyMicrolearningCapsuleMapper = CompanyMicrolearningCapsuleMapper::getInstance($this->adapter);
635
            $companyMicrolearningSlideMapper = CompanyMicrolearningSlideMapper::getInstance($this->adapter);
636
 
637
            $topics = [];
638
            $capsules = [];
639
            $slides = [] ;
640
 
641
 
642
            $companyMicrolearningUserLogMapper = CompanyMicrolearningUserLogMapper::getInstance($this->adapter);
643
 
644
            $paginator = $companyMicrolearningUserLogMapper->getAllMessagesPaginatorByUserIdAndCompanyId($user->id, $currentCompany->id, $page, $records_x_page);
645
 
646
            $items = [] ;
647
            foreach($paginator->getCurrentItems() as $record)
648
            {
649
                $dt = \DateTime::createFromFormat('Y-m-d H:i:s', $record->added_on);
650
 
651
                $item = [
652
                    'activity' => $record->activity,
653
                    'added_on' => $dt->format('d/m/Y h:i a')
654
                ];
655
 
656
                if($record->topic_id) {
657
 
658
                    if(isset($topics[$record->topic_id])) {
659
                        $topic = $topics[ $record->topic_id ];
660
                    }  else {
661
                        $topic = $companyMicrolearningTopicMapper->fetchOne( $record->topic_id );
662
                    }
663
 
664
                    if($topic) {
665
                        $item['topic'] = $topic->name;
666
                    }
667
 
668
                    if(isset($capsules[$record->capsule_id])) {
669
                        $capsule = $capsules[ $record->capsule_id ];
670
                    }  else {
671
                        $capsule = $companyMicrolearningCapsuleMapper->fetchOne( $record->capsule_id );
672
                    }
673
 
674
                    if($capsule) {
675
                        $item['capsule'] = $capsule->name;
676
                    }
677
 
678
                    if(isset($slides[$record->slide_id])) {
679
                        $slide = $slides[ $record->slide_id ];
680
                    }  else {
681
                        $slide = $companyMicrolearningSlideMapper->fetchOne( $record->slide_id );
682
                    }
683
 
684
                    if($slide) {
685
                        $item['slide'] = $slide->name;
686
                    }
687
                }
688
 
689
 
690
                array_push($items, $item);
691
            }
692
 
693
            $response = [
694
                'success' => true,
695
                'data' => [
696
                    'total' => [
697
                        'count' => $paginator->getTotalItemCount(),
698
                        'pages' => $paginator->getPages()->pageCount,
699
                    ],
700
                    'current' => [
701
                        'items'    => $items,
702
                        'page'     => $paginator->getCurrentPageNumber(),
703
                        'count'    => $paginator->getCurrentItemCount(),
704
                    ]
705
                ]
706
            ];
707
 
708
            return new JsonModel($response);
709
 
710
        }
711
 
712
 
713
 
714
 
715
        return new JsonModel([
716
            'success' => false,
717
            'data' => 'ERROR_METHOD_NOT_ALLOWED'
718
        ]);
719
    }
720
 
721
 
722
    public function unblockAction()
723
    {
724
        $currentUserPlugin = $this->plugin('currentUserPlugin');
725
        $currentUser = $currentUserPlugin->getUser();
726
        $request = $this->getRequest();
727
 
728
 
729
        if($request->isPost()) {
730
 
731
            $uuid = $this->params()->fromRoute('id');
732
            if(!$uuid) {
733
                return new JsonModel([
734
                    'success'   => false,
735
                    'data'      => 'ERROR_INVALID_PARAMETER'
736
                ]);
737
            }
738
 
739
            $userMapper = UserMapper::getInstance($this->adapter);
740
            $user = $userMapper->fetchOneByUuid($uuid);
741
 
742
            if(!$user) {
743
                return new JsonModel([
744
                    'success'   => false,
745
                    'data'      => 'ERROR_USER_NOT_FOUND'
746
                ]);
747
            }
748
 
749
            if($user->blocked == User::BLOCKED_NO) {
750
                return new JsonModel([
751
                    'success'   => false,
752
                    'data'      => 'ERROR_USER_IS_NOT_BLOCKED'
753
                ]);
754
            }
755
 
756
 
757
 
758
            $result = $userMapper->unblock($user);
759
            if($result) {
760
                $this->logger->info('El usuario : ' . $user->email . ' ha sido desbloqueado ', ['user_id' => $currentUser->id, 'ip' => Functions::getUserIP()]);
761
 
762
                return new JsonModel([
763
                    'success'   => true,
764
                    'data'      => 'LABEL_USER_HAS_BEEN_UNBLOCKED',
765
                ]);
766
            }  else {
767
 
768
                return new JsonModel([
769
                    'success'   => false,
770
                    'data'      => $userMapper->getError()
771
                ]);
772
            }
773
 
774
 
775
        }
776
 
777
 
778
 
779
        return new JsonModel([
780
            'success' => false,
781
            'data' => 'ERROR_METHOD_NOT_ALLOWED'
782
        ]);
783
    }
784
 
785
    public function changePasswordAction()
786
    {
787
        $currentUserPlugin = $this->plugin('currentUserPlugin');
788
        $currentUser = $currentUserPlugin->getUser();
789
 
790
        $request = $this->getRequest();
791
 
792
        if($request->isGet()) {
793
            $uuid = $this->params()->fromRoute('id');
794
            if(!$uuid) {
795
                return new JsonModel([
796
                    'success'   => false,
797
                    'data'      => 'ERROR_INVALID_PARAMETER'
798
                ]);
799
            }
800
 
801
            $userMapper = UserMapper::getInstance($this->adapter);
802
            $user = $userMapper->fetchOneByUuid($uuid);
803
 
804
 
805
 
806
            if($user) {
807
                return new JsonModel([
808
                    'success'   => true,
809
                    'data'      => [
810
                        'first_name' => $user->first_name,
811
                        'last_name' => $user->last_name,
812
                        'email' => $user->email,
813
                    ]
814
                ]);
815
            } else {
816
                return new JsonModel([
817
                    'success'   => false,
818
                    'data'      => 'ERROR_USER_NOT_FOUND'
819
                ]);
820
            }
821
 
822
        }
823
 
824
        if($request->isPost()) {
825
 
826
            $uuid = $this->params()->fromRoute('id');
827
            if(!$uuid) {
828
                return new JsonModel([
829
                    'success'   => false,
830
                    'data'      => 'ERROR_INVALID_PARAMETER'
831
                ]);
832
            }
833
 
834
            $userMapper = UserMapper::getInstance($this->adapter);
835
            $user = $userMapper->fetchOneByUuid($uuid);
836
 
837
            if(!$user) {
838
                return new JsonModel([
839
                    'success'   => false,
840
                    'data'      => 'ERROR_USER_NOT_FOUND'
841
                ]);
842
            }
843
 
844
 
845
            $dataPost = $request->getPost()->toArray();
846
            $form = new ChangePasswordForm();
847
            $form->setData($dataPost);
848
 
849
            if($form->isValid()) {
850
 
851
 
852
 
853
                $data = (array) $form->getData();
854
                $password = $data['password'];
855
 
856
 
857
 
858
                $userPasswordMapper = UserPasswordMapper::getInstance($this->adapter);
859
                $userPasswords = $userPasswordMapper->fetchAllByUserId($user->id);
860
 
861
                $oldPassword = false;
862
                foreach($userPasswords as $userPassword)
863
                {
864
                    if(password_verify($password, $userPassword->password) || (md5($password) == $userPassword->password))
865
                    {
866
                        $oldPassword = true;
867
                        break;
868
                    }
869
                }
870
 
871
                if($oldPassword) {
872
                    $this->logger->err('Cambio de contraseña del usuario - error contraseña ya utilizada anteriormente', ['user_id' =>  $currentUser->id, 'ip' => Functions::getUserIP()]);
873
 
874
                    return new JsonModel([
875
                        'success'   => false,
876
                        'data'      => 'ERROR_PASSWORD_HAS_ALREADY_BEEN_USED'
877
 
878
                    ]);
879
                } else {
880
                    $password_hash = password_hash($password, PASSWORD_DEFAULT);
881
 
882
 
883
                    $result = $userMapper->updatePassword($user, $password_hash);
884
                    if($result) {
885
                        $this->logger->info('Cambio de contraseña del usuario realizado', ['user_id' => $currentUser->id, 'ip' => Functions::getUserIP()]);
886
 
887
 
888
                        return new JsonModel([
889
                            'success'   => true,
890
                            'data'      => 'LABEL_YOUR_PASSWORD_HAS_BEEN_UPDATED'
891
 
892
                        ]);
893
                    } else {
894
                        $this->logger->err('Cambio de contraseña del usuario - error desconocido', ['user_id' => $currentUser->id, 'ip' => Functions::getUserIP()]);
895
 
896
                        return new JsonModel([
897
                            'success'   => true,
898
                            'data'      => 'ERROR_THERE_WAS_AN_ERROR'
899
 
900
                        ]);
901
                    }
902
                }
903
 
904
            } else {
905
                $messages = [];
906
 
907
                $form_messages = (array) $form->getMessages();
908
                foreach($form_messages  as $fieldname => $field_messages)
909
                {
910
                    $messages[$fieldname] = array_values($field_messages);
911
                }
912
 
913
                return new JsonModel([
914
                    'success'   => false,
915
                    'data'   => $messages
916
                ]);
917
            }
918
 
919
        }
920
 
921
 
922
 
923
        return new JsonModel([
924
            'success' => false,
925
            'data' => 'ERROR_METHOD_NOT_ALLOWED'
926
        ]);
927
    }
928
 
929
 
930
 
931
}