Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

Rev Autor Línea Nro. Línea
3262 efrain 1
<?php
2
 
3
declare(strict_types=1);
4
 
5
namespace LeadersLinked\Controller;
6
 
7
use Laminas\Db\Adapter\AdapterInterface;
8
use Laminas\Cache\Storage\Adapter\AbstractAdapter;
9
use Laminas\Mvc\Controller\AbstractActionController;
10
use Laminas\Log\LoggerInterface;
11
use Laminas\View\Model\ViewModel;
12
use Laminas\View\Model\JsonModel;
13
use LeadersLinked\Model\Page;
14
use LeadersLinked\Mapper\NotificationMapper;
15
use LeadersLinked\Mapper\CompanyMapper;
16
use LeadersLinked\Mapper\CompanyUserMapper;
17
use LeadersLinked\Model\Company;
18
use LeadersLinked\Mapper\PageMapper;
19
use LeadersLinked\Mapper\MessageMapper;
20
use LeadersLinked\Mapper\UserMapper;
21
use LeadersLinked\Mapper\UserProfileMapper;
22
use LeadersLinked\Mapper\CompanyUserRoleMapper;
23
use LeadersLinked\Model\Role;
24
use LeadersLinked\Library\Functions;
25
use LeadersLinked\Mapper\ConnectionMapper;
26
use LeadersLinked\Mapper\LocationMapper;
27
use LeadersLinked\Mapper\PostMapper;
28
use LeadersLinked\Mapper\ProfileVisitMapper;
29
use LeadersLinked\Model\Post;
30
use LeadersLinked\Mapper\UtilMapper;
31
use LeadersLinked\Model\Notification;
32
 
