| Eduardo Sousa | 819d34c | 2018-07-31 01:20:02 +0100 | [diff] [blame] | 1 | # -*- coding: utf-8 -*- |
| 2 | |
| Eduardo Sousa | d795f87 | 2019-02-05 16:05:53 +0000 | [diff] [blame] | 3 | # Copyright 2018 Whitestack, LLC |
| 4 | # |
| 5 | # Licensed under the Apache License, Version 2.0 (the "License"); you may |
| 6 | # not use this file except in compliance with the License. You may obtain |
| 7 | # a copy of the License at |
| 8 | # |
| 9 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | # |
| 11 | # Unless required by applicable law or agreed to in writing, software |
| 12 | # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT |
| 13 | # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the |
| 14 | # License for the specific language governing permissions and limitations |
| 15 | # under the License. |
| 16 | # |
| 17 | # For those usages not covered by the Apache License, Version 2.0 please |
| 18 | # contact: esousa@whitestack.com or glavado@whitestack.com |
| 19 | ## |
| 20 | |
| Eduardo Sousa | 819d34c | 2018-07-31 01:20:02 +0100 | [diff] [blame] | 21 | """ |
| 22 | Authconn implements an Abstract class for the Auth backend connector |
| 23 | plugins with the definition of the methods to be implemented. |
| 24 | """ |
| 25 | |
| 26 | __author__ = "Eduardo Sousa <esousa@whitestack.com>" |
| 27 | __date__ = "$27-jul-2018 23:59:59$" |
| 28 | |
| 29 | from http import HTTPStatus |
| 30 | |
| 31 | |
| 32 | class AuthException(Exception): |
| 33 | """ |
| 34 | Authentication error. |
| 35 | """ |
| 36 | def __init__(self, message, http_code=HTTPStatus.UNAUTHORIZED): |
| 37 | self.http_code = http_code |
| 38 | Exception.__init__(self, message) |
| 39 | |
| 40 | |
| 41 | class AuthconnException(Exception): |
| 42 | """ |
| 43 | Common and base class Exception for all authconn exceptions. |
| 44 | """ |
| 45 | def __init__(self, message, http_code=HTTPStatus.UNAUTHORIZED): |
| 46 | Exception.__init__(message) |
| 47 | self.http_code = http_code |
| 48 | |
| 49 | |
| 50 | class AuthconnConnectionException(AuthconnException): |
| 51 | """ |
| 52 | Connectivity error with Auth backend. |
| 53 | """ |
| 54 | def __init__(self, message, http_code=HTTPStatus.BAD_GATEWAY): |
| 55 | AuthconnException.__init__(self, message, http_code) |
| 56 | |
| 57 | |
| 58 | class AuthconnNotSupportedException(AuthconnException): |
| 59 | """ |
| 60 | The request is not supported by the Auth backend. |
| 61 | """ |
| 62 | def __init__(self, message, http_code=HTTPStatus.NOT_IMPLEMENTED): |
| 63 | AuthconnException.__init__(self, message, http_code) |
| 64 | |
| 65 | |
| 66 | class AuthconnNotImplementedException(AuthconnException): |
| 67 | """ |
| 68 | The method is not implemented by the Auth backend. |
| 69 | """ |
| 70 | def __init__(self, message, http_code=HTTPStatus.NOT_IMPLEMENTED): |
| 71 | AuthconnException.__init__(self, message, http_code) |
| 72 | |
| 73 | |
| 74 | class AuthconnOperationException(AuthconnException): |
| 75 | """ |
| 76 | The operation executed failed. |
| 77 | """ |
| 78 | def __init__(self, message, http_code=HTTPStatus.INTERNAL_SERVER_ERROR): |
| 79 | AuthconnException.__init__(self, message, http_code) |
| 80 | |
| 81 | |
| 82 | class Authconn: |
| 83 | """ |
| 84 | Abstract base class for all the Auth backend connector plugins. |
| 85 | Each Auth backend connector plugin must be a subclass of |
| 86 | Authconn class. |
| 87 | """ |
| 88 | def __init__(self, config): |
| 89 | """ |
| 90 | Constructor of the Authconn class. |
| 91 | |
| 92 | Note: each subclass |
| 93 | |
| 94 | :param config: configuration dictionary containing all the |
| 95 | necessary configuration parameters. |
| 96 | """ |
| 97 | self.config = config |
| 98 | |
| 99 | def authenticate_with_user_password(self, user, password): |
| 100 | """ |
| 101 | Authenticate a user using username and password. |
| 102 | |
| 103 | :param user: username |
| 104 | :param password: password |
| 105 | :return: an unscoped token that grants access to project list |
| 106 | """ |
| 107 | raise AuthconnNotImplementedException("Should have implemented this") |
| 108 | |
| 109 | def authenticate_with_token(self, token, project=None): |
| 110 | """ |
| 111 | Authenticate a user using a token. Can be used to revalidate the token |
| 112 | or to get a scoped token. |
| 113 | |
| 114 | :param token: a valid token. |
| 115 | :param project: (optional) project for a scoped token. |
| 116 | :return: return a revalidated token, scoped if a project was passed or |
| 117 | the previous token was already scoped. |
| 118 | """ |
| 119 | raise AuthconnNotImplementedException("Should have implemented this") |
| 120 | |
| 121 | def validate_token(self, token): |
| 122 | """ |
| 123 | Check if the token is valid. |
| 124 | |
| 125 | :param token: token to validate |
| 126 | :return: dictionary with information associated with the token. If the |
| 127 | token is not valid, returns None. |
| 128 | """ |
| 129 | raise AuthconnNotImplementedException("Should have implemented this") |
| 130 | |
| 131 | def revoke_token(self, token): |
| 132 | """ |
| 133 | Invalidate a token. |
| 134 | |
| 135 | :param token: token to be revoked |
| 136 | """ |
| 137 | raise AuthconnNotImplementedException("Should have implemented this") |
| 138 | |
| 139 | def get_project_list(self, token): |
| 140 | """ |
| 141 | Get all the projects associated with a user. |
| 142 | |
| 143 | :param token: valid token |
| 144 | :return: list of projects |
| 145 | """ |
| 146 | raise AuthconnNotImplementedException("Should have implemented this") |
| 147 | |
| 148 | def get_role_list(self, token): |
| 149 | """ |
| 150 | Get role list for a scoped project. |
| 151 | |
| 152 | :param token: scoped token. |
| 153 | :return: returns the list of roles for the user in that project. If |
| 154 | the token is unscoped it returns None. |
| 155 | """ |
| 156 | raise AuthconnNotImplementedException("Should have implemented this") |
| 157 | |
| 158 | def create_user(self, user, password): |
| 159 | """ |
| 160 | Create a user. |
| 161 | |
| 162 | :param user: username. |
| 163 | :param password: password. |
| 164 | :raises AuthconnOperationException: if user creation failed. |
| 165 | """ |
| 166 | raise AuthconnNotImplementedException("Should have implemented this") |
| 167 | |
| 168 | def change_password(self, user, new_password): |
| 169 | """ |
| 170 | Change the user password. |
| 171 | |
| 172 | :param user: username. |
| 173 | :param new_password: new password. |
| 174 | :raises AuthconnOperationException: if user password change failed. |
| 175 | """ |
| 176 | raise AuthconnNotImplementedException("Should have implemented this") |
| 177 | |
| 178 | def delete_user(self, user): |
| 179 | """ |
| 180 | Delete user. |
| 181 | |
| 182 | :param user: username. |
| 183 | :raises AuthconnOperationException: if user deletion failed. |
| 184 | """ |
| 185 | raise AuthconnNotImplementedException("Should have implemented this") |
| 186 | |
| 187 | def create_role(self, role): |
| 188 | """ |
| 189 | Create a role. |
| 190 | |
| 191 | :param role: role name. |
| 192 | :raises AuthconnOperationException: if role creation failed. |
| 193 | """ |
| 194 | raise AuthconnNotImplementedException("Should have implemented this") |
| 195 | |
| 196 | def delete_role(self, role): |
| 197 | """ |
| 198 | Delete a role. |
| 199 | |
| 200 | :param role: role name. |
| 201 | :raises AuthconnOperationException: if user deletion failed. |
| 202 | """ |
| 203 | raise AuthconnNotImplementedException("Should have implemented this") |
| 204 | |
| 205 | def create_project(self, project): |
| 206 | """ |
| 207 | Create a project. |
| 208 | |
| 209 | :param project: project name. |
| 210 | :raises AuthconnOperationException: if project creation failed. |
| 211 | """ |
| 212 | raise AuthconnNotImplementedException("Should have implemented this") |
| 213 | |
| 214 | def delete_project(self, project): |
| 215 | """ |
| 216 | Delete a project. |
| 217 | |
| 218 | :param project: project name. |
| 219 | :raises AuthconnOperationException: if project deletion failed. |
| 220 | """ |
| 221 | raise AuthconnNotImplementedException("Should have implemented this") |
| 222 | |
| 223 | def assign_role_to_user(self, user, project, role): |
| 224 | """ |
| 225 | Assigning a role to a user in a project. |
| 226 | |
| 227 | :param user: username. |
| 228 | :param project: project name. |
| 229 | :param role: role name. |
| 230 | :raises AuthconnOperationException: if role assignment failed. |
| 231 | """ |
| 232 | raise AuthconnNotImplementedException("Should have implemented this") |
| 233 | |
| 234 | def remove_role_from_user(self, user, project, role): |
| 235 | """ |
| 236 | Remove a role from a user in a project. |
| 237 | |
| 238 | :param user: username. |
| 239 | :param project: project name. |
| 240 | :param role: role name. |
| 241 | :raises AuthconnOperationException: if role assignment revocation failed. |
| 242 | """ |
| 243 | raise AuthconnNotImplementedException("Should have implemented this") |