Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 7329 | 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
5966 anderson 2
 
1 www 3
declare(strict_types=1);
4
 
5
namespace LeadersLinked\Controller;
6
 
7
use Laminas\Db\Adapter\AdapterInterface;
6849 efrain 8
 
1 www 9
use Laminas\Mvc\Controller\AbstractActionController;
10
use Laminas\Log\LoggerInterface;
11
use Laminas\View\Model\JsonModel;
4179 efrain 12
use LeadersLinked\Mapper\CalendarEventMapper;
1 www 13
use LeadersLinked\Mapper\CompanyFollowerMapper;
5205 efrain 14
use LeadersLinked\Mapper\CompanyServiceMapper;
4751 efrain 15
use LeadersLinked\Mapper\JobDescriptionMapper;
16
use LeadersLinked\Mapper\PerformanceEvaluationFormMapper;
17
use LeadersLinked\Mapper\PerformanceEvaluationTestMapper;
1 www 18
use LeadersLinked\Mapper\QueryMapper;
5051 efrain 19
use LeadersLinked\Mapper\RecruitmentSelectionCandidateMapper;
20
use LeadersLinked\Mapper\RecruitmentSelectionInterviewMapper;
21
use LeadersLinked\Mapper\RecruitmentSelectionVacancyMapper;
1 www 22
use LeadersLinked\Mapper\UserMapper;
4179 efrain 23
use LeadersLinked\Mapper\ZoomMeetingMapper;
1 www 24
use LeadersLinked\Library\Functions;
25
use LeadersLinked\Mapper\UserNotificationSettingMapper;
26
 
4179 efrain 27
use LeadersLinked\Model\CalendarEvent;
4751 efrain 28
use LeadersLinked\Model\PerformanceEvaluationTest;
5051 efrain 29
use LeadersLinked\Model\RecruitmentSelectionInterview;
1 www 30
use LeadersLinked\Model\User;
31
use LeadersLinked\Mapper\ConnectionMapper;
32
use LeadersLinked\Mapper\ProfileVisitMapper;
33
use LeadersLinked\Mapper\GroupMemberMapper;
34
use LeadersLinked\Model\GroupMember;
35
use LeadersLinked\Mapper\GroupMapper;
36
use LeadersLinked\Model\Group;
37
use Laminas\Db\Sql\Expression;
38
use LeadersLinked\Mapper\CompanyUserMapper;
39
use LeadersLinked\Model\CompanyUser;
40
use LeadersLinked\Model\UserType;
41
use LeadersLinked\Mapper\CompanyMicrolearningCapsuleUserMapper;
42
use LeadersLinked\Model\Notification;
43
use LeadersLinked\Mapper\NotificationMapper;
44
use LeadersLinked\Mapper\EmailTemplateMapper;
45
use LeadersLinked\Model\EmailTemplate;
46
use LeadersLinked\Library\QueueEmail;
47
use LeadersLinked\Mapper\PostMapper;
48
use LeadersLinked\Mapper\CompanyMapper;
49
use LeadersLinked\Model\Company;
50
use LeadersLinked\Model\Connection;
5205 efrain 51
use LeadersLinked\Model\Service;
52
use LeadersLinked\Mapper\DailyPulseEmojiMapper;
6274 anderson 53
use LeadersLinked\Mapper\UserProfileMapper;
6605 efrain 54
use LeadersLinked\Mapper\NetworkMapper;
55
use LeadersLinked\Model\Network;
56
use LeadersLinked\Mapper\LocationMapper;
6749 efrain 57
use LeadersLinked\Mapper\CompanySizeMapper;
58
use LeadersLinked\Mapper\DegreeMapper;
59
use LeadersLinked\Mapper\LanguageMapper;
60
use LeadersLinked\Mapper\SkillMapper;
61
use LeadersLinked\Mapper\AptitudeMapper;
62
use LeadersLinked\Mapper\HobbyAndInterestMapper;
6878 efrain 63
use LeadersLinked\Mapper\IndustryMapper;
1 www 64
 
