Proyectos de Subversion LeadersLinked - Backend

Rev

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

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