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 236 237 238
|
# 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.
import abc
import collections.abc
import enum
import typing as ty
from keystoneauth1 import _utils as utils
from keystoneauth1 import access
from keystoneauth1 import exceptions
from keystoneauth1.identity import base
from keystoneauth1 import session as ks_session
_logger = utils.get_logger(__name__)
class Auth(base.BaseIdentityPlugin, metaclass=abc.ABCMeta):
"""Identity V2 Authentication Plugin.
:param string auth_url: Identity service endpoint for authorization.
:param string trust_id: Trust ID for trust scoping.
:param string tenant_id: Tenant ID for project scoping.
:param string tenant_name: Tenant name for project scoping.
:param bool reauthenticate: Allow fetching a new token if the current one
is going to expire. (optional) default True
"""
auth_url: str
def __init__(
self,
auth_url: str,
*,
trust_id: ty.Optional[str] = None,
tenant_id: ty.Optional[str] = None,
tenant_name: ty.Optional[str] = None,
reauthenticate: bool = True,
):
super().__init__(auth_url=auth_url, reauthenticate=reauthenticate)
self.trust_id = trust_id
self.tenant_id = tenant_id
self.tenant_name = tenant_name
def get_auth_ref(self, session: ks_session.Session) -> access.AccessInfoV2:
headers = {'Accept': 'application/json'}
url = self.auth_url.rstrip('/') + '/tokens'
params = {'auth': self.get_auth_data(headers)}
if self.tenant_id:
params['auth']['tenantId'] = self.tenant_id
elif self.tenant_name:
params['auth']['tenantName'] = self.tenant_name
if self.trust_id:
params['auth']['trust_id'] = self.trust_id
_logger.debug('Making authentication request to %s', url)
resp = session.post(
url, json=params, headers=headers, authenticated=False, log=False
)
try:
resp_data = resp.json()
except ValueError:
raise exceptions.InvalidResponse(response=resp)
if 'access' not in resp_data:
raise exceptions.InvalidResponse(response=resp)
return access.AccessInfoV2(resp_data)
@abc.abstractmethod
def get_auth_data(
self,
headers: ty.Optional[collections.abc.MutableMapping[str, str]] = None,
) -> dict[str, object]:
"""Return the authentication section of an auth plugin.
:param dict headers: The headers that will be sent with the auth
request if a plugin needs to add to them.
:return: A dict of authentication data for the auth type.
:rtype: dict
"""
@property
def has_scope_parameters(self) -> bool:
"""Return true if parameters can be used to create a scoped token."""
return bool(self.tenant_id or self.tenant_name or self.trust_id)
# https://peps.python.org/pep-0484/#support-for-singleton-types-in-unions
class Unset(enum.Enum):
token = 0
_unset = Unset.token
class Password(Auth):
"""A plugin for authenticating with a username and password.
A username or user_id must be provided.
:param string auth_url: Identity service endpoint for authorization.
:param string username: Username for authentication.
:param string password: Password for authentication.
:param string user_id: User ID for authentication.
:param string trust_id: Trust ID for trust scoping.
:param string tenant_id: Tenant ID for tenant scoping.
:param string tenant_name: Tenant name for tenant scoping.
:param bool reauthenticate: Allow fetching a new token if the current one
is going to expire. (optional) default True
:raises TypeError: if a user_id or username is not provided.
"""
# FIXME(stephenfin): The use of _unset is a hack to work around
# misconfiguration issues with random services (bug #1361444). It needs to
# go away asap. See change Id61cfd1423afa8f9dd964fda278f4fab40887512 for
# more info.
def __init__(
self,
auth_url: str,
username: ty.Union[str, None, Unset] = _unset,
password: ty.Optional[str] = None,
user_id: ty.Union[str, None, Unset] = _unset,
*,
trust_id: ty.Optional[str] = None,
tenant_id: ty.Optional[str] = None,
tenant_name: ty.Optional[str] = None,
reauthenticate: bool = True,
):
super().__init__(
auth_url,
trust_id=trust_id,
tenant_id=tenant_id,
tenant_name=tenant_name,
reauthenticate=reauthenticate,
)
if username is _unset and user_id is _unset:
msg = 'You need to specify either a username or user_id'
raise TypeError(msg)
if username is _unset:
self.username = None
else:
self.username = username
if user_id is _unset:
self.user_id = None
else:
self.user_id = user_id
self.password = password
def get_auth_data(
self,
headers: ty.Optional[collections.abc.MutableMapping[str, str]] = None,
) -> dict[str, object]:
auth = {'password': self.password}
if self.username:
auth['username'] = self.username
elif self.user_id:
auth['userId'] = self.user_id
return {'passwordCredentials': auth}
def get_cache_id_elements(self) -> dict[str, ty.Optional[str]]:
return {
'username': self.username,
'user_id': self.user_id,
'password': self.password,
'auth_url': self.auth_url,
'tenant_id': self.tenant_id,
'tenant_name': self.tenant_name,
'trust_id': self.trust_id,
}
class Token(Auth):
"""A plugin for authenticating with an existing token.
:param string auth_url: Identity service endpoint for authorization.
:param string token: Existing token for authentication.
:param string tenant_id: Tenant ID for tenant scoping.
:param string tenant_name: Tenant name for tenant scoping.
:param string trust_id: Trust ID for trust scoping.
:param bool reauthenticate: Allow fetching a new token if the current one
is going to expire. (optional) default True
"""
def __init__(
self,
auth_url: str,
token: str,
*,
trust_id: ty.Optional[str] = None,
tenant_id: ty.Optional[str] = None,
tenant_name: ty.Optional[str] = None,
reauthenticate: bool = True,
):
super().__init__(
auth_url,
trust_id=trust_id,
tenant_id=tenant_id,
tenant_name=tenant_name,
reauthenticate=reauthenticate,
)
self.token = token
def get_auth_data(
self,
headers: ty.Optional[collections.abc.MutableMapping[str, str]] = None,
) -> dict[str, object]:
if headers is not None:
headers['X-Auth-Token'] = self.token
return {'token': {'id': self.token}}
def get_cache_id_elements(self) -> dict[str, ty.Optional[str]]:
return {
'token': self.token,
'auth_url': self.auth_url,
'tenant_id': self.tenant_id,
'tenant_name': self.tenant_name,
'trust_id': self.trust_id,
}
|