Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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