Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

Rev Autor Línea Nro. Línea
1 www 1
<?php
2
/**
3
 *
4
 * Controlador: Mis Perfiles
5
 *
6
 */
7
declare(strict_types=1);
8
 
9
namespace LeadersLinked\Controller;
10
 
11
use Laminas\Db\Adapter\AdapterInterface;
12
use Laminas\Cache\Storage\Adapter\AbstractAdapter;
13
use Laminas\Mvc\Controller\AbstractActionController;
14
use Laminas\Log\LoggerInterface;
15
use Laminas\View\Model\ViewModel;
16
use Laminas\View\Model\JsonModel;
17
use Laminas\Db\Sql\Expression;
18
use LeadersLinked\Model\User;
19
use LeadersLinked\Mapper\ConnectionMapper;
20
use LeadersLinked\Mapper\UserMapper;
21
use LeadersLinked\Model\Connection;
22
use Laminas\Paginator\Adapter\DbSelect;
23
use Laminas\Paginator\Paginator;
24
use LeadersLinked\Mapper\UserBlockedMapper;
25
use LeadersLinked\Model\UserBlocked;
26
use LeadersLinked\Mapper\QueryMapper;
27
use LeadersLinked\Model\UserType;
28
use LeadersLinked\Model\CompanyUser;
29
use LeadersLinked\Mapper\GroupMemberMapper;
30
use LeadersLinked\Model\GroupMember;
31
use LeadersLinked\Mapper\CompanyUserMapper;
32
use LeadersLinked\Mapper\CompanyMicrolearningCapsuleUserMapper;
33
use LeadersLinked\Model\Notification;
34
use LeadersLinked\Mapper\NotificationMapper;
35
use LeadersLinked\Mapper\UserNotificationSettingMapper;
36
use LeadersLinked\Mapper\EmailTemplateMapper;
37
use LeadersLinked\Model\EmailTemplate;
38
use LeadersLinked\Library\QueueEmail;
39
 
