Search moodle.org's
Developer Documentation

See Release Notes

  • Bug fixes for general core bugs in 3.11.x will end 14 Nov 2022 (12 months plus 6 months extension).
  • Bug fixes for security issues in 3.11.x will end 13 Nov 2023 (18 months plus 12 months extension).
  • PHP version: minimum PHP 7.3.0 Note: minimum PHP version has increased since Moodle 3.10. PHP 7.4.x is supported too.

Differences Between: [Versions 311 and 402] [Versions 311 and 403]

(no description)

File Size: 146 lines (4 kb)
Included or required:0 times
Referenced: 0 times
Includes or requires: 0 files

Defines 1 class

Google_Auth_ComputeEngine:: (7 methods):
  __construct()
  authenticatedRequest()
  setAccessToken()
  getAccessToken()
  acquireAccessToken()
  sign()
  isAccessTokenExpired()


Class: Google_Auth_ComputeEngine  - X-Ref

Authentication via built-in Compute Engine service accounts.
The instance must be pre-configured with a service account
and the appropriate scopes.

__construct(Google_Client $client, $config = null)   X-Ref
No description

authenticatedRequest(Google_Http_Request $request)   X-Ref
Perform an authenticated / signed apiHttpRequest.
This function takes the apiHttpRequest, calls apiAuth->sign on it
(which can modify the request in what ever way fits the auth mechanism)
and then calls apiCurlIO::makeRequest on the signed request

param: Google_Http_Request $request
return: Google_Http_Request The resulting HTTP response including the

setAccessToken($token)   X-Ref

param: string $token

getAccessToken()   X-Ref
No description

acquireAccessToken()   X-Ref
Acquires a new access token from the compute engine metadata server.


sign(Google_Http_Request $request)   X-Ref
Include an accessToken in a given apiHttpRequest.

param: Google_Http_Request $request
return: Google_Http_Request

isAccessTokenExpired()   X-Ref
Returns if the access_token is expired.

return: bool Returns True if the access_token is expired.