Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 1 | Rev 6803 | Ir a la última revisión | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 1 Rev 6749
Línea 4... Línea 4...
4
 * Este controllador agrupa las funciones de Callback para todas las operaciones de OAUTH
4
 * Este controllador agrupa las funciones de Callback para todas las operaciones de OAUTH
5
 */
5
 */
6
namespace LeadersLinked\Controller;
6
namespace LeadersLinked\Controller;
Línea 7... Línea 7...
7
 
7
 
8
use Laminas\Db\Adapter\AdapterInterface;
8
use Laminas\Db\Adapter\AdapterInterface;
9
use Laminas\Cache\Storage\Adapter\AbstractAdapter;
9
use LeadersLinked\Cache\CacheInterface;
10
use Laminas\Mvc\Controller\AbstractActionController;
10
use Laminas\Mvc\Controller\AbstractActionController;
11
use Laminas\Log\LoggerInterface;
11
use Laminas\Log\LoggerInterface;
12
use Laminas\View\Model\JsonModel;
12
use Laminas\View\Model\JsonModel;
13
use GeoIp2\Database\Reader As GeoIp2Reader;
13
use GeoIp2\Database\Reader As GeoIp2Reader;
Línea 34... Línea 34...
34
     */
34
     */
35
    private $adapter;
35
    private $adapter;
Línea 36... Línea 36...
36
 
36
 
37
    /**
37
    /**
38
     *
38
     *
39
     * @var AbstractAdapter
39
     * @var CacheInterface
40
     */
40
     */
Línea 41... Línea 41...
41
    private $cache;
41
    private $cache;
42
    
42
    
Línea 56... Línea 56...
56
    
56
    
57
    
57
    
58
    /**
58
    /**
59
     *
59
     *
60
     * @param AdapterInterface $adapter
60
     * @param AdapterInterface $adapter
61
     * @param AbstractAdapter $cache
61
     * @param CacheInterface $cache
62
     * @param LoggerInterface $logger
62
     * @param LoggerInterface $logger
63
     * @param array $config
63
     * @param array $config
64
     */
64
     */
Línea 278... Línea 278...
278
        }
278
        }
279
    }
279
    }
Línea 280... Línea 280...
280
    
280
    
281
    public function facebookAction() 
281
    public function facebookAction() 
-
 
282
    {
282
    {
283
        /*
Línea 283... Línea 284...
283
        $flashMessenger = $this->plugin('FlashMessenger');
284
        $flashMessenger = $this->plugin('FlashMessenger');
284
        
285
        
285
        $app_id = $this->config['leaderslinked.facebook.app_id'];
286
        $app_id = $this->config['leaderslinked.facebook.app_id'];
Línea 291... Línea 292...
291
        if(!isset($_GET['code']) && !isset($_GET['state']))
292
        if(!isset($_GET['code']) && !isset($_GET['state']))
292
        {
293
        {
293
            $flashMessenger->addErrorMessage('Facebook code or state not available');
294
            $flashMessenger->addErrorMessage('Facebook code or state not available');
294
            return $this->redirect()->toRoute('home');
295
            return $this->redirect()->toRoute('home');
295
        }
296
        }
296
        //$code   = trim(filter_var($_GET['code'], FILTER_SANITIZE_STRING));
297
        //$code   = Functions::sanitizeFilterString($_GET['code']);
297
        $state  = trim(filter_var($_GET['state'], FILTER_SANITIZE_STRING));
298
        $state  = Functions::sanitizeFilterString($_GET['state']);
Línea 298... Línea 299...
298
            
299
            
299
        $fb = new \Facebook\Facebook([
300
        $fb = new \Facebook\Facebook([
300
            'app_id' => $app_id,
301
            'app_id' => $app_id,
301
            'app_secret' => $app_password,
302
            'app_secret' => $app_password,
Línea 354... Línea 355...
354
            return $this->redirect()->toRoute('home');
355
            return $this->redirect()->toRoute('home');
355
        }
356
        }
Línea 356... Línea 357...
356
 
357
 
357
        $fb_user = $response->getGraphUser();
358
        $fb_user = $response->getGraphUser();
358
        if(is_object($fb_user)) {
359
        if(is_object($fb_user)) {
359
            $id      = filter_var($fb_user->getId(), FILTER_SANITIZE_STRING);
360
            $id      = Functions::sanitizeFilterString($fb_user->getId());
360
            $name    = filter_var($fb_user->getName(), FILTER_SANITIZE_STRING);
361
            $name    = Functions::sanitizeFilterString($fb_user->getName());
361
            $email   = filter_var($fb_user->getEmail(), FILTER_SANITIZE_EMAIL);
362
            $email   = filter_var($fb_user->getEmail(), FILTER_SANITIZE_EMAIL);
362
            $picture = $fb_user->getPicture();
363
            $picture = $fb_user->getPicture();
363
            if(is_array($picture)) {
364
            if(is_array($picture)) {
364
                $picture = filter_var($picture['url'], FILTER_SANITIZE_URL);
365
                $picture = filter_var($picture['url'], FILTER_SANITIZE_URL);
Línea 368... Línea 369...
368
                $picture = filter_var($picture, FILTER_SANITIZE_URL);
369
                $picture = filter_var($picture, FILTER_SANITIZE_URL);
369
            }
370
            }
370
        }
371
        }
Línea 371... Línea 372...
371
            
372
            
-
 
373
        return $this->process($id, $name, $email, $picture, UserProvider::PROVIDER_FACEBOOK);
372
        return $this->process($id, $name, $email, $picture, UserProvider::PROVIDER_FACEBOOK);
374
        */
Línea 373... Línea 375...
373
    }
375
    }