40
class ConnectionController extends AbstractActionController
41
{
42
    /**
43
     *
44
     * @var AdapterInterface
45
     */
46
    private $adapter;
47
 
48
 
49
    /**
50
     *
51
     * @var AbstractAdapter
52
     */
53
    private $cache;
54
 
55
    /**
56
     *
57
     * @var  LoggerInterface
58
     */
59
    private $logger;
60
 
61
 
62
    /**
63
     *
64
     * @var array
65
     */
66
    private $config;
67
 
68
    /**
69
     *
70
     * @param AdapterInterface $adapter
71
     * @param AbstractAdapter $cache
72
     * @param LoggerInterface $logger
73
     * @param array $config
74
     */
75
    public function __construct($adapter, $cache , $logger,  $config)
76
    {
77
        $this->adapter      = $adapter;
78
        $this->cache        = $cache;
79
        $this->logger       = $logger;
80
        $this->config       = $config;
81
 
82
    }
83
 
84
    /**
85
     *
86
     * Generación del listado de perfiles
87
     * {@inheritDoc}
88
     * @see \Laminas\Mvc\Controller\AbstractActionController::indexAction()
89
     */
90
    public function indexAction()
91
    {
92
        return new JsonModel([
93
            'success' => false,
94
            'data' => 'ERROR_METHOD_NOT_ALLOWED'
95
        ]);
96
    }
97
 
98
    public function myConnectionsAction()
99
    {
100
        $currentUserPlugin = $this->plugin('currentUserPlugin');
101
        $currentUser = $currentUserPlugin->getUser();
102
 
103
        $request = $this->getRequest();
104
        if($request->isGet()) {
105
 
106
 
107
            $headers  = $request->getHeaders();
108
            $isJson = false;
109
            if($headers->has('Accept')) {
110
                $accept = $headers->get('Accept');
111
 
112
                $prioritized = $accept->getPrioritized();
113
 
114
                foreach($prioritized as $key => $value) {
115
                    $raw = trim($value->getRaw());
116
 
117
                    if(!$isJson) {
118
                        $isJson = strpos($raw, 'json');
119
                    }
120
 
121
                }
122
            }
123
 
124
            if($isJson) {
125
                $search = trim(filter_var($this->params()->fromQuery('search', ''), FILTER_SANITIZE_STRING));
126
 
127
 
128
                $connectionMapper = ConnectionMapper::getInstance($this->adapter);
129
                $user_ids = $connectionMapper->fetchAllConnectionsByUserReturnIds($currentUser->id);
130
 
131
                $userBlockedMapper = UserBlockedMapper::getInstance($this->adapter);
132
                $user_blocked_ids = $userBlockedMapper->fetchAllBlockedReturnIds($currentUser->id);
133
                $user_ids = array_diff($user_ids, $user_blocked_ids);
134
 
135
                $queryMapper = QueryMapper::getInstance($this->adapter);
136
 
137
                $select = $queryMapper->getSql()->select(UserMapper::_TABLE);
138
                $select->where->in('id', $user_ids);
139
                $select->where->equalTo('status', User::STATUS_ACTIVE);
3648 efrain 140
                $select->where->equalTo('network_id', $currentUser->network_id);
1 www 141
 
142
                if($search) {
143
                    $select->where->NEST->like('first_name', '%' . $search . '%')->or->like('last_name', '%' . $search . '%')->UNNEST;
144
                }
145
                $select->order('first_name ASC, last_name ASC');
146
 
147
                $records = $queryMapper->fetchAll($select);
148
                $items = [];
149
                foreach($records as $record)
150
                {
151
 
152
 
153
                    $item = [
154
                        'name' => trim($record['first_name'] . ' ' . $record['last_name']),
155
                        'image' => $this->url()->fromRoute('storage', ['type' => 'user', 'code' => $record['uuid'], 'filename' => $record['image'] ]),
156
                        'link_view' => $this->url()->fromRoute('profile/view', ['id' => $record['uuid']  ]),
157
                        'link_inmail'   => $this->url()->fromRoute('inmail', ['id' => $record['uuid']  ]),
158
                        'link_cancel' => $this->url()->fromRoute('connection/cancel', ['id' => $record['uuid']  ]),
159
                        'link_block'=> $this->url()->fromRoute('connection/block', ['id' => $record['uuid']  ]),
160
 
161
                    ];
162
 
163
 
164
 
165
                    array_push($items, $item);
166
                }
167
 
168
 
169
 
170
 
171
                $response = [
172
                    'success' => true,
173
                    'data' => $items
174
                ];
175
 
176
                return new JsonModel($response);
177
 
178
 
179
            } else {
180
 
181
                $notificationMapper = NotificationMapper::getInstance($this->adapter);
182
                $notificationMapper->markAllNotificationsAsReadByTypeAndUserId(Notification::TYPE_ACCEPT_MY_REQUEST_CONNECTION, $currentUser->id);
183
 
184
                $this->layout()->setTemplate('layout/layout.phtml');
185
                $viewModel = new ViewModel();
186
                $viewModel->setTemplate('leaders-linked/connection/my-connections.phtml');
187
                return $viewModel ;
188
            }
189
 
190
        } else {
191
            return new JsonModel([
192
                'success' => false,
193
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
194
            ]);
195
        }
196
    }
197
 
198
    public function invitationsSentAction()
199
    {
200
        $currentUserPlugin = $this->plugin('currentUserPlugin');
201
        $currentUser = $currentUserPlugin->getUser();
202
 
203
        $request = $this->getRequest();
204
        if($request->isGet()) {
205
 
206
 
207
            $headers  = $request->getHeaders();
208
            $isJson = false;
209
            if($headers->has('Accept')) {
210
                $accept = $headers->get('Accept');
211
 
212
                $prioritized = $accept->getPrioritized();
213
 
214
                foreach($prioritized as $key => $value) {
215
                    $raw = trim($value->getRaw());
216
 
217
                    if(!$isJson) {
218
                        $isJson = strpos($raw, 'json');
219
                    }
220
 
221
                }
222
            }
223
 
224
            if($isJson) {
225
                $search = trim(filter_var($this->params()->fromQuery('search', ''), FILTER_SANITIZE_STRING));
226
 
227
 
228
                $connectionMapper = ConnectionMapper::getInstance($this->adapter);
229
                $user_ids = $connectionMapper->fetchAllSentInvitationsReturnIds($currentUser->id);
230
 
231
                $userBlockedMapper = UserBlockedMapper::getInstance($this->adapter);
232
                $user_blocked_ids = $userBlockedMapper->fetchAllBlockedReturnIds($currentUser->id);
233
                $user_ids = array_diff($user_ids, $user_blocked_ids);
234
 
235
 
236
                $queryMapper = QueryMapper::getInstance($this->adapter);
237
 
238
                $select = $queryMapper->getSql()->select(UserMapper::_TABLE);
239
                $select->where->in('id', $user_ids);
240
                $select->where->equalTo('status', User::STATUS_ACTIVE);
3648 efrain 241
                $select->where->equalTo('network_id', $currentUser->network_id);
1 www 242
 
243
                if($search) {
244
                    $select->where->NEST->like('first_name', '%' . $search . '%')->or->like('last_name', '%' . $search . '%')->UNNEST;
245
                }
246
                $select->order('first_name ASC, last_name ASC');
247
 
248
                $records = $queryMapper->fetchAll($select);
249
                $items = [];
250
                foreach($records as $record)
251
                {
252
                    $item = [
253
                        'name' => trim($record['first_name'] . ' ' . $record['last_name']),
254
                        'image' => $this->url()->fromRoute('storage', ['type' => 'user', 'code' => $record['uuid'], 'filename' => $record['image'] ]),
255
                        'link_view' => $this->url()->fromRoute('profile/view', ['id' => $record['uuid']  ]),
256
                        'link_delete' => $this->url()->fromRoute('connection/delete', ['id' => $record['uuid']  ]),
257
                    ];
258
 
259
                    array_push($items, $item);
260
                }
261
 
262
                $response = [
263
                    'success' => true,
264
                    'data' => $items
265
                ];
266
 
267
                return new JsonModel($response);
268
            } else {
269
                $this->layout()->setTemplate('layout/layout.phtml');
270
                $viewModel = new ViewModel();
271
                $viewModel->setTemplate('leaders-linked/connection/invitations-sent.phtml');
272
                return $viewModel ;
273
            }
274
 
275
        } else {
276
            return new JsonModel([
277
                'success' => false,
278
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
279
            ]);
280
        }
281
    }
282
 
283
    public function invitationsReceivedAction()
284
    {
285
        $currentUserPlugin = $this->plugin('currentUserPlugin');
286
        $currentUser = $currentUserPlugin->getUser();
287
 
288
        $request = $this->getRequest();
289
        if($request->isGet()) {
290
 
291
 
292
            $headers  = $request->getHeaders();
293
            $isJson = false;
294
            if($headers->has('Accept')) {
295
                $accept = $headers->get('Accept');
296
 
297
                $prioritized = $accept->getPrioritized();
298
 
299
                foreach($prioritized as $key => $value) {
300
                    $raw = trim($value->getRaw());
301
 
302
                    if(!$isJson) {
303
                        $isJson = strpos($raw, 'json');
304
                    }
305
 
306
                }
307
            }
308
 
309
            if($isJson) {
310
                $search = trim(filter_var($this->params()->fromQuery('search', ''), FILTER_SANITIZE_STRING));
311
 
312
                $connectionMapper = ConnectionMapper::getInstance($this->adapter);
313
                $user_ids = $connectionMapper->fetchAllReceiveInvitationsReturnIds($currentUser->id);
314
 
315
 
316
                $userBlockedMapper = UserBlockedMapper::getInstance($this->adapter);
317
                $user_blocked_ids = $userBlockedMapper->fetchAllBlockedReturnIds($currentUser->id);
318
                $user_ids = array_diff($user_ids, $user_blocked_ids);
319
 
320
                $queryMapper = QueryMapper::getInstance($this->adapter);
321
                $select = $queryMapper->getSql()->select(UserMapper::_TABLE);
322
                $select->where->in('id', $user_ids);
323
                $select->where->equalTo('status', User::STATUS_ACTIVE);
3648 efrain 324
                $select->where->equalTo('network_id', $currentUser->network_id);
1 www 325
 
326
                if($search) {
327
                    $select->where->NEST->like('first_name', '%' . $search . '%')->or->like('last_name', '%' . $search . '%')->UNNEST;
328
                }
329
                $select->order('first_name ASC, last_name ASC');
330
 
331
                $records = $queryMapper->fetchAll($select);
332
                $items = [];
333
                foreach($records as $record)
334
                {
335
                    $item = [
336
                        'name' => trim($record['first_name'] . ' ' . $record['last_name']),
337
                        'image' => $this->url()->fromRoute('storage', ['type' => 'user', 'code' => $record['uuid'], 'filename' => $record['image'] ]),
338
                        'link_view' => $this->url()->fromRoute('profile/view', ['id' => $record['uuid']  ]),
339
                        'link_approve' => $this->url()->fromRoute('connection/approve', ['id' => $record['uuid']  ]),
340
                        'link_reject' => $this->url()->fromRoute('connection/reject', ['id' => $record['uuid']  ]),
341
 
342
                    ];
343
 
344
                    array_push($items, $item);
345
                }
346
 
347
                $response = [
348
                    'success' => true,
349
                    'data' => $items
350
                ];
351
 
352
                return new JsonModel($response);
353
            } else {
354
                $notificationMapper = NotificationMapper::getInstance($this->adapter);
355
                $notificationMapper->markAllNotificationsAsReadByTypeAndUserId(Notification::TYPE_RECEIVE_CONNECTION_REQUEST, $currentUser->id);
356
 
357
 
358
                $this->layout()->setTemplate('layout/layout.phtml');
359
                $viewModel = new ViewModel();
360
                $viewModel->setTemplate('leaders-linked/connection/invitations-received.phtml');
361
                return $viewModel ;
362
            }
363
 
364
        } else {
365
            return new JsonModel([
366
                'success' => false,
367
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
368
            ]);
369
        }
370
    }
371
 
372
    public function cancelAction()
373
    {
374
        $request = $this->getRequest();
375
        if($request->isPost()) {
376
            $currentUserPlugin = $this->plugin('currentUserPlugin');
377
            $currentUser = $currentUserPlugin->getUser();
378
 
379
            $id = $this->params()->fromRoute('id');
380
 
381
            $id = $this->params()->fromRoute('id');
382
            $userMapper = UserMapper::getInstance($this->adapter);
3648 efrain 383
            $user = $userMapper->fetchOneByUuidAndNetworkId($id, $currentUser->network_id);
1 www 384
 
385
            if(!$user) {
386
                return new JsonModel([
387
                    'success' => true,
388
                    'data' => 'ERROR_USER_NOT_FOUND'
389
                ]);
390
            }
391
 
392
 
393
 
394
            if($user->id == $currentUser->id || in_array($user->status, [User::STATUS_DELETED, User::STATUS_INACTIVE]) || $user->email_verified == User::EMAIL_VERIFIED_NO || $user->blocked == User::BLOCKED_YES) {
395
                return new JsonModel([
396
                    'success' => false,
397
                    'data' => 'ERROR_USER_UNAVAILABLE'
398
                ]);
399
            }
400
 
401
 
402
 
403
            $connectionMapper = ConnectionMapper::getInstance($this->adapter);
404
            $connection = $connectionMapper->fetchOneByUserId1AndUserId2($currentUser->id, $user->id);
405
            if($connection) {
406
                if($connection->status == Connection::STATUS_ACCEPTED) {
407
                    if($connectionMapper->cancel($connection)) {
408
                        return new JsonModel([
409
                            'success' => true,
410
                            'data' => 'LABEL_CONNECTION_CANCELED'
411
                        ]);
412
                    } else {
413
                        return new JsonModel([
414
                            'success' => true,
415
                            'data' => $connectionMapper->getError()
416
                        ]);
417
                    }
418
                } else {
419
                    return new JsonModel([
420
                        'success' => true,
421
                        'data' => 'LABEL_CONNECTION_CANCELED'
422
                    ]);
423
                }
424
            } else {
425
                return new JsonModel([
426
                    'success' => true,
427
                    'data' => 'LABEL_CONNECTION_NOT_FOUND'
428
                ]);
429
 
430
            }
431
 
432
        } else {
433
            return new JsonModel([
434
                'success' => false,
435
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
436
            ]);
437
        }
438
    }
439
 
440
    public function approveAction()
441
    {
442
        $request = $this->getRequest();
443
        if($request->isPost()) {
444
            $currentUserPlugin = $this->plugin('currentUserPlugin');
445
            $currentUser = $currentUserPlugin->getUser();
446
 
447
            $id = $this->params()->fromRoute('id');
448
            $userMapper = UserMapper::getInstance($this->adapter);
3648 efrain 449
            $user = $userMapper->fetchOneByUuidAndNetworkId($id, $currentUser->network_id);
1 www 450
 
451
            if($user) {
452
 
453
                if($user->id == $currentUser->id || in_array($user->status, [User::STATUS_DELETED, User::STATUS_INACTIVE]) || $user->email_verified == User::EMAIL_VERIFIED_NO || $user->blocked == User::BLOCKED_YES) {
454
                    return new JsonModel([
455
                        'success' => true,
456
                        'data' => 'ERROR_USER_UNAVAILABLE'
457
                    ]);
458
                }
459
 
460
                $connectionMapper = ConnectionMapper::getInstance($this->adapter);
461
                $connection = $connectionMapper->fetchOneByUserId1AndUserId2($currentUser->id, $user->id);
462
                if($connection) {
463
                    if($connection->status == Connection::STATUS_SENT) {
464
                        if($connectionMapper->approve($connection)) {
465
 
466
                            if($currentUser->id == $connection->request_to) {
467
                                $other_user_id = $connection->request_from;
468
                            } else {
469
                                $other_user_id = $connection->request_to;
470
                            }
471
 
472
                            $otherUser = $userMapper->fetchOne($other_user_id);
473
 
474
                            $notification = new Notification();
475
                            $notification->type     = Notification::TYPE_ACCEPT_MY_REQUEST_CONNECTION;
476
                            $notification->read     = Notification::NO;
477
                            $notification->user_id  = $otherUser->id;
478
                            $notification->message  = 'LABEL_NOTIFICATION_ACCEPT_MY_REQUEST_CONNECTION';
479
                            $notification->url      = $this->url()->fromRoute('connection/my-connections');
480
 
481
                            $notificationMapper = NotificationMapper::getInstance($this->adapter);
482
                            $notificationMapper->insert($notification);
483
 
484
                            $userNotificationMapper = UserNotificationSettingMapper::getInstance($this->adapter);
485
                            $userNotification = $userNotificationMapper->fetchOne($otherUser->id);
486
 
487
                            if($userNotification && $userNotification->receive_connection_request)
488
                            {
489
                                $emailTemplateMapper = EmailTemplateMapper::getInstance($this->adapter);
3712 efrain 490
                                $emailTemplate = $emailTemplateMapper->fetchOneByCodeAndNetworkId(EmailTemplate::CODE_ACCEPT_MY_REQUEST_CONNECTION, $currentUser->network_id);
1 www 491
 
492
                                if($emailTemplate) {
493
                                    $arrayCont = [
494
                                        'firstname'             => $currentUser->first_name,
495
                                        'lastname'              => $currentUser->last_name,
496
                                        'other_user_firstname'  => $otherUser->first_name,
497
                                        'other_user_lastname'   => $otherUser->last_name,
498
                                        'company_name'          => '',
499
                                        'group_name'            => '',
500
                                        'content'               => '',
501
                                        'code'                  => '',
502
                                        'link'                  => $this->url()->fromRoute('connection/my-connections', [], ['force_canonical' => true])
503
                                    ];
504
 
505
                                    $email = new QueueEmail($this->adapter);
506
                                    $email->processEmailTemplate($emailTemplate, $arrayCont, $otherUser->email, trim($otherUser->first_name . ' ' . $otherUser->last_name));
507
                                }
508
                            }
509
 
510
                            return new JsonModel([
511
                                'success' => true,
512
                                'data' => 'LABEL_CONNECTION_APPROVED'
513
                            ]);
514
                        } else {
515
                            return new JsonModel([
516
                                'success' => true,
517
                                'data' => $connectionMapper->getError()
518
                            ]);
519
                        }
520
                    } else {
521
                        return new JsonModel([
522
                            'success' => true,
523
                            'data' => 'LABEL_CONNECTION_NOT_PENDING'
524
                        ]);
525
                    }
526
                } else {
527
                    return new JsonModel([
528
                        'success' => true,
529
                        'data' => 'LABEL_CONNECTION_NOT_FOUND'
530
                    ]);
531
 
532
                }
533
            } else {
534
                return new JsonModel([
535
                    'success' => true,
536
                    'data' => 'ERROR_USER_NOT_FOUND'
537
                ]);
538
            }
539
        } else {
540
            return new JsonModel([
541
                'success' => false,
542
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
543
            ]);
544
        }
545
    }
546
 
547
    public function rejectAction()
548
    {
549
        $request = $this->getRequest();
550
        if($request->isPost()) {
551
            $currentUserPlugin = $this->plugin('currentUserPlugin');
552
            $currentUser = $currentUserPlugin->getUser();
553
 
554
            $id = $this->params()->fromRoute('id');
555
            $userMapper = UserMapper::getInstance($this->adapter);
3648 efrain 556
            $user = $userMapper->fetchOneByUuidAndNetworkId($id, $currentUser->network_id);
1 www 557
 
558
            if($user) {
559
 
560
                if($user->id == $currentUser->id || in_array($user->status, [User::STATUS_DELETED, User::STATUS_INACTIVE]) || $user->email_verified == User::EMAIL_VERIFIED_NO || $user->blocked == User::BLOCKED_YES) {
561
                    return new JsonModel([
562
                        'success' => true,
563
                        'data' => 'ERROR_USER_UNAVAILABLE'
564
                    ]);
565
                }
566
 
567
 
568
                $connectionMapper = ConnectionMapper::getInstance($this->adapter);
569
                $connection = $connectionMapper->fetchOneByUserId1AndUserId2($currentUser->id, $user->id);
570
                if($connection) {
571
                    if($connection->status == Connection::STATUS_SENT) {
572
                        if($connectionMapper->reject($connection)) {
573
                            return new JsonModel([
574
                                'success' => true,
575
                                'data' => 'LABEL_CONNECTION_REJECTED'
576
                            ]);
577
                        } else {
578
                            return new JsonModel([
579
                                'success' => true,
580
                                'data' => $connectionMapper->getError()
581
                            ]);
582
                        }
583
                    } else {
584
                        return new JsonModel([
585
                            'success' => true,
586
                            'data' => 'LABEL_CONNECTION_NOT_PENDING'
587
                        ]);
588
                    }
589
                } else {
590
                    return new JsonModel([
591
                        'success' => true,
592
                        'data' => 'LABEL_CONNECTION_NOT_FOUND'
593
                    ]);
594
 
595
                }
596
            } else {
597
                return new JsonModel([
598
                    'success' => false,
599
                    'data' => 'ERROR_USER_NOT_FOUND'
600
                ]);
601
            }
602
        } else {
603
            return new JsonModel([
604
                'success' => false,
605
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
606
            ]);
607
        }
608
    }
609
 
610
    public function requestAction()
611
    {
612
        $request = $this->getRequest();
613
        if($request->isPost()) {
614
            $currentUserPlugin = $this->plugin('currentUserPlugin');
615
            $currentUser = $currentUserPlugin->getUser();
616
 
617
            $id = $this->params()->fromRoute('id');
618
 
3648 efrain 619
 
1 www 620
            $userMapper = UserMapper::getInstance($this->adapter);
3648 efrain 621
            $user = $userMapper->fetchOneByUuidAndNetworkId($id, $currentUser->network_id);
1 www 622
 
623
            if($user) {
624
 
625
                if($user->id == $currentUser->id || in_array($user->status, [User::STATUS_DELETED, User::STATUS_INACTIVE]) || $user->email_verified == User::EMAIL_VERIFIED_NO || $user->blocked == User::BLOCKED_YES) {
626
                    return new JsonModel([
627
                        'success' => true,
628
                        'data' => 'ERROR_USER_UNAVAILABLE'
629
                    ]);
630
                }
631
 
632
 
633
                $send_notification = false;
634
 
635
                $connectionMapper = ConnectionMapper::getInstance($this->adapter);
636
                $connection = $connectionMapper->fetchOneByUserId1AndUserId2($currentUser->id, $user->id);
637
                if(!$connection) {
638
                    $userBlockedMapper = UserBlockedMapper::getInstance($this->adapter);
639
                    $userBlocked = $userBlockedMapper->fetchOneByUserIdAndBlockedId($currentUser->id, $user->id);
640
 
641
                    if(!$userBlocked ) {
642
                        $connection = new Connection();
643
                        $connection->request_from = $currentUser->id;
644
                        $connection->request_to = $user->id;
645
                        $connection->status = Connection::STATUS_SENT;
646
 
647
 
648
                        if($connectionMapper->insert($connection)) {
649
 
650
                            $send_notification = true;
651
 
652
                            $response = [
653
                                'success' => true,
654
                                'data' => 'LABEL_CONNECTION_REQUESTED'
655
                            ];
656
                        } else {
657
                            $response = [
658
                                'success' => true,
659
                                'data' => $connectionMapper->getError()
660
                            ];
661
                        }
662
                    } else {
663
                        $response = [
664
                            'success' => true,
665
                            'data' => 'ERROR_USER_NOT_FOUND'
666
                        ];
667
                    }
668
                } else {
669
 
670
 
671
                    $connection->request_from = $currentUser->id;
672
                    $connection->request_to = $user->id;
673
                    $connection->status = Connection::STATUS_SENT;
674
                    if( $connectionMapper->update($connection)) {
675
                        $send_notification = true;
676
                        $response = [
677
                            'success' => true,
678
                            'data' => 'LABEL_CONNECTION_REQUESTED'
679
                        ];
680
                    } else {
681
                        $response = [
682
                            'success' => true,
683
                            'data' => $connectionMapper->getError()
684
                        ];
685
                    }
686
 
687
 
688
 
689
                }
690
 
691
                if($send_notification) {
692
                    $notification = new Notification();
693
                    $notification->type     = Notification::TYPE_RECEIVE_CONNECTION_REQUEST;
694
                    $notification->read     = Notification::NO;
695
                    $notification->user_id  = $user->id;
696
                    $notification->message  = 'LABEL_NOTIFICATION_RECEIVE_CONNECTION_REQUEST';
697
                    $notification->url      = $this->url()->fromRoute('connection/invitations-received');
698
 
699
                    $notificationMapper = NotificationMapper::getInstance($this->adapter);
700
                    $notificationMapper->insert($notification);
701
 
702
                    $userNotificationMapper = UserNotificationSettingMapper::getInstance($this->adapter);
703
                    $userNotification = $userNotificationMapper->fetchOne($user->id);
704
 
705
                    if($userNotification && $userNotification->receive_connection_request)
706
                    {
707
                        $emailTemplateMapper = EmailTemplateMapper::getInstance($this->adapter);
3712 efrain 708
                        $emailTemplate = $emailTemplateMapper->fetchOneByCodeAndNetworkId(EmailTemplate::CODE_RECEIVE_CONNECTION_REQUEST, $currentUser->network_id);
1 www 709
 
710
                        if($emailTemplate) {
711
                            $arrayCont = [
712
                                'firstname'             => $currentUser->first_name,
713
                                'lastname'              => $currentUser->last_name,
714
                                'other_user_firstname'  => $user->first_name,
715
                                'other_user_lastname'   => $user->last_name,
716
                                'company_name'          => '',
717
                                'group_name'            => '',
718
                                'content'               => '',
719
                                'code'                  => '',
720
                                'link'                  => $this->url()->fromRoute('connection/invitations-received', [], ['force_canonical' => true])
721
                            ];
722
 
723
                            $email = new QueueEmail($this->adapter);
724
                            $email->processEmailTemplate($emailTemplate, $arrayCont, $user->email, trim($user->first_name . ' ' . $user->last_name));
725
                        }
726
                    }
727
                }
728
 
729
                return new JsonModel($response);
730
 
731
            } else {
732
                return new JsonModel([
733
                    'success' => false,
734
                    'data' => 'ERROR_METHOD_NOT_ALLOWED'
735
                ]);
736
            }
737
 
738
 
739
 
740
        }
741
 
742
        return new JsonModel([
743
            'success' => false,
744
            'data' => 'ERROR_METHOD_NOT_ALLOWED'
745
        ]);
746
    }
747
 
748
 
749
    public function deleteAction()
750
    {
751
        $request = $this->getRequest();
752
        if($request->isPost()) {
753
            $currentUserPlugin = $this->plugin('currentUserPlugin');
754
            $currentUser = $currentUserPlugin->getUser();
755
 
756
            $id = $this->params()->fromRoute('id');
757
            $userMapper = UserMapper::getInstance($this->adapter);
3648 efrain 758
            $user = $userMapper->fetchOneByUuidAndNetworkId($id, $currentUser->network_id);
1 www 759
 
760
            if(!$user) {
761
                return new JsonModel([
762
                    'success' => true,
763
                    'data' => 'ERROR_USER_NOT_FOUND'
764
                ]);
765
            }
766
 
767
            if($user->id == $currentUser->id || in_array($user->status, [User::STATUS_DELETED, User::STATUS_INACTIVE]) || $user->email_verified == User::EMAIL_VERIFIED_NO || $user->blocked == User::BLOCKED_YES) {
768
 
769
                return new JsonModel([
770
                    'success' => true,
771
                    'data' => 'ERROR_USER_UNAVAILABLE'
772
                ]);
773
            }
774
 
775
 
776
 
777
            $connectionMapper = ConnectionMapper::getInstance($this->adapter);
778
            $connection = $connectionMapper->fetchOneByUserId1AndUserId2($currentUser->id, $user->id);
779
            if($connection) {
780
                if($connection->status == Connection::STATUS_SENT) {
781
                    if($connectionMapper->delete($connection)) {
782
                        return new JsonModel([
783
                            'success' => true,
784
                            'data' => 'LABEL_CONNECTION_DELETED'
785
                        ]);
786
                    } else {
787
                        return new JsonModel([
788
                            'success' => true,
789
                            'data' => $connectionMapper->getError()
790
                        ]);
791
                    }
792
                } else {
793
                    $connection->status = Connection::STATUS_CANCELLED;
794
                    if($connectionMapper->update($connection)) {
795
                        return new JsonModel([
796
                            'success' => true,
797
                            'data' => 'LABEL_CONNECTION_CANCELLED'
798
                        ]);
799
                    } else {
800
                        return new JsonModel([
801
                            'success' => true,
802
                            'data' => $connectionMapper->getError()
803
                        ]);
804
                    }
805
 
806
 
807
                    return new JsonModel([
808
                        'success' => true,
809
                        'data' => 'LABEL_CONNECTION_NOT_PENDING'
810
                    ]);
811
                }
812
            } else {
813
                return new JsonModel([
814
                    'success' => true,
815
                    'data' => 'LABEL_CONNECTION_NOT_FOUND'
816
                ]);
817
 
818
            }
819
        } else {
820
 
821
            return new JsonModel([
822
                'success' => false,
823
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
824
            ]);
825
        }
826
    }
827
 
828
    public function blockAction()
829
    {
830
        $request = $this->getRequest();
831
        if($request->isPost()) {
832
            $currentUserPlugin = $this->plugin('currentUserPlugin');
833
            $currentUser = $currentUserPlugin->getUser();
834
 
835
            $id = $this->params()->fromRoute('id');
836
            $userMapper = UserMapper::getInstance($this->adapter);
3648 efrain 837
            $user = $userMapper->fetchOneByUuidAndNetworkId($id, $currentUser->network_id);
1 www 838
            if($user) {
839
                if($user->id == $currentUser->id || in_array($user->status, [User::STATUS_DELETED, User::STATUS_INACTIVE]) || $user->email_verified == User::EMAIL_VERIFIED_NO || $user->blocked == User::BLOCKED_YES) {
840
                    return new JsonModel([
841
                        'success' => true,
842
                        'data' => 'ERROR_USER_UNAVAILABLE'
843
                    ]);
844
                }
845
 
846
                $userBlockedMapper = UserBlockedMapper::getInstance($this->adapter);
847
                $userBlocked = $userBlockedMapper->fetchOneByUserIdAndBlockedId($currentUser->id, $user->id);
848
                if($userBlocked) {
849
                    return new JsonModel([
850
                        'success' => false,
851
                        'data' =>  'ERROR_THIS_USER_WAS_ALREADY_BLOCKED'
852
                    ]);
853
                } else {
854
                    $userBlocked = new UserBlocked();
855
                    $userBlocked->user_id = $currentUser->id;
856
                    $userBlocked->blocked_id = $user->id;
857
 
858
                    if($userBlockedMapper->insert($userBlocked)) {
859
                        return new JsonModel([
860
                            'success' => true,
861
                            'data' => 'LABEL_USER_HAS_BEEN_BLOCKED'
862
                        ]);
863
                    } else {
864
                        return new JsonModel([
865
                            'success' => false,
866
                            'data' => $userBlockedMapper->getError()
867
                        ]);
868
                    }
869
                }
870
            } else {
871
                return new JsonModel([
872
                    'success' => false,
873
                    'data' =>  'ERROR_USER_NOT_FOUND'
874
                ]);
875
            }
876
        } else {
877
 
878
            return new JsonModel([
879
                'success' => false,
880
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
881
            ]);
882
        }
883
    }
884
 
885
    public function unblockAction()
886
    {
887
        $request = $this->getRequest();
888
        if($request->isPost()) {
889
            $currentUserPlugin = $this->plugin('currentUserPlugin');
890
            $currentUser = $currentUserPlugin->getUser();
891
 
892
            $id = $this->params()->fromRoute('id');
893
            $userMapper = UserMapper::getInstance($this->adapter);
3648 efrain 894
            $user = $userMapper->fetchOneByUuidAndNetworkId($id, $currentUser->network_id);
1 www 895
 
896
            if($user) {
897
                if($user->id == $currentUser->id || in_array($user->status, [User::STATUS_DELETED, User::STATUS_INACTIVE]) || $user->email_verified == User::EMAIL_VERIFIED_NO || $user->blocked == User::BLOCKED_YES) {
898
                    return new JsonModel([
899
                        'success' => true,
900
                       'data' => 'ERROR_USER_UNAVAILABLE'
901
                    ]);
902
                }
903
 
904
                $userBlockedMapper = UserBlockedMapper::getInstance($this->adapter);
905
                $userBlocked = $userBlockedMapper->fetchOneByUserIdAndBlockedId($currentUser->id, $user->id);
906
                if($userBlocked) {
907
                   if($userBlockedMapper->deleteByUserIdAndBlockedId($currentUser->id, $user->id)) {
908
                       return new JsonModel([
909
                           'success' => true,
910
                           'data' => 'LABEL_USER_HAS_BEEN_UNBLOCKED'
911
                        ]);
912
                    } else {
913
                        return new JsonModel([
914
                            'success' => false,
915
                            'data' => $userBlockedMapper->getError()
916
                        ]);
917
                    }
918
                } else {
919
                    return new JsonModel([
920
                        'success' => false,
921
                        'data' =>  'ERROR_USER_IS_NOT_BLOCKED'
922
                    ]);
923
                }
924
            } else {
925
                return new JsonModel([
926
                    'success' => false,
927
                    'data' =>  'ERROR_USER_NOT_FOUND'
928
                ]);
929
            }
930
 
931
 
932
        } else {
933
 
934
            return new JsonModel([
935
                'success' => false,
936
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
937
            ]);
938
        }
939
    }
940
 
941
 
942
    public function peopleBlockedAction()
943
    {
944
        $currentUserPlugin = $this->plugin('currentUserPlugin');
945
        $currentUser = $currentUserPlugin->getUser();
946
 
947
        $request = $this->getRequest();
948
        if($request->isGet()) {
949
 
950
 
951
            $headers  = $request->getHeaders();
952
            $isJson = false;
953
            if($headers->has('Accept')) {
954
                $accept = $headers->get('Accept');
955
 
956
                $prioritized = $accept->getPrioritized();
957
 
958
                foreach($prioritized as $key => $value) {
959
                    $raw = trim($value->getRaw());
960
 
961
                    if(!$isJson) {
962
                        $isJson = strpos($raw, 'json');
963
                    }
964
 
965
                }
966
            }
967
 
968
            if($isJson) {
969
                $search = trim(filter_var($this->params()->fromQuery('search', ''), FILTER_SANITIZE_STRING));
970
 
971
                $userBlockedMapper = UserBlockedMapper::getInstance($this->adapter);
972
                $user_ids = $userBlockedMapper->fetchAllBlockedReturnIds($currentUser->id);
973
 
974
 
975
                $queryMapper = QueryMapper::getInstance($this->adapter);
976
 
977
                $select = $queryMapper->getSql()->select(UserMapper::_TABLE);
978
                $select->where->in('id', $user_ids);
979
                $select->where->equalTo('status', User::STATUS_ACTIVE);
3648 efrain 980
                $select->where->equalTo('network_id', $currentUser->network_id);
1 www 981
 
982
                if($search) {
983
                    $select->where->NEST->like('first_name', '%' . $search . '%')->or->like('last_name', '%' . $search . '%')->UNNEST;
984
                }
985
                $select->order('first_name ASC, last_name ASC');
986
 
987
                //echo $select->getSqlString($this->adapter->platform); exit;
988
 
989
 
990
                $records = $queryMapper->fetchAll($select);
991
                $items = [];
992
                foreach($records as $record)
993
                {
994
 
995
                    $userBlocked = $userBlockedMapper->fetchOneByUserIdAndBlockedId($record['id'], $currentUser->id);
996
                    $link_view = $userBlocked ? '' : $this->url()->fromRoute('profile/view', ['id' => $record['uuid']  ]);
997
 
998
                    $item = [
999
                        'name' => trim($record['first_name'] . ' ' . $record['last_name']),
1000
                        'image' => $this->url()->fromRoute('storage', ['type' => 'user', 'code' => $record['uuid'], 'filename' => $record['image'] ]),
1001
                        'link_view' => $link_view,
1002
                        'link_unblock' => $this->url()->fromRoute('connection/unblock', ['id' => $record['uuid']  ]),
1003
                    ];
1004
 
1005
                    array_push($items, $item);
1006
                }
1007
 
1008
 
1009
 
1010
                $response = [
1011
                    'success' => true,
1012
                    'data' => $items
1013
                ];
1014
 
1015
                return new JsonModel($response);
1016
            } else {
1017
                $this->layout()->setTemplate('layout/layout.phtml');
1018
                $viewModel = new ViewModel();
1019
                $viewModel->setTemplate('leaders-linked/connection/people-blocked.phtml');
1020
                return $viewModel ;
1021
            }
1022
 
1023
        } else {
1024
            return new JsonModel([
1025
                'success' => false,
1026
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
1027
            ]);
1028
        }
1029
    }
1030
 
1031
 
1032
    public function peopleYouMayKnowAction()
1033
    {
1034
 
1035
        $currentUserPlugin = $this->plugin('currentUserPlugin');
1036
        $currentUser = $currentUserPlugin->getUser();
1037
 
1038
        $request = $this->getRequest();
1039
        if($request->isGet()) {
1040
 
1041
 
1042
            $headers  = $request->getHeaders();
1043
            $isJson = false;
1044
            if($headers->has('Accept')) {
1045
                $accept = $headers->get('Accept');
1046
 
1047
                $prioritized = $accept->getPrioritized();
1048
 
1049
                foreach($prioritized as $key => $value) {
1050
                    $raw = trim($value->getRaw());
1051
 
1052
                    if(!$isJson) {
1053
                        $isJson = strpos($raw, 'json');
1054
                    }
1055
 
1056
                }
1057
            }
1058
 
1059
            if($isJson) {
1060
                $page = (int) $this->params()->fromQuery('page');
1061
                $search = trim(filter_var($this->params()->fromQuery('search', ''), FILTER_SANITIZE_STRING));
1062
 
1063
 
1064
                $queryMapper = QueryMapper::getInstance($this->adapter);
1065
                /*
1066
                $select = $queryMapper->getSql()->select(UserExperienceMapper::_TABLE);
1067
                $select->columns(['industry_id' => new Expression('DISTINCT(industry_id)')]);
1068
                $select->where->equalTo('user_id', $currentUser->id);
1069
 
1070
 
1071
                $industry_ids = [];
1072
                $records = $queryMapper->fetchAll($select);
1073
                foreach($records as $record)
1074
                {
1075
                    array_push($industry_ids, $record['industry_id']);
1076
                }*/
1077
 
1078
                $connectionMapper = ConnectionMapper::getInstance($this->adapter);
1079
                $first_degree_connections_ids = $connectionMapper->fetchAllConnectionsByUserReturnIds($currentUser->id);
1080
                $first_degree_connections_ids = $first_degree_connections_ids ? $first_degree_connections_ids : [0];
1081
 
1082
 
1083
 
1084
                $second_degree_connections_ids = $connectionMapper->fetchAllSecondDegreeConnectionsForUserIdReturnIds($currentUser->id);
1085
                $second_degree_connections_ids = $second_degree_connections_ids ? $second_degree_connections_ids : [0];
1086
 
1087
 
1088
                /*Usuarios de la empresas donde trabajo o soy dueño */
1089
                $company_user_ids = [];
1090
                $companyUserMapper = CompanyUserMapper::getInstance($this->adapter);
1091
 
1092
                $records = $companyUserMapper->fetchAllByUserId($currentUser->id);
1093
                foreach($records as $record)
1094
                {
1095
 
1096
                    if($record->status != CompanyUser::STATUS_ACCEPTED) {
1097
                        continue;
1098
                    }
1099
 
1100
                    $otherUsers = $companyUserMapper->fetchAllByCompanyId($record->company_id);
1101
                    foreach($otherUsers as $otherUser)
1102
                    {
1103
                        if($currentUser->id != $otherUser->user_id && $otherUser->creator == CompanyUser::CREATOR_NO && $otherUser->status == CompanyUser::STATUS_ACCEPTED) {
1104
 
1105
                            if(!in_array($otherUser->user_id, $company_user_ids)) {
1106
                                array_push($company_user_ids, $otherUser->user_id);
1107
                            }
1108
                        }
1109
                    }
1110
                }
1111
                $company_user_ids =  $company_user_ids ? $company_user_ids : [0];
1112
 
1113
                /* Usuario de los grupos donde soy dueño o participo */
1114
 
1115
                $groupMemberMapper = GroupMemberMapper::getInstance($this->adapter);
1116
 
1117
                $group_member_ids = [];
1118
 
1119
                $records = $groupMemberMapper->fetchAllByUserId($currentUser->id);
1120
                foreach($records as $record)
1121
                {
1122
                    if($record->status != GroupMember::STATUS_ACCEPTED) {
1123
                        continue;
1124
                    }
1125
 
1126
                    $otherUsers = $groupMemberMapper->fetchAllByGroupId($record->group_id);
1127
                    foreach($otherUsers as $otherUser)
1128
                    {
1129
                        if($currentUser->id != $otherUser->user_id && $otherUser->status == GroupMember::STATUS_ACCEPTED) {
1130
 
1131
                            if(!in_array($otherUser->user_id, $group_member_ids)) {
1132
                                array_push($group_member_ids, $otherUser->user_id);
1133
                            }
1134
                        }
1135
                    }
1136
 
1137
 
1138
                }
1139
 
1140
                $group_member_ids = $group_member_ids ? $group_member_ids : [0];
1141
 
1142
                /* Usuarios con que comparto capsulas */
1143
                $capsule_user_ids = [];
1144
                $capsuleUserMapper = CompanyMicrolearningCapsuleUserMapper::getInstance($this->adapter);
1145
 
1146
                $company_ids = [];
1147
                $records = $capsuleUserMapper->fetchAllActiveByUserId($currentUser->id);
1148
                foreach($records as $record)
1149
                {
1150
                    if(!in_array($record->company_id,$company_ids)) {
1151
                        array_push($company_ids, $record->company_id);
1152
                    }
1153
                }
1154
 
1155
                foreach($company_ids as $company_id)
1156
                {
1157
                    $otherUsers = $capsuleUserMapper->fetchAllUserIdsForCapsulesActiveByCompanyId($company_id);
1158
                    foreach($otherUsers as $user_id)
1159
                    {
1160
                        if($currentUser->id != $user_id ) {
1161
 
1162
                            if(!in_array($user_id, $capsule_user_ids)) {
1163
                                array_push($capsule_user_ids, $user_id);
1164
                            }
1165
                        }
1166
                    }
1167
                }
1168
 
1169
                $capsule_user_ids = $capsule_user_ids ? $capsule_user_ids : [0];
1170
 
1171
 
1172
                $other_users = array_unique(array_merge(
1173
                    $second_degree_connections_ids,
1174
                    $company_user_ids,
1175
                    $group_member_ids,
1176
                    $capsule_user_ids
1177
                ));
1178
 
1179
                $queryMapper = QueryMapper::getInstance($this->adapter);
1180
                $select = $queryMapper->getSql()->select();
1181
                $select->columns(['id', 'uuid',  'first_name','last_name', 'image']);
1182
                $select->from(['u' => UserMapper::_TABLE]);
1183
                $select->where->in('u.id', $other_users);
1184
                $select->where->notIn('u.id', $first_degree_connections_ids);
1185
                $select->where->notEqualTo('u.id', $currentUser->id);
1186
                $select->where->equalTo('u.status', User::STATUS_ACTIVE);
1187
                $select->where->in('u.usertype_id', [UserType::ADMIN, UserType::USER]);
3648 efrain 1188
                $select->where->equalTo('u.network_id', $currentUser->network_id);
1 www 1189
 
1190
 
1191
 
1192
                if($search) {
1193
                    $select->where->NEST->like('first_name', '%' . $search . '%')->or->like('last_name', '%' . $search . '%')->UNNEST;
1194
                }
1195
 
1196
                $select->order(['first_name','last_name']);
1197
 
1198
 
1199
                //$select->order(new Expression("rand()"));
1200
 
1201
 
1202
                //echo $select->getSqlString($this->adapter->platform); exit;
1203
 
1204
 
1205
 
1206
                $dbSelect = new DbSelect($select, $this->adapter);
1207
                $paginator = new Paginator($dbSelect);
1208
                $paginator->setCurrentPageNumber($page ? $page : 1);
1209
                $paginator->setItemCountPerPage(12);
1210
 
1211
 
1212
                $items = [];
1213
                $records = $paginator->getCurrentItems();
1214
 
1215
                foreach($records as $record)
1216
                {
1217
                    $connection = $connectionMapper->fetchOneByUserId1AndUserId2($currentUser->id, $record['id']);
1218
 
1219
 
1220
 
1221
                    $relation = [];
1222
                    if(in_array($record['id'], $second_degree_connections_ids)) {
1223
                        array_push($relation, 'LABEL_RELATION_TYPE_SECOND_GRADE');
1224
                    }
1225
                    if(in_array($record['id'], $company_user_ids)) {
1226
                        array_push($relation, 'LABEL_RELATION_TYPE_COMPANY_USER');
1227
                    }
1228
                    if(in_array($record['id'], $group_member_ids)) {
1229
                        array_push($relation, 'LABEL_RELATION_TYPE_GROUP_MEMBER');
1230
                    }
1231
                    if(in_array($record['id'], $capsule_user_ids)) {
1232
                        array_push($relation, 'LABEL_RELATION_TYPE_CAPSULE_USER');
1233
                    }
1234
 
1235
                    $item = [
1236
                        'name' => trim($record['first_name'] . ' ' . $record['last_name']),
1237
                        'image' => $this->url()->fromRoute('storage', ['type' => 'user', 'code' => $record['uuid'], 'filename' => $record['image'] ]),
1238
                        'link_view' => $this->url()->fromRoute('profile/view', ['id' => $record['uuid']  ]),
1239
                        'link_inmail'   => $this->url()->fromRoute('inmail', ['id' => $record['uuid']  ]),
1240
                        'relation' => $relation,
1241
                        'link_cancel'   => '',
1242
                        'link_request'  => '',
1243
 
1244
                    ];
1245
 
1246
                    if($connection) {
1247
                        switch($connection->status)
1248
                        {
1249
                            case Connection::STATUS_SENT :
1250
                                $item['link_cancel'] = $this->url()->fromRoute('connection/delete',['id' => $record['uuid'] ]);
1251
                                break;
1252
 
1253
                            case Connection::STATUS_ACCEPTED :
1254
                                $item['link_cancel'] = $this->url()->fromRoute('connection/cancel',['id' => $record['uuid'] ]);
1255
                                break;
1256
 
1257
                            default :
1258
                                $item['link_request'] = $this->url()->fromRoute('connection/request',['id' => $record['uuid'] ]);
1259
                                break;
1260
 
1261
                        }
1262
 
1263
 
1264
                    } else {
1265
                        $item['link_request'] = $this->url()->fromRoute('connection/request',['id' => $record['uuid'] ]);
1266
                    }
1267
 
1268
                    array_push($items, $item);
1269
                }
1270
 
1271
                $response = [
1272
                    'success' => true,
1273
                    'data' => [
1274
                        'total' => [
1275
                            'count' => $paginator->getTotalItemCount(),
1276
                            'pages' => $paginator->getPages()->pageCount,
1277
                        ],
1278
                        'current' => [
1279
                            'items'    => $items,
1280
                            'page'     => $paginator->getCurrentPageNumber(),
1281
                        'count'    => $paginator->getCurrentItemCount(),
1282
                        ]
1283
                    ]
1284
                ];
1285
 
1286
 
1287
 
1288
 
1289
                return new JsonModel($response);
1290
            } else {
1291
                $this->layout()->setTemplate('layout/layout.phtml');
1292
                $viewModel = new ViewModel();
1293
                $viewModel->setTemplate('leaders-linked/connection/people-you-may-know.phtml');
1294
                return $viewModel ;
1295
            }
1296
 
1297
        } else {
1298
            return new JsonModel([
1299
                'success' => false,
1300
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
1301
            ]);
1302
        }
1303
    }
1304
}