65
class HelperController extends AbstractActionController
66
{
67
    /**
68
     *
6866 efrain 69
     * @var \Laminas\Db\Adapter\AdapterInterface
1 www 70
     */
71
    private $adapter;
6866 efrain 72
 
1 www 73
    /**
74
     *
6866 efrain 75
     * @var \LeadersLinked\Cache\CacheInterface
1 www 76
     */
6866 efrain 77
    private $cache;
78
 
79
 
80
    /**
81
     *
82
     * @var \Laminas\Log\LoggerInterface
83
     */
1 www 84
    private $logger;
6866 efrain 85
 
1 www 86
    /**
87
     *
88
     * @var array
89
     */
90
    private $config;
6866 efrain 91
 
92
 
93
    /**
94
     *
95
     * @var \Laminas\Mvc\I18n\Translator
96
     */
97
    private $translator;
5966 anderson 98
 
99
 
2444 efrain 100
    /**
101
     *
102
     * @var array
103
     */
104
    private $navigation;
5966 anderson 105
 
1 www 106
    /**
107
     *
6866 efrain 108
     * @param \Laminas\Db\Adapter\AdapterInterface $adapter
109
     * @param \LeadersLinked\Cache\CacheInterface $cache
110
     * @param \Laminas\Log\LoggerInterface LoggerInterface $logger
1 www 111
     * @param array $config
6866 efrain 112
     * @param \Laminas\Mvc\I18n\Translator $translator
2444 efrain 113
     * @param array $navigation
1 www 114
     */
6866 efrain 115
    public function __construct($adapter, $cache, $logger, $config, $translator, $navigation)
1 www 116
    {
117
        $this->adapter      = $adapter;
6866 efrain 118
        $this->cache        = $cache;
1 www 119
        $this->logger       = $logger;
120
        $this->config       = $config;
6866 efrain 121
        $this->translator   = $translator;
2444 efrain 122
        $this->navigation   = $navigation;
1 www 123
    }
5966 anderson 124
 
125
 
1 www 126
    /**
127
     * Recuperamos las personas que pueda conocer
128
     * tiene que enviarse un petición GET a la siguiente url: /helpers/people-you-may-know
129
     * retorna un json en caso de ser  positivo
130
     * [
131
     *  'success' : true,
132
     *  'data' : [
133
     *      [
134
     *        'id'      => 'id del usuario encriptado',
135
     *        'name'    => 'nombre del usuario',
136
     *        'image'   => 'imagen del usuario',
137
     *        'profile' => 'url del profile',
138
     *     ]
139
     * ]
140
     * En caso de ser negativo
141
     * [
142
     *  'success' : false,
143
     *  'data' : mensaje de error
144
     * ]
145
     * @return \Laminas\View\Model\JsonModel
146
     */
147
    public function peopleYouMayKnowAction()
148
    {
149
        $request = $this->getRequest();
6273 anderson 150
        if ($request->isGet()) {
151
            $currentUserPlugin = $this->plugin('currentUserPlugin');
152
            $currentUser = $currentUserPlugin->getUser();
5966 anderson 153
 
6273 anderson 154
            $connectionMapper = ConnectionMapper::getInstance($this->adapter);
155
            $first_degree_connections_ids = $connectionMapper->fetchAllConnectionsByUserReturnIds($currentUser->id);
156
            $first_degree_connections_ids = $first_degree_connections_ids ? $first_degree_connections_ids : [0];
1 www 157
 
6273 anderson 158
            $second_degree_connections_ids = $connectionMapper->fetchAllSecondDegreeConnectionsForUserIdReturnIds($currentUser->id);
159
            $second_degree_connections_ids = $second_degree_connections_ids ? $second_degree_connections_ids : [0];
5966 anderson 160
 
6273 anderson 161
            /*Usuarios de la empresas donde trabajo o soy dueño */
162
            $company_user_ids = [];
163
            $companyUserMapper = CompanyUserMapper::getInstance($this->adapter);
5966 anderson 164
 
6273 anderson 165
            $records = $companyUserMapper->fetchAllByUserId($currentUser->id);
166
            foreach ($records as $record) {
5966 anderson 167
 
6273 anderson 168
                if ($record->status != CompanyUser::STATUS_ACCEPTED) {
169
                    continue;
170
                }
5966 anderson 171
 
6273 anderson 172
                $otherUsers = $companyUserMapper->fetchAllByCompanyId($record->company_id);
173
                foreach ($otherUsers as $otherUser) {
174
                    if ($currentUser->id != $otherUser->user_id && $otherUser->creator == CompanyUser::CREATOR_NO && $otherUser->status == CompanyUser::STATUS_ACCEPTED) {
5966 anderson 175
 
6273 anderson 176
                        if (!in_array($otherUser->user_id, $company_user_ids)) {
177
                            array_push($company_user_ids, $otherUser->user_id);
178
                        }
179
                    }
180
                }
181
            }
182
            $company_user_ids =  $company_user_ids ? $company_user_ids : [0];
5966 anderson 183
 
6273 anderson 184
            /* Usuario de los grupos donde soy dueño o participo */
5966 anderson 185
 
6273 anderson 186
            $groupMemberMapper = GroupMemberMapper::getInstance($this->adapter);
5966 anderson 187
 
6273 anderson 188
            $group_member_ids = [];
5966 anderson 189
 
6273 anderson 190
            $records = $groupMemberMapper->fetchAllByUserId($currentUser->id);
191
            foreach ($records as $record) {
192
                if ($record->status != GroupMember::STATUS_ACCEPTED) {
193
                    continue;
194
                }
5966 anderson 195
 
6273 anderson 196
                $otherUsers = $groupMemberMapper->fetchAllByGroupId($record->group_id);
197
                foreach ($otherUsers as $otherUser) {
198
                    if ($currentUser->id != $otherUser->user_id && $otherUser->status == GroupMember::STATUS_ACCEPTED) {
5966 anderson 199
 
6273 anderson 200
                        if (!in_array($otherUser->user_id, $group_member_ids)) {
201
                            array_push($group_member_ids, $otherUser->user_id);
202
                        }
203
                    }
204
                }
205
            }
5966 anderson 206
 
6273 anderson 207
            $group_member_ids = $group_member_ids ? $group_member_ids : [0];
1 www 208
 
5966 anderson 209
 
210
 
6273 anderson 211
            /* Usuarios con que comparto capsulas */
212
            $capsule_user_ids = [];
213
            $capsuleUserMapper = CompanyMicrolearningCapsuleUserMapper::getInstance($this->adapter);
5966 anderson 214
 
6273 anderson 215
            $company_ids = [];
216
            $records = $capsuleUserMapper->fetchAllActiveByUserId($currentUser->id);
217
            foreach ($records as $record) {
218
                if (!in_array($record->company_id, $company_ids)) {
219
                    array_push($company_ids, $record->company_id);
220
                }
221
            }
5966 anderson 222
 
223
 
224
 
6273 anderson 225
            foreach ($company_ids as $company_id) {
226
                $otherUsers = $capsuleUserMapper->fetchAllUserIdsForCapsulesActiveByCompanyId($company_id);
227
                foreach ($otherUsers as $user_id) {
228
                    if ($currentUser->id != $user_id) {
5966 anderson 229
 
6273 anderson 230
                        if (!in_array($user_id, $capsule_user_ids)) {
231
                            array_push($capsule_user_ids, $user_id);
232
                        }
233
                    }
234
                }
235
            }
5966 anderson 236
 
6273 anderson 237
            $capsule_user_ids = $capsule_user_ids ? $capsule_user_ids : [0];
5966 anderson 238
 
239
 
6273 anderson 240
            $other_users = array_unique(array_merge(
241
                $second_degree_connections_ids,
242
                $company_user_ids,
243
                $group_member_ids,
244
                $capsule_user_ids
245
            ));
5966 anderson 246
 
247
 
248
 
249
 
250
 
251
 
252
 
253
 
6273 anderson 254
            $items = [];
255
            $queryMapper = QueryMapper::getInstance($this->adapter);
256
            $select = $queryMapper->getSql()->select();
257
            $select->columns(['id', 'uuid',  'first_name', 'last_name', 'image']);
258
            $select->from(['u' => UserMapper::_TABLE]);
6274 anderson 259
            $select->join(['up' => UserProfileMapper::_TABLE], 'up.user_id = u.id ', ['description']);
6273 anderson 260
            $select->where->equalTo('network_id', $currentUser->network_id);
261
            $select->where->in('u.id', $other_users);
262
            $select->where->notIn('u.id', $first_degree_connections_ids);
263
            $select->where->notEqualTo('u.id', $currentUser->id);
264
            $select->where->equalTo('u.status', User::STATUS_ACTIVE);
265
            $select->where->in('u.usertype_id', [UserType::ADMIN, UserType::USER]);
266
            $select->order(['first_name', 'last_name']);
5966 anderson 267
 
6273 anderson 268
            //echo $select->getSqlString($this->adapter->platform); exit;
5966 anderson 269
 
6273 anderson 270
            $records = $queryMapper->fetchAll($select);
271
            foreach ($records as $record) {
1 www 272
 
6273 anderson 273
                $relation = [];
274
                if (in_array($record['id'], $second_degree_connections_ids)) {
275
                    array_push($relation, 'LABEL_RELATION_TYPE_SECOND_GRADE');
276
                }
277
                if (in_array($record['id'], $company_user_ids)) {
278
                    array_push($relation, 'LABEL_RELATION_TYPE_COMPANY_USER');
279
                }
280
                if (in_array($record['id'], $group_member_ids)) {
281
                    array_push($relation, 'LABEL_RELATION_TYPE_GROUP_MEMBER');
282
                }
283
                if (in_array($record['id'], $capsule_user_ids)) {
284
                    array_push($relation, 'LABEL_RELATION_TYPE_CAPSULE_USER');
285
                }
5966 anderson 286
 
287
 
6273 anderson 288
                $connection = $connectionMapper->fetchOneByUserId1AndUserId2($currentUser->id, $record['id']);
5966 anderson 289
 
6273 anderson 290
                $item = [
291
                    'id'    => $record['uuid'],
292
                    'name'  => trim($record['first_name'] . ' ' . $record['last_name']),
293
                    'image' => $this->url()->fromRoute('storage', ['code' => $record['uuid'], 'type' => 'user', 'filename' => $record['image']]),
294
                    'profile'   => $this->url()->fromRoute('profile/view', ['id' => $record['uuid']]),
295
                    'relation' => $relation,
296
                    'link_cancel'   => '',
297
                    'link_request'  => '',
6277 anderson 298
                    'user_profile' => $record['description'],
6273 anderson 299
                ];
5966 anderson 300
 
6273 anderson 301
                if ($connection) {
302
                    switch ($connection->status) {
303
                        case Connection::STATUS_SENT:
304
                            $item['link_cancel'] = $this->url()->fromRoute('connection/delete', ['id' => $record['uuid']]);
305
                            break;
5966 anderson 306
 
6273 anderson 307
                        case Connection::STATUS_ACCEPTED:
308
                            $item['link_cancel'] = $this->url()->fromRoute('connection/cancel', ['id' => $record['uuid']]);
309
                            break;
5966 anderson 310
 
6273 anderson 311
                        default:
312
                            $item['link_request'] = $this->url()->fromRoute('connection/request', ['id' => $record['uuid']]);
313
                            break;
314
                    }
315
                } else {
316
                    $item['link_request'] = $this->url()->fromRoute('connection/request', ['id' => $record['uuid']]);
317
                }
5966 anderson 318
 
319
 
6273 anderson 320
                array_push($items, $item);
321
            }
1 www 322
 
6273 anderson 323
            return new JsonModel([
324
                'success' => true,
325
                'data' => $items
326
            ]);
327
        } else {
328
            return new JsonModel([
329
                'success' => false,
330
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
331
            ]);
332
        }
5966 anderson 333
    }
1 www 334
 
335
    /**
336
     * Recuperamos las personas que pueda conocer
337
     * tiene que enviarse un petición GET a la siguiente url: /helpers/people-viewed-profile/:user_profile_id
338
     * retorna un json en caso de ser  positivo
339
     * [
340
     *  'success' : true,
341
     *  'data' : [
342
     *      [
343
     *        'id'      => 'id del usuario encriptado',
344
     *        'name'    => 'nombre del usuario',
345
     *        'image'   => 'imagen del usuario',
346
     *        'profile' => 'url del profile',
347
     *     ]
348
     * ]
349
     * En caso de ser negativo
350
     * [
351
     *  'success' : false,
352
     *  'data' : mensaje de error
353
     * ]
354
     * @return \Laminas\View\Model\JsonModel
355
     */
356
    public function peopleViewedProfileAction()
357
    {
358
        $request = $this->getRequest();
5966 anderson 359
        if ($request->isGet()) {
3639 efrain 360
            $currentUserPlugin = $this->plugin('currentUserPlugin');
361
            $currentUser = $currentUserPlugin->getUser();
5966 anderson 362
 
1 www 363
            $items = [];
364
            $user_profile_id = $this->params()->fromRoute('user_profile_id');
5966 anderson 365
 
1 www 366
            $items = [];
5966 anderson 367
 
1 www 368
            $mapper = QueryMapper::getInstance($this->adapter);
369
            $select = $mapper->getSql()->select(ProfileVisitMapper::_TABLE);
370
            $select->columns(['user_id' => new Expression('DISTINCT(visitor_id)')]);
371
            $select->where->equalTo('user_profile_id', $user_profile_id);
372
            $records = $mapper->fetchAll($select);
373
 
5966 anderson 374
            if ($records) {
375
 
1 www 376
                $user_ids = [];
5966 anderson 377
                foreach ($records as $record) {
1 www 378
                    array_push($user_ids, $record['user_id']);
379
                }
5966 anderson 380
 
1 www 381
                $mapper = QueryMapper::getInstance($this->adapter);
5966 anderson 382
                $select = $mapper->getSql()->select(UserMapper::_TABLE);
1 www 383
                $select->columns(['id', 'uuid', 'first_name', 'last_name', 'image']);
384
                $select->where->in('id', $user_ids);
3639 efrain 385
                $select->where->equalTo('network_id', $currentUser->network_id);
5966 anderson 386
                $select->where->equalTo('status', User::STATUS_ACTIVE);
1 www 387
                $select->order(['last_name ASC', 'first_name ASC']);
5966 anderson 388
 
1 www 389
                $records = $mapper->fetchAll($select);
5966 anderson 390
                foreach ($records as $record) {
1 www 391
                    array_push($items, [
392
                        'id'        => $record['uuid'],
393
                        'name'      => trim($record['first_name'] . ' ' . $record['last_name']),
394
                        'image'     => $this->url()->fromRoute('storage', ['code' => $record['uuid'], 'type' => 'user', 'filename' => $record['image']]),
5966 anderson 395
                        'profile'   => $this->url()->fromRoute('profile/view', ['id' => $record['uuid']]),
1 www 396
                    ]);
397
                }
398
            }
399
 
5966 anderson 400
 
1 www 401
            return new JsonModel([
402
                'success' => true,
403
                'data' => $items
404
            ]);
405
        } else {
406
            return new JsonModel([
407
                'success' => false,
408
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
409
            ]);
410
        }
411
    }
5966 anderson 412
 
413
 
1 www 414
    /**
415
     * Recuperamos los seguidores de la empresa
416
     * tiene que enviarse un petición GET a la siguiente url: /helpers/company-follower/:company_id
417
     * retorna un json en caso de ser  positivo
418
     * [
419
     *  'success' : true,
420
     *  'data' : [
421
     *      [
422
     *        'id'      => 'id del usuario encriptado',
423
     *        'name'    => 'nombre del usuario',
424
     *        'image'   => 'imagen del usuario',
425
     *        'profile' => 'url del profile',
426
     *     ]
427
     * ]
428
     * En caso de ser negativo
429
     * [
430
     *  'success' : false,
431
     *  'data' : mensaje de error
432
     * ]
433
     * @return \Laminas\View\Model\JsonModel
434
     */
435
    public function companyFollowerAction()
436
    {
437
 
5966 anderson 438
 
1 www 439
        $request = $this->getRequest();
5966 anderson 440
        if ($request->isGet()) {
3639 efrain 441
            $currentUserPlugin = $this->plugin('currentUserPlugin');
442
            $currentUser = $currentUserPlugin->getUser();
5966 anderson 443
 
1 www 444
            $company_uuid  = $this->params()->fromRoute('company_id');
5966 anderson 445
 
1 www 446
            $companyMapper = CompanyMapper::getInstance($this->adapter);
3639 efrain 447
            $company = $companyMapper->fetchOneByUuidAndNetworkId($company_uuid, $currentUser->network_id);
5966 anderson 448
 
1 www 449
            $items = [];
5966 anderson 450
            if ($company && $company->status == Company::STATUS_ACTIVE) {
451
 
452
 
1 www 453
                //print_r($company);
454
 
455
                $companyFollowerMapper = CompanyFollowerMapper::getInstance($this->adapter);
456
                $records = $companyFollowerMapper->fetchAllByCompanyId($company->id);
5966 anderson 457
 
1 www 458
                $ids = [];
5966 anderson 459
                foreach ($records as $record) {
460
                    if (!in_array($record->follower_id, $ids)) {
1 www 461
                        array_push($ids, $record->follower_id);
462
                    }
463
                }
5966 anderson 464
 
1 www 465
                //print_r($records);
5966 anderson 466
 
467
 
468
                if ($ids) {
469
 
1 www 470
                    $mapper = QueryMapper::getInstance($this->adapter);
471
                    $select = $mapper->getSql()->select(UserMapper::_TABLE);
472
                    $select->columns(['id', 'uuid', 'first_name', 'last_name', 'image']);
3639 efrain 473
                    $select->where->equalTo('network_id', $currentUser->network_id);
5966 anderson 474
                    $select->where->in('id', $ids);
475
                    $select->where->equalTo('status', User::STATUS_ACTIVE);
476
                    $select->order(['last_name', 'first_name']);
477
 
1 www 478
                    //echo $select->getSqlString($this->adapter->platform); exit;
5966 anderson 479
 
480
 
481
 
1 www 482
                    $records = $mapper->fetchAll($select);
5966 anderson 483
                    foreach ($records as $record) {
484
 
485
 
1 www 486
                        array_push($items, [
487
                            'id'        => $record['uuid'],
488
                            'name'      => trim($record['first_name'] . ' ' . $record['last_name']),
489
                            'image'     => $this->url()->fromRoute('storage', ['code' => $record['uuid'], 'type' => 'user', 'filename' => $record['image']]),
5966 anderson 490
                            'profile'   => $this->url()->fromRoute('profile/view', ['id' => $record['uuid']]),
1 www 491
                        ]);
492
                    }
493
                }
494
            }
5966 anderson 495
 
1 www 496
            return new JsonModel([
497
                'success' => true,
498
                'data' => $items
499
            ]);
500
        } else {
501
            return new JsonModel([
502
                'success' => false,
503
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
504
            ]);
505
        }
506
    }
5966 anderson 507
 
1 www 508
    public function companySuggestionAction()
509
    {
510
        $request = $this->getRequest();
5966 anderson 511
        if ($request->isGet()) {
3639 efrain 512
            $currentUserPlugin = $this->plugin('currentUserPlugin');
513
            $currentUser = $currentUserPlugin->getUser();
5966 anderson 514
 
3639 efrain 515
            $company_uuid = $this->params()->fromRoute('company_id');
5966 anderson 516
 
1 www 517
            $companyMapper = CompanyMapper::getInstance($this->adapter);
3639 efrain 518
            $company = $companyMapper->fetchOneByUuidAndNetworkId($company_uuid, $currentUser->network_id);
5966 anderson 519
 
1 www 520
            $items = [];
5966 anderson 521
            if ($company && $company->status == Company::STATUS_ACTIVE) {
522
 
523
 
1 www 524
                $mapper = QueryMapper::getInstance($this->adapter);
525
                $select = $mapper->getSql()->select(CompanyMapper::_TABLE);
526
                $select->columns(['id', 'uuid', 'name', 'image']);
3639 efrain 527
                $select->where->equalTo('network_id', $currentUser->network_id);
1 www 528
                $select->where->notEqualTo('id', $company->id);
5966 anderson 529
                $select->where->equalTo('status', Company::STATUS_ACTIVE);
1 www 530
                $select->where->equalTo('industry_id', $company->industry_id);
5966 anderson 531
                //  $select->where->equalTo('company_size_id', $company->company_size_id);
1 www 532
                $select->order(['name']);
5966 anderson 533
 
534
 
1 www 535
                //echo $select->getSqlString($this->adapter->platform); exit;
5966 anderson 536
 
1 www 537
                $records = $mapper->fetchAll($select);
5966 anderson 538
                foreach ($records as $record) {
1 www 539
                    array_push($items, [
540
                        'id'        => $record['uuid'],
541
                        'name'      => trim($record['name']),
542
                        'image'     => $this->url()->fromRoute('storage', ['code' => $record['uuid'], 'type' => 'company', 'filename' => $record['image']]),
5966 anderson 543
                        'profile'   => $this->url()->fromRoute('company/view', ['id' => $record['uuid']]),
1 www 544
                    ]);
545
                }
546
            }
5966 anderson 547
 
1 www 548
            return new JsonModel([
549
                'success' => true,
550
                'data' => $items
551
            ]);
552
        } else {
553
            return new JsonModel([
554
                'success' => false,
555
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
556
            ]);
557
        }
558
    }
5966 anderson 559
 
1 www 560
    /**
561
     * Recuperamos los miembros del grupo
562
     * tiene que enviarse un petición GET a la siguiente url: /helpers/group-members/:group_id
563
     * retorna un json en caso de ser  positivo
564
     * [
565
     *  'success' : true,
566
     *  'data' : [
567
     *      [
568
     *        'id'      => 'id del usuario encriptado',
569
     *        'name'    => 'nombre del usuario',
570
     *        'image'   => 'imagen del usuario',
571
     *        'profile' => 'url del profile',
572
     *     ]
573
     * ]
574
     * En caso de ser negativo
575
     * [
576
     *  'success' : false,
577
     *  'data' : mensaje de error
578
     * ]
579
     * @return \Laminas\View\Model\JsonModel
580
     */
581
    public function groupMembersAction()
582
    {
583
        $currentUserPlugin = $this->plugin('currentUserPlugin');
584
        $currentUser = $currentUserPlugin->getUser();
3639 efrain 585
 
1 www 586
        $request = $this->getRequest();
5966 anderson 587
        if ($request->isGet()) {
588
 
1 www 589
            $group_uuid = $this->params()->fromRoute('group_id');
5966 anderson 590
 
1 www 591
            $groupMapper = GroupMapper::getInstance($this->adapter);
3639 efrain 592
            $group = $groupMapper->fetchOneByUuidAndNetworkId($group_uuid, $currentUser->network_id);
5966 anderson 593
 
1 www 594
            $items = [];
5966 anderson 595
            if ($group && $group->status == Group::STATUS_ACTIVE) {
596
 
1 www 597
                $mapper = QueryMapper::getInstance($this->adapter);
598
                $select = $mapper->getSql()->select();
599
                $select->columns(['id', 'uuid', 'first_name', 'last_name', 'image']);
600
                $select->from(['u' => UserMapper::_TABLE]);
601
                $select->join(['gm' => GroupMemberMapper::_TABLE], 'gm.user_id = u.id ', ['user_id', 'status']);
5966 anderson 602
                $select->join(['g' => GroupMapper::_TABLE], 'gm.group_id = g.id', ['group_uuid' => 'uuid']);
3639 efrain 603
                $select->where->equalTo('u.network_id',  $currentUser->network_id);
604
                $select->where->equalTo('g.network_id', $currentUser->network_id);
1 www 605
                $select->where->equalTo('g.uuid', $group_uuid);
5966 anderson 606
 
607
                if ($group->user_id == $currentUser->id) {
1 www 608
                    $select->where->in('gm.status', [
5966 anderson 609
                        GroupMember::STATUS_ACCEPTED,
1 www 610
                        GroupMember::STATUS_ADDED_BY_ADMIN,
611
                        GroupMember::STATUS_AUTO_JOIN,
612
                        GroupMember::STATUS_JOINING_REQUESTED,
613
                    ]);
614
                } else {
615
                    $select->where->in('gm.status', [GroupMember::STATUS_ACCEPTED, GroupMember::STATUS_AUTO_JOIN]);
5966 anderson 616
                }
617
 
618
 
1 www 619
                $select->where->equalTo('u.status', User::STATUS_ACTIVE);
620
                $select->order(['last_name', 'first_name']);
5966 anderson 621
 
1 www 622
                //echo $select->getSqlString($this->adapter->platform);
623
 
5966 anderson 624
 
625
 
626
 
1 www 627
                $records = $mapper->fetchAll($select);
5966 anderson 628
                foreach ($records as $record) {
629
 
1 www 630
                    $actions = [];
5966 anderson 631
                    if ($group->user_id == $currentUser->id) {
632
                        if ($record['id'] != $currentUser->id) {
633
 
634
 
635
 
636
                            switch ($record['status']) {
637
                                case GroupMember::STATUS_JOINING_REQUESTED:
1 www 638
                                    $actions['link_approve'] = $this->url()->fromRoute('helpers/group-members/approve', ['group_id' => $group->uuid, 'user_id' => $record['uuid']]);
639
                                    $actions['link_reject'] = $this->url()->fromRoute('helpers/group-members/reject', ['group_id' => $group->uuid, 'user_id' => $record['uuid']]);
640
                                    break;
5966 anderson 641
 
642
                                case GroupMember::STATUS_ACCEPTED:
643
                                case GroupMember::STATUS_AUTO_JOIN:
644
                                case GroupMember::STATUS_ADDED_BY_ADMIN:
1 www 645
                                    $actions['link_cancel'] = $this->url()->fromRoute('helpers/group-members/cancel', ['group_id' => $group->uuid, 'user_id' => $record['uuid']]);
646
                                    break;
647
                            }
648
                        }
649
                    }
5966 anderson 650
 
1 www 651
                    array_push($items, [
652
                        'id'        => $record['uuid'],
653
                        'name'      => trim($record['first_name'] . ' ' . $record['last_name']),
654
                        'image'     => $this->url()->fromRoute('storage', ['code' => $record['uuid'], 'type' => 'user', 'filename' => $record['image']]),
655
                        'profile'   => $this->url()->fromRoute('profile/view', ['id' => $record['uuid']]),
656
                        'actions'   => $actions,
5966 anderson 657
 
1 www 658
                    ]);
659
                }
660
            }
5966 anderson 661
 
1 www 662
            return new JsonModel([
663
                'success' => true,
664
                'data' => [
665
                    'items' => $items,
5966 anderson 666
                    'link_invite' => $group->user_id == $currentUser->id ? $this->url()->fromRoute('helpers/group-members/invite', ['group_id' => $group->uuid])  : '',
1 www 667
                ]
668
            ]);
669
        } else {
670
            return new JsonModel([
671
                'success' => false,
672
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
673
            ]);
674
        }
675
    }
5966 anderson 676
 
1 www 677
    public function groupMemberInviteAction()
678
    {
679
        $currentUserPlugin = $this->plugin('currentUserPlugin');
680
        $currentUser = $currentUserPlugin->getUser();
3639 efrain 681
 
1 www 682
        $group_uuid = $this->params()->fromRoute('group_id');
5966 anderson 683
 
1 www 684
        $groupMapper = GroupMapper::getInstance($this->adapter);
3639 efrain 685
        $group = $groupMapper->fetchOneByUuidAndNetworkId($group_uuid, $currentUser->network_id);
5966 anderson 686
 
687
        if (!$group) {
1 www 688
            return new JsonModel([
689
                'success' => false,
690
                'data' => 'ERROR_GROUP_NOT_FOUND'
691
            ]);
692
        }
5966 anderson 693
 
694
        if ($group->status != Group::STATUS_ACTIVE) {
1 www 695
            return new JsonModel([
696
                'success' => false,
697
                'data' => 'ERROR_GROUP_IS_NOT_ACTIVE'
698
            ]);
699
        }
5966 anderson 700
 
701
        if ($currentUser->id != $group->user_id) {
1 www 702
            return new JsonModel([
703
                'success' => false,
704
                'data' => 'ERROR_GROUP_IS_NOT_YOU_ARE_THE_OWNER_OF_THIS_GROUP'
705
            ]);
706
        }
5966 anderson 707
 
708
 
1 www 709
        $request = $this->getRequest();
5966 anderson 710
        if ($request->isGet()) {
1 www 711
            $search = filter_var($this->params()->fromQuery('search', ''));
5966 anderson 712
            if (strlen($search) >= 3) {
1 www 713
 
714
                $userMapper = UserMapper::getInstance($this->adapter);
3639 efrain 715
                $records  = $userMapper->fetchAllSuggestForInvitationByGroupIdAndNetworkIdAndSearch($group->id, $currentUser->network_id, $search);
5966 anderson 716
 
1 www 717
                $users = [];
5966 anderson 718
                foreach ($records as $record) {
1 www 719
                    array_push($users, [
720
                        'value' => $record->uuid,
721
                        'text' => trim($record->first_name . ' ' . $record->last_name) . ' (' . $record->email . ')'
5966 anderson 722
 
1 www 723
                    ]);
724
                }
5966 anderson 725
 
1 www 726
                return new JsonModel([
727
                    'success' => true,
728
                    'data' => $users
729
                ]);
730
            } else {
731
                return new JsonModel([
732
                    'success' => true,
5966 anderson 733
                    'data' => []
1 www 734
                ]);
5966 anderson 735
            }
736
        } else if ($request->isPost()) {
1 www 737
            $uuid = $this->params()->fromPost('id');
5966 anderson 738
            if (!$uuid) {
1 www 739
                return new JsonModel([
740
                    'success'   => false,
741
                    'data'      => 'ERROR_INVALID_PARAMETER'
742
                ]);
743
            }
5966 anderson 744
 
1 www 745
            $userMapper = UserMapper::getInstance($this->adapter);
3639 efrain 746
            $user = $userMapper->fetchOneByUuidAndNetworkId($uuid, $currentUser->network_id);
5966 anderson 747
 
748
            if (!$user) {
1 www 749
                return new JsonModel([
750
                    'success'   => false,
751
                    'data'      => 'ERROR_USER_NOT_FOUND'
752
                ]);
753
            }
5966 anderson 754
 
755
            if ($user->status != User::STATUS_ACTIVE) {
1 www 756
                return new JsonModel([
757
                    'success'   => false,
758
                    'data'      => 'ERROR_USER_IS_INACTIVE'
759
                ]);
760
            }
5966 anderson 761
 
762
            if ($group->user_id == $user->id) {
1 www 763
                return new JsonModel([
764
                    'success'   => false,
765
                    'data'      => 'ERROR_GROUP_YOU_ARE_THE_OWNER_OF_THIS_GROUP'
766
                ]);
767
            }
5966 anderson 768
 
1 www 769
            $groupMemberMapper = GroupMemberMapper::getInstance($this->adapter);
770
            $groupMember = $groupMemberMapper->fetchOneByGroupIdAndUserId($group->id, $user->id);
5966 anderson 771
 
772
 
773
 
774
            if ($groupMember) {
1 www 775
                $result = false;
5966 anderson 776
 
777
                switch ($groupMember->status) {
1 www 778
                    case GroupMember::STATUS_ACCEPTED:
5966 anderson 779
                    case GroupMember::STATUS_AUTO_JOIN:
780
 
1 www 781
                        return new JsonModel([
782
                            'success'   => false,
783
                            'data'      => 'ERROR_GROUP_YOU_ARE_MEMBER',
784
                        ]);
785
                        break;
5966 anderson 786
 
787
 
788
                    case $groupMember->status == GroupMember::STATUS_REJECTED:
789
                    case $groupMember->status == GroupMember::STATUS_CANCELLED:
790
 
1 www 791
                        $groupMember->status = GroupMember::STATUS_ADDED_BY_ADMIN;
792
                        $groupMember->joining_request_on = date('H-m-d H:i:s');
5966 anderson 793
 
1 www 794
                        $result = $groupMemberMapper->update($groupMember);
795
                        break;
5966 anderson 796
 
797
                    case GroupMember::STATUS_ADDED_BY_ADMIN:
798
                    case  GroupMember::STATUS_JOINING_REQUESTED:
1 www 799
                        return new JsonModel([
800
                            'success'   => false,
801
                            'data'      => 'ERROR_GROUP_THERE_IS_A_PENDING_REQUEST'
802
                        ]);
803
                        break;
5966 anderson 804
 
805
                    default:
1 www 806
                        return new JsonModel([
807
                            'success'   => false,
808
                            'data'      => 'ERROR_UNKNOWN_OPERATION'
809
                        ]);
810
                        break;
811
                }
5966 anderson 812
            } else {
1 www 813
 
5966 anderson 814
 
815
 
1 www 816
                $groupMember = new GroupMember();
817
                $groupMember->user_id = $user->id;
818
                $groupMember->group_id = $group->id;
819
                $groupMember->status = GroupMember::STATUS_ADDED_BY_ADMIN;
820
                $groupMember->joining_request_on = date('H-m-d H:i:s');
5966 anderson 821
 
1 www 822
                $result = $groupMemberMapper->insert($groupMember);
5966 anderson 823
            }
824
 
825
            if ($result) {
826
 
1 www 827
                $notification = new Notification();
828
                $notification->type     = Notification::TYPE_RECEIVE_INVITATION_GROUP;
829
                $notification->read     = Notification::NO;
830
                $notification->user_id  = $user->id;
831
                $notification->group_id = $group->id;
832
                $notification->message  = 'LABEL_NOTIFICATION_RECEIVE_INVITATION_GROUP';
5966 anderson 833
                $notification->url      = $this->url()->fromRoute('group/view', ['id' => $group->uuid]);
834
 
1 www 835
                $notificationMapper = NotificationMapper::getInstance($this->adapter);
836
                $notificationMapper->insert($notification);
5966 anderson 837
 
1 www 838
                $userNotificationMapper = UserNotificationSettingMapper::getInstance($this->adapter);
839
                $userNotification = $userNotificationMapper->fetchOne($user->id);
5966 anderson 840
 
841
                if ($userNotification && $userNotification->receive_invitation_group) {
1 www 842
                    $emailTemplateMapper = EmailTemplateMapper::getInstance($this->adapter);
3639 efrain 843
                    $emailTemplate = $emailTemplateMapper->fetchOneByCodeAndNetworkId(EmailTemplate::CODE_RECEIVE_INVITATION_GROUP, $currentUser->network_id);
5966 anderson 844
 
845
                    if ($emailTemplate) {
1 www 846
                        $arrayCont = [
847
                            'firstname'             => $currentUser->first_name,
848
                            'lastname'              => $currentUser->last_name,
849
                            'other_user_firstname'  => $user->first_name,
850
                            'other_user_lastname'   => $user->last_name,
851
                            'company_name'          => '',
852
                            'group_name'            => $group->name,
853
                            'content'               => '',
854
                            'code'                  => '',
855
                            'link'                  => $this->url()->fromRoute('group/view', ['id' => $group->uuid], ['force_canonical' => true])
856
                        ];
5966 anderson 857
 
1 www 858
                        $email = new QueueEmail($this->adapter);
859
                        $email->processEmailTemplate($emailTemplate, $arrayCont, $user->email, trim($user->first_name . ' ' . $user->last_name));
860
                    }
861
                }
5966 anderson 862
 
1 www 863
                return new JsonModel([
864
                    'success'   => true,
865
                    'data'      => 'LABEL_GROUP_REQUEST_SUCCESS'
866
                ]);
867
            } else {
5966 anderson 868
 
1 www 869
                return new JsonModel([
870
                    'success'   => false,
871
                    'data'      => 'ERROR_GROUP_REQUEST_COULD_NOT_BE_SENT'
872
                ]);
5966 anderson 873
            }
1 www 874
        } else {
875
            return new JsonModel([
876
                'success' => false,
877
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
878
            ]);
879
        }
880
    }
5966 anderson 881
 
1 www 882
    public function  groupMemberCancelAction()
883
    {
884
        $currentUserPlugin = $this->plugin('currentUserPlugin');
885
        $currentUser = $currentUserPlugin->getUser();
3639 efrain 886
 
1 www 887
        $request = $this->getRequest();
5966 anderson 888
        if ($request->isPost()) {
1 www 889
            $group_uuid = $this->params()->fromRoute('group_id');
5966 anderson 890
            $user_uuid  = $this->params()->fromRoute('user_id');
891
 
1 www 892
            $groupMapper = GroupMapper::getInstance($this->adapter);
3639 efrain 893
            $group = $groupMapper->fetchOneByUuidAndNetworkId($group_uuid, $currentUser->network_id);
5966 anderson 894
 
895
            if (!$group) {
1 www 896
                return new JsonModel([
897
                    'success' => false,
898
                    'data' => 'ERROR_GROUP_NOT_FOUND'
899
                ]);
900
            }
5966 anderson 901
 
902
            if ($group->status != Group::STATUS_ACTIVE) {
1 www 903
                return new JsonModel([
904
                    'success' => false,
905
                    'data' => 'ERROR_GROUP_IS_NOT_ACTIVE'
906
                ]);
907
            }
5966 anderson 908
 
909
            if ($currentUser->id != $group->user_id) {
1 www 910
                return new JsonModel([
911
                    'success' => false,
912
                    'data' => 'ERROR_GROUP_IS_NOT_YOU_ARE_THE_OWNER_OF_THIS_GROUP'
913
                ]);
914
            }
5966 anderson 915
 
1 www 916
            $userMapper = UserMapper::getInstance($this->adapter);
3639 efrain 917
            $user = $userMapper->fetchOneByUuidAndNetworkId($user_uuid, $currentUser->network_id);
5966 anderson 918
 
919
            if (!$user) {
1 www 920
                return new JsonModel([
921
                    'success' => false,
922
                    'data' => 'ERROR_USER_NOT_FOUND'
923
                ]);
924
            }
5966 anderson 925
 
926
            if ($user->id == $currentUser->id) {
1 www 927
                return new JsonModel([
928
                    'success' => false,
929
                    'data' => 'ERROR_GROUP_YOU_ARE_THE_OWNER_OF_THIS_GROUP'
930
                ]);
931
            }
5966 anderson 932
 
933
 
934
 
1 www 935
            $groupMemberMapper = GroupMemberMapper::getInstance($this->adapter);
936
            $groupMember = $groupMemberMapper->fetchOneByGroupIdAndUserId($group->id, $user->id);
5966 anderson 937
            if ($groupMember) {
938
 
939
                if (
940
                    $groupMember->status == GroupMember::STATUS_ACCEPTED ||
1 www 941
                    $groupMember->status == GroupMember::STATUS_ADDED_BY_ADMIN ||
5966 anderson 942
                    $groupMember->status == GroupMember::STATUS_AUTO_JOIN
943
                ) {
944
 
1 www 945
                    $groupMember->status = GroupMember::STATUS_CANCELLED;
5966 anderson 946
                    if ($groupMemberMapper->update($groupMember)) {
1 www 947
 
948
                        return new JsonModel([
949
                            'success' => true,
5966 anderson 950
                            'data' =>  'LABEL_GROUP_MEMBER_CANCELLED_SUCCESS'
1 www 951
                        ]);
952
                    } else {
953
                        return new JsonModel([
954
                            'success' => true,
5966 anderson 955
                            'data' =>    'LABEL_GROUP_MEMBER_CANCELLED_FAILED'
1 www 956
                        ]);
957
                    }
958
                }
5966 anderson 959
            }
960
 
961
 
1 www 962
            return new JsonModel([
963
                'success' => false,
964
                'data' => 'ERROR_GROUP_REQUEST_OR_MEMBER_NOT_FOUND_TO_CANCEL'
965
            ]);
5966 anderson 966
        } else {
1 www 967
 
968
            return new JsonModel([
969
                'success' => false,
970
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
971
            ]);
972
        }
973
    }
5966 anderson 974
 
1 www 975
    public function  groupMemberRejectAction()
976
    {
977
        $currentUserPlugin = $this->plugin('currentUserPlugin');
978
        $currentUser = $currentUserPlugin->getUser();
5966 anderson 979
 
1 www 980
        $request = $this->getRequest();
5966 anderson 981
        if ($request->isPost()) {
1 www 982
            $group_uuid = $this->params()->fromRoute('group_id');
983
            $user_uuid  = $this->params()->fromRoute('user_id');
5966 anderson 984
 
1 www 985
            $groupMapper = GroupMapper::getInstance($this->adapter);
3639 efrain 986
            $group = $groupMapper->fetchOneByUuidAndNetworkId($group_uuid, $currentUser->network_id);
5966 anderson 987
 
988
            if (!$group) {
1 www 989
                return new JsonModel([
990
                    'success' => false,
991
                    'data' => 'ERROR_GROUP_NOT_FOUND'
992
                ]);
993
            }
5966 anderson 994
 
995
            if ($group->status != Group::STATUS_ACTIVE) {
1 www 996
                return new JsonModel([
997
                    'success' => false,
998
                    'data' => 'ERROR_GROUP_IS_NOT_ACTIVE'
999
                ]);
1000
            }
5966 anderson 1001
 
1002
            if ($currentUser->id != $group->user_id) {
1 www 1003
                return new JsonModel([
1004
                    'success' => false,
1005
                    'data' => 'ERROR_GROUP_IS_NOT_YOU_ARE_THE_OWNER_OF_THIS_GROUP'
1006
                ]);
1007
            }
5966 anderson 1008
 
1 www 1009
            $userMapper = UserMapper::getInstance($this->adapter);
3639 efrain 1010
            $user = $userMapper->fetchOneByUuidAndNetworkId($user_uuid, $currentUser->network_id);
5966 anderson 1011
 
1012
            if (!$user) {
1 www 1013
                return new JsonModel([
1014
                    'success' => false,
1015
                    'data' => 'ERROR_USER_NOT_FOUND'
1016
                ]);
1017
            }
5966 anderson 1018
 
1019
            if ($user->id == $currentUser->id) {
1 www 1020
                return new JsonModel([
1021
                    'success' => false,
1022
                    'data' => 'ERROR_GROUP_YOU_ARE_THE_OWNER_OF_THIS_GROUP'
1023
                ]);
1024
            }
5966 anderson 1025
 
1026
 
1027
 
1 www 1028
            $groupMemberMapper = GroupMemberMapper::getInstance($this->adapter);
1029
            $groupMember = $groupMemberMapper->fetchOneByGroupIdAndUserId($group->id, $user->id);
5966 anderson 1030
            if ($groupMember) {
1031
 
1032
                if ($groupMember->status == GroupMember::STATUS_JOINING_REQUESTED) {
1033
 
1034
                    $groupMember->status = GroupMember::STATUS_REJECTED;
1035
                    if ($groupMemberMapper->update($groupMember)) {
1036
 
1037
                        return new JsonModel([
1038
                            'success' => true,
1039
                            'data' =>  'LABEL_GROUP_MEMBER_REJECTED_SUCCESS'
1040
                        ]);
1041
                    } else {
1042
                        return new JsonModel([
1043
                            'success' => true,
1044
                            'data' =>    'LABEL_GROUP_MEMBER_REJECTED_FAILED'
1045
                        ]);
1 www 1046
                    }
5966 anderson 1047
                }
1 www 1048
            }
5966 anderson 1049
 
1050
 
1 www 1051
            return new JsonModel([
1052
                'success' => false,
1053
                'data' => 'ERROR_GROUP_THERE_IS_NO_PENDING_REQUEST_TO_REJECT'
1054
            ]);
1055
        } else {
5966 anderson 1056
 
1 www 1057
            return new JsonModel([
1058
                'success' => false,
1059
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
1060
            ]);
1061
        }
1062
    }
5966 anderson 1063
 
1 www 1064
    public function  groupMemberApproveAction()
1065
    {
1066
        $currentUserPlugin = $this->plugin('currentUserPlugin');
1067
        $currentUser = $currentUserPlugin->getUser();
5966 anderson 1068
 
1 www 1069
        $request = $this->getRequest();
5966 anderson 1070
        if ($request->isPost()) {
1 www 1071
            $group_uuid = $this->params()->fromRoute('group_id');
1072
            $user_uuid  = $this->params()->fromRoute('user_id');
5966 anderson 1073
 
1 www 1074
            $groupMapper = GroupMapper::getInstance($this->adapter);
3639 efrain 1075
            $group = $groupMapper->fetchOneByUuidAndNetworkId($group_uuid, $currentUser->network_id);
5966 anderson 1076
 
1077
            if (!$group) {
1 www 1078
                return new JsonModel([
1079
                    'success' => false,
1080
                    'data' => 'ERROR_GROUP_NOT_FOUND'
1081
                ]);
1082
            }
5966 anderson 1083
 
1084
            if ($group->status != Group::STATUS_ACTIVE) {
1 www 1085
                return new JsonModel([
1086
                    'success' => false,
1087
                    'data' => 'ERROR_GROUP_IS_NOT_ACTIVE'
1088
                ]);
1089
            }
5966 anderson 1090
 
1091
            if ($currentUser->id != $group->user_id) {
1 www 1092
                return new JsonModel([
1093
                    'success' => false,
1094
                    'data' => 'ERROR_GROUP_IS_NOT_YOU_ARE_THE_OWNER_OF_THIS_GROUP'
1095
                ]);
1096
            }
5966 anderson 1097
 
1 www 1098
            $userMapper = UserMapper::getInstance($this->adapter);
3639 efrain 1099
            $user = $userMapper->fetchOneByUuidAndNetworkId($user_uuid, $currentUser->network_id);
5966 anderson 1100
 
1101
            if (!$user) {
1 www 1102
                return new JsonModel([
1103
                    'success' => false,
1104
                    'data' => 'ERROR_USER_NOT_FOUND'
1105
                ]);
1106
            }
5966 anderson 1107
 
1108
            if ($user->id == $currentUser->id) {
1 www 1109
                return new JsonModel([
1110
                    'success' => false,
1111
                    'data' => 'ERROR_GROUP_YOU_ARE_THE_OWNER_OF_THIS_GROUP'
1112
                ]);
1113
            }
5966 anderson 1114
 
1115
 
1116
 
1 www 1117
            $groupMemberMapper = GroupMemberMapper::getInstance($this->adapter);
1118
            $groupMember = $groupMemberMapper->fetchOneByGroupIdAndUserId($group->id, $user->id);
5966 anderson 1119
            if ($groupMember) {
1120
 
1121
                if ($groupMember->status == GroupMember::STATUS_JOINING_REQUESTED) {
1122
 
1 www 1123
                    $groupMember->status = GroupMember::STATUS_ACCEPTED;
5966 anderson 1124
                    if ($groupMemberMapper->update($groupMember)) {
1125
 
1126
 
1 www 1127
                        $notification = new Notification();
1128
                        $notification->type     = Notification::TYPE_ACCEPT_MY_REQUEST_JOIN_GROUP;
1129
                        $notification->read     = Notification::NO;
1130
                        $notification->user_id  = $user->id;
1131
                        $notification->group_id = $group->id;
1132
                        $notification->message  = 'LABEL_NOTIFICATION_ACCEPT_MY_REQUEST_JOIN_GROUP';
1133
                        $notification->url      = $this->url()->fromRoute('group/view', ['id' => $group->uuid]);
5966 anderson 1134
 
1 www 1135
                        $notificationMapper = NotificationMapper::getInstance($this->adapter);
1136
                        $notificationMapper->insert($notification);
5966 anderson 1137
 
1 www 1138
                        $userNotificationMapper = UserNotificationSettingMapper::getInstance($this->adapter);
1139
                        $userNotification = $userNotificationMapper->fetchOne($user->id);
5966 anderson 1140
 
1141
                        if ($userNotification && $userNotification->receive_invitation_group) {
1 www 1142
                            $emailTemplateMapper = EmailTemplateMapper::getInstance($this->adapter);
3639 efrain 1143
                            $emailTemplate = $emailTemplateMapper->fetchOneByCodeAndNetworkId(EmailTemplate::CODE_ACCEPT_MY_REQUEST_JOIN_GROUP, $currentUser->network_id);
5966 anderson 1144
 
1145
                            if ($emailTemplate) {
1 www 1146
                                $arrayCont = [
1147
                                    'firstname'             => $currentUser->first_name,
1148
                                    'lastname'              => $currentUser->last_name,
1149
                                    'other_user_firstname'  => $user->first_name,
1150
                                    'other_user_lastname'   => $user->last_name,
1151
                                    'company_name'          => '',
1152
                                    'group_name'            => $group->name,
1153
                                    'content'               => '',
1154
                                    'code'                  => '',
1155
                                    'link'                  => $this->url()->fromRoute('group/view', ['id' => $group->uuid], ['force_canonical' => true])
1156
                                ];
5966 anderson 1157
 
1 www 1158
                                $email = new QueueEmail($this->adapter);
1159
                                $email->processEmailTemplate($emailTemplate, $arrayCont, $user->email, trim($user->first_name . ' ' . $user->last_name));
1160
                            }
1161
                        }
5966 anderson 1162
 
1 www 1163
                        return new JsonModel([
1164
                            'success' => true,
1165
                            'data' =>  'LABEL_GROUP_MEMBER_APPROVED_SUCCESS'
1166
                        ]);
1167
                    } else {
1168
                        return new JsonModel([
1169
                            'success' => true,
1170
                            'data' =>    'LABEL_GROUP_MEMBER_APPROVED_FAILED'
1171
                        ]);
1172
                    }
1173
                }
1174
            }
5966 anderson 1175
 
1176
 
1 www 1177
            return new JsonModel([
1178
                'success' => false,
1179
                'data' => 'ERROR_GROUP_THERE_IS_NO_PENDING_REQUEST_TO_APPROVED'
1180
            ]);
1181
        } else {
5966 anderson 1182
 
1 www 1183
            return new JsonModel([
1184
                'success' => false,
1185
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
1186
            ]);
1187
        }
1188
    }
5966 anderson 1189
 
1190
 
1 www 1191
    /**
1192
     * Recuperamos los grupos sugeridos
1193
     * tiene que enviarse un petición GET a la siguiente url: /helpers/groups-suggestion/:group_id
1194
     * retorna un json en caso de ser  positivo
1195
     * [
1196
     *  'success' : true,
1197
     *  'data' : [
1198
     *      [
1199
     *        'id'      => 'id del grupo encriptado',
1200
     *        'name'    => 'nombre del grupo',
1201
     *        'image'   => 'imagen del grupo',
1202
     *        'profile' => 'url del profile',
1203
     *     ]
1204
     * ]
1205
     * En caso de ser negativo
1206
     * [
1207
     *  'success' : false,
1208
     *  'data' : mensaje de error
1209
     * ]
1210
     * @return \Laminas\View\Model\JsonModel
1211
     */
1212
    public function groupsSuggestionAction()
1213
    {
1214
 
1215
        $request = $this->getRequest();
5966 anderson 1216
        if ($request->isGet()) {
1217
 
1 www 1218
            $currentUserPlugin = $this->plugin('currentUserPlugin');
1219
            $currentUser = $currentUserPlugin->getUser();
5966 anderson 1220
 
1 www 1221
            $connectionMapper = ConnectionMapper::getInstance($this->adapter);
1222
            $first_degree_connections_ids = $connectionMapper->fetchAllConnectionsByUserReturnIds($currentUser->id);
1223
            $first_degree_connections_ids = $first_degree_connections_ids ? $first_degree_connections_ids : [0];
5966 anderson 1224
 
1 www 1225
            $second_degree_connections_ids = $connectionMapper->fetchAllSecondDegreeConnectionsForUserIdReturnIds($currentUser->id);
1226
            $second_degree_connections_ids = $second_degree_connections_ids ? $second_degree_connections_ids : [0];
5966 anderson 1227
 
1 www 1228
            /*Usuarios de la empresas donde trabajo o soy dueño */
1229
            $company_user_ids = [];
1230
            $companyUserMapper = CompanyUserMapper::getInstance($this->adapter);
5966 anderson 1231
 
1 www 1232
            $records = $companyUserMapper->fetchAllByUserId($currentUser->id);
5966 anderson 1233
            foreach ($records as $record) {
1234
 
1235
                if ($record->status != CompanyUser::STATUS_ACCEPTED) {
1 www 1236
                    continue;
1237
                }
5966 anderson 1238
 
1 www 1239
                $otherUsers = $companyUserMapper->fetchAllByCompanyId($record->company_id);
5966 anderson 1240
                foreach ($otherUsers as $otherUser) {
1241
                    if ($currentUser->id != $otherUser->user_id && $otherUser->creator == CompanyUser::CREATOR_NO && $otherUser->status == CompanyUser::STATUS_ACCEPTED) {
1242
 
1243
                        if (!in_array($otherUser->user_id, $company_user_ids)) {
1 www 1244
                            array_push($company_user_ids, $otherUser->user_id);
1245
                        }
1246
                    }
1247
                }
1248
            }
1249
            $company_user_ids =  $company_user_ids ? $company_user_ids : [0];
5966 anderson 1250
 
1 www 1251
            /* Usuario de los grupos donde soy dueño o participo */
5966 anderson 1252
 
1 www 1253
            $groupMemberMapper = GroupMemberMapper::getInstance($this->adapter);
5966 anderson 1254
 
1 www 1255
            $group_member_ids = [];
5966 anderson 1256
 
1 www 1257
            $records = $groupMemberMapper->fetchAllByUserId($currentUser->id);
5966 anderson 1258
            foreach ($records as $record) {
1259
                if ($record->status != GroupMember::STATUS_ACCEPTED) {
1 www 1260
                    continue;
1261
                }
5966 anderson 1262
 
1 www 1263
                $otherUsers = $groupMemberMapper->fetchAllByGroupId($record->group_id);
5966 anderson 1264
                foreach ($otherUsers as $otherUser) {
1265
                    if ($currentUser->id != $otherUser->user_id && $otherUser->status == GroupMember::STATUS_ACCEPTED) {
1266
 
1267
                        if (!in_array($otherUser->user_id, $group_member_ids)) {
1 www 1268
                            array_push($group_member_ids, $otherUser->user_id);
1269
                        }
1270
                    }
1271
                }
1272
            }
5966 anderson 1273
 
1 www 1274
            $group_member_ids = $group_member_ids ? $group_member_ids : [0];
5966 anderson 1275
 
1 www 1276
            /* Usuarios con que comparto capsulas */
1277
            $capsule_user_ids = [];
1278
            $capsuleUserMapper = CompanyMicrolearningCapsuleUserMapper::getInstance($this->adapter);
5966 anderson 1279
 
1 www 1280
            $company_ids = [];
1281
            $records = $capsuleUserMapper->fetchAllActiveByUserId($currentUser->id);
5966 anderson 1282
            foreach ($records as $record) {
1283
                if (!in_array($record->company_id, $company_ids)) {
1 www 1284
                    array_push($company_ids, $record->company_id);
1285
                }
1286
            }
5966 anderson 1287
 
1288
            foreach ($company_ids as $company_id) {
1 www 1289
                $otherUsers = $capsuleUserMapper->fetchAllUserIdsForCapsulesActiveByCompanyId($company_id);
5966 anderson 1290
                foreach ($otherUsers as $user_id) {
1291
                    if ($currentUser->id != $user_id) {
1292
 
1293
                        if (!in_array($user_id, $capsule_user_ids)) {
1 www 1294
                            array_push($capsule_user_ids, $user_id);
1295
                        }
1296
                    }
1297
                }
1298
            }
5966 anderson 1299
 
1 www 1300
            $capsule_user_ids = $capsule_user_ids ? $capsule_user_ids : [0];
5966 anderson 1301
 
1302
 
1 www 1303
            $other_users = array_unique(array_merge(
5966 anderson 1304
 
1 www 1305
                $second_degree_connections_ids,
1306
                $company_user_ids,
1307
                $group_member_ids,
1308
                $capsule_user_ids
1309
            ));
5966 anderson 1310
 
3285 efrain 1311
            $queryMapper = QueryMapper::getInstance($this->adapter);
5966 anderson 1312
 
1313
 
1 www 1314
            $groupMemberMapper = GroupMemberMapper::getInstance($this->adapter);
5966 anderson 1315
            $group_ids = $groupMemberMapper->fetchAllGroupIdsByUserIds($other_users);
1 www 1316
            $group_ids = $group_ids ? $group_ids : [0];
3285 efrain 1317
 
5966 anderson 1318
 
1319
 
1320
 
1 www 1321
            $select = $queryMapper->getSql()->select();
5966 anderson 1322
            $select->columns(['id', 'uuid', 'name', 'image', 'status', 'privacy', 'priority' => new Expression('0')]);
1323
            $select->from(['g' => GroupMapper::_TABLE]);
3639 efrain 1324
            $select->where->equalTo('network_id', $currentUser->network_id);
1 www 1325
            $select->where->equalTo('privacy', Group::PRIVACY_IS_PUBLIC);
1326
            $select->where->equalTo('status', Group::STATUS_ACTIVE);
3285 efrain 1327
            $select->where->in('g.id', $group_ids);
1 www 1328
            $select->where->notEqualTo('g.user_id', $currentUser->id);
3285 efrain 1329
            $select->order('name ASC');
5966 anderson 1330
 
1331
 
1332
 
1 www 1333
            //echo $select->getSqlString($this->adapter->platform); exit;
5966 anderson 1334
 
3285 efrain 1335
            $records = $queryMapper->fetchAll($select);
1336
            usort($records, function ($a, $b) {
5966 anderson 1337
                if ($a['priority'] == $b['priority']) {
1338
                    return 0;
3285 efrain 1339
                } else {
1340
                    return $a['priority'] < $b['priority'] ? 1 : -1;
1341
                }
1342
            });
1343
 
1344
 
1 www 1345
            $items = [];
5966 anderson 1346
 
1347
            foreach ($records as $record) {
1348
 
1 www 1349
                array_push($items, [
1350
                    'id'        => $record['uuid'],
1351
                    'name'      => trim($record['name']),
1352
                    'image'     => $this->url()->fromRoute('storage', ['code' => $record['uuid'], 'type' => 'group', 'filename' => $record['image']]),
5966 anderson 1353
                    'profile'   => $this->url()->fromRoute('group/view', ['id' => $record['uuid']]),
3285 efrain 1354
                    'priority'  => $record['priority'],
5966 anderson 1355
 
1 www 1356
                ]);
5966 anderson 1357
            }
1 www 1358
 
1359
            return new JsonModel([
1360
                'success' => true,
1361
                'data' => $items
1362
            ]);
1363
        } else {
1364
            return new JsonModel([
1365
                'success' => false,
1366
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
1367
            ]);
1368
        }
1369
    }
5966 anderson 1370
 
1 www 1371
    public function postsAction()
1372
    {
3671 efrain 1373
        $request = $this->getRequest();
5966 anderson 1374
        if ($request->isGet()) {
3639 efrain 1375
            $currentUserPlugin = $this->plugin('currentUserPlugin');
1376
            $currentUser = $currentUserPlugin->getUser();
5966 anderson 1377
 
1 www 1378
            $items = [];
1379
            $postMapper = PostMapper::getInstance($this->adapter);
3639 efrain 1380
            $posts = $postMapper->fetchAllActiveByNetworkId($currentUser->network_id);
5966 anderson 1381
 
1 www 1382
            //print_r($posts);
5966 anderson 1383
 
1384
            foreach ($posts as $post) {
1 www 1385
                $dt = \DateTime::createFromFormat('Y-m-d', $post->date);
1386
                array_push($items, [
5966 anderson 1387
                    'image' => $this->url()->fromRoute('storage', ['code' => $post->uuid, 'type' => 'post', 'filename' => $post->image]),
2919 efrain 1388
                    'date' => $dt->format('d/m/Y'),
5966 anderson 1389
                    'title' => $post->title,
1390
                    'link' => $this->url()->fromRoute('post', ['id' => $post->uuid]),
1 www 1391
                ]);
1392
            }
5966 anderson 1393
 
1 www 1394
            return new JsonModel([
1395
                'success' => true,
1396
                'data' => $items
1397
            ]);
1398
        }
5966 anderson 1399
 
1 www 1400
        return new JsonModel([
1401
            'success' => false,
1402
            'data' => 'ERROR_METHOD_NOT_ALLOWED'
1403
        ]);
1404
    }
1405
 
5966 anderson 1406
 
1407
 
1 www 1408
    public function searchPeopleAction()
1409
    {
1410
        $request = $this->getRequest();
5967 anderson 1411
        if ($request->isGet()) {
3639 efrain 1412
 
5967 anderson 1413
            $currentUserPlugin = $this->plugin('currentUserPlugin');
1414
            $currentUser = $currentUserPlugin->getUser();
3639 efrain 1415
 
6749 efrain 1416
            $search = Functions::sanitizeFilterString($this->params()->fromQuery('search'));
5970 anderson 1417
            if (strlen($search) >= 3) {
5966 anderson 1418
 
1419
 
5967 anderson 1420
                $userMapper = UserMapper::getInstance($this->adapter);
1421
                $records  = $userMapper->fetchAllSuggestByNetworkIdAndSearch($currentUser->network_id, $search);
5966 anderson 1422
 
5967 anderson 1423
                $users = [];
1424
                foreach ($records as $record) {
1425
                    if ($currentUser->id == $record->id) {
1426
                        continue;
1427
                    }
5966 anderson 1428
 
1429
 
5967 anderson 1430
                    array_push($users, [
1431
                        'value' => $record->uuid,
5972 anderson 1432
                        'text' => trim($record->first_name . ' ' . $record->last_name) . ' (' . $record->email . ')'
5966 anderson 1433
 
5967 anderson 1434
                    ]);
1435
                }
1436
 
1437
                return new JsonModel([
1438
                    'success' => true,
1439
                    'data' => $users
1440
                ]);
1441
            } else {
1442
                return new JsonModel([
1443
                    'success' => true,
1444
                    'data' => []
1445
                ]);
1446
            }
1447
        } else {
1448
            return new JsonModel([
1449
                'success' => false,
1450
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
1 www 1451
            ]);
1452
        }
1453
    }
5966 anderson 1454
 
2444 efrain 1455
    public function footerAction()
1456
    {
1457
        $request = $this->getRequest();
5966 anderson 1458
        if ($request->isGet()) {
1459
 
1460
 
2444 efrain 1461
            $links = isset($this->navigation['footer']) ?  $this->navigation['footer'] : [];
5966 anderson 1462
 
1463
 
2444 efrain 1464
            $data = [];
5966 anderson 1465
            foreach ($links as $link) {
1466
                $data[$link['route']] = $link['label'];
2444 efrain 1467
            }
5966 anderson 1468
 
1469
 
2444 efrain 1470
            return new JsonModel([
5966 anderson 1471
                'success' => true,
1472
                'data' => $data,
2444 efrain 1473
            ]);
1474
        } else {
1475
            return new JsonModel([
1476
                'success' => false,
1477
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
1478
            ]);
1479
        }
1480
    }
5966 anderson 1481
 
1482
 
3298 efrain 1483
    /**
1484
     * Recuperamos los grupos sugeridos
1485
     * tiene que enviarse un petición GET a la siguiente url: /helpers/groups-suggestion/:group_id
1486
     * retorna un json en caso de ser  positivo
1487
     * [
1488
     *  'success' : true,
1489
     *  'data' : [
1490
     *      [
1491
     *        'id'      => 'id del grupo encriptado',
1492
     *        'name'    => 'nombre del grupo',
1493
     *        'image'   => 'imagen del grupo',
1494
     *        'profile' => 'url del profile',
1495
     *     ]
1496
     * ]
1497
     * En caso de ser negativo
1498
     * [
1499
     *  'success' : false,
1500
     *  'data' : mensaje de error
1501
     * ]
1502
     * @return \Laminas\View\Model\JsonModel
1503
     */
1504
    public function myGroupsAction()
1505
    {
5966 anderson 1506
 
3298 efrain 1507
        $request = $this->getRequest();
5966 anderson 1508
        if ($request->isGet()) {
1509
 
3298 efrain 1510
            $currentUserPlugin = $this->plugin('currentUserPlugin');
1511
            $currentUser = $currentUserPlugin->getUser();
5966 anderson 1512
 
1513
 
3298 efrain 1514
            $queryMapper = QueryMapper::getInstance($this->adapter);
1515
            $select = $queryMapper->getSql()->select();
5966 anderson 1516
            $select->columns(['id', 'uuid', 'name', 'image', 'status', 'privacy', 'priority' => new Expression('0')]);
3298 efrain 1517
            $select->from(['g' => GroupMapper::_TABLE]);
1518
            $select->where->equalTo('status', Group::STATUS_ACTIVE);
1519
            $select->where->equalTo('g.user_id', $currentUser->id);
1520
            $select->order('name ASC');
5966 anderson 1521
 
1522
 
3298 efrain 1523
            $items = [];
5966 anderson 1524
 
3298 efrain 1525
            $records = $queryMapper->fetchAll($select);
5966 anderson 1526
            foreach ($records as $record) {
1527
 
3298 efrain 1528
                array_push($items, [
1529
                    'id'        => $record['uuid'],
1530
                    'name'      => trim($record['name']),
1531
                    'image'     => $this->url()->fromRoute('storage', ['code' => $record['uuid'], 'type' => 'group', 'filename' => $record['image']]),
5966 anderson 1532
                    'profile'   => $this->url()->fromRoute('group/view', ['id' => $record['uuid']]),
3298 efrain 1533
                    'priority'  => $record['priority'],
5966 anderson 1534
 
3298 efrain 1535
                ]);
1536
            }
5966 anderson 1537
 
3298 efrain 1538
            return new JsonModel([
1539
                'success' => true,
1540
                'data' => $items
1541
            ]);
1542
        } else {
1543
            return new JsonModel([
1544
                'success' => false,
1545
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
1546
            ]);
1547
        }
1548
    }
5966 anderson 1549
 
4179 efrain 1550
    public function nextEventsAction()
1551
    {
1552
        $request = $this->getRequest();
5966 anderson 1553
        if ($request->isGet()) {
1554
 
4179 efrain 1555
            $currentUserPlugin = $this->plugin('currentUserPlugin');
1556
            $currentUser = $currentUserPlugin->getUser();
5966 anderson 1557
 
4179 efrain 1558
            $currentNetworkPlugin = $this->plugin('currentNetworkPlugin');
1559
            $currentNetwork = $currentNetworkPlugin->getNetwork();
1560
 
5966 anderson 1561
 
1562
 
4179 efrain 1563
            $dt = new \DateTime();
1564
            $dt->setTime(0, 0, 0);
1565
            $start = $dt->format('Y-m-d H:i:s');
5966 anderson 1566
 
4179 efrain 1567
            $dt->add(new \DateInterval('P30D'));
1568
            $dt->setTime(23, 59, 59);
1569
            $end = $dt->format('Y-m-d H:i:s');
5966 anderson 1570
 
1571
 
1572
 
1573
 
4179 efrain 1574
            $events = [];
5966 anderson 1575
 
1576
 
1577
 
4179 efrain 1578
            //3 días
1579
            $expirePeriod = 86400 * 3;
1580
            $t1 = time();
5966 anderson 1581
 
4751 efrain 1582
            $companies = [];
1583
            $companyMapper = CompanyMapper::getInstance($this->adapter);
5966 anderson 1584
 
4751 efrain 1585
            $companyUsers = [];
1586
            $companyUserMapper = CompanyUserMapper::getInstance($this->adapter);
1587
            $records = $companyUserMapper->fetchAllByUserId($currentUser->id);
5966 anderson 1588
 
1589
            foreach ($records as $record) {
4751 efrain 1590
                $companyUsers[$record->company_id] = $record->backend == CompanyUser::BACKEND_YES;
1591
            }
5966 anderson 1592
 
1593
 
1594
 
4179 efrain 1595
            $zoomMeetingMapper = ZoomMeetingMapper::getInstance($this->adapter);
5051 efrain 1596
            $recruitmentSelectionCandidateMapper = RecruitmentSelectionCandidateMapper::getInstance($this->adapter);
1597
            $recruitmentSelectionVacancyMapper = RecruitmentSelectionVacancyMapper::getInstance($this->adapter);
1598
            $recruitmentSelectionInterviewMapper = RecruitmentSelectionInterviewMapper::getInstance($this->adapter);
4751 efrain 1599
            $performanceEvaluationTestMapper = PerformanceEvaluationTestMapper::getInstance($this->adapter);
1600
            $performanceEvaluationFormMapper = PerformanceEvaluationFormMapper::getInstance($this->adapter);
1601
            $jobDescriptionMapper = JobDescriptionMapper::getInstance($this->adapter);
1602
            $userMapper = UserMapper::getInstance($this->adapter);
5966 anderson 1603
 
4179 efrain 1604
            $calendarEventMapper = CalendarEventMapper::getInstance($this->adapter);
1605
            $records = $calendarEventMapper->fetchAllByUserIdAndStartTimeAndEndTime($currentUser->id, $start, $end);
5966 anderson 1606
            foreach ($records as $record) {
1607
                switch ($record->type) {
7337 efrain 1608
 
1609
 
5966 anderson 1610
                    case CalendarEvent::TYPE_RECRUITMENT_SELECTION_INTERVIEW:
1611
                        $backgroundColor = $currentNetwork->css_calendar_recruitment_and_selection_bg_color;
5051 efrain 1612
                        $textColor = $currentNetwork->css_calendar_recruitment_and_selection_text_color;
7337 efrain 1613
 
1614
 
1615
                    case CalendarEvent::TYPE_RECRUITMENT_SELECTION_INTERVIEW:
1616
                        $backgroundColor = $currentNetwork->css_calendar_recruitment_and_selection_bg_color;
1617
                        $textColor = $currentNetwork->css_calendar_recruitment_and_selection_text_color;
5966 anderson 1618
 
1619
 
5051 efrain 1620
                        $recruitmentSelectionInterview = $recruitmentSelectionInterviewMapper->fetchOne($record->relational_id);
5966 anderson 1621
                        if ($recruitmentSelectionInterview) {
5051 efrain 1622
                            $recruitmentSelectionVacancy = $recruitmentSelectionVacancyMapper->fetchOne($recruitmentSelectionInterview->vacancy_id);
5966 anderson 1623
 
5051 efrain 1624
                            $recruitmentSelectionCandidate = $recruitmentSelectionCandidateMapper->fetchOne($recruitmentSelectionInterview->candidate_id);
5966 anderson 1625
                            if ($recruitmentSelectionVacancy && $recruitmentSelectionCandidate) {
5051 efrain 1626
                                $jobDescription = $jobDescriptionMapper->fetchOne($recruitmentSelectionVacancy->job_description_id);
5966 anderson 1627
                                if ($jobDescription) {
7197 efrain 1628
                                    $url = '';
7174 efrain 1629
                                    $hasLink = !empty($companyUsers[$recruitmentSelectionInterview->company_id]);
5966 anderson 1630
 
1631
                                    if ($hasLink) {
1632
 
1633
                                        if (!isset($companies[$recruitmentSelectionInterview->company_id])) {
5051 efrain 1634
                                            $company  = $companyMapper->fetchOne($recruitmentSelectionInterview->company_id);
5966 anderson 1635
 
1636
                                            $companies[$company->id]  = $company;
5051 efrain 1637
                                        } else {
5966 anderson 1638
                                            $company = $companies[$recruitmentSelectionInterview->company_id];
5051 efrain 1639
                                        }
5966 anderson 1640
 
1641
 
7300 efrain 1642
                                        $url = $this->url()->fromRoute('backend/signin-company', [
5051 efrain 1643
                                            'id' => $company->uuid,
1644
                                            'relational' => $recruitmentSelectionInterview->uuid,
1645
                                            'type' => CalendarEvent::TYPE_RECRUITMENT_SELECTION_INTERVIEW
1646
                                        ]);
1647
                                    }
7197 efrain 1648
 
5051 efrain 1649
                                    $dtStart = \DateTime::createFromFormat('Y-m-d', $recruitmentSelectionInterview->last_date);
5966 anderson 1650
 
1651
 
1652
 
1653
 
5051 efrain 1654
                                    array_push($events, [
1655
                                        'id'                => $recruitmentSelectionInterview->uuid,
1656
                                        'title'             => $recruitmentSelectionVacancy->name,
7197 efrain 1657
                                        'start'             => $dtStart->format('d/m/Y'),
1658
                                        'url'               => $url,
5051 efrain 1659
                                        'backgroundColor'   => $backgroundColor,
1660
                                        'textColor'         => $textColor,
1661
                                        'allDay'            => true,
1662
                                        'type'              => 'task',
1663
                                    ]);
1664
                                }
1665
                            }
1666
                        }
5966 anderson 1667
 
1668
 
5051 efrain 1669
                        break;
5966 anderson 1670
 
1671
                    case CalendarEvent::TYPE_PERFORMANCE_EVALUATION:
1672
 
1673
 
1674
                        $backgroundColor = $currentNetwork->css_calendar_performance_evaluation_bg_color;
4751 efrain 1675
                        $textColor = $currentNetwork->css_calendar_performance_evaluation_text_color;
5966 anderson 1676
 
1677
 
4751 efrain 1678
                        $performanceEvaluationTest = $performanceEvaluationTestMapper->fetchOne($record->relational_id);
5966 anderson 1679
                        if ($performanceEvaluationTest) {
1680
 
4751 efrain 1681
                            $performanceEvaluationForm = $performanceEvaluationFormMapper->fetchOne($performanceEvaluationTest->form_id);
5966 anderson 1682
                            if ($performanceEvaluationForm) {
4751 efrain 1683
                                $jobDescription = $jobDescriptionMapper->fetchOne($performanceEvaluationForm->job_description_id);
5966 anderson 1684
                                if ($jobDescription) {
7197 efrain 1685
                                    $url = '';
1686
                                    $hasLink = !empty($companyUsers[$performanceEvaluationTest->company_id]);
5966 anderson 1687
 
1688
                                    if ($performanceEvaluationTest->supervisor_id) {
4751 efrain 1689
                                        $supervisor = $userMapper->fetchOne($performanceEvaluationTest->supervisor_id);
1690
                                    } else {
1691
                                        $supervisor = '';
1692
                                    }
5966 anderson 1693
 
1694
                                    if ($performanceEvaluationTest->employee_id) {
4751 efrain 1695
                                        $employee = $userMapper->fetchOne($performanceEvaluationTest->employee_id);
1696
                                    } else {
1697
                                        $employee = '';
1698
                                    }
5966 anderson 1699
 
7197 efrain 1700
 
5966 anderson 1701
 
1702
                                    if ($hasLink) {
1703
 
1704
                                        if (!isset($companies[$performanceEvaluationTest->company_id])) {
4751 efrain 1705
                                            $company  = $companyMapper->fetchOne($performanceEvaluationTest->company_id);
5966 anderson 1706
 
1707
                                            $companies[$company->id]  = $company;
4751 efrain 1708
                                        } else {
5966 anderson 1709
                                            $company = $companies[$performanceEvaluationTest->company_id];
4751 efrain 1710
                                        }
5966 anderson 1711
 
1712
 
7300 efrain 1713
                                        $url = $this->url()->fromRoute('backend/signin-company', [
4751 efrain 1714
                                            'id' => $company->uuid,
1715
                                            'relational' => $performanceEvaluationTest->uuid,
1716
                                            'type' => CalendarEvent::TYPE_PERFORMANCE_EVALUATION
1717
                                        ]);
1718
                                    }
5966 anderson 1719
 
4751 efrain 1720
                                    $dtStart = \DateTime::createFromFormat('Y-m-d', $performanceEvaluationTest->last_date);
5966 anderson 1721
 
4751 efrain 1722
                                    array_push($events, [
1723
                                        'id'                => $performanceEvaluationTest->uuid,
1724
                                        'title'             =>  $performanceEvaluationForm->name,
7197 efrain 1725
                                        'start'             => $dtStart->format('d/m/Y'),
7200 efrain 1726
                                        'url'               => $url,
4751 efrain 1727
                                        'backgroundColor'   => $backgroundColor,
1728
                                        'textColor'         => $textColor,
1729
                                        'allDay'            => true,
1730
                                        'type'              => 'task',
1731
                                    ]);
1732
                                }
1733
                            }
1734
                        }
5966 anderson 1735
 
1736
 
1737
 
1738
 
1739
 
4751 efrain 1740
                        break;
5966 anderson 1741
 
1742
 
1743
                    case CalendarEvent::TYPE_ZOOM:
4179 efrain 1744
                        $zoomMeeting = $zoomMeetingMapper->fetchOne($record->relational_id);
5966 anderson 1745
                        if ($zoomMeeting) {
1746
 
1747
                            $backgroundColor = $currentNetwork->css_calendar_zoom_bg_color;
4179 efrain 1748
                            $textColor = $currentNetwork->css_calendar_zoom_text_color;
5966 anderson 1749
 
4179 efrain 1750
                            $dtStart = \DateTime::createFromFormat('Y-m-d H:i:s', $zoomMeeting->start_time);
1751
                            $t2 = $dtStart->getTimestamp();
5966 anderson 1752
 
1753
                            if ($t2 > $t1) {
1754
 
4179 efrain 1755
                                $t3 = $t1 + $expirePeriod;
5966 anderson 1756
                                if ($t3 > $t2) {
4179 efrain 1757
                                    $backgroundColor = $currentNetwork->css_calendar_expire_bg_color;
1758
                                    $textColor = $currentNetwork->css_calendar_expire_text_color;
1759
                                }
1760
                            }
5966 anderson 1761
 
1762
 
1763
 
1764
                            if ($currentUser->timezone && $currentUser->timezone != $zoomMeeting->timezone) {
1765
 
4179 efrain 1766
                                $start =  str_replace(' ', 'T', Functions::convertDateTimeBetweenTimeZones($zoomMeeting->start_time, $zoomMeeting->timezone, $currentUser->timezone));
1767
                                $end =  str_replace(' ', 'T', Functions::convertDateTimeBetweenTimeZones($zoomMeeting->end_time, $zoomMeeting->timezone, $currentUser->timezone));
1768
                            } else {
1769
                                $start = str_replace(' ', 'T', $zoomMeeting->start_time);
1770
                                $end = str_replace(' ', 'T', $zoomMeeting->end_time);
1771
                            }
5966 anderson 1772
 
1773
 
7300 efrain 1774
 
1775
                            $url = $zoomMeeting->join_url;
5966 anderson 1776
 
1777
 
1778
 
1779
 
7300 efrain 1780
                            $agenda = $zoomMeeting->agenda . "<br>" .
4179 efrain 1781
                                " LABEL_ZOOM_MEETING_START_DATE : " . $dtStart->format('Y-m-d') . "<br>" .
1782
                                " LABEL_ZOOM_MEETING_START_TIME : " . $dtStart->format('H:i a') . "<br>" .
1783
                                " LABEL_ZOOM_MEETING_TIMEZONE : " . $zoomMeeting->timezone . "<br>" .
1784
                                " LABEL_ZOOM_MEETING_TITLE :  " . $zoomMeeting->topic  . "<br>" .
1785
                                " LABEL_ZOOM_MEETING_URL : " . $zoomMeeting->join_url . "<br>" .
7300 efrain 1786
                                " LABEL_ZOOM_MEETING_PASSWORD : " . $zoomMeeting->password . "<br>";
5966 anderson 1787
 
4179 efrain 1788
                            array_push($events, [
1789
                                'id'                => $zoomMeeting->id,
1790
                                'title'             => $zoomMeeting->topic,
1791
                                'agenda'            => $agenda,
1792
                                'start'             => $start,
1793
                                'end'               => $end,
1794
                                'url'               => $zoomMeeting->join_url,
1795
                                'backgroundColor'   => $backgroundColor,
1796
                                'textColor'         => $textColor,
4700 efrain 1797
                                'type'              => 'event'
4179 efrain 1798
                            ]);
1799
                        }
1800
                        break;
1801
                }
1802
            }
5966 anderson 1803
 
1804
 
1805
 
4179 efrain 1806
            return new JsonModel([
1807
                'success' => true,
1808
                'data' => $events
1809
            ]);
1810
        } else {
1811
            return new JsonModel([
1812
                'success' => false,
1813
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
1814
            ]);
1815
        }
1816
    }
6605 efrain 1817
 
1818
    public function menuAction()
1819
    {
1820
 
1821
 
1822
        $request = $this->getRequest();
1823
 
1824
 
1825
 
1826
        if ($request->isGet()) {
1827
            $currentNetworkPlugin = $this->plugin('currentNetworkPlugin');
1828
            $network =  $currentNetworkPlugin->getNetwork();
1829
 
1830
 
1831
            $currentUserPlugin = $this->plugin('currentUserPlugin');
1832
            if($currentUserPlugin->hasIdentity()) {
1833
                $currentUser = $currentUserPlugin->getUser();
1834
 
1835
 
1836
 
1837
 
1838
 
1839
 
1840
 
1841
 
1842
 
1843
                $acl = $this->getEvent()->getViewModel()->getVariable('acl');
1844
 
1845
                $link_admin         = $currentUser->usertype_id == UserType::ADMIN ? 1 : 0;
1846
                $link_impersonate   = $currentUser->is_super_user == User::IS_SUPER_USER_YES ? 1 : 0;
7329 efrain 1847
                if($link_impersonate) {
1848
                    $url_impersonate = $this->url()->fromRoute('signin/impersonate');
1849
                } else {
1850
                    $url_impersonate = '';
1851
                }
6605 efrain 1852
 
1853
                $fullname = trim($currentUser->first_name . ' ' . $currentUser->last_name);
1854
 
1855
                $profileVisitMapper = ProfileVisitMapper::getInstance($this->adapter);
1856
                $visits = $profileVisitMapper->getTotalByVisitedId($currentUser->id);
1857
 
1858
                $connectionMapper = ConnectionMapper::getInstance($this->adapter);
1859
                $connections = $connectionMapper->fetchTotalConnectionByUser($currentUser->id);
1860
 
1861
 
1862
                if($currentUser->location_id) {
1863
                    $locationMapper = LocationMapper::getInstance($this->adapter);
1864
                    $location = $locationMapper->fetchOne($currentUser->location_id);
1865
 
1866
                    $country = $location->country;
1867
                } else {
1868
                    $country = '';
1869
                }
1870
 
7329 efrain 1871
 
6605 efrain 1872
 
1873
 
1874
                if($currentUser->usertype_id == UserType::ADMIN) {
7329 efrain 1875
                    $url_admin = $this->url()->fromRoute( 'backend/signin-admin');
6605 efrain 1876
                } else {
7329 efrain 1877
                    $url_admin = '';
6605 efrain 1878
                }
1879
 
7329 efrain 1880
 
1881
 
6605 efrain 1882
                $link_company = '';
1883
                if($network->default != Network::DEFAULT_YES) {
1884
                    $companyMapper = CompanyMapper::getInstance($this->adapter);
1885
                    $company = $companyMapper->fetchDefaultForNetworkByNetworkId($network->id);
1886
                    if($company) {
1887
                        $companyUserMapper = CompanyUserMapper::getInstance($this->adapter);
1888
                        $companyUser = $companyUserMapper->fetchOneByCompanyIdAndUserId($company->id, $currentUser->id);
1889
                        if($companyUser) {
1890
                            if($companyUser && $companyUser->status == CompanyUser::STATUS_ACCEPTED && $companyUser->backend == CompanyUser::BACKEND_YES ) {
1891
                                $link_company = ['route' => 'backend/signin-company', 'id' => $company->uuid ];
1892
                            }
1893
                        }
1894
                    }
1895
                }
1896
 
1897
                if ($acl->isAllowed($currentUser->usertype_id,  'knowledge-area')) {
1898
                    $route_knowledge_area = $this->url()->fromRoute('knowledge-area');
1899
                    $link_knowledge_area = 1;
1900
                } else {
1901
 
1902
                    $route_knowledge_area = '';
1903
                    $link_knowledge_area = 0;
1904
                }
1905
 
1906
                if ($acl->isAllowed($currentUser->usertype_id,  'my-coach')) {
1907
                    $route_my_coach = $this->url()->fromRoute('my-coach');
1908
                    $link_my_coach = 1;
1909
                } else {
1910
 
1911
                    $route_my_coach = '';
1912
                    $link_my_coach = 0;
1913
                }
1914
 
1915
                if($network->default == Network::DEFAULT_YES) {
1916
                    if($network->relationship_user_mode == Network::RELATIONSHIP_USER_MODE_USER_2_USER)  {
1917
                        $pages = getAclMenuDefaultNetworkConnectionUser2User();
1918
                    } else {
1919
                        $pages = getAclMenuDefaultNetworkConnectionAll2All();
1920
                    }
1921
                } else {
1922
                    if($network->relationship_user_mode == Network::RELATIONSHIP_USER_MODE_USER_2_USER)  {
1923
 
1924
                        $pages = getAclMenuNonDefaulNetworkConnectionUser2User();
1925
 
1926
                    } else {
1927
                        $pages = getAclMenuNonDefaultNetworkConnectionAll2All();
1928
                    }
1929
                }
1930
 
1931
 
1932
                $menu = [];
1933
                foreach ($pages as $page) {
1934
 
1935
                    if (!$page || empty($page['route']) || !$acl->isAllowed($currentUser->usertype_id, $page['route'])) {
1936
                        continue;
1937
                    }
1938
 
1939
                    $ajax = false;
1940
                    if ($page['route'] == 'company' && $network->default == Network::DEFAULT_NO) {
1941
 
1942
                        if ($link_company) {
1943
                            $page['route'] = $this->url($link_company['route'], ['id' => $link_company['id']]);
1944
                            $ajax = true;
1945
                        } else {
1946
                            continue;
1947
                        }
1948
                    }
1949
 
1950
                    $option = [
1951
                        'label' => $page['label'],
1952
                        'href' => $page['route'],
1953
                        'img' => empty($page['class']) ? '' : $page['class'],
1954
                        'ajax' => $ajax ? 1 : 0,
1955
                        'childs' => [],
1956
                    ];
1957
 
1958
                    $childs = empty($page['pages']) ? [] : $page['pages'];
1959
                    if ($childs) {
1960
                        foreach ($childs as $child) {
1961
                            if (!$acl->isAllowed($currentUser->usertype_id,  $child['route'])) {
1962
                                continue;
1963
                            }
1964
 
1965
                            $childs_level2 = [];
1966
 
1967
                            $childsLevel2 = empty($child['pages']) ? [] : $child['pages'];
1968
 
1969
                            if ($childsLevel2) {
1970
                                foreach ($childsLevel2 as $childLevel2) {
1971
                                    if (!$acl->isAllowed($currentUser->usertype_id,  $childLevel2['route'])) {
1972
                                        continue;
1973
                                    }
1974
 
1975
                                    array_push($childs_level2, [
1976
                                        'label' => $childLevel2['label'],
1977
                                        'href' => $childLevel2['route'],
1978
 
1979
                                    ]);
1980
                                }
1981
                            }
1982
 
1983
                            array_push($option['childs'], [
1984
                                'label' => $child['label'],
1985
                                'href' => $child['route'],
1986
                                'childs' => $childs_level2,
1987
                            ]);
1988
                        }
1989
                    }
1990
 
1991
                    array_push($menu, $option);
1992
                }
1993
 
1994
 
1995
                $image = $this->url()->fromRoute('storage', ['type' => 'user', 'code' => $currentUser->uuid, 'filename' => $currentUser->image]);
1996
                $isChatPage = $this->getEvent()->getViewModel()->getVariable('is_chat');
1997
                $routeCheckSession = $this->url()->fromRoute('check-session');
1998
 
1999
 
2000
 
2001
                return new JsonModel([
2002
                    'menu'                  => $menu,
2003
                    'isChatPage'            => $isChatPage == 1,
2004
                    'routeCheckSession'     => $routeCheckSession,
2005
                    'linkAdmin'             => $link_admin == 1,
7329 efrain 2006
                    'urlAdmin'              => $url_admin,
2007
                    'linkImpersonate'       => $link_impersonate ==1 ,
2008
                    'urlImpersonate'        => $url_impersonate,
6605 efrain 2009
                    'image'                 => $image,
2010
                    'fullName'              => $fullname,
2011
                    'country'               => $country,
2012
                    'visits'                => $visits,
2013
                    'connections'           => $connections,
2014
                    'logoForNavbar'         => 'https://' . $network->main_hostname . '/storage-network/type/navbar',
2015
                    'defaultNetwork'        => $network->default,
2016
                    'linkKnowledgeArea'     => $link_knowledge_area == 1,
2017
                    'routeKnowledgeArea'    => $route_knowledge_area,
2018
                    'linkMyCoach'           => $link_my_coach == 1,
2019
                    'routeMyCoach'          => $route_my_coach,
2020
               ]);
2021
 
2022
 
2023
 
2024
            }
2025
 
2026
 
2027
            return new JsonModel([
2028
                'menu'                  => [],
2029
                'isChatPage'            => false,
2030
                'routeCheckSession'     => '',
2031
                'linkAdmin'             => false,
7329 efrain 2032
                'urlAdmin'              => '',
6605 efrain 2033
                'linkImpersonate'       => false,
7329 efrain 2034
                'urlImpersonate'        => '',
6605 efrain 2035
                'image'                 => '',
2036
                'fullName'              => '',
2037
                'country'               => 0,
2038
                'visits'                => 0,
2039
                'connections'           => 0,
2040
                'logoForNavbar'         => 'https://' . $network->main_hostname . '/storage-network/type/navbar',
2041
                'defaultNetwork'        => $network->default,
2042
                'linkKnowledgeArea'     => false,
2043
                'routeKnowledgeArea'    => '',
2044
                'linkMyCoach'           => false,
2045
                'routeMyCoach'          => '',
2046
            ]);
2047
 
2048
        } else {
2049
 
2050
            return new JsonModel([
2051
                'success' => false,
2052
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
2053
            ]);
2054
        }
2055
 
2056
 
2057
        return new JsonModel([
2058
            'success' => false,
2059
            'data' => 'ERROR_METHOD_NOT_ALLOWED'
2060
        ]);
2061
    }
6749 efrain 2062
 
2063
    public function companySizesAction()
2064
    {
2065
        $request = $this->getRequest();
2066
 
2067
 
2068
 
2069
        if ($request->isGet()) {
2070
            $items = [];
2071
 
2072
            $mapper = CompanySizeMapper::getInstance($this->adapter);
2073
            $records = $mapper->fetchAllActive();
2074
            foreach($records as $record)
2075
            {
2076
                 $items[ $record->uuid ] = $record->name;
2077
            }
2078
 
2079
            return new JsonModel([
2080
                'success' => true,
2081
                'data' => $items
2082
            ]);
2083
 
2084
 
2085
        }
2086
        return new JsonModel([
2087
            'success' => false,
2088
            'data' => 'ERROR_METHOD_NOT_ALLOWED'
2089
        ]);
2090
    }
2091
 
2092
    public function degreesAction()
2093
    {
2094
        $request = $this->getRequest();
2095
 
2096
 
2097
 
2098
        if ($request->isGet()) {
2099
            $items = [];
2100
 
2101
            $mapper = DegreeMapper::getInstance($this->adapter);
2102
            $records = $mapper->fetchAllActive();
2103
            foreach($records as $record)
2104
            {
2105
                $items[ $record->uuid ] = $record->name;
2106
            }
2107
 
2108
            return new JsonModel([
2109
                'success' => true,
2110
                'data' => $items
2111
            ]);
2112
 
2113
 
2114
        }
2115
        return new JsonModel([
2116
            'success' => false,
2117
            'data' => 'ERROR_METHOD_NOT_ALLOWED'
2118
        ]);
2119
    }
2120
 
2121
    public function languagesAction()
2122
    {
2123
        $request = $this->getRequest();
2124
 
2125
 
2126
 
2127
        if ($request->isGet()) {
2128
            $items = [];
2129
 
2130
            $mapper = LanguageMapper::getInstance($this->adapter);
2131
            $records = $mapper->fetchAllActive();
2132
            foreach($records as $record)
2133
            {
2134
                $items[ $record->id ] = $record->name;
2135
            }
2136
 
2137
            return new JsonModel([
2138
                'success' => true,
2139
                'data' => $items
2140
            ]);
2141
 
2142
 
2143
        }
2144
        return new JsonModel([
2145
            'success' => false,
2146
            'data' => 'ERROR_METHOD_NOT_ALLOWED'
2147
        ]);
2148
    }
2149
 
2150
    public function skillsAction()
2151
    {
2152
        $request = $this->getRequest();
2153
 
2154
 
2155
 
2156
        if ($request->isGet()) {
2157
            $items = [];
2158
 
2159
            $mapper = SkillMapper::getInstance($this->adapter);
2160
            $records = $mapper->fetchAllActive();
2161
            foreach($records as $record)
2162
            {
2163
                $items[ $record->uuid ] = $record->name;
2164
            }
2165
 
2166
            return new JsonModel([
2167
                'success' => true,
2168
                'data' => $items
2169
            ]);
2170
 
2171
 
2172
        }
2173
        return new JsonModel([
2174
            'success' => false,
2175
            'data' => 'ERROR_METHOD_NOT_ALLOWED'
2176
        ]);
2177
    }
2178
 
2179
 
2180
    public function aptitudesAction()
2181
    {
2182
        $request = $this->getRequest();
2183
 
2184
 
2185
 
2186
        if ($request->isGet()) {
2187
            $items = [];
2188
 
2189
            $mapper = AptitudeMapper::getInstance($this->adapter);
2190
            $records = $mapper->fetchAllActive();
2191
            foreach($records as $record)
2192
            {
2193
                $items[ $record->uuid ] = $record->name;
2194
            }
2195
 
2196
            return new JsonModel([
2197
                'success' => true,
2198
                'data' => $items
2199
            ]);
2200
 
2201
 
2202
        }
2203
        return new JsonModel([
2204
            'success' => false,
2205
            'data' => 'ERROR_METHOD_NOT_ALLOWED'
2206
        ]);
2207
    }
2208
 
2209
    public function hobbiesAction()
2210
    {
2211
        $request = $this->getRequest();
2212
 
2213
 
2214
 
2215
        if ($request->isGet()) {
2216
            $items = [];
2217
 
2218
            $mapper = HobbyAndInterestMapper::getInstance($this->adapter);
2219
            $records = $mapper->fetchAllActive();
2220
            foreach($records as $record)
2221
            {
2222
                $items[ $record->uuid ] = $record->name;
2223
            }
2224
 
2225
            return new JsonModel([
2226
                'success' => true,
2227
                'data' => $items
2228
            ]);
2229
 
2230
 
2231
        }
2232
        return new JsonModel([
2233
            'success' => false,
2234
            'data' => 'ERROR_METHOD_NOT_ALLOWED'
2235
        ]);
2236
    }
2237
 
6878 efrain 2238
    public function industriesAction()
2239
    {
2240
        $request = $this->getRequest();
2241
 
2242
 
2243
 
2244
        if ($request->isGet()) {
2245
            $items = [];
2246
 
2247
            $mapper = IndustryMapper::getInstance($this->adapter);
2248
            $records = $mapper->fetchAllActive();
2249
            foreach($records as $record)
2250
            {
2251
                $items[ $record->uuid ] = $record->name;
2252
            }
2253
 
2254
            return new JsonModel([
2255
                'success' => true,
2256
                'data' => $items
2257
            ]);
2258
 
2259
 
2260
        }
2261
        return new JsonModel([
2262
            'success' => false,
2263
            'data' => 'ERROR_METHOD_NOT_ALLOWED'
2264
        ]);
2265
    }
2266
 
6945 efrain 2267
    public function timeZonesAction() {
2268
 
2269
        $request = $this->getRequest();
2270
 
2271
 
2272
 
2273
        if ($request->isGet()) {
2274
            $items = [];
2275
 
2276
 
2277
            $records = Functions::getAllTimeZones();
2278
            foreach($records as $record)
2279
            {
2280
                $items[ $record ] = $record;
2281
            }
2282
 
2283
            return new JsonModel([
2284
                'success' => true,
2285
                'data' => $items
2286
            ]);
2287
 
2288
 
2289
        }
2290
        return new JsonModel([
2291
            'success' => false,
2292
            'data' => 'ERROR_METHOD_NOT_ALLOWED'
2293
        ]);
2294
 
2295
 
6749 efrain 2296
 
6945 efrain 2297
 
2298
 
2299
 
2300
    }
2301
 
2302
 
1 www 2303
}