33
class NotificationController extends AbstractActionController
34
{
35
    /**
36
     *
37
     * @var AdapterInterface
38
     */
39
    private $adapter;
40
 
41
 
42
    /**
43
     *
44
     * @var AbstractAdapter
45
     */
46
    private $cache;
47
 
48
    /**
49
     *
50
     * @var  LoggerInterface
51
     */
52
    private $logger;
53
 
54
 
55
    /**
56
     *
57
     * @var array
58
     */
59
    private $config;
60
 
61
    /**
62
     *
63
     * @param AdapterInterface $adapter
64
     * @param AbstractAdapter $cache
65
     * @param LoggerInterface $logger
66
     * @param array $config
67
     */
68
    public function __construct($adapter, $cache, $logger,  $config)
69
    {
70
        $this->adapter      = $adapter;
71
        $this->cache        = $cache;
72
        $this->logger       = $logger;
73
        $this->config       = $config;
74
    }
75
 
76
 
77
 
78
    public function indexAction()
79
    {
80
        $request = $this->getRequest();
81
        if ($request->isGet()) {
82
 
83
            $currentUserPlugin = $this->plugin('currentUserPlugin');
84
            $currentUser = $currentUserPlugin->getUser();
85
 
86
            $userMapper = UserMapper::getInstance($this->adapter);
87
            $user = $userMapper->fetchOne($currentUser->id);
88
 
89
            $userProfileMapper = UserProfileMapper::getInstance($this->adapter);
90
            $userProfile = $userProfileMapper->fetchOnePublicByUserId($currentUser->id);
91
 
92
            $headers  = $request->getHeaders();
93
 
94
            $isJson = false;
95
            if ($headers->has('Accept')) {
96
                $accept = $headers->get('Accept');
97
 
98
                $prioritized = $accept->getPrioritized();
99
 
100
                foreach ($prioritized as $key => $value) {
101
                    $raw = trim($value->getRaw());
102
 
103
                    if (!$isJson) {
104
                        $isJson = strpos($raw, 'json');
105
                    }
106
                }
107
            }
108
 
109
            if ($isJson) {
5373 stevensc 110
 
3262 efrain 111
                $utilMapper = UtilMapper::getInstance($this->adapter);
112
                $now = $utilMapper->getDatebaseNow();
113
 
114
 
115
                $notificationMapper = NotificationMapper::getInstance($this->adapter);
116
                $records = $notificationMapper->fetchAllByUserId($currentUser->id);
117
 
5373 stevensc 118
 
119
 
3262 efrain 120
                $items = [];
121
                foreach ($records as $record) {
5373 stevensc 122
 
3283 efrain 123
                    /*
3262 efrain 124
                    if($record->read == Notification::NO) {
3280 efrain 125
                       $notificationMapper->markAsReadById($record->id);
3283 efrain 126
                    }*/
3262 efrain 127
 
128
                    array_push($items, [
129
                        'message' => $record->message,
130
                        'link' => $record->url,
4632 efrain 131
                        'link_delete' => $this->url()->fromRoute('notifications/delete', ['id' => $record->uuid]),
5373 stevensc 132
                        'time_elapsed' => Functions::timeAgo($record->added_on, $now),
3262 efrain 133
                        'time' => $record->added_on
134
                    ]);
135
                }
136
 
137
                usort($items, function ($a, $b) {
5373 stevensc 138
 
3262 efrain 139
                    if ($a['time'] == $b['time']) {
140
                        return 0;
141
                    } else {
142
                        return $a['time'] < $b['time'] ? -1 : 1;
143
                    }
144
                });
145
 
146
                $response = [
147
                    'success' => true,
148
                    'data' => $items
149
                ];
150
            } else {
151
 
152
                if ($user->location_id) {
153
                    $locationMapper = LocationMapper::getInstance($this->adapter);
154
                    $location = $locationMapper->fetchOne($user->location_id);
155
 
156
                    $country = $location->country;
157
                } else {
158
                    $country = '';
159
                }
160
 
161
                $profileVisitMapper = ProfileVisitMapper::getInstance($this->adapter);
162
                $visits = $profileVisitMapper->getTotalByVisitedId($currentUser->id);
163
 
164
                $connectionMapper = ConnectionMapper::getInstance($this->adapter);
165
                $connections = $connectionMapper->fetchTotalConnectionByUser($currentUser->id);
166
 
167
                $this->layout()->setTemplate('layout/layout.phtml');
168
                $viewModel = new ViewModel();
169
                $viewModel->setVariables([
170
                    'image' => $this->url()->fromRoute('storage', ['type' => 'user', 'code' => $user->uuid, 'filename' => $user->image]),
171
                    'fullname' => trim($user->first_name . ' ' . $user->last_name),
172
                    'description' => empty($userProfile->description) ? '' :  trim($userProfile->description),
173
                    'country' => $country,
174
                    'visits' => $visits,
5373 stevensc 175
                    'connections' => $connections,
176
                    'uuid' => $user->uuid,
3262 efrain 177
                ]);
178
 
179
                $viewModel->setTemplate('leaders-linked/notifications/index.phtml');
180
                return $viewModel;
181
            }
182
        } else {
183
            $response = [
184
                'success' => false,
185
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
186
            ];
187
        }
188
 
189
        return new JsonModel($response);
190
    }
191
 
192
    public function unreadsAction()
193
    {
194
        $request = $this->getRequest();
195
        if ($request->isGet()) {
5373 stevensc 196
 
3262 efrain 197
            $utilMapper = UtilMapper::getInstance($this->adapter);
198
            $now = $utilMapper->getDatebaseNow();
199
 
200
            $currentUserPlugin = $this->plugin('currentUserPlugin');
201
            $currentUser = $currentUserPlugin->getUser();
202
 
203
            $notificationMapper = NotificationMapper::getInstance($this->adapter);
204
            $records = $notificationMapper->fetchAllsUnreadByUserId($currentUser->id);
205
 
206
            $items = [];
207
            foreach ($records as $record) {
208
                array_push($items, [
209
                    'message' => $record->message,
210
                    'link' => $record->url,
211
                    'link_mark_read' => $this->url()->fromRoute('notifications/mark-read', ['id' => $record->uuid]),
212
                    'link_delete' => $this->url()->fromRoute('notifications/delete', ['id' => $record->uuid]),
213
                    'time_elapsed' => Functions::timeAgo($record->added_on, $now),
214
                    'time' => $record->added_on
215
                ]);
216
            }
217
 
218
            usort($items, function ($a, $b) {
219
 
220
                if ($a['time'] == $b['time']) {
221
                    return 0;
222
                } else {
223
                    return $a['time'] < $b['time'] ? -1 : 1;
224
                }
225
            });
226
 
227
            $total = $notificationMapper->fetchUnreadNotificationsCount($currentUser->id);
228
 
229
            $response = [
230
                'success' => true,
231
                'data' => [
232
                    'notifications' =>  $items,
233
                    'total' => $total,
5373 stevensc 234
                ],
235
 
3262 efrain 236
            ];
237
        } else {
238
            $response = [
239
                'success' => false,
240
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
241
            ];
242
        }
243
 
244
        return new JsonModel($response);
245
    }
246
 
247
    public function markAllReadAction()
248
    {
249
 
250
        $request = $this->getRequest();
251
 
252
        if ($request->isPost()) {
253
 
5373 stevensc 254
 
255
 
3262 efrain 256
            $currentUserPlugin = $this->plugin('currentUserPlugin');
257
            $currentUser = $currentUserPlugin->getUser();
258
 
259
 
260
            $notificationMapper = NotificationMapper::getInstance($this->adapter);
261
 
262
            $result = $notificationMapper->markAllAsReadByUserId($currentUser->id);
263
 
264
            if ($result) {
265
                $this->logger->info('Se marco como leidas todas las notificaciones de usuario: ' . $currentUser->id, ['user_id' => $currentUser->id, 'ip' => Functions::getUserIP()]);
266
                $response = [
267
                    'success' => true,
268
                    'data' => 'LABEL_RECORD_UPDATED'
269
                ];
270
            } else {
271
                $response = [
272
                    'success' => false,
273
                    'data' => $notificationMapper->getError()
274
                ];
275
            }
5373 stevensc 276
        } else {
3262 efrain 277
            $response = [
278
                'success' => false,
279
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
280
            ];
281
        }
282
 
283
        return new JsonModel($response);
284
    }
5373 stevensc 285
 
3262 efrain 286
    public function markReadAction()
287
    {
5373 stevensc 288
 
3262 efrain 289
        $request = $this->getRequest();
5373 stevensc 290
 
3262 efrain 291
        if ($request->isPost()) {
5373 stevensc 292
 
3270 efrain 293
            $uuid = $this->params()->fromRoute('id');
5373 stevensc 294
 
3262 efrain 295
            $currentUserPlugin = $this->plugin('currentUserPlugin');
296
            $currentUser = $currentUserPlugin->getUser();
5373 stevensc 297
 
298
 
3262 efrain 299
            $notificationMapper = NotificationMapper::getInstance($this->adapter);
300
            $notification = $notificationMapper->fetchOneByUuid($uuid);
5373 stevensc 301
 
302
            if (!$notification) {
3262 efrain 303
                $response = [
304
                    'success' => false,
305
                    'data' => 'ERROR_NOTIFICATION_NOT_FOUND'
306
                ];
5373 stevensc 307
 
3262 efrain 308
                return new JsonModel($response);
309
            }
5373 stevensc 310
 
311
            if ($currentUser->id != $notification->user_id) {
3262 efrain 312
                $response = [
313
                    'success' => false,
314
                    'data' => 'ERROR_YOU_DO_NOT_HAVE_ACCESS_TO_THIS_NOTIFICATION'
315
                ];
5373 stevensc 316
 
3262 efrain 317
                return new JsonModel($response);
318
            }
319
 
320
            $result = $notificationMapper->markAsReadById($notification->id);
321
            if ($result) {
322
                $this->logger->info('Se marco una notificación del usuario: ' . $currentUser->id, ['user_id' => $currentUser->id, 'ip' => Functions::getUserIP()]);
323
                $response = [
324
                    'success' => true,
325
                    'data' => 'LABEL_RECORD_UPDATED'
326
                ];
327
            } else {
328
                $response = [
329
                    'success' => false,
330
                    'data' => $notificationMapper->getError()
331
                ];
332
            }
5373 stevensc 333
        } else {
3262 efrain 334
            $response = [
335
                'success' => false,
336
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
337
            ];
338
        }
5373 stevensc 339
 
3262 efrain 340
        return new JsonModel($response);
341
    }
5373 stevensc 342
 
3262 efrain 343
    public function deleteAction()
344
    {
5373 stevensc 345
 
3262 efrain 346
        $request = $this->getRequest();
5373 stevensc 347
 
3262 efrain 348
        if ($request->isPost()) {
5373 stevensc 349
 
3270 efrain 350
            $uuid = $this->params()->fromRoute('id');
5373 stevensc 351
 
3262 efrain 352
            $currentUserPlugin = $this->plugin('currentUserPlugin');
353
            $currentUser = $currentUserPlugin->getUser();
5373 stevensc 354
 
355
 
3262 efrain 356
            $notificationMapper = NotificationMapper::getInstance($this->adapter);
357
            $notification = $notificationMapper->fetchOneByUuid($uuid);
5373 stevensc 358
 
359
            if (!$notification) {
3262 efrain 360
                $response = [
361
                    'success' => false,
362
                    'data' => 'ERROR_NOTIFICATION_NOT_FOUND'
363
                ];
5373 stevensc 364
 
3262 efrain 365
                return new JsonModel($response);
366
            }
5373 stevensc 367
 
368
            if ($currentUser->id != $notification->user_id) {
3262 efrain 369
                $response = [
370
                    'success' => false,
371
                    'data' => 'ERROR_YOU_DO_NOT_HAVE_ACCESS_TO_THIS_NOTIFICATION'
372
                ];
5373 stevensc 373
 
3262 efrain 374
                return new JsonModel($response);
375
            }
5373 stevensc 376
 
3262 efrain 377
            $result = $notificationMapper->deleteById($notification->id);
378
            if ($result) {
379
                $this->logger->info('Se borro una notificación del usuario: ' . $currentUser->id, ['user_id' => $currentUser->id, 'ip' => Functions::getUserIP()]);
380
                $response = [
381
                    'success' => true,
382
                    'data' => 'LABEL_RECORD_DELETED'
383
                ];
384
            } else {
385
                $response = [
386
                    'success' => false,
387
                    'data' => $notificationMapper->getError()
388
                ];
389
            }
5373 stevensc 390
        } else {
3262 efrain 391
            $response = [
392
                'success' => false,
393
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
394
            ];
395
        }
5373 stevensc 396
 
3262 efrain 397
        return new JsonModel($response);
398
    }
5373 stevensc 399
 
400
 
3262 efrain 401
    public function clearAction()
402
    {
5373 stevensc 403
 
3262 efrain 404
        $request = $this->getRequest();
5373 stevensc 405
 
3262 efrain 406
        if ($request->isPost()) {
5373 stevensc 407
 
408
 
3262 efrain 409
            $currentUserPlugin = $this->plugin('currentUserPlugin');
410
            $currentUser = $currentUserPlugin->getUser();
5373 stevensc 411
 
412
 
3262 efrain 413
            $notificationMapper = NotificationMapper::getInstance($this->adapter);
5373 stevensc 414
 
3262 efrain 415
            $result = $notificationMapper->deleteAllByUserId($currentUser->id);
416
            if ($result) {
417
                $this->logger->info('Se borraron todas las notificaciones del usuario: ' . $currentUser->id, ['user_id' => $currentUser->id, 'ip' => Functions::getUserIP()]);
418
                $response = [
419
                    'success' => true,
420
                    'data' => 'LABEL_RECORD_DELETED'
421
                ];
422
            } else {
423
                $response = [
424
                    'success' => false,
425
                    'data' => $notificationMapper->getError()
426
                ];
427
            }
5373 stevensc 428
        } else {
3262 efrain 429
            $response = [
430
                'success' => false,
431
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
432
            ];
433
        }
5373 stevensc 434
 
3262 efrain 435
        return new JsonModel($response);
436
    }
437
}