Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 6749 | 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;
7
use Laminas\Mvc\Controller\AbstractActionController;
8
use LeadersLinked\Hydrator\ObjectPropertyHydrator;
9
use Laminas\Log\LoggerInterface;
10
use Laminas\View\Model\ViewModel;
11
use Laminas\View\Model\JsonModel;
12
use LeadersLinked\Mapper\UserMapper;
13
use LeadersLinked\Library\Functions;
14
use LeadersLinked\Mapper\UserPasswordMapper;
15
use LeadersLinked\Form\AccountSetting\NotificationSettingForm;
16
use LeadersLinked\Mapper\UserNotificationSettingMapper;
17
use LeadersLinked\Form\AccountSetting\ChangePasswordForm;
18
use LeadersLinked\Form\AccountSetting\ChangeImageForm;
19
use LeadersLinked\Library\Image;
20
use LeadersLinked\Form\AccountSetting\LocationForm;
21
use LeadersLinked\Model\Location;
22
use LeadersLinked\Mapper\LocationMapper;
23
use LeadersLinked\Form\AccountSetting\PrivacySettingForm;
24
use LeadersLinked\Mapper\UserProfileMapper;
25
use LeadersLinked\Form\AccountSetting\BasicForm;
26
use LeadersLinked\Form\Transaction\FundsAddForm;
27
use LeadersLinked\Mapper\UserBrowserMapper;
28
use LeadersLinked\Mapper\QueryMapper;
29
use LeadersLinked\Mapper\DeviceHistoryMapper;
30
use LeadersLinked\Mapper\DeviceMapper;
31
use Laminas\Hydrator\ArraySerializableHydrator;
32
use Laminas\Db\ResultSet\HydratingResultSet;
33
use Laminas\Paginator\Adapter\DbSelect;
34
use Laminas\Paginator\Paginator;
35
use LeadersLinked\Mapper\UserIpMapper;
36
use LeadersLinked\Model\Transaction;
37
use LeadersLinked\Model\Provider;
38
use LeadersLinked\Mapper\TransactionMapper;
39
use LeadersLinked\Mapper\UserProviderMapper;
40
use LeadersLinked\Model\UserProvider;
41
use LeadersLinked\Model\UserPassword;
1979 efrain 42
use LeadersLinked\Model\UserDeleted;
43
use LeadersLinked\Mapper\UserDeletedMapper;
44
use LeadersLinked\Model\UserType;
45
use LeadersLinked\Model\User;
46
use LeadersLinked\Library\QueueEmail;
47
use LeadersLinked\Mapper\EmailTemplateMapper;
48
use LeadersLinked\Model\EmailTemplate;
6749 efrain 49
use LeadersLinked\Cache\CacheInterface;;
1 www 50
 
6803 efrain 51
 
