Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

Rev Autor Línea Nro. Línea
1 www 1
<?php
2
declare(strict_types=1);
3
 
4
namespace LeadersLinked\Controller;
5
 
6
use Laminas\Db\Adapter\AdapterInterface;
6749 efrain 7
use LeadersLinked\Cache\CacheInterface;
1 www 8
use Laminas\Mvc\Controller\AbstractActionController;
9
use Laminas\Log\LoggerInterface;
10
use Laminas\View\Model\ViewModel;
11
use Laminas\View\Model\JsonModel;
12
use LeadersLinked\Mapper\PostMapper;
13
use LeadersLinked\Mapper\FeedMapper;
5765 efrain 14
use LeadersLinked\Model\ContentReaction;
1 www 15
use LeadersLinked\Model\Feed;
16
use LeadersLinked\Mapper\LocationMapper;
17
use LeadersLinked\Mapper\UserMapper;
18
use LeadersLinked\Mapper\NotificationMapper;
19
use LeadersLinked\Mapper\UserProfileMapper;
20
use LeadersLinked\Mapper\ProfileVisitMapper;
21
use LeadersLinked\Mapper\ConnectionMapper;
22
use LeadersLinked\Form\Feed\CreateForm;
23
use LeadersLinked\Form\Feed\ShareForm;
4842 efrain 24
use LeadersLinked\Model\Network;
4911 efrain 25
use LeadersLinked\Library\Functions;
5205 efrain 26
use LeadersLinked\Mapper\CompanyMapper;
27
use LeadersLinked\Mapper\CompanyServiceMapper;
1 www 28
 
