Authentication
CredentialManager
Bases: OswBaseModel
Handles credentials
Source code in src/osw/auth.py
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 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 |
|
cert_filepath
instance-attribute
Filepath to the certificates for osw and connected services
cred_filepath
instance-attribute
Filepath to yaml file with credentials for osw and connected services
BaseCredential
dataclass
Bases: OswBaseModel
Abstract base class for credentials
Source code in src/osw/auth.py
36 37 38 39 40 |
|
iri
instance-attribute
the iri the credential is valid for
CredentialConfig
dataclass
Bases: OswBaseModel
Reads credentials from a yaml file
Source code in src/osw/auth.py
77 78 79 80 81 82 83 84 85 |
|
fallback = 'none'
class-attribute
instance-attribute
The fallback strategy if no credential was found for the given origin
iri
instance-attribute
internationalized resource identifier / address of the service, may contain protocol, domain, port and path matches by "contains" returning the shortest match
CredentialFallback
Bases: Enum
Modes of handling missing credentials
Attributes:
Name | Type | Description |
---|---|---|
none |
throw error |
|
ask |
use getpass to ask for credentials |
Source code in src/osw/auth.py
63 64 65 66 67 68 69 70 71 72 73 74 75 |
|
OAuth1Credential
dataclass
Bases: BaseCredential
OAuth1 credentials. See https://requests-oauthlib.readthedocs.io/en/latest/oauth1_workflow.html
Source code in src/osw/auth.py
50 51 52 53 54 55 56 57 58 59 60 61 |
|
access_secret
instance-attribute
access secret
access_token
instance-attribute
access token
consumer_secret
instance-attribute
consumer secret
consumer_token
instance-attribute
consumer token
UserPwdCredential
dataclass
Bases: BaseCredential
a username - password credential
Source code in src/osw/auth.py
42 43 44 45 46 47 48 |
|
password
instance-attribute
the users password
username
instance-attribute
the user identifier
add_credential(cred)
adds a credential to the in memory store
Parameters:
Name | Type | Description | Default |
---|---|---|---|
cred
|
BaseCredential
|
the credential to add |
required |
Source code in src/osw/auth.py
187 188 189 190 191 192 193 194 195 |
|
get_credential(config)
Reads credentials from a yaml file or the in memory store
Parameters:
Name | Type | Description | Default |
---|---|---|---|
config
|
CredentialConfig
|
see CredentialConfig |
required |
Returns:
Name | Type | Description |
---|---|---|
credential |
BaseCredential
|
Credential, contain attributes 'username' and 'password' and the matching iri. |
Source code in src/osw/auth.py
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 |
|
iri_in_credentials(iri)
checks if a credential for a given iri exists
Parameters:
Name | Type | Description | Default |
---|---|---|---|
iri
|
str
|
the iri to check |
required |
Returns:
Type | Description |
---|---|
bool
|
True if a credential exists for the given iri |
Source code in src/osw/auth.py
197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 |
|
iri_in_file(iri)
checks if a credential for a given iri exists in the file
Parameters:
Name | Type | Description | Default |
---|---|---|---|
iri
|
str
|
the iri to check |
required |
Returns:
Type | Description |
---|---|
bool
|
True if a credential exists for the given iri |
Source code in src/osw/auth.py
215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 |
|
save_credentials_to_file(filepath=None, set_cred_filepath=False)
Saves the in memory credentials to a file
Parameters:
Name | Type | Description | Default |
---|---|---|---|
filepath
|
Union[str, PossibleFilePath]
|
The filepath to save the credentials to. If None, the filepath specified in the CredentialManager is used. If cred_filepath and filepath are None, the default path is used. If the file does not exist, it is created. |
None
|
set_cred_filepath
|
bool
|
If True, the cred_filepath is set to the given filepath. If False, the cred_filepath of the CredentialManager is not changed. |
False
|
Source code in src/osw/auth.py
244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 |
|