/var/www/hkosl.com/littleark/webadmin/libraies/google/apiclient/src/Google/AccessToken/Verify.php


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
<?php

/*
 * Copyright 2008 Google Inc.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

use Firebase\JWT\ExpiredException as ExpiredExceptionV3;
use 
GuzzleHttp\Client;
use 
GuzzleHttp\ClientInterface;
use 
phpseclib\Crypt\RSA;
use 
phpseclib\Math\BigInteger;
use 
Psr\Cache\CacheItemPoolInterface;
use 
Google\Auth\Cache\MemoryCacheItemPool;
use 
Stash\Driver\FileSystem;
use 
Stash\Pool;

/**
 * Wrapper around Google Access Tokens which provides convenience functions
 *
 */
class Google_AccessToken_Verify
{
  const 
FEDERATED_SIGNON_CERT_URL 'https://www.googleapis.com/oauth2/v3/certs';
  const 
OAUTH2_ISSUER 'accounts.google.com';
  const 
OAUTH2_ISSUER_HTTPS 'https://accounts.google.com';

  
/**
   * @var GuzzleHttp\ClientInterface The http client
   */
  
private $http;

  
/**
   * @var Psr\Cache\CacheItemPoolInterface cache class
   */
  
private $cache;

  
/**
   * Instantiates the class, but does not initiate the login flow, leaving it
   * to the discretion of the caller.
   */
  
public function __construct(ClientInterface $http nullCacheItemPoolInterface $cache null)
  {
    if (
is_null($http)) {
      
$http = new Client();
    }

    if (
is_null($cache)) {
      
$cache = new MemoryCacheItemPool;
    }

    
$this->http $http;
    
$this->cache $cache;
    
$this->jwt $this->getJwtService();
  }

  
/**
   * Verifies an id token and returns the authenticated apiLoginTicket.
   * Throws an exception if the id token is not valid.
   * The audience parameter can be used to control which id tokens are
   * accepted.  By default, the id token must have been issued to this OAuth2 client.
   *
   * @param $audience
   * @return array the token payload, if successful
   */
  
public function verifyIdToken($idToken$audience null)
  {
    if (empty(
$idToken)) {
      throw new 
LogicException('id_token cannot be null');
    }

    
// set phpseclib constants if applicable
    
$this->setPhpsecConstants();

    
// Check signature
    
$certs $this->getFederatedSignOnCerts();
    foreach (
$certs as $cert) {
      
$modulus = new BigInteger($this->jwt->urlsafeB64Decode($cert['n']), 256);
      
$exponent = new BigInteger($this->jwt->urlsafeB64Decode($cert['e']), 256);

      
$rsa = new RSA();
      
$rsa->loadKey(array('n' => $modulus'e' => $exponent));

      try {
        
$payload $this->jwt->decode(
            
$idToken,
            
$rsa->getPublicKey(),
            array(
'RS256')
        );

        if (
property_exists($payload'aud')) {
          if (
$audience && $payload->aud != $audience) {
            return 
false;
          }
        }

        
// support HTTP and HTTPS issuers
        // @see https://developers.google.com/identity/sign-in/web/backend-auth
        
$issuers = array(self::OAUTH2_ISSUERself::OAUTH2_ISSUER_HTTPS);
        if (!isset(
$payload->iss) || !in_array($payload->iss$issuers)) {
          return 
false;
        }

        return (array) 
$payload;
      } catch (
ExpiredException $e) {
        return 
false;
      } catch (
ExpiredExceptionV3 $e) {
        return 
false;
      } catch (
DomainException $e) {
        
// continue
      
}
    }

    return 
false;
  }

  private function 
getCache()
  {
    return 
$this->cache;
  }

  
/**
   * Retrieve and cache a certificates file.
   *
   * @param $url string location
   * @throws Google_Exception
   * @return array certificates
   */
  
private function retrieveCertsFromLocation($url)
  {
    
// If we're retrieving a local file, just grab it.
    
if (!== strpos($url'http')) {
      if (!
$file file_get_contents($url)) {
        throw new 
Google_Exception(
            
"Failed to retrieve verification certificates: '" .
            
$url "'."
        
);
      }

      return 
json_decode($filetrue);
    }

    
$response $this->http->get($url);

    if (
$response->getStatusCode() == 200) {
      return 
json_decode((string) $response->getBody(), true);
    }
    throw new 
Google_Exception(
        
sprintf(
            
'Failed to retrieve verification certificates: "%s".',
            
$response->getBody()->getContents()
        ),
        
$response->getStatusCode()
    );
  }

  
// Gets federated sign-on certificates to use for verifying identity tokens.
  // Returns certs as array structure, where keys are key ids, and values
  // are PEM encoded certificates.
  
private function getFederatedSignOnCerts()
  {
    
$certs null;
    if (
$cache $this->getCache()) {
      
$cacheItem $cache->getItem('federated_signon_certs_v3'3600);
      
$certs $cacheItem->get();
    }


    if (!
$certs) {
      
$certs $this->retrieveCertsFromLocation(
          
self::FEDERATED_SIGNON_CERT_URL
      
);

      if (
$cache) {
        
$cacheItem->set($certs);
        
$cache->save($cacheItem);
      }
    }

    if (!isset(
$certs['keys'])) {
      throw new 
InvalidArgumentException(
          
'federated sign-on certs expects "keys" to be set'
      
);
    }

    return 
$certs['keys'];
  }

  private function 
getJwtService()
  {
    
$jwtClass 'JWT';
    if (
class_exists('\Firebase\JWT\JWT')) {
      
$jwtClass 'Firebase\JWT\JWT';
    }

    if (
property_exists($jwtClass'leeway')) {
      
// adds 1 second to JWT leeway
      // @see https://github.com/google/google-api-php-client/issues/827
      
$jwtClass::$leeway 1;
    }

    return new 
$jwtClass;
  }

  
/**
   * phpseclib calls "phpinfo" by default, which requires special
   * whitelisting in the AppEngine VM environment. This function
   * sets constants to bypass the need for phpseclib to check phpinfo
   *
   * @see phpseclib/Math/BigInteger
   * @see https://github.com/GoogleCloudPlatform/getting-started-php/issues/85
   */
  
private function setPhpsecConstants()
  {
    if (
filter_var(getenv('GAE_VM'), FILTER_VALIDATE_BOOLEAN)) {
      if (!
defined('MATH_BIGINTEGER_OPENSSL_ENABLED')) {
        
define('MATH_BIGINTEGER_OPENSSL_ENABLED'true);
      }
      if (!
defined('CRYPT_RSA_MODE')) {
        
define('CRYPT_RSA_MODE'RSA::MODE_OPENSSL);
      }
    }
  }
}