29
class DashboardController extends AbstractActionController
30
{
31
    /**
32
     *
33
     * @var AdapterInterface
34
     */
35
    private $adapter;
36
 
37
 
38
    /**
39
     *
6749 efrain 40
     * @var CacheInterface
1 www 41
     */
42
    private $cache;
43
 
44
    /**
45
     *
46
     * @var  LoggerInterface
47
     */
48
    private $logger;
49
 
6749 efrain 50
    /**
51
     *
52
     * @var array
53
     */
54
    private $config;
1 www 55
 
56
 
57
    /**
58
     *
59
     * @param AdapterInterface $adapter
6749 efrain 60
     * @param CacheInterface $cache
1 www 61
     * @param LoggerInterface $logger
62
     * @param array $config
63
     */
64
    public function __construct($adapter, $cache , $logger, $config)
65
    {
66
        $this->adapter      = $adapter;
67
        $this->cache        = $cache;
68
        $this->logger       = $logger;
69
        $this->config       = $config;
70
 
71
 
72
    }
73
 
74
 
75
    public function indexAction()
76
    {
5765 efrain 77
 
78
 
79
 
1 www 80
        $currentUserPlugin = $this->plugin('currentUserPlugin');
81
        $currentUser = $currentUserPlugin->getUser();
82
 
4842 efrain 83
        $currentNetworkPlugin = $this->plugin('currentNetworkPlugin');
84
        $currentNetwork = $currentNetworkPlugin->getNetwork();
85
 
1 www 86
        $userMapper = UserMapper::getInstance($this->adapter);
87
        $user = $userMapper->fetchOne($currentUser->id);
88
 
89
        $request = $this->getRequest();
90
        if($request->isGet()) {
91
            $headers  = $request->getHeaders();
92
 
93
            $isJson = false;
94
            if($headers->has('Accept')) {
95
                $accept = $headers->get('Accept');
96
 
97
                $prioritized = $accept->getPrioritized();
98
 
99
                foreach($prioritized as $key => $value) {
100
                    $raw = trim($value->getRaw());
101
 
102
                    if(!$isJson) {
103
                        $isJson = strpos($raw, 'json');
104
                    }
105
 
106
                }
107
            }
108
 
109
            if($isJson) {
6614 efrain 110
                $acl = $this->getEvent()->getViewModel()->getVariable('acl');
6605 efrain 111
 
112
                $feed_uuid = $this->params()->fromRoute('feed');
113
                if($feed_uuid) {
114
                    $feedMapper = FeedMapper::getInstance($this->adapter);
115
                    $feed = $feedMapper->fetchOneByUuidAnyStatus($feed_uuid);
116
                } else {
117
                    $feed = '';
118
                }
119
 
120
 
1 www 121
                $profileVisitMapper = ProfileVisitMapper::getInstance($this->adapter);
4714 efrain 122
                //$visits = $profileVisitMapper->getTotalByVisitedId($currentUser->id);
1 www 123
 
4714 efrain 124
                $visits = $profileVisitMapper->getTotalByVisitedIdGroupVisitorId($currentUser->id);
125
 
4842 efrain 126
                if($currentNetwork->relationship_user_mode == Network::RELATIONSHIP_USER_MODE_USER_2_USER)  {
127
                    $connectionMapper = ConnectionMapper::getInstance($this->adapter);
128
                    $connections = $connectionMapper->fetchTotalConnectionByUser($currentUser->id);
129
                } else {
130
                    if($currentNetwork->default == Network::DEFAULT_YES) {
131
                        $connections = $userMapper->fetchCountActiveByDefaultNetworkId($currentNetwork->id);
132
                    } else {
133
                        $connections = $userMapper->fetchCountActiveByOtherNetworkId($currentNetwork->id);
134
                    }
135
                }
1 www 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
                $image_size = $this->config['leaderslinked.image_sizes.feed_image_upload'];
147
 
6605 efrain 148
                if($user->location_id) {
149
                    $locationMapper = LocationMapper::getInstance($this->adapter);
150
                    $location = $locationMapper->fetchOne($user->location_id);
151
 
152
                    $country = $location->country;
153
                } else {
154
                    $country = '';
155
                }
156
 
157
                $userProfileMapper = UserProfileMapper::getInstance($this->adapter);
158
                $userProfile = $userProfileMapper->fetchOnePublicByUserId($currentUser->id);
159
 
160
 
161
                if($feed) {
162
                    $routeTimeline = $this->url()->fromRoute('feed/timeline', ['id' => $currentUser->uuid, 'type' => 'user', 'feed' => $feed->uuid]);
163
                } else {
164
                    $routeTimeline = $this->url()->fromRoute('feed/timeline', ['id' => $currentUser->uuid, 'type' => 'user']);
165
                }
166
 
6614 efrain 167
                $allowDailyPulse    = $acl->isAllowed($currentUser->usertype_id, 'daily-pulse') ? 1 : 0;
168
                if ($allowDailyPulse) {
6615 efrain 169
                    $routeDailyPulse = $this->url()->fromRoute('daily-pulse');
6614 efrain 170
                } else {
171
                    $routeDailyPulse = '';
172
                }
173
 
174
 
175
 
1 www 176
                return new JsonModel([
177
                    'user_uuid' => $user->uuid,
178
                    'image' => $this->url()->fromRoute('storage', ['type' => 'user', 'code' => $user->uuid, 'filename' => $user->image]),
179
                    'fullname' => trim($user->first_name . ' ' . $user->last_name),
6605 efrain 180
                    'description' => empty($userProfile->description) ? '' :  trim($userProfile->description) ,
1 www 181
                    'country' => $country,
182
                    'visits' => $visits,
183
                    'connections' => $connections,
184
                    'image_size' => $image_size,
6605 efrain 185
                    'feed' => '',
186
                    'routeTimeline' => $routeTimeline,
6614 efrain 187
                    'routeDailyPulse' => $routeDailyPulse,
6605 efrain 188
                    'moodle_name' => $currentNetwork->moodle_name ?  $currentNetwork->moodle_name : '',
189
                    'moodle_image' => $this->url()->fromRoute('storage-network', ['type' => 'moodle']),
190
                    'microlearning_appstore' => $currentNetwork->microlearning_appstore ?  $currentNetwork->microlearning_appstore : '' ,
191
                    'microlearning_playstore' => $currentNetwork->microlearning_playstore ? $currentNetwork->microlearning_playstore : '',
192
 
193
 
1 www 194
                ]);
195
 
196
            } else {
3298 efrain 197
 
1 www 198
                $feed_uuid = $this->params()->fromRoute('feed');
199
                if($feed_uuid) {
200
                    $feedMapper = FeedMapper::getInstance($this->adapter);
3146 efrain 201
                    $feed = $feedMapper->fetchOneByUuidAnyStatus($feed_uuid);
1 www 202
                } else {
3298 efrain 203
                    $feed = '';
1 www 204
                }
205
 
206
 
207
 
208
 
209
                $profileVisitMapper = ProfileVisitMapper::getInstance($this->adapter);
4714 efrain 210
               // $visits = $profileVisitMapper->getTotalByVisitedId($currentUser->id);
211
                $visits = $profileVisitMapper->getTotalByVisitedIdGroupVisitorId($currentUser->id);
1 www 212
 
213
 
4842 efrain 214
                if($currentNetwork->relationship_user_mode == Network::RELATIONSHIP_USER_MODE_USER_2_USER)  {
215
                    $connectionMapper = ConnectionMapper::getInstance($this->adapter);
216
                    $connections = $connectionMapper->fetchTotalConnectionByUser($currentUser->id);
217
                } else {
218
                    if($currentNetwork->default == Network::DEFAULT_YES) {
219
                        $connections = $userMapper->fetchCountActiveByDefaultNetworkId($currentNetwork->id);
220
                    } else {
221
                        $connections = $userMapper->fetchCountActiveByOtherNetworkId($currentNetwork->id);
222
                    }
223
 
224
                    $connections--;
225
                }
1 www 226
 
4842 efrain 227
 
228
 
1 www 229
                if($user->location_id) {
230
                    $locationMapper = LocationMapper::getInstance($this->adapter);
231
                    $location = $locationMapper->fetchOne($user->location_id);
232
 
233
                    $country = $location->country;
234
                } else {
235
                    $country = '';
236
                }
237
 
238
                $userProfileMapper = UserProfileMapper::getInstance($this->adapter);
239
                $userProfile = $userProfileMapper->fetchOnePublicByUserId($currentUser->id);
240
 
241
 
5751 efrain 242
                $imageSize = $this->config['leaderslinked.image_sizes.feed_image_upload'];
1 www 243
 
244
                $formFeed = new CreateForm();
245
                $formShare = new ShareForm();
246
 
3146 efrain 247
 
3298 efrain 248
                if($feed) {
5751 efrain 249
                    $routeTimeline = $this->url()->fromRoute('feed/timeline', ['id' => $currentUser->uuid, 'type' => 'user', 'feed' => $feed->uuid]);
3146 efrain 250
                } else {
5751 efrain 251
                    $routeTimeline = $this->url()->fromRoute('feed/timeline', ['id' => $currentUser->uuid, 'type' => 'user']);
3146 efrain 252
                }
253
 
254
 
255
 
256
 
257
 
1 www 258
                $this->layout()->setTemplate('layout/layout.phtml');
259
                $viewModel = new ViewModel();
260
                $viewModel->setVariables([
261
                    'user_uuid' => $user->uuid,
262
                    'image' => $this->url()->fromRoute('storage', ['type' => 'user', 'code' => $user->uuid, 'filename' => $user->image]),
263
                    'fullname' => trim($user->first_name . ' ' . $user->last_name),
264
                    'description' => empty($userProfile->description) ? '' :  trim($userProfile->description) ,
265
                    'country' => $country,
266
                    'visits' => $visits,
267
                    'connections' => $connections,
3146 efrain 268
                    'feed' => '',
5751 efrain 269
                    'routeTimeline' => $routeTimeline,
1 www 270
                    'formFeed' => $formFeed,
271
                    'formShare' => $formShare,
5751 efrain 272
                    'imageSize' => $imageSize,
5848 efrain 273
                    'moodle_name' => $currentNetwork->moodle_name,
274
                    'moodle_image' => $this->url()->fromRoute('storage-network', ['type' => 'moodle']),
275
                    'microlearning_appstore' => $currentNetwork->microlearning_appstore,
276
                    'microlearning_playstore' => $currentNetwork->microlearning_playstore,
1 www 277
                ]);
278
                $viewModel->setTemplate('leaders-linked/dashboard/index.phtml');
279
                return $viewModel ;
280
            }
281
        }
282
 
283
        return new JsonModel([
284
           'success' => false,
285
           'data' => 'ERROR_METHOD_NOT_ALLOWED'
286
        ]);
287
    }
288
 
60 efrain 289
    public function dashboard2Action()
1 www 290
    {
60 efrain 291
        $currentUserPlugin = $this->plugin('currentUserPlugin');
292
        $currentUser = $currentUserPlugin->getUser();
1 www 293
 
60 efrain 294
        $userMapper = UserMapper::getInstance($this->adapter);
295
        $user = $userMapper->fetchOne($currentUser->id);
296
 
297
        $request = $this->getRequest();
298
        if($request->isGet()) {
299
 
300
 
301
            $headers  = $request->getHeaders();
302
 
303
            $isJson = false;
304
            if($headers->has('Accept')) {
305
                $accept = $headers->get('Accept');
306
 
307
                $prioritized = $accept->getPrioritized();
308
 
309
                foreach($prioritized as $key => $value) {
310
                    $raw = trim($value->getRaw());
311
 
312
                    if(!$isJson) {
313
                        $isJson = strpos($raw, 'json');
314
                    }
315
 
316
                }
317
            }
318
 
319
            if($isJson) {
320
                $profileVisitMapper = ProfileVisitMapper::getInstance($this->adapter);
321
                $visits = $profileVisitMapper->getTotalByVisitedId($currentUser->id);
322
 
323
                $connectionMapper = ConnectionMapper::getInstance($this->adapter);
324
                $connections = $connectionMapper->fetchTotalConnectionByUser($currentUser->id);
325
 
326
 
327
                if($user->location_id) {
328
                    $locationMapper = LocationMapper::getInstance($this->adapter);
329
                    $location = $locationMapper->fetchOne($user->location_id);
330
 
331
                    $country = $location->country;
332
                } else {
333
                    $country = '';
334
                }
335
 
336
                $image_size = $this->config['leaderslinked.image_sizes.feed_image_upload'];
337
 
338
                return new JsonModel([
339
                    'user_uuid' => $user->uuid,
340
                    'image' => $this->url()->fromRoute('storage', ['type' => 'user', 'code' => $user->uuid, 'filename' => $user->image]),
341
                    'fullname' => trim($user->first_name . ' ' . $user->last_name),
342
                    'country' => $country,
343
                    'visits' => $visits,
344
                    'connections' => $connections,
345
                    'image_size' => $image_size,
346
                ]);
347
 
348
            } else {
349
                $feed_uuid = $this->params()->fromRoute('feed');
350
                if($feed_uuid) {
351
                    $feedMapper = FeedMapper::getInstance($this->adapter);
352
                    $feed = $feedMapper->fetchOneByUuid($feed_uuid);
353
                    if($feed && $feed->type == Feed::TYPE_UPDATE && $feed->user_id == $currentUser->id && $feed->status == Feed::STATUS_PUBLISHED) {
354
                        $notificationMapper = NotificationMapper::getInstance($this->adapter);
355
                        $notificationMapper->markAllNotificationsAsReadByUserIdAndFeedId($currentUser->id, $feed->id);
356
                    } else {
357
                        $feed_uuid = '';
358
                    }
359
                } else {
360
                    $feed_uuid = '';
361
                }
362
 
363
 
364
 
365
 
366
                $profileVisitMapper = ProfileVisitMapper::getInstance($this->adapter);
367
                $visits = $profileVisitMapper->getTotalByVisitedId($currentUser->id);
368
 
369
                $connectionMapper = ConnectionMapper::getInstance($this->adapter);
370
                $connections = $connectionMapper->fetchTotalConnectionByUser($currentUser->id);
371
 
372
 
373
                if($user->location_id) {
374
                    $locationMapper = LocationMapper::getInstance($this->adapter);
375
                    $location = $locationMapper->fetchOne($user->location_id);
376
 
377
                    $country = $location->country;
378
                } else {
379
                    $country = '';
380
                }
381
 
382
                $userProfileMapper = UserProfileMapper::getInstance($this->adapter);
383
                $userProfile = $userProfileMapper->fetchOnePublicByUserId($currentUser->id);
384
 
385
 
386
                $image_size = $this->config['leaderslinked.image_sizes.feed_image_upload'];
387
 
388
                $formFeed = new CreateForm();
389
                $formShare = new ShareForm();
390
 
391
                $this->layout()->setTemplate('layout/layout.phtml');
392
                $viewModel = new ViewModel();
393
                $viewModel->setVariables([
394
                    'user_uuid' => $user->uuid,
395
                    'image' => $this->url()->fromRoute('storage', ['type' => 'user', 'code' => $user->uuid, 'filename' => $user->image]),
396
                    'fullname' => trim($user->first_name . ' ' . $user->last_name),
397
                    'description' => empty($userProfile->description) ? '' :  trim($userProfile->description) ,
398
                    'country' => $country,
399
                    'visits' => $visits,
400
                    'connections' => $connections,
401
                    'feed' => $feed_uuid,
402
                    'formFeed' => $formFeed,
403
                    'formShare' => $formShare,
404
                    'image_size' => $image_size,
5848 efrain 405
 
60 efrain 406
                ]);
407
                $viewModel->setTemplate('leaders-linked/dashboard/dashboard2.phtml');
408
                return $viewModel ;
409
            }
410
        }
411
 
1 www 412
        return new JsonModel([
60 efrain 413
            'success' => false,
414
            'data' => 'ERROR_METHOD_NOT_ALLOWED'
1 www 415
        ]);
416
    }
417
}