📁 File Manager Pro
v10.0.3 | PHP: 7.4.33
Server: LiteSpeed
2026-06-26 17:30:07
📂
/ (Root)
/
home
/
supecsoq
/
public_html
/
domains
/
migalexpark.com
/
wp-content
/
plugins
/
wp-mail-smtp
/
vendor_prefixed
/
google
/
apiclient
/
src
/
Google
/
AuthHandler
📍 /home/supecsoq/public_html/domains/migalexpark.com/wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient/src/Google/AuthHandler
🔄 Refresh
✏️
Editing: Guzzle6AuthHandler.php
Writable
<?php namespace WPMailSMTP\Vendor; use WPMailSMTP\Vendor\Google\Auth\CredentialsLoader; use WPMailSMTP\Vendor\Google\Auth\HttpHandler\HttpHandlerFactory; use WPMailSMTP\Vendor\Google\Auth\FetchAuthTokenCache; use WPMailSMTP\Vendor\Google\Auth\Middleware\AuthTokenMiddleware; use WPMailSMTP\Vendor\Google\Auth\Middleware\ScopedAccessTokenMiddleware; use WPMailSMTP\Vendor\Google\Auth\Middleware\SimpleMiddleware; use WPMailSMTP\Vendor\GuzzleHttp\Client; use WPMailSMTP\Vendor\GuzzleHttp\ClientInterface; use WPMailSMTP\Vendor\Psr\Cache\CacheItemPoolInterface; /** * This supports Guzzle 6 */ class Google_AuthHandler_Guzzle6AuthHandler { protected $cache; protected $cacheConfig; public function __construct(\WPMailSMTP\Vendor\Psr\Cache\CacheItemPoolInterface $cache = null, array $cacheConfig = []) { $this->cache = $cache; $this->cacheConfig = $cacheConfig; } public function attachCredentials(\WPMailSMTP\Vendor\GuzzleHttp\ClientInterface $http, \WPMailSMTP\Vendor\Google\Auth\CredentialsLoader $credentials, callable $tokenCallback = null) { // use the provided cache if ($this->cache) { $credentials = new \WPMailSMTP\Vendor\Google\Auth\FetchAuthTokenCache($credentials, $this->cacheConfig, $this->cache); } // if we end up needing to make an HTTP request to retrieve credentials, we // can use our existing one, but we need to throw exceptions so the error // bubbles up. $authHttp = $this->createAuthHttp($http); $authHttpHandler = \WPMailSMTP\Vendor\Google\Auth\HttpHandler\HttpHandlerFactory::build($authHttp); $middleware = new \WPMailSMTP\Vendor\Google\Auth\Middleware\AuthTokenMiddleware($credentials, $authHttpHandler, $tokenCallback); $config = $http->getConfig(); $config['handler']->remove('google_auth'); $config['handler']->push($middleware, 'google_auth'); $config['auth'] = 'google_auth'; $http = new \WPMailSMTP\Vendor\GuzzleHttp\Client($config); return $http; } public function attachToken(\WPMailSMTP\Vendor\GuzzleHttp\ClientInterface $http, array $token, array $scopes) { $tokenFunc = function ($scopes) use($token) { return $token['access_token']; }; $middleware = new \WPMailSMTP\Vendor\Google\Auth\Middleware\ScopedAccessTokenMiddleware($tokenFunc, $scopes, $this->cacheConfig, $this->cache); $config = $http->getConfig(); $config['handler']->remove('google_auth'); $config['handler']->push($middleware, 'google_auth'); $config['auth'] = 'scoped'; $http = new \WPMailSMTP\Vendor\GuzzleHttp\Client($config); return $http; } public function attachKey(\WPMailSMTP\Vendor\GuzzleHttp\ClientInterface $http, $key) { $middleware = new \WPMailSMTP\Vendor\Google\Auth\Middleware\SimpleMiddleware(['key' => $key]); $config = $http->getConfig(); $config['handler']->remove('google_auth'); $config['handler']->push($middleware, 'google_auth'); $config['auth'] = 'simple'; $http = new \WPMailSMTP\Vendor\GuzzleHttp\Client($config); return $http; } private function createAuthHttp(\WPMailSMTP\Vendor\GuzzleHttp\ClientInterface $http) { return new \WPMailSMTP\Vendor\GuzzleHttp\Client(['base_uri' => $http->getConfig('base_uri'), 'exceptions' => \true, 'verify' => $http->getConfig('verify'), 'proxy' => $http->getConfig('proxy')]); } }
💾 Save Changes
❌ Cancel