-
Notifications
You must be signed in to change notification settings - Fork 431
Factor metadata interface into a separate module #520
Changes from 12 commits
53f4b95
83049e4
fb05c41
4b95966
0f7607d
653f758
055fce6
396d227
ddf53f2
893c0e4
2209c71
e10488b
ac4dcd2
bbb9cf5
ee9cbfd
88b2680
4403e6e
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,104 @@ | ||
# Copyright 2016 Google Inc. All rights reserved. | ||
# | ||
# 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. | ||
|
||
"""Provides helper methods for talking to the Compute Engine metadata server. | ||
|
||
See https://cloud.google.com/compute/docs/metadata | ||
""" | ||
|
||
import datetime | ||
import httplib2 | ||
import json | ||
|
||
from six.moves import http_client | ||
from six.moves.urllib.parse import urlencode | ||
|
||
from oauth2client._helpers import _from_bytes | ||
from oauth2client.client import _UTCNOW | ||
|
||
METADATA_ROOT = 'http://metadata.google.internal/computeMetadata/v1/' | ||
METADATA_HEADERS = {'Metadata-Flavor': 'Google'} | ||
|
||
|
||
def get(path, http_request=None, root=METADATA_ROOT, **kwargs): | ||
if path is None: | ||
path = [] | ||
|
||
if not http_request: | ||
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
Sorry, something went wrong. |
||
http_request = httplib2.Http().request | ||
|
||
if kwargs: | ||
path.append('?' + urlencode(kwargs)) | ||
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
Sorry, something went wrong. |
||
|
||
full_path = root + '/'.join(path) | ||
response, content = http_request( | ||
full_path, | ||
headers=METADATA_HEADERS | ||
) | ||
This comment was marked as spam.
Sorry, something went wrong. |
||
if response.status == http_client.OK: | ||
decoded = _from_bytes(content) | ||
if response['content-type'] == 'application/json': | ||
return json.loads(decoded) | ||
else: | ||
return decoded | ||
else: | ||
raise httplib2.HttpLib2Error( | ||
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
Sorry, something went wrong. |
||
( | ||
'Failed to retrieve {path} from the Google Compute Engine' | ||
'metadata service. Response:\n{error}' | ||
).format(path=full_path, error=response) | ||
) | ||
|
||
|
||
def get_service_account_info(service_account='default', http_request=None): | ||
""" Get information about a service account from the metadata server. | ||
|
||
Args: | ||
service_account: An email specifying the service account for which to | ||
look up information. Default will be information for the "default" | ||
service account of the current compute engine instance. | ||
http_request: callable, a callable that matches the method | ||
signature of httplib2.Http.request. Used to make the request to the metadata | ||
server. | ||
Returns: | ||
A dictionary with information about the specified service account. | ||
""" | ||
return get( | ||
['instance', 'service-accounts', service_account], | ||
recursive=True, | ||
http_request=http_request | ||
) | ||
|
||
|
||
def get_token(service_account='default', http_request=None): | ||
""" Fetch an oauth token for the | ||
|
||
Args: | ||
service_account: An email specifying the service account this token should | ||
represent. Default will be a token for the "default" service account | ||
of the current compute engine instance. | ||
http_request: callable, a callable that matches the method | ||
signature of httplib2.Http.request. Used to make the request to the metadata | ||
server. | ||
|
||
Returns: | ||
A dictionary with information about the specified service account. | ||
""" | ||
token_json = get( | ||
['instance', 'service-accounts', service_account, 'token'], | ||
http_request=http_request | ||
) | ||
token_expiry = _UTCNOW() + datetime.timedelta( | ||
seconds=token_json['expires_in']) | ||
return token_json['access_token'], token_expiry |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,29 +17,23 @@ | |
Utilities for making it easier to use OAuth 2.0 on Google Compute Engine. | ||
""" | ||
|
||
import httplib2 | ||
import json | ||
import logging | ||
import warnings | ||
|
||
import httplib2 | ||
from six.moves import http_client | ||
from six.moves import urllib | ||
|
||
from oauth2client._helpers import _from_bytes | ||
from oauth2client import util | ||
from oauth2client.client import HttpAccessTokenRefreshError | ||
from oauth2client.client import AssertionCredentials | ||
from oauth2client.client import HttpAccessTokenRefreshError | ||
from oauth2client.contrib import _metadata | ||
|
||
|
||
__author__ = '[email protected] (Joe Gregorio)' | ||
|
||
logger = logging.getLogger(__name__) | ||
|
||
# URI Template for the endpoint that returns access_tokens. | ||
_METADATA_ROOT = ('http://metadata.google.internal/computeMetadata/v1/' | ||
'instance/service-accounts/default/') | ||
META = _METADATA_ROOT + 'token' | ||
_DEFAULT_EMAIL_METADATA = _METADATA_ROOT + 'email' | ||
_SCOPES_WARNING = """\ | ||
You have requested explicit scopes to be used with a GCE service account. | ||
Using this argument will have no effect on the actual scopes for tokens | ||
|
@@ -48,30 +42,6 @@ | |
""" | ||
|
||
|
||
def _get_service_account_email(http_request=None): | ||
"""Get the GCE service account email from the current environment. | ||
|
||
Args: | ||
http_request: callable, (Optional) a callable that matches the method | ||
signature of httplib2.Http.request, used to make | ||
the request to the metadata service. | ||
|
||
Returns: | ||
tuple, A pair where the first entry is an optional response (from a | ||
failed request) and the second is service account email found (as | ||
a string). | ||
""" | ||
if http_request is None: | ||
http_request = httplib2.Http().request | ||
response, content = http_request( | ||
_DEFAULT_EMAIL_METADATA, headers={'Metadata-Flavor': 'Google'}) | ||
if response.status == http_client.OK: | ||
content = _from_bytes(content) | ||
return None, content | ||
else: | ||
return response, content | ||
|
||
|
||
class AppAssertionCredentials(AssertionCredentials): | ||
"""Credentials object for Compute Engine Assertion Grants | ||
|
||
|
@@ -105,6 +75,8 @@ def __init__(self, scope='', **kwargs): | |
# Assertion type is no longer used, but still in the | ||
# parent class signature. | ||
super(AppAssertionCredentials, self).__init__(None) | ||
|
||
# Cache until Metadata Server supports Cache-Control Header | ||
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
Sorry, something went wrong. |
||
self._service_account_email = None | ||
|
||
@classmethod | ||
|
@@ -125,21 +97,11 @@ def _refresh(self, http_request): | |
Raises: | ||
HttpAccessTokenRefreshError: When the refresh fails. | ||
""" | ||
response, content = http_request( | ||
META, headers={'Metadata-Flavor': 'Google'}) | ||
content = _from_bytes(content) | ||
if response.status == http_client.OK: | ||
try: | ||
token_content = json.loads(content) | ||
except Exception as e: | ||
raise HttpAccessTokenRefreshError(str(e), | ||
status=response.status) | ||
self.access_token = token_content['access_token'] | ||
else: | ||
if response.status == http_client.NOT_FOUND: | ||
content += (' This can occur if a VM was created' | ||
' with no service account or scopes.') | ||
raise HttpAccessTokenRefreshError(content, status=response.status) | ||
try: | ||
self.access_token, self.token_expiry = _metadata.get_token( | ||
http_request=http_request) | ||
except httplib2.HttpLib2Error as e: | ||
raise HttpAccessTokenRefreshError(str(e)) | ||
|
||
@property | ||
def serialization_data(self): | ||
|
@@ -184,11 +146,5 @@ def service_account_email(self): | |
Compute Engine metadata service. | ||
""" | ||
if self._service_account_email is None: | ||
failure, email = _get_service_account_email() | ||
if failure is None: | ||
self._service_account_email = email | ||
else: | ||
raise AttributeError('Failed to retrieve the email from the ' | ||
'Google Compute Engine metadata service', | ||
failure, email) | ||
self._service_account_email = _metadata.get_service_account_info()['email'] | ||
return self._service_account_email |
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
Sorry, something went wrong.