Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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