374
    
376
    
375
    public function facebookDeleteAction()
377
    public function facebookDeleteAction()
Línea 388... Línea 390...
388
        
390
        
Línea 389... Línea 391...
389
    }
391
    }
390
    
392
    
391
    public function facebookCancelAction() 
393
    public function facebookCancelAction() 
392
    {
394
    {
393
        $signed_request = isset($_POST['signed_request']) ? trim(filter_var($_POST['signed_request'], FILTER_SANITIZE_STRING)) : '';
395
        $signed_request = $_POST['signed_request'] ? Functions::sanitizeFilterString($_POST['signed_request']) : '';
394
        if($signed_request) {
396
        if($signed_request) {
395
            $facebook = new \LeadersLinked\Library\Facebook($this->config);
397
            $facebook = new \LeadersLinked\Library\Facebook($this->config);
396
            $data = $facebook->parse_signed_request($signed_request);
398
            $data = $facebook->parse_signed_request($signed_request);
Línea 430... Línea 432...
430
        if (! isset($_GET['code'])) {
432
        if (! isset($_GET['code'])) {
431
            $auth_url = $google->createAuthUrl();
433
            $auth_url = $google->createAuthUrl();
432
            return $this->redirect()->toUrl(filter_var($auth_url, FILTER_SANITIZE_URL));
434
            return $this->redirect()->toUrl(filter_var($auth_url, FILTER_SANITIZE_URL));
433
        } 
435
        } 
Línea 434... Línea 436...
434
 
436
 
435
        $google->authenticate(filter_var($_GET['code'], FILTER_SANITIZE_STRING));
437
        $google->authenticate(Functions::sanitizeFilterString($_GET['code']));
Línea 436... Línea 438...
436
        $accessToken = $google->getAccessToken();
438
        $accessToken = $google->getAccessToken();
437
        
439
        
438
        if(empty($accessToken)) {
440
        if(empty($accessToken)) {
Línea 450... Línea 452...
450
            $flashMessenger = $this->plugin('FlashMessenger');
452
            $flashMessenger = $this->plugin('FlashMessenger');
451
            $flashMessenger->addErrorMessage('Google verify token is wrong');
453
            $flashMessenger->addErrorMessage('Google verify token is wrong');
452
            return $this->redirect()->toRoute('home');
454
            return $this->redirect()->toRoute('home');
453
        }
455
        }
Línea 454... Línea 456...
454
        
456
        
455
        $id         = filter_var($userInfo['sub'], FILTER_SANITIZE_STRING);
457
        $id         = Functions::sanitizeFilterString($userInfo['sub']);
456
        $name       = filter_var($userInfo['name'], FILTER_SANITIZE_STRING);
458
        $name       =Functions::sanitizeFilterString($userInfo['name']);
457
        $email      = filter_var($userInfo['email'], FILTER_SANITIZE_EMAIL);
459
        $email      = filter_var($userInfo['email'], FILTER_SANITIZE_EMAIL);
Línea 458... Línea 460...
458
        $picture    = filter_var($userInfo['picture'], FILTER_SANITIZE_URL);;
460
        $picture    = filter_var($userInfo['picture'], FILTER_SANITIZE_URL);
459
        
461
        
Línea 460... Línea 462...
460
        return $this->process($id, $name, $email, $picture, UserProvider::PROVIDER_GOOGLE);
462
        return $this->process($id, $name, $email, $picture, UserProvider::PROVIDER_GOOGLE);
Línea 499... Línea 501...
499
 
501
 
500
 
502
 
Línea 501... Línea 503...
501
        $twitter = new  \Abraham\TwitterOAuth\TwitterOAuth($twitter_api_key, $twitter_api_secret, $oauth_token, $oauth_token_secret);
503
        $twitter = new  \Abraham\TwitterOAuth\TwitterOAuth($twitter_api_key, $twitter_api_secret, $oauth_token, $oauth_token_secret);
502
        $response =  $twitter->get('account/verify_credentials', ['include_entities' => true, 'skip_status' => true, 'include_email' => true]);
504
        $response =  $twitter->get('account/verify_credentials', ['include_entities' => true, 'skip_status' => true, 'include_email' => true]);
503
        
505
        
504
        $id         = isset($response->id) ? filter_var($response->id, FILTER_SANITIZE_STRING) : '';
506
        $id         = $response->id ? Functions::sanitizeFilterString($response->id) : '';
Línea 505... Línea 507...
505
        $name       = isset($response->name) ? filter_var($response->name, FILTER_SANITIZE_STRING) : '';
507
        $name       = $response->name ? Functions::sanitizeFilterString($response->name) : '';
506
        $email      = isset($response->email) ? filter_var($response->email, FILTER_SANITIZE_EMAIL) : '';
508
        $email      = isset($response->email) ? filter_var($response->email, FILTER_SANITIZE_EMAIL) : '';