One Hat Cyber Team
Your IP :
18.117.111.63
Server IP :
50.28.103.30
Server :
Linux host.jcukjv-lwsites.com 4.18.0-553.22.1.el8_10.x86_64 #1 SMP Tue Sep 24 05:16:59 EDT 2024 x86_64
Server Software :
nginx/1.24.0
PHP Version :
8.3.12
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
www
/
wwwroot
/
globify.live
/
fns
/
hybridauth
/
Provider
/
Edit File:
Paypal.php
<?php /*! * Hybridauth * https://hybridauth.github.io | https://github.com/hybridauth/hybridauth * (c) 2017 Hybridauth authors | https://hybridauth.github.io/license.html */ namespace Hybridauth\Provider; use Hybridauth\Adapter\OAuth2; use Hybridauth\Exception\UnexpectedApiResponseException; use Hybridauth\Data; use Hybridauth\User; /** * Paypal OAuth2 provider adapter. */ class Paypal extends OAuth2 { /** * {@inheritdoc} */ protected $scope = 'openid profile email address'; /** * {@inheritdoc} */ protected $apiBaseUrl = 'https://api.paypal.com/'; /** * {@inheritdoc} */ protected $authorizeUrl = 'https://www.paypal.com/signin/authorize'; /** * {@inheritdoc} */ protected $accessTokenUrl = 'https://api.paypal.com/v1/oauth2/token'; /** * {@inheritdoc} */ protected $apiDocumentation = 'https://developer.paypal.com/docs/api/overview/#'; /** * {@inheritdoc} */ protected function initialize() { parent::initialize(); $this->AuthorizeUrlParameters += [ 'flowEntry' => 'static' ]; $this->tokenExchangeHeaders = [ 'Authorization' => 'Basic ' . base64_encode($this->clientId . ':' . $this->clientSecret) ]; $this->tokenRefreshHeaders = [ 'Authorization' => 'Basic ' . base64_encode($this->clientId . ':' . $this->clientSecret) ]; } /** * {@inheritdoc} * * See: https://developer.paypal.com/docs/api/identity/v1/ * See: https://developer.paypal.com/docs/connect-with-paypal/integrate/ */ public function getUserProfile() { $headers = [ 'Content-Type' => 'application/json', ]; $parameters = [ 'schema' => 'paypalv1.1' ]; $response = $this->apiRequest('v1/identity/oauth2/userinfo', 'GET', $parameters, $headers); $data = new Data\Collection($response); if (!$data->exists('user_id')) { throw new UnexpectedApiResponseException('Provider API returned an unexpected response.'); } $userProfile = new User\Profile(); $userProfile->identifier = $data->get('user_id'); $userProfile->firstName = $data->get('given_name'); $userProfile->lastName = $data->get('family_name'); $userProfile->displayName = $data->get('name'); $userProfile->address = $data->filter('address')->get('street_address'); $userProfile->city = $data->filter('address')->get('locality'); $userProfile->country = $data->filter('address')->get('country'); $userProfile->region = $data->filter('address')->get('region'); $userProfile->zip = $data->filter('address')->get('postal_code'); $emails = $data->filter('emails')->toArray(); foreach ($emails as $email) { $email = new Data\Collection($email); if ($email->get('confirmed')) { $userProfile->emailVerified = $email->get('value'); } if ($email->get('primary')) { $userProfile->email = $email->get('value'); } } return $userProfile; } }
Simpan