|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
"""Interfaces for asynchronous credentials.""" |
|
|
|
|
|
|
|
|
from google.auth import _helpers |
|
|
from google.auth import exceptions |
|
|
from google.auth._credentials_base import _BaseCredentials |
|
|
|
|
|
|
|
|
class Credentials(_BaseCredentials): |
|
|
"""Base class for all asynchronous credentials. |
|
|
|
|
|
All credentials have a :attr:`token` that is used for authentication and |
|
|
may also optionally set an :attr:`expiry` to indicate when the token will |
|
|
no longer be valid. |
|
|
|
|
|
Most credentials will be :attr:`invalid` until :meth:`refresh` is called. |
|
|
Credentials can do this automatically before the first HTTP request in |
|
|
:meth:`before_request`. |
|
|
|
|
|
Although the token and expiration will change as the credentials are |
|
|
:meth:`refreshed <refresh>` and used, credentials should be considered |
|
|
immutable. Various credentials will accept configuration such as private |
|
|
keys, scopes, and other options. These options are not changeable after |
|
|
construction. Some classes will provide mechanisms to copy the credentials |
|
|
with modifications such as :meth:`ScopedCredentials.with_scopes`. |
|
|
""" |
|
|
|
|
|
def __init__(self): |
|
|
super(Credentials, self).__init__() |
|
|
|
|
|
async def apply(self, headers, token=None): |
|
|
"""Apply the token to the authentication header. |
|
|
|
|
|
Args: |
|
|
headers (Mapping): The HTTP request headers. |
|
|
token (Optional[str]): If specified, overrides the current access |
|
|
token. |
|
|
""" |
|
|
self._apply(headers, token=token) |
|
|
|
|
|
async def refresh(self, request): |
|
|
"""Refreshes the access token. |
|
|
|
|
|
Args: |
|
|
request (google.auth.aio.transport.Request): The object used to make |
|
|
HTTP requests. |
|
|
|
|
|
Raises: |
|
|
google.auth.exceptions.RefreshError: If the credentials could |
|
|
not be refreshed. |
|
|
""" |
|
|
raise NotImplementedError("Refresh must be implemented") |
|
|
|
|
|
async def before_request(self, request, method, url, headers): |
|
|
"""Performs credential-specific before request logic. |
|
|
|
|
|
Refreshes the credentials if necessary, then calls :meth:`apply` to |
|
|
apply the token to the authentication header. |
|
|
|
|
|
Args: |
|
|
request (google.auth.aio.transport.Request): The object used to make |
|
|
HTTP requests. |
|
|
method (str): The request's HTTP method or the RPC method being |
|
|
invoked. |
|
|
url (str): The request's URI or the RPC service's URI. |
|
|
headers (Mapping): The request's headers. |
|
|
""" |
|
|
await self.apply(headers) |
|
|
|
|
|
|
|
|
class StaticCredentials(Credentials): |
|
|
"""Asynchronous Credentials representing an immutable access token. |
|
|
|
|
|
The credentials are considered immutable except the tokens which can be |
|
|
configured in the constructor :: |
|
|
|
|
|
credentials = StaticCredentials(token="token123") |
|
|
|
|
|
StaticCredentials does not support :meth `refresh` and assumes that the configured |
|
|
token is valid and not expired. StaticCredentials will never attempt to |
|
|
refresh the token. |
|
|
""" |
|
|
|
|
|
def __init__(self, token): |
|
|
""" |
|
|
Args: |
|
|
token (str): The access token. |
|
|
""" |
|
|
super(StaticCredentials, self).__init__() |
|
|
self.token = token |
|
|
|
|
|
@_helpers.copy_docstring(Credentials) |
|
|
async def refresh(self, request): |
|
|
raise exceptions.InvalidOperation("Static credentials cannot be refreshed.") |
|
|
|
|
|
|
|
|
|
|
|
@_helpers.copy_docstring(Credentials) |
|
|
async def before_request(self, request, method, url, headers): |
|
|
await self.apply(headers) |
|
|
|
|
|
|
|
|
class AnonymousCredentials(Credentials): |
|
|
"""Asynchronous Credentials that do not provide any authentication information. |
|
|
|
|
|
These are useful in the case of services that support anonymous access or |
|
|
local service emulators that do not use credentials. |
|
|
""" |
|
|
|
|
|
async def refresh(self, request): |
|
|
"""Raises :class:``InvalidOperation``, anonymous credentials cannot be |
|
|
refreshed.""" |
|
|
raise exceptions.InvalidOperation("Anonymous credentials cannot be refreshed.") |
|
|
|
|
|
async def apply(self, headers, token=None): |
|
|
"""Anonymous credentials do nothing to the request. |
|
|
|
|
|
The optional ``token`` argument is not supported. |
|
|
|
|
|
Raises: |
|
|
google.auth.exceptions.InvalidValue: If a token was specified. |
|
|
""" |
|
|
if token is not None: |
|
|
raise exceptions.InvalidValue("Anonymous credentials don't support tokens.") |
|
|
|
|
|
async def before_request(self, request, method, url, headers): |
|
|
"""Anonymous credentials do nothing to the request.""" |
|
|
pass |
|
|
|