1 www 52
class AccountSettingController extends AbstractActionController
53
{
54
    /**
55
     *
56
     * @var AdapterInterface
57
     */
58
    private $adapter;
59
 
60
 
61
    /**
62
     *
6749 efrain 63
     * @var CacheInterface
1 www 64
     */
65
    private $cache;
66
 
67
    /**
68
     *
69
     * @var  LoggerInterface
70
     */
71
    private $logger;
72
 
73
    /**
74
     *
75
     * @var array
76
     */
77
    private $config;
78
 
79
 
80
 
81
 
82
    /**
83
     *
84
     * @param AdapterInterface $adapter
6749 efrain 85
     * @param CacheInterface $cache
1 www 86
     * @param LoggerInterface $logger
87
     * @param array $config
88
     */
89
    public function __construct($adapter, $cache , $logger, $config)
90
    {
91
        $this->adapter      = $adapter;
92
        $this->cache        = $cache;
93
        $this->logger       = $logger;
94
        $this->config       = $config;
95
    }
96
 
97
    public function indexAction()
98
    {
99
        $request = $this->getRequest();
100
        if($request->isGet()) {
101
 
4398 efrain 102
            $currentNetworkPlugin = $this->plugin('currentNetworkPlugin');
103
            $currentNetwork = $currentNetworkPlugin->getNetwork();
104
 
105
 
6749 efrain 106
            $tab =  Functions::sanitizeFilterString($this->params()->fromQuery('tab'));
1 www 107
            if(!in_array($tab, ['nav-basic', 'nav-notification', 'nav-password', 'nav-image', 'nav-location', 'nav-privacy', 'nav-ips', 'nav-browsers', 'nav-transactions', 'nav-social-networks'])) {
108
                $tab = 'nav-basic';
109
            }
110
 
111
            $sandbox = $this->config['leaderslinked.runmode.sandbox'];
112
            if($sandbox) {
113
                $google_map_key  = $this->config['leaderslinked.google_map.sandbox_api_key'];
114
            } else {
115
                $google_map_key  = $this->config['leaderslinked.google_map.production_api_key'];
116
            }
117
 
118
            $currentUserPlugin = $this->plugin('currentUserPlugin');
119
            $currentUser = $currentUserPlugin->getUser();
120
 
121
            $userUserNotificationSettingMapper = UserNotificationSettingMapper::getInstance($this->adapter);
122
            $userUserNotificationSetting = $userUserNotificationSettingMapper->fetchOne($currentUser->id);
123
 
124
            $formNotificationSetting = new NotificationSettingForm();
125
            $formNotificationSetting->setData((array) $userUserNotificationSetting );
126
 
127
            $formLocation = new LocationForm();
128
 
129
            if($currentUser->location_id) {
130
 
131
                $locationMapper = LocationMapper::getInstance($this->adapter);
132
                $location = $locationMapper->fetchOne($currentUser->location_id);
133
                if($location) {
134
                    $location_formatted_address = $location->formatted_address;
135
                    $formLocation->setData((array) $location);
136
                }
137
            } else {
138
                $location_formatted_address = '';
139
            }
140
 
141
            $facebook    = 0;
142
            $twitter     = 0;
143
            $google      = 0;
144
 
145
 
146
            $userProviderMapper = UserProviderMapper::getInstance($this->adapter);
147
            $userProviders = $userProviderMapper->fetchAllByUserId($currentUser->id);
148
            foreach($userProviders as $userProvider)
149
            {
150
                switch($userProvider->provider)
151
                {
152
                    case  UserProvider::PROVIDER_FACEBOOK :
153
                        $facebook  = 1;
154
                        break;
155
 
156
                    case  UserProvider::PROVIDER_TWITTER :
157
                        $twitter = 1;
158
                        break;
159
 
160
                    case  UserProvider::PROVIDER_GOOGLE :
161
                        $google  = 1;
162
                        break;
163
 
164
                }
165
            }
166
 
167
            $hydrator = new ObjectPropertyHydrator();
168
            $user_data = $hydrator->extract($currentUser);
4113 efrain 169
 
1 www 170
 
171
            $formBasic = new BasicForm();
172
            $formBasic->setData($user_data);
173
 
174
            $formChangePassword = new ChangePasswordForm();
175
            $formChangeImage = new ChangeImageForm($this->config);
176
            $formPrivacy = new PrivacySettingForm();
177
            $formPrivacy->setData([
178
                'show_in_search' => $currentUser->show_in_search,
179
            ]);
180
 
181
            $formAddFund = new FundsAddForm();
182
 
183
            $this->layout()->setTemplate('layout/layout.phtml');
184
            $viewModel = new ViewModel();
185
            $viewModel->setTemplate('leaders-linked/account-settings/index.phtml');
186
            $viewModel->setVariables([
187
                'tab' => $tab,
188
                'balance' => number_format(floatval($currentUser->balance), 2),
189
                'amounts' => [
190
                    '5' => '5 LABEL_USD',
191
                    '10' => '10 LABEL_USD',
192
                    '15' => '15 LABEL_USD',
193
                    '20' => '20 LABEL_USD',
194
                    '25' => '25 LABEL_USD',
195
                    '50' => '50 LABEL_USD',
196
                    '75' => '75 LABEL_USD',
197
                    '100' => '100 LABEL_USD',
198
                ],
199
                'usertype_id' => $currentUser->usertype_id,
200
                'image' => $this->url()->fromRoute('storage',['type' => 'user', 'code' => $currentUser->uuid, 'filename' => $currentUser->image]),
201
                'formNotificationSetting' => $formNotificationSetting,
202
                'formBasic' => $formBasic,
203
                'formChangePassword' => $formChangePassword,
204
                'formChangeImage' => $formChangeImage,
205
                'formLocation' => $formLocation,
206
                'formPrivacy' => $formPrivacy,
207
                'formAddFund' => $formAddFund,
208
                'config' => $this->config,
209
                'google_map_key' => $google_map_key,
210
                'location_formatted_address' => $location_formatted_address,
211
                'google' => $google,
212
                'facebook' => $facebook,
213
                'twitter' => $twitter,
4402 efrain 214
                'defaultNetwork' => $currentNetwork->default,
1 www 215
 
216
            ]);
217
            return $viewModel ;
218
 
219
        } else {
220
            return new JsonModel([
221
                'success' => false,
222
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
223
            ]);
224
        }
225
    }
226
 
227
    public function notificationAction()
228
    {
229
        $request = $this->getRequest();
230
 
231
        if($request->isGet()) {
232
            $hydrator = new ObjectPropertyHydrator();
233
 
234
            $currentUserPlugin = $this->plugin('currentUserPlugin');
235
            $currentUser = $currentUserPlugin->getUser();
236
 
237
            $userUserNotificationSettingMapper = UserNotificationSettingMapper::getInstance($this->adapter);
238
            $userUserNotificationSetting = $userUserNotificationSettingMapper->fetchOne($currentUser->id);
239
 
240
 
241
            return new JsonModel([
242
               'success' => true,
243
               'data' => [
244
                   'receive_connection_request' => $userUserNotificationSetting->receive_connection_request ? 1 : 0,
245
                   'accept_my_request_connection' => $userUserNotificationSetting->accept_my_request_connection ? 1 : 0,
246
 
247
                   'receive_invitation_group' => $userUserNotificationSetting->receive_invitation_group ? 1 : 0,
248
                   'accept_my_request_join_group' => $userUserNotificationSetting->accept_my_request_join_group ? 1 : 0,
249
                   'receive_request_join_my_group' => $userUserNotificationSetting->receive_request_join_my_group ? 1 : 0,
250
 
251
 
252
                   'receive_invitation_company' => $userUserNotificationSetting->receive_invitation_company ? 1 : 0,
253
 
254
                   'like_my_feed' => $userUserNotificationSetting->like_my_feed ? 1 : 0,
255
                   'comment_my_feed' => $userUserNotificationSetting->comment_my_feed ? 1 : 0,
256
                   'share_my_feed' => $userUserNotificationSetting->share_my_feed ? 1 : 0,
257
                   'receive_inmail' => $userUserNotificationSetting->receive_inmail ? 1 : 0,
258
 
259
                   'receive_invitation_meeting' => $userUserNotificationSetting->receive_invitation_meeting ? 1 : 0,
260
                   'receive_reminder_meeting' => $userUserNotificationSetting->receive_reminder_meeting ? 1 : 0,
261
                   'receive_records_available_meeting' => $userUserNotificationSetting->receive_records_available_meeting ? 1 : 0,
262
 
263
               ]
264
            ]);
265
 
266
 
267
        } else  if($request->isPost()) {
268
 
269
            $dataPost = $request->getPost()->toArray();
270
            $form = new NotificationSettingForm();
271
            $form->setData($dataPost);
272
 
273
            if($form->isValid()) {
274
                $currentUserPlugin = $this->plugin('currentUserPlugin');
275
                $currentUser = $currentUserPlugin->getUser();
276
 
277
                $dataPost = (array) $form->getData();
278
                $hydrator = new ObjectPropertyHydrator();
279
 
280
                $userUserNotificationSettingMapper = UserNotificationSettingMapper::getInstance($this->adapter);
281
                $userUserNotificationSetting = $userUserNotificationSettingMapper->fetchOne($currentUser->id);
282
                $hydrator->hydrate($dataPost, $userUserNotificationSetting);
283
 
284
                if($userUserNotificationSettingMapper->update($userUserNotificationSetting)) {
285
                    $this->logger->info('Se guardo las preferencias de notificación', ['user_id' => $currentUser->id, 'ip' => Functions::getUserIP()]);
286
                    $data = [
287
                        'success'   => true,
288
                        'data'      => 'LABEL_NOTIFICATION_SETTINGS_UPDATE'
289
                    ];
290
                } else {
291
                    $data = [
292
                        'success'   => false,
293
                        'data'   => 'ERROR_UNKNOWN'
294
                    ];
295
                }
296
 
297
                return new JsonModel($data);
298
 
299
            } else {
300
                $messages = [];
301
 
302
 
303
 
304
                $form_messages = (array) $form->getMessages();
305
                foreach($form_messages  as $fieldname => $field_messages)
306
                {
307
 
308
                    $messages[$fieldname] = array_values($field_messages);
309
                }
310
 
311
                return new JsonModel([
312
                    'success'   => false,
313
                    'data'   => $messages
314
                ]);
315
            }
316
        }  else {
317
            $data = [
318
                'success' => false,
319
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
320
            ];
321
 
322
            return new JsonModel($data);
323
        }
324
 
325
        return new JsonModel($data);
326
 
327
    }
328
 
329
 
330
 
331
 
332
 
333
    public function passwordAction()
334
    {
335
        $request = $this->getRequest();
336
        if($request->isPost()) {
337
            $dataPost = $request->getPost()->toArray();
338
            $form = new ChangePasswordForm();
339
            $form->setData($dataPost);
340
 
341
            if($form->isValid()) {
342
                $data = (array) $form->getData();
343
                $password = $data['password'];
344
 
345
                $currentUserPlugin = $this->plugin('currentUserPlugin');
346
                $currentUser = $currentUserPlugin->getUser();
347
 
348
 
349
                $userPasswordMapper = UserPasswordMapper::getInstance($this->adapter);
350
                $userPasswords = $userPasswordMapper->fetchAllByUserId($currentUser->id);
351
 
352
                $oldPassword = false;
353
                foreach($userPasswords as $userPassword)
354
                {
355
                    if(password_verify($password, $userPassword->password) || (md5($password) == $userPassword->password))
356
                    {
357
                        $oldPassword = true;
358
                        break;
359
                    }
360
                }
361
 
362
                if($oldPassword) {
363
                    $this->logger->err('Cambio de contraseña del usuario - error contraseña ya utilizada anteriormente', ['user_id' =>  $currentUser->id, 'ip' => Functions::getUserIP()]);
364
 
365
                    return new JsonModel([
366
                        'success'   => false,
367
                        'data'      => 'ERROR_PASSWORD_HAS_ALREADY_BEEN_USED'
368
 
369
                    ]);
370
                } else {
371
                    $password_hash = password_hash($password, PASSWORD_DEFAULT);
372
 
373
                    $userMapper = UserMapper::getInstance($this->adapter);
374
                    $result = $userMapper->updatePassword($currentUser, $password_hash);
375
                    if($result) {
376
 
377
                        $userPassword = new UserPassword();
378
                        $userPassword->user_id = $currentUser->id;
379
                        $userPassword->password = $password_hash;
380
                        $userPasswordMapper->insert($userPassword);
381
 
382
                        $this->logger->info('Cambio de contraseña del usuario realizado', ['user_id' => $currentUser->id, 'ip' => Functions::getUserIP()]);
383
 
384
 
385
                        return new JsonModel([
386
                            'success'   => true,
387
                            'data'      => 'LABEL_YOUR_PASSWORD_HAS_BEEN_UPDATED'
388
 
389
                        ]);
390
                    } else {
391
                        $this->logger->err('Cambio de contraseña del usuario - error desconocido', ['user_id' => $currentUser->id, 'ip' => Functions::getUserIP()]);
392
 
393
                        return new JsonModel([
394
                            'success'   => true,
395
                            'data'      => 'ERROR_THERE_WAS_AN_ERROR'
396
 
397
                        ]);
398
                    }
399
                }
400
 
401
            } else {
402
                $messages = [];
403
 
404
                $form_messages = (array) $form->getMessages();
405
                foreach($form_messages  as $fieldname => $field_messages)
406
                {
407
                    $messages[$fieldname] = array_values($field_messages);
408
                }
409
 
410
                return new JsonModel([
411
                    'success'   => false,
412
                    'data'   => $messages
413
                ]);
414
            }
415
 
416
        }
417
 
418
 
419
 
420
        return new JsonModel([
421
            'success' => false,
422
            'data' => 'ERROR_METHOD_NOT_ALLOWED'
423
        ]);
424
    }
425
 
426
    public function imageAction()
427
    {
428
        $currentUserPlugin = $this->plugin('currentUserPlugin');
429
        $currentUser = $currentUserPlugin->getUser();
430
        $operation = $this->params()->fromRoute('operation');
431
 
432
 
433
 
434
 
435
        $request = $this->getRequest();
436
        if($request->isGet()) {
437
 
438
            $currentUserPlugin = $this->plugin('currentUserPlugin');
439
            $currentUser = $currentUserPlugin->getUser();
440
 
441
            $userMapper = UserMapper::getInstance($this->adapter);
442
 
443
            $target_path = $this->config['leaderslinked.fullpath.user'] . DIRECTORY_SEPARATOR . $currentUser->uuid;
444
 
445
            return new JsonModel([
446
                'success' => true,
447
                'data' => $this->url()->fromRoute('storage', ['code' => $currentUser->uuid, 'type' => 'user', 'filename' => $currentUser->image])
448
            ]);
449
 
450
 
451
        } else  if($request->isPost()) {
452
            $target_path = $this->config['leaderslinked.fullpath.user'] . DIRECTORY_SEPARATOR . $currentUser->uuid;
453
 
454
            $userMapper = UserMapper::getInstance($this->adapter);
455
 
456
            if($operation == 'delete') {
457
                $this->logger->info('Se borro el image  del usuario ', ['user_id' => $currentUser->id, 'ip' => Functions::getUserIP()]);
458
 
459
                if($currentUser->image) {
460
                    if(!image ::delete($target_path, $currentUser->image)) {
461
                        return new JsonModel([
462
                            'success'   => false,
463
                            'data'   =>  'ERROR_THERE_WAS_AN_ERROR'
464
                        ]);
465
                    }
466
                }
467
 
468
                $currentUser->image = '';
469
                if(!$userMapper->update($currentUser)) {
470
                    return new JsonModel([
471
                        'success'   => false,
472
                        'data'   =>  'ERROR_THERE_WAS_AN_ERROR'
473
                    ]);
474
                }
475
 
476
 
477
 
478
            } else {
479
                $form = new ChangeImageForm($this->config);
480
                $data 	= array_merge($request->getPost()->toArray(), $request->getFiles()->toArray());
481
 
482
                $form->setData($data);
483
 
484
                if($form->isValid()) {
485
 
486
                    $files = $request->getFiles()->toArray();
487
                    if(!empty($files['image']['error'])) {
488
 
489
                        return new JsonModel([
490
                            'success'   => false,
491
                            'data'   =>  'ERROR_UPLOAD_FILE'
492
                        ]);
493
 
494
 
495
                    }
496
 
497
                    if($currentUser->image) {
498
                        if(!Image::delete($target_path, $currentUser->image)) {
499
                            return new JsonModel([
500
                                'success'   => false,
501
                                'data'   =>  'ERROR_THERE_WAS_AN_ERROR'
502
                            ]);
503
                        }
504
                    }
505
 
506
                    $target_filename    = 'user-' . uniqid() . '.png';
507
                    list( $target_width, $target_height ) = explode('x', $this->config['leaderslinked.image_sizes.user_size']);
508
                    $source             = $files['image']['tmp_name'];
509
                    $crop_to_dimensions = true;
510
                    if(!Image::uploadImage($source, $target_path, $target_filename, $target_width, $target_height, $crop_to_dimensions)) {
511
                        return new JsonModel([
512
                            'success'   => false,
513
                            'data'   =>  'ERROR_THERE_WAS_AN_ERROR'
514
                        ]);
515
                    }
516
 
517
 
518
                    $currentUser->image = $target_filename;
519
                    if(!$userMapper->updateImage($currentUser)) {
520
 
521
                        return new JsonModel([
522
                            'success'   => false,
523
                            'data'   =>  'ERROR_THERE_WAS_AN_ERROR'
524
                        ]);
525
                    } else {
3163 efrain 526
 
527
 
528
 
1 www 529
                        $userProfileMapper = UserProfileMapper::getInstance($this->adapter);
530
                        $userProfile = $userProfileMapper->fetchOnePublicByUserId($currentUser->id);
3163 efrain 531
 
532
                        if($userProfile) {
1 www 533
                            $userProfile->image = $currentUser->image;
534
                            $userProfileMapper->updateImage($userProfile);
535
                        }
3163 efrain 536
 
1 www 537
                    }
538
 
539
 
540
 
541
                    $this->logger->info('Se actualizo el image del usuario', ['user_id' => $currentUser->id, 'ip' => Functions::getUserIP()]);
542
 
543
                } else {
544
                    $messages = [];
545
                    $form_messages = (array) $form->getMessages();
546
                    foreach($form_messages  as $fieldname => $field_messages)
547
                    {
548
                        $messages[$fieldname] = array_values($field_messages);
549
                    }
550
 
551
                    return new JsonModel([
552
                        'success'   => false,
553
                        'data'   => $messages
554
                    ]);
555
                }
556
            }
557
            return new JsonModel([
558
                'success'   => true,
559
                'data' => $this->url()->fromRoute('storage', ['type' => 'user', 'code' => $currentUser->uuid, 'filename' => $currentUser->image])
560
 
561
            ]);
562
        }
563
 
564
 
565
        $data = [
566
            'success' => false,
567
            'data' => 'ERROR_METHOD_NOT_ALLOWED'
568
        ];
569
 
570
 
571
        return new JsonModel($data);
572
    }
573
 
4113 efrain 574
 
575
 
1 www 576
    /**
577
     * Actualización de la ubucación
578
     * @return \Laminas\View\Model\JsonModel
579
     */
580
    public function locationAction()
581
    {
582
        $currentUserPlugin = $this->plugin('currentUserPlugin');
583
        $currentUser = $currentUserPlugin->getUser();
584
 
585
        $request = $this->getRequest();
586
        if($request->isGet()) {
587
            $hydrator = new ObjectPropertyHydrator();
588
 
589
            $currentUserPlugin = $this->plugin('currentUserPlugin');
590
            $currentUser = $currentUserPlugin->getUser();
591
 
592
            $locationMapper = LocationMapper::getInstance($this->adapter);
593
            $location = $locationMapper->fetchOne($currentUser->location_id);
594
 
595
 
596
            $data = [
597
                'formatted_address' => $location ? $location->formatted_address : '',
598
                'address1' => $location ? $location->address1 : '',
599
                'address2' => $location ? $location->address2 : '',
600
                'country' => $location ? $location->country : '',
601
                'state' => $location ? $location->state : '',
602
                'city1' => $location ? $location->city1 : '',
603
                'city2' => $location ? $location->city2 : '',
604
                'postal_code' => $location ? $location->postal_code : '',
605
                'latitude' => $location ? $location->latitude : '',
606
                'longitude' => $location ? $location->longitude : '',
607
            ];
608
 
609
            return new JsonModel([
610
                'success' => true,
611
                'data' => $data
612
            ]);
613
 
614
 
615
        } else  if($request->isPost()) {
616
 
617
            $form = new LocationForm();
618
            $dataPost = $request->getPost()->toArray();
619
 
620
            $form->setData($dataPost);
621
 
622
            if($form->isValid()) {
623
 
624
 
625
                $dataPost = (array) $form->getData();
626
 
627
                $location = new Location();
628
                $hydrator = new ObjectPropertyHydrator();
629
                $hydrator->hydrate($dataPost, $location);
630
 
631
                $location->id = $currentUser->location_id;
632
 
633
                $locationMapper = LocationMapper::getInstance($this->adapter);
634
                if($currentUser->location_id) {
635
                    $result = $locationMapper->update($location);
636
                } else {
637
                    $result = $locationMapper->insert($location);
638
 
639
                    if($result) {
640
                        $currentUser->location_id = $location->id;
641
 
642
 
643
                        $userMapper = UserMapper::getInstance($this->adapter);
644
                        $userMapper->updateLocation($currentUser);
645
                    }
646
                }
647
 
648
                if($result) {
649
                    $userProfileMapper = UserProfileMapper::getInstance($this->adapter);
650
                    $userProfile = $userProfileMapper->fetchOnePublicByUserId($currentUser->id);
651
                    if($userProfile) {
652
                        $userProfile->location_id = $location->id;
653
                        $userProfileMapper->updateLocation($userProfile);
654
                    }
655
                }
656
 
657
                if($result) {
658
                    $this->logger->info('Se actualizo la ubicación del usuario ', ['user_id' => $currentUser->id, 'ip' => Functions::getUserIP()]);
659
 
660
                    $response = [
661
                        'success'   => true,
662
                        'data' => [
663
                            'formatted_address' => $location->formatted_address,
664
                            'message' =>  'LABEL_LOCATION_UPDATED' ,
665
 
666
                        ]
667
                    ];
668
                } else {
669
                    $response = [
670
                        'success'   => false,
671
                        'data' => 'ERROR_THERE_WAS_AN_ERROR'
672
                    ];
673
                }
674
 
675
 
676
 
677
                return new JsonModel($response);
678
 
679
            } else {
680
                return new JsonModel([
681
                    'success'   => false,
682
                    'data'   =>   'ERROR_PLACED_AUTOCOMPLETE_DOES_NOT_CONTAIN_GEOMETRY'
683
                ]);
684
            }
685
        }
686
 
687
 
688
        $data = [
689
            'success' => false,
690
            'data' => 'ERROR_METHOD_NOT_ALLOWED'
691
        ];
692
 
693
 
694
        return new JsonModel($data);
695
    }
696
 
697
    public function privacyAction()
698
    {
699
        $request = $this->getRequest();
700
 
701
        if($request->isGet()) {
702
 
703
            $currentUserPlugin = $this->plugin('currentUserPlugin');
704
            $currentUser = $currentUserPlugin->getUser();
705
 
706
            $userMapper = UserMapper::getInstance($this->adapter);
707
            $user = $userMapper->fetchOne($currentUser->id);
708
 
709
            return new JsonModel([
710
                'success' => true,
711
                'data' => [
712
                    'show_in_search' => $user->show_in_search ? 1  : 0
713
                ]
714
            ]);
715
 
716
 
717
        } else if($request->isPost()) {
718
 
719
            $dataPost = $request->getPost()->toArray();
720
            $form = new PrivacySettingForm();
721
            $form->setData($dataPost);
722
 
723
            if($form->isValid()) {
724
                $currentUserPlugin = $this->plugin('currentUserPlugin');
725
                $currentUser = $currentUserPlugin->getUser();
726
 
727
                $dataPost = (array) $form->getData();
728
                $hydrator = new ObjectPropertyHydrator();
729
 
730
 
731
                $userMapper = UserMapper::getInstance($this->adapter);
732
                $hydrator->hydrate($dataPost, $currentUser);
733
 
734
                if($userMapper->updatePrivacy($currentUser)) {
735
                    $this->logger->info('Se guardo las preferencias de privacidad', ['user_id' => $currentUser->id, 'ip' => Functions::getUserIP()]);
736
                    $data = [
737
                        'success'   => true,
738
                        'data'      => 'LABEL_PRIVACY_UPDATE'
739
                    ];
740
                } else {
741
                    $data = [
742
                        'success'   => false,
743
                        'data'   => 'ERROR_UNKNOWN'
744
                    ];
745
                }
746
 
747
                return new JsonModel($data);
748
 
749
            } else {
750
                $messages = [];
751
 
752
 
753
 
754
                $form_messages = (array) $form->getMessages();
755
                foreach($form_messages  as $fieldname => $field_messages)
756
                {
757
 
758
                    $messages[$fieldname] = array_values($field_messages);
759
                }
760
 
761
                return new JsonModel([
762
                    'success'   => false,
763
                    'data'   => $messages
764
                ]);
765
            }
766
        }  else {
767
            $data = [
768
                'success' => false,
769
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
770
            ];
771
 
772
            return new JsonModel($data);
773
        }
774
 
775
        return new JsonModel($data);
776
 
777
    }
778
 
779
    public function basicAction()
780
    {
781
        $request = $this->getRequest();
782
 
783
        if($request->isGet()) {
784
            $currentUserPlugin = $this->plugin('currentUserPlugin');
785
            $currentUser = $currentUserPlugin->getUser();
786
 
787
            $userMapper = UserMapper::getInstance($this->adapter);
788
            $user = $userMapper->fetchOne($currentUser->id);
789
 
790
            return new JsonModel([
791
                'success' => true,
792
                'data' => [
793
                    'first_name' => $user->first_name,
794
                    'last_name' => $user->last_name,
795
                    'gender' => $user->gender ? $user->gender : '',
796
                    'phone' => $user->phone ? $user->phone : '',
797
                    'email' => $user->email,
4401 efrain 798
                    'is_adult' => $user->is_adult,
4113 efrain 799
                    'timezone' => $user->timezone,
1 www 800
                ]
801
            ]);
802
 
803
 
804
        } else if($request->isPost()) {
805
 
806
            $dataPost = $request->getPost()->toArray();
4415 efrain 807
 
4398 efrain 808
 
809
            if(empty($dataPost['is_adult'])) {
810
                $dataPost['is_adult'] = User::IS_ADULT_NO;
811
            } else {
812
                $dataPost['is_adult'] = $dataPost['is_adult'] == User::IS_ADULT_YES ? User::IS_ADULT_YES : User::IS_ADULT_NO;
813
            }
4415 efrain 814
 
4398 efrain 815
 
816
 
1 www 817
            $form = new  BasicForm();
818
            $form->setData($dataPost);
819
 
820
            if($form->isValid()) {
821
                $currentUserPlugin = $this->plugin('currentUserPlugin');
822
                $currentUser = $currentUserPlugin->getUser();
823
 
824
                $dataPost = (array) $form->getData();
825
                $hydrator = new ObjectPropertyHydrator();
826
 
827
 
828
                $userMapper = UserMapper::getInstance($this->adapter);
4409 efrain 829
                $user = $userMapper->fetchOne($currentUser->id);
1 www 830
 
4409 efrain 831
                $hydrator->hydrate($dataPost, $user);
832
 
4415 efrain 833
 
4409 efrain 834
 
835
                if($userMapper->updateBasic($user)) {
1 www 836
                    $this->logger->info('Se guardaron los datos básicos ', ['user_id' => $currentUser->id, 'ip' => Functions::getUserIP()]);
837
                    $data = [
838
                        'success'   => true,
839
                        'data'      => 'LABEL_BASIC_UPDATE'
840
                    ];
841
                } else {
842
                    $data = [
843
                        'success'   => false,
844
                        'data'   => 'ERROR_UNKNOWN'
845
                    ];
846
                }
847
 
848
                return new JsonModel($data);
849
 
850
            } else {
851
                $messages = [];
852
 
853
 
854
 
855
                $form_messages = (array) $form->getMessages();
856
                foreach($form_messages  as $fieldname => $field_messages)
857
                {
858
 
859
                    $messages[$fieldname] = array_values($field_messages);
860
                }
861
 
862
                return new JsonModel([
863
                    'success'   => false,
864
                    'data'   => $messages
865
                ]);
866
            }
867
        }  else {
868
            $data = [
869
                'success' => false,
870
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
871
            ];
872
 
873
            return new JsonModel($data);
874
        }
875
 
876
        return new JsonModel($data);
877
 
878
    }
879
 
880
    public function browsersAction()
881
    {
882
        $request = $this->getRequest();
883
        if($request->isGet()) {
884
 
885
            $currentUserPlugin = $this->plugin('currentUserPlugin');
886
            $currentUser = $currentUserPlugin->getUser();
887
 
888
            $search = '';
889
            $page               = intval($this->params()->fromQuery('start', 1), 10);
890
            $records_x_page     = intval($this->params()->fromQuery('length', 10), 10);
891
            $order_field        = 'updated_on';
892
            $order_direction = 'DESC';
893
 
894
 
895
 
896
            $userBrowserMapper = UserBrowserMapper::getInstance($this->adapter);
897
            $paginator = $userBrowserMapper->fetchAllDataTable($currentUser->id, $search, $page, $records_x_page, $order_field, $order_direction);
898
 
899
            $items = [];
900
            $records = $paginator->getCurrentItems();
901
            foreach($records as $record)
902
            {
903
                $item = [
904
                    'id' => $record->id,
905
                    'platform' => $record->platform,
906
                    'browser' => $record->browser,
907
                    'device_type' => $record->device_type,
908
                    'version' => $record->version,
909
                    'updated_on' => $record->updated_on,
910
                ];
911
 
912
                array_push($items, $item);
913
            }
914
 
915
            return new JsonModel([
916
                'success' => true,
917
                'data' => [
918
                    'items' => $items,
919
                    'total' => $paginator->getTotalItemCount(),
920
                ]
921
            ]);
922
 
923
        } else {
924
            return new JsonModel(['success' => false, 'data' => 'ERROR_METHOD_NOT_ALLOWED' ]);
925
        }
926
    }
927
    public function devicesAction()
928
    {
929
        $request = $this->getRequest();
930
        if($request->isGet()) {
931
 
932
            $currentUserPlugin = $this->plugin('currentUserPlugin');
933
            $currentUser = $currentUserPlugin->getUser();
934
 
935
            $page               = intval($this->params()->fromPost('start', 1), 10);
936
            $records_x_page     = intval($this->params()->fromPost('length', 10), 10);
937
 
938
 
939
            /*
940
             select d.platform, d.brand, d.manufacturer, d.model, d.version,
941
             dh.ip, dh.updated_on  from tbl_device_history as dh
942
             inner join tbl_devices as d on d.id  = dh.device_id
943
             where dh.user_id = 4 order by dh.updated_on  desc
944
             */
945
 
946
            $queryMapper = QueryMapper::getInstance($this->adapter);
947
            $select = $queryMapper->getSql()->select();
948
            $select->columns(['ip', 'updated_on']);
949
            $select->from(['dh' => DeviceHistoryMapper::_TABLE]);
950
            $select->join(['d' => DeviceMapper::_TABLE], 'd.id  = dh.device_id', ['id', 'platform','brand','manufacturer','model','version']);
951
            $select->where->equalTo('dh.user_id', $currentUser->id);
952
            $select->order('updated_on desc ');
953
 
954
 
955
 
956
            $hydrator   = new ArraySerializableHydrator();
957
            $resultset  = new HydratingResultSet($hydrator);
958
 
959
            $adapter = new DbSelect($select, $queryMapper->getSql(), $resultset);
960
            $paginator = new Paginator($adapter);
961
            $paginator->setItemCountPerPage($records_x_page);
962
            $paginator->setCurrentPageNumber($page);
963
 
964
            $items = [];
965
            $records = $paginator->getCurrentItems();
966
            foreach($records as $record)
967
            {
968
                $item = [
969
                    'id' => $record['id'],
970
                    'platform' => $record['platform'],
971
                    'brand' => $record['brand'],
972
                    'manufacturer' => $record['manufacturer'],
973
                    'version' => $record['version'],
974
                    'model' => $record['model'],
975
                    'version' => $record['version'],
976
                    'ip' => $record['ip'],
977
                    'updated_on' => $record['updated_on'],
978
                ];
979
 
980
                array_push($items, $item);
981
            }
982
 
983
            return new JsonModel([
984
                'success' => true,
985
                'data' => [
986
                    'items' => $items,
987
                    'total' => $paginator->getTotalItemCount(),
988
                ]
989
            ]);
990
 
991
        } else {
992
            return new JsonModel(['success' => false, 'data' => 'ERROR_METHOD_NOT_ALLOWED' ]);
993
        }
994
    }
995
 
996
 
997
    public function ipsAction()
998
    {
999
        $request = $this->getRequest();
1000
        if($request->isGet()) {
1001
 
1002
            $currentUserPlugin = $this->plugin('currentUserPlugin');
1003
            $currentUser = $currentUserPlugin->getUser();
1004
 
1005
            $search = '';
1006
            $page               = intval($this->params()->fromPost('start', 1), 10);
1007
            $records_x_page     = intval($this->params()->fromPost('length', 10), 10);
1008
            $order_field        = 'updated_on';
1009
            $order_direction = 'DESC';
1010
 
1011
 
1012
 
1013
            $userBrowserMapper = UserIpMapper::getInstance($this->adapter);
1014
            $paginator = $userBrowserMapper->fetchAllDataTable($currentUser->id, $search, $page, $records_x_page, $order_field, $order_direction);
1015
 
1016
            $items = [];
1017
            $records = $paginator->getCurrentItems();
1018
            foreach($records as $record)
1019
            {
1020
                $item = [
1021
                    'id' => $record->id,
1022
                    'ip' => $record->ip,
1023
                    'country_name' => $record->country_name,
1024
                    'state_name' => $record->state_name,
1025
                    'city' => $record->city,
1026
                    'postal_code' => $record->postal_code,
1027
                    'updated_on' => $record->updated_on,
1028
                ];
1029
 
1030
                array_push($items, $item);
1031
            }
1032
 
1033
            return new JsonModel([
1034
                'success' => true,
1035
                'data' => [
1036
                    'items' => $items,
1037
                    'total' => $paginator->getTotalItemCount(),
1038
                ]
1039
            ]);
1040
 
1041
        } else {
1042
            return new JsonModel(['success' => false, 'data' => 'ERROR_METHOD_NOT_ALLOWED' ]);
1043
        }
1044
    }
1045
 
1046
    public function transactionsAction()
1047
    {
1048
        $request = $this->getRequest();
1049
        if($request->isGet()) {
1050
 
1051
            $currentUserPlugin = $this->plugin('currentUserPlugin');
1052
            $currentUser = $currentUserPlugin->getUser();
1053
 
1054
            $search = '';
1055
            $page               = intval($this->params()->fromPost('start', 1), 10);
1056
            $records_x_page     = intval($this->params()->fromPost('length', 10), 10);
1057
            $order_field        = 'updated_on';
1058
            $order_direction = 'DESC';
1059
 
1060
            $status = [
1061
                Transaction::STATUS_CANCELLED => 'LABEL_CANCELLED',
1062
                Transaction::STATUS_PENDING => 'LABEL_PENDING',
1063
                Transaction::STATUS_PROCESSING => 'LABEL_PROCESSING',
1064
                Transaction::STATUS_REJECTED => 'LABEL_REJECTED',
1065
                Transaction::STATUS_COMPLETED => 'LABEL_COMPLETED',
1066
                Transaction::STATUS_CANCELLED => 'LABEL_CANCELLED',
1067
            ];
1068
 
1069
            $types = [
1070
                Transaction::TYPE_COUPON => 'LABEL_COUPON',
1071
                Transaction::TYPE_PAYMENT => 'LABEL_PAYMENT',
1072
                Transaction::TYPE_REVERSE => 'LABEL_REVERSE',
1073
                Transaction::TYPE_TRANSFER => 'LABEL_TRANSFER',
1074
            ];
1075
 
1076
            $providers = [
1077
                Provider::PAYPAL => 'LABEL_PAYPAL',
1078
            ];
1079
 
1080
            $transactionMapper = TransactionMapper::getInstance($this->adapter);
1081
            $paginator = $transactionMapper->fetchAllDataTable($currentUser->id, $search, $page, $records_x_page, $order_field, $order_direction);
1082
 
1083
            $items = [];
1084
            $records = $paginator->getCurrentItems();
1085
            foreach($records as $record)
1086
            {
1087
                $item = [
1088
                    'id' => $record->id,
1089
                    'description' => $record->description,
1090
                    'provider' => $providers[$record->provider],
1091
                    'type' => $types[$record->type],
1092
                    'status' => $status[$record->status],
1093
                    'previous' => $record->previous,
1094
                    'amount' => $record->amount,
1095
                    'current' => $record->current,
1096
                    'updated_on' => $record->updated_on,
1097
                ];
1098
 
1099
                array_push($items, $item);
1100
            }
1101
 
1102
            return new JsonModel([
1103
                'success' => true,
1104
                'data' => [
1105
                    'items' => $items,
1106
                    'total' => $paginator->getTotalItemCount(),
1107
                ]
1108
            ]);
1109
 
1110
        } else {
1111
            return new JsonModel(['success' => false, 'data' => 'ERROR_METHOD_NOT_ALLOWED' ]);
1112
        }
1113
    }
1114
 
1115
 
1116
 
1117
    public function addFundAction()
1118
    {
6749 efrain 1119
        /*
1 www 1120
        $request = $this->request;
1121
        if($request->isPost()) {
1122
 
1123
            $form = new FundsAddForm();
1124
            $form->setData($request->getPost()->toArray());
1125
            if($form->isValid()) {
1126
 
1127
                $currentUserPlugin = $this->plugin('currentUserPlugin');
1128
                $currentUser = $currentUserPlugin->getUser();
1129
 
1130
 
1131
 
1132
 
1133
                $dataPost = (array) $form->getData();
1134
 
1135
                $description    = $dataPost['description'];
1136
                $amount         = $dataPost['amount'];
1137
 
1138
 
1139
 
1140
                $sandbox = $this->config['leaderslinked.runmode.sandbox_paypal'];
1141
                if($sandbox) {
1142
                    //$account_id     = $this->config['leaderslinked.paypal.sandbox_account_id'];
1143
                    $client_id      = $this->config['leaderslinked.paypal.sandobx_client_id'];
1144
                    $client_secret  = $this->config['leaderslinked.paypal.sandbox_client_secret'];
1145
 
1146
 
1147
                    $environment = new SandboxEnvironment($client_id, $client_secret);
1148
 
1149
                } else {
1150
                    // $account_id     = $this->config['leaderslinked.paypal.production_account_id'];
1151
                    $client_id      = $this->config['leaderslinked.paypal.production_client_id'];
1152
                    $client_secret  = $this->config['leaderslinked.paypal.production_client_secret'];
1153
 
1154
                    $environment = new ProductionEnvironment($client_id, $client_secret);
1155
                }
1156
 
1157
                $internal_id = uniqid(Provider::PAYPAL, true);
1158
                $client = new PayPalHttpClient($environment);
1159
                $request = new OrdersCreateRequest;
1160
 
1161
 
1162
                //$request->prefer('return=representation');
1163
                $request->body = [
1164
                    'intent' => 'CAPTURE',
1165
                    'purchase_units' => [[
1166
                        'reference_id' => $internal_id,
1167
                        'description' => $description,
1168
                        'amount' => [
1169
                            'value' => number_format($amount, 2),
1170
                            'currency_code' => 'USD'
1171
                        ]
1172
                    ]],
1173
                    'application_context' => [
1174
                        'brand_name' => 'Leaders Linked',
1175
                        'locale' => 'es-UY',
1176
                        'cancel_url' => $this->url()->fromRoute('paypal/cancel', [] , ['force_canonical' => true]),
1177
                        'return_url' => $this->url()->fromRoute('paypal/success', [] , ['force_canonical' => true]),
1178
                    ]
1179
                ];
1180
 
1181
                try {
1182
                    // Call API with your client and get a response for your call
1183
                    $response = $client->execute($request);
1184
 
1185
 
1186
                    $external_id = $response->result->id;
1187
                    $approve_url = '';
1188
                    if($response->result->status == 'CREATED') {
1189
 
1190
                        $response->result->id;
1191
                        foreach($response->result->links as $link)
1192
                        {
1193
                            if($link->rel == 'approve') {
1194
                                $approve_url = $link->href;
1195
                            }
1196
                            //print "\t{$link->rel}: {$link->href}\tCall Type: {$link->method}\n";
1197
                        }
1198
 
1199
 
1200
                    }
1201
 
1202
 
1203
                    //echo json_encode($resp, JSON_PRETTY_PRINT), "\n";
1204
 
1205
 
1206
 
1207
 
1208
 
1209
                    // To toggle printing the whole response body comment/uncomment below line
1210
                    // echo json_encode($resp->result, JSON_PRETTY_PRINT), "\n";
1211
                    if($external_id && $approve_url) {
1212
 
1213
                        $transaction = new Transaction();
1214
                        $transaction->internal_id = $internal_id;
1215
                        $transaction->external_id = $external_id;
1216
                        $transaction->provider = Provider::PAYPAL;
1217
                        $transaction->user_id = $currentUser->id;
1218
                        $transaction->previous = 0;
1219
                        $transaction->amount = $amount;
1220
                        $transaction->current = 0;
1221
                        $transaction->status = Transaction::STATUS_PENDING;
1222
                        $transaction->type = Transaction::TYPE_PAYMENT;
1223
                        $transaction->description = $description;
1224
                        $transaction->request = json_encode($response, JSON_PRETTY_PRINT);
1225
 
1226
                        $requestId = Provider::PAYPAL . '-' . $external_id;
1227
 
6749 efrain 1228
                        $this->cache->add($requestId, serialize($transaction));
1 www 1229
 
1230
 
1231
 
1232
 
1233
                        return new JsonModel(['success' => true, 'data' => $approve_url]);
1234
                    } else {
1235
                        return new JsonModel(['success' => false, 'data' => 'ERROR_TRANSACTION_NOT_SAVED']);
1236
                    }
1237
 
1238
 
1239
 
1240
                } catch (HttpException $ex) {
1241
 
1242
 
1243
                    return new JsonModel(['success' => false, 'data' => $ex->getMessage()]);
1244
                }
1245
 
1246
            } else {
1247
 
1248
                $message = '';;
1249
                $form_messages = (array) $form->getMessages();
1250
                foreach($form_messages  as $fieldname => $field_messages)
1251
                {
1252
                    foreach( $field_messages as $key => $value)
1253
                    {
1254
                        $message = $value;
1255
                    }
1256
                }
1257
 
1258
                $response = [
1259
                    'success'   => false,
1260
                    'data'   => $message
1261
                ];
1262
 
1263
                return new JsonModel($response);
1264
 
1265
            }
1266
 
1267
        } else {
1268
            return new JsonModel(['success' => false, 'data' => 'ERROR_METHOD_NOT_ALLOWED' ]);
6749 efrain 1269
        }*/
1 www 1270
    }
1271
 
1272
    public function removeFacebookAction()
1273
    {
1274
        $request = $this->getRequest();
1275
        if($request->isPost()) {
1276
 
1277
            $currentUserPlugin = $this->plugin('currentUserPlugin');
1278
            $currentUser = $currentUserPlugin->getUser();
1279
 
1280
 
1281
            $userProviderMapper = UserProviderMapper::getInstance($this->adapter);
1282
            $userProvider = $userProviderMapper->fetchOneByUserIdAndProvider($currentUser->id, UserProvider::PROVIDER_FACEBOOK);
1283
 
1284
            if($userProvider) {
1285
 
1286
                if($userProviderMapper->deleteByUserIdAndProvider($currentUser->id, UserProvider::PROVIDER_FACEBOOK)) {
1287
                    return new JsonModel([
1288
                        'success' => true,
1289
                        'data' => 'LABEL_USER_PROVIDER_FACEBOOK_REMOVED'
1290
                    ]);
1291
 
1292
                } else {
1293
                    return new JsonModel([
1294
                        'success' => false,
1295
                        'data' => $userProviderMapper->getError()
1296
                    ]);
1297
                }
1298
 
1299
 
1300
            } else {
1301
                return new JsonModel([
1302
                    'success' => false,
1303
                    'data' => 'ERROR_USER_PROVIDER_FACEBOOK_NOT_FOUND'
1304
                ]);
1305
            }
1306
 
1307
 
1308
        } else {
1309
            return new JsonModel([
1310
                'success' => false,
1311
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
1312
            ]);
1313
        }
1314
    }
1315
 
1316
    public function addFacebookAction()
1317
    {
6749 efrain 1318
        /*
1 www 1319
        $request = $this->getRequest();
1320
        if($request->isGet()) {
1321
 
1322
            try {
1323
                $app_id = $this->config['leaderslinked.facebook.app_id'];
1324
                $app_password = $this->config['leaderslinked.facebook.app_password'];
1325
                $app_graph_version = $this->config['leaderslinked.facebook.app_graph_version'];
1326
                //$app_url_auth = $this->config['leaderslinked.facebook.app_url_auth'];
1327
                //$redirect_url = $this->config['leaderslinked.facebook.app_redirect_url'];
1328
 
1329
 
1330
 
1331
                $fb = new \Facebook\Facebook([
1332
                    'app_id' => $app_id,
1333
                    'app_secret' => $app_password,
1334
                    'default_graph_version' => $app_graph_version,
1335
                ]);
1336
 
1337
                $app_url_auth =  $this->url()->fromRoute('oauth/facebook', [], ['force_canonical' => true]);
1338
                $helper = $fb->getRedirectLoginHelper();
1339
                $permissions = ['email', 'public_profile']; // Optional permissions
1340
                $facebookUrl = $helper->getLoginUrl($app_url_auth, $permissions);
1341
 
1342
                return new JsonModel([
1343
                    'success' => true,
1344
                    'data' => $facebookUrl
1345
                ]);
1346
            } catch (\Throwable $e) {
1347
                return new JsonModel([
1348
                    'success' => false,
1349
                    'data' =>  'ERROR_WE_COULD_NOT_CONNECT_TO_FACEBOOK'
1350
                ]);
1351
            }
1352
 
1353
        } else {
1354
            return new JsonModel([
1355
                'success' => false,
1356
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
1357
            ]);
6749 efrain 1358
        }*/
1 www 1359
    }
1360
 
1361
    public function removeTwitterAction()
1362
    {
1363
        $request = $this->getRequest();
1364
        if($request->isPost()) {
1365
 
1366
            $currentUserPlugin = $this->plugin('currentUserPlugin');
1367
            $currentUser = $currentUserPlugin->getUser();
1368
 
1369
 
1370
            $userProviderMapper = UserProviderMapper::getInstance($this->adapter);
1371
            $userProvider = $userProviderMapper->fetchOneByUserIdAndProvider($currentUser->id, UserProvider::PROVIDER_TWITTER);
1372
 
1373
            if($userProvider) {
1374
 
1375
                if($userProviderMapper->deleteByUserIdAndProvider($currentUser->id, UserProvider::PROVIDER_TWITTER)) {
1376
                    return new JsonModel([
1377
                        'success' => true,
1378
                        'data' => 'LABEL_USER_PROVIDER_TWITTER_REMOVED'
1379
                    ]);
1380
 
1381
                } else {
1382
                    return new JsonModel([
1383
                        'success' => false,
1384
                        'data' => $userProviderMapper->getError()
1385
                    ]);
1386
                }
1387
 
1388
 
1389
            } else {
1390
                return new JsonModel([
1391
                    'success' => false,
1392
                    'data' => 'ERROR_USER_PROVIDER_TWITTER_NOT_FOUND'
1393
                ]);
1394
            }
1395
 
1396
 
1397
        } else {
1398
            return new JsonModel([
1399
                'success' => false,
1400
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
1401
            ]);
1402
        }
1403
    }
1404
 
1405
    public function addTwitterAction()
1406
    {
6749 efrain 1407
 
1 www 1408
        $request = $this->getRequest();
1409
        if($request->isGet()) {
1410
 
1411
            try {
1412
                if($this->config['leaderslinked.runmode.sandbox']) {
1413
 
1414
                    $twitter_api_key = $this->config['leaderslinked.twitter.sandbox_api_key'];
1415
                    $twitter_api_secret = $this->config['leaderslinked.twitter.sandbox_api_secret'];
1416
 
1417
                } else {
1418
                    $twitter_api_key = $this->config['leaderslinked.twitter.production_api_key'];
1419
                    $twitter_api_secret = $this->config['leaderslinked.twitter.production_api_secret'];
1420
                }
1421
 
6749 efrain 1422
 
1 www 1423
 
1424
                //Twitter
1425
                //$redirect_url =  $this->url()->fromRoute('oauth/twitter', [], ['force_canonical' => true]);
1426
                $redirect_url = $this->config['leaderslinked.twitter.app_redirect_url'];
1427
                $twitter = new \Abraham\TwitterOAuth\TwitterOAuth($twitter_api_key, $twitter_api_secret);
1428
                $request_token =  $twitter->oauth('oauth/request_token', ['oauth_callback' => $redirect_url ]);
1429
                $twitterUrl = $twitter->url('oauth/authorize', [ 'oauth_token' => $request_token['oauth_token'] ]);
1430
 
1431
                $twitterSession = new \Laminas\Session\Container('twitter');
1432
                $twitterSession->oauth_token = $request_token['oauth_token'];
1433
                $twitterSession->oauth_token_secret = $request_token['oauth_token_secret'];
1434
 
1435
                return new JsonModel([
1436
                    'success' => true,
1437
                    'data' =>  $twitterUrl
1438
                ]);
1439
            } catch (\Throwable $e) {
1440
                return new JsonModel([
1441
                    'success' => false,
1442
                    'data' =>  'ERROR_WE_COULD_NOT_CONNECT_TO_TWITTER'
1443
                ]);
1444
            }
1445
 
1446
        } else {
1447
            return new JsonModel([
1448
                'success' => false,
1449
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
1450
            ]);
1451
        }
1452
 
1453
 
1454
    }
1455
 
1456
    public function removeGoogleAction()
1457
    {
1458
        $request = $this->getRequest();
1459
        if($request->isPost()) {
1460
 
1461
            $currentUserPlugin = $this->plugin('currentUserPlugin');
1462
            $currentUser = $currentUserPlugin->getUser();
1463
 
1464
 
1465
            $userProviderMapper = UserProviderMapper::getInstance($this->adapter);
1466
            $userProvider = $userProviderMapper->fetchOneByUserIdAndProvider($currentUser->id, UserProvider::PROVIDER_GOOGLE);
1467
 
1468
            if($userProvider) {
1469
 
1470
                if($userProviderMapper->deleteByUserIdAndProvider($currentUser->id, UserProvider::PROVIDER_GOOGLE)) {
1471
                    return new JsonModel([
1472
                        'success' => true,
1473
                        'data' => 'LABEL_USER_PROVIDER_GOOGLE_REMOVED'
1474
                    ]);
1475
 
1476
                } else {
1477
                    return new JsonModel([
1478
                        'success' => false,
1479
                        'data' => $userProviderMapper->getError()
1480
                    ]);
1481
                }
1482
 
1483
 
1484
            } else {
1485
                return new JsonModel([
1486
                    'success' => false,
1487
                    'data' => 'ERROR_USER_PROVIDER_GOOGLE_NOT_FOUND'
1488
                ]);
1489
            }
1490
 
1491
 
1492
        } else {
1493
            return new JsonModel([
1494
                'success' => false,
1495
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
1496
            ]);
1497
        }
1498
    }
1499
 
1500
    public function addGoogleAction()
1501
    {
1502
        $request = $this->getRequest();
1503
        if($request->isGet()) {
1504
 
1505
            try {
1506
 
1507
 
1508
                //Google
1509
                $google = new \Google_Client();
1510
                $google->setAuthConfig('data/google/auth-leaderslinked/apps.google.com_secreto_cliente.json');
1511
                $google->setAccessType("offline");        // offline access
1512
 
1513
                $google->setIncludeGrantedScopes(true);   // incremental auth
1514
 
1515
                $google->addScope('profile');
1516
                $google->addScope('email');
1517
 
1518
                // $redirect_url =  $this->url()->fromRoute('oauth/google', [], ['force_canonical' => true]);
1519
                $redirect_url = $this->config['leaderslinked.google_auth.app_redirect_url'];
1520
 
1521
                $google->setRedirectUri($redirect_url);
1522
                $googleUrl = $google->createAuthUrl();
1523
 
1524
                return new JsonModel([
1525
                    'success' => true,
1526
                    'data' =>  $googleUrl
1527
                ]);
1528
            } catch (\Throwable $e) {
1529
                return new JsonModel([
1530
                    'success' => false,
1531
                    'data' =>  'ERROR_WE_COULD_NOT_CONNECT_TO_GOOGLE'
1532
                ]);
1533
            }
1534
 
1535
        } else {
1536
            return new JsonModel([
1537
                'success' => false,
1538
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
1539
            ]);
1540
        }
1541
    }
1979 efrain 1542
 
1543
    public function deleteAccountAction()
1544
    {
1545
 
1546
 
1547
        $currentUserPlugin = $this->plugin('currentUserPlugin');
1548
        $user = $currentUserPlugin->getUser();
1549
 
1550
 
1551
 
1552
        $request = $this->getRequest();
1553
 
1554
        if($request->isGet()) {
1555
 
1556
            $this->sendEmailDeleteAccountKey($user);
1557
 
1558
 
1559
            return new JsonModel([
1560
                'success' => true,
1561
                'data' => [
1562
                    'message' => 'LABEL_DELETE_ACCOUNT_WE_HAVE_SENT_A_CONFIRMATION_CODE'
1563
                ]
1564
            ]);
1565
 
1566
        } else  if($request->isPost()) {
1567
 
1568
            $code = $this->params()->fromPost('code');
2013 efrain 1569
            if(empty($code) || $code != $user->delete_account_key) {
1979 efrain 1570
 
1571
                $this->sendEmailDeleteAccountKey($user);
1572
 
1573
                return new JsonModel([
1574
                    'success' => false,
1575
                    'data' => [
1576
                        'message' => 'ERROR_DELETE_ACCOUNT_CONFIRMATION_CODE_IS_WRONG'
1577
                    ]
1578
                ]);
1579
            }
1580
 
1581
            $delete_account_generated_on = strtotime($user->delete_account_generated_on);
1582
            $expiry_time = $delete_account_generated_on + $this->config['leaderslinked.security.delete_account_expired'];
1583
 
1584
 
1585
            if (time() > $expiry_time) {
1586
 
1587
                $this->sendEmailDeleteAccountKey($user) ;
1588
 
1589
                return new JsonModel([
1590
                    'success' => false,
1591
                    'data' => [
1592
                        'message' => 'ERROR_DELETE_ACCOUNT_CONFIRMATION_CODE_EXPIRED'
1593
                    ]
1594
                ]);
1595
 
1596
 
1597
            }
1598
 
1599
            $userDeleted  = new UserDeleted();
1600
            $userDeleted->user_id = $user->id;
1601
            $userDeleted->first_name = $user->first_name;
1602
            $userDeleted->last_name = $user->last_name;
1603
            $userDeleted->email = $user->email;
1604
            $userDeleted->image = $user->image;
1605
            $userDeleted->phone = $user->phone;
1606
            $userDeleted->pending = UserDeleted::PENDING_YES;
1607
 
1608
 
1609
            $userDeletedMapper = UserDeletedMapper::getInstance($this->adapter);
1610
            if ($userDeletedMapper->insert($userDeleted)) {
1611
 
2019 efrain 1612
                $this->sendEmailDeleteAccountCompleted($user);
1613
 
1979 efrain 1614
                $user->first_name = 'LABEL_DELETE_ACCOUNT_FIRST_NAME';
1615
                $user->last_name = 'LABEL_DELETE_ACCOUNT_LAST_NAME';
1984 efrain 1616
                $user->email = 'user-deleted-' . uniqid() . '@leaderslinked.com';
1979 efrain 1617
                $user->image = '';
1618
                $user->usertype_id = UserType::USER_DELETED;
1619
                $user->status = User::STATUS_DELETED;
1620
                $user->delete_account_key = '';
1621
                $user->delete_account_generated_on = '';
1622
 
1623
                $userMapper = UserMapper::getInstance($this->adapter);
1624
                if($userMapper->update($user)) {
1625
 
1626
 
2019 efrain 1627
 
1979 efrain 1628
                    return new JsonModel([
1629
                        'success' => true,
1630
                        'data' => [
1631
                            'message' => 'LABEL_DELETE_ACCOUNT_WE_HAVE_STARTED_DELETING_YOUR_DATA',
1632
                            'redirect_url' => $this->url()->fromRoute('signout'),
1633
                        ]
1634
                    ]);
1635
 
1636
 
1637
                } else {
1638
                    return new JsonModel([
1639
                        'success' => false,
1640
                        'data' => [
1641
                            'message' => $userDeletedMapper->getError()
1642
                        ]
1643
                    ]);
1644
                }
1645
 
1646
 
1647
 
1648
            } else {
1649
                return new JsonModel([
1650
                    'success' => false,
1651
                    'data' => [
1652
                        'message' => $userDeletedMapper->getError()
1653
                    ]
1654
                ]);
1655
            }
1656
 
1657
 
1658
 
1659
 
1660
 
1661
        }
1662
 
1663
 
1664
            return new JsonModel([
1665
                'success' => false,
1666
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
1667
            ]);
1668
    }
1669
 
4398 efrain 1670
 
4113 efrain 1671
 
1672
 
1979 efrain 1673
    private function sendEmailDeleteAccountKey($user)
1674
    {
1675
        $delete_account_key = Functions::generatePassword(8);
1676
 
1677
        $userMapper = UserMapper::getInstance($this->adapter);
1678
        $userMapper->updateDeleteAccountKey($user->id, $delete_account_key);
1679
 
1680
        $emailTemplateMapper = EmailTemplateMapper::getInstance($this->adapter);
3712 efrain 1681
        $emailTemplate = $emailTemplateMapper->fetchOneByCodeAndNetworkId(EmailTemplate::CODE_DELETE_ACCOUNT_CODE, $user->network_id);
1979 efrain 1682
        if($emailTemplate) {
1683
            $arrayCont = [
1684
                'firstname' => $user->first_name,
1685
                'lastname'  => $user->last_name,
1686
                'code'      => $delete_account_key,
1687
                'link'      => ''
1688
            ];
1689
 
1690
            $email = new QueueEmail($this->adapter);
1691
            $email->processEmailTemplate($emailTemplate, $arrayCont, $user->email, trim($user->first_name . ' ' . $user->last_name));
1692
        }
1693
    }
1694
 
1695
 
1696
    private function sendEmailDeleteAccountCompleted($user)
1697
    {
1698
 
1699
        $emailTemplateMapper = EmailTemplateMapper::getInstance($this->adapter);
3712 efrain 1700
        $emailTemplate = $emailTemplateMapper->fetchOneByCodeAndNetworkId(EmailTemplate::CODE_DELETE_ACCOUNT_COMPLETED, $user->network_id);
1979 efrain 1701
        if($emailTemplate) {
1702
            $arrayCont = [
1703
                'firstname' => $user->first_name,
1704
                'lastname'  => $user->last_name,
1705
                'code'      => '',
1706
                'link'      => ''
1707
            ];
1708
 
1709
            $email = new QueueEmail($this->adapter);
1710
            $email->processEmailTemplate($emailTemplate, $arrayCont, $user->email, trim($user->first_name . ' ' . $user->last_name));
1711
        }
1712
    }
1 www 1713
 
1714
}