-
Notifications
You must be signed in to change notification settings - Fork 310
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: implement base classes for credentials and request sessions (#1551
) * implement base classes for credentials and request sessions * remove public methods apply and before_request from base credentials * move MTLS logic back to requests * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md * minor fix * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md * address PR comments * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md * address PR comments * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md * chore: Refresh system test creds. * revert copyright date * fix import statements order --------- Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com> Co-authored-by: Carl Lundin <[email protected]> Co-authored-by: Carl Lundin <[email protected]>
- Loading branch information
1 parent
61c2432
commit 036dac4
Showing
5 changed files
with
133 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
# Copyright 2024 Google LLC | ||
# | ||
# 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. | ||
|
||
|
||
"""Interface for base credentials.""" | ||
|
||
import abc | ||
|
||
from google.auth import _helpers | ||
|
||
|
||
class _BaseCredentials(metaclass=abc.ABCMeta): | ||
"""Base class for all 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): | ||
self.token = None | ||
"""str: The bearer token that can be used in HTTP headers to make | ||
authenticated requests.""" | ||
|
||
@abc.abstractmethod | ||
def refresh(self, request): | ||
"""Refreshes the access token. | ||
Args: | ||
request (google.auth.transport.Request): The object used to make | ||
HTTP requests. | ||
Raises: | ||
google.auth.exceptions.RefreshError: If the credentials could | ||
not be refreshed. | ||
""" | ||
# pylint: disable=missing-raises-doc | ||
# (pylint doesn't recognize that this is abstract) | ||
raise NotImplementedError("Refresh must be implemented") | ||
|
||
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. | ||
""" | ||
headers["authorization"] = "Bearer {}".format( | ||
_helpers.from_bytes(token or self.token) | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
# Copyright 2024 Google LLC | ||
# | ||
# 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. | ||
|
||
"""Transport adapter for Base Requests.""" | ||
|
||
|
||
import abc | ||
|
||
|
||
_DEFAULT_TIMEOUT = 120 # in second | ||
|
||
|
||
class _BaseAuthorizedSession(metaclass=abc.ABCMeta): | ||
"""Base class for a Request Session with credentials. This class is intended to capture | ||
the common logic between synchronous and asynchronous request sessions and is not intended to | ||
be instantiated directly. | ||
Args: | ||
credentials (google.auth._credentials_base.BaseCredentials): The credentials to | ||
add to the request. | ||
""" | ||
|
||
def __init__(self, credentials): | ||
self.credentials = credentials | ||
|
||
@abc.abstractmethod | ||
def request( | ||
self, | ||
method, | ||
url, | ||
data=None, | ||
headers=None, | ||
max_allowed_time=None, | ||
timeout=_DEFAULT_TIMEOUT, | ||
**kwargs | ||
): | ||
raise NotImplementedError("Request must be implemented") | ||
|
||
@abc.abstractmethod | ||
def close(self): | ||
raise NotImplementedError("Close must be implemented") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.