Utilsο
Authoriser specific utilities which can be used to build implementations of authoriser flows.
Classes:
|
Request handler for sending authentication and authorisation requests. |
|
Handle saving, loading, enriching, sanitising etc. |
|
Run tests against the response of authorisation request to ensure its validity. |
|
- class aiorequestful.auth.utils.AuthRequest(**kwargs)ο
Bases:
object
Request handler for sending authentication and authorisation requests. Supply this class with the required arguments for your request.
Arguments passed through to .aiohttp.ClientSession.request. See aiohttp reference for more info on available kwargs: https://docs.aiohttp.org/en/stable/client_reference.html#aiohttp.ClientSession.request
Attributes:
The payload for this request
Methods:
set_payload_type
(kind)Remap the payload type to query params ('params'), body ('data'), or JSON payloads
enrich_payload
(value)Temporarily append data to the payload of a request within a context, removing them when no longer in context.
enrich_headers
(value)Temporarily append data to the headers of a request within a context, removing them when no longer in context.
request
(session)Send the request within the given
session
and return the response.- property payload: dict[str, Any] | Noneο
The payload for this request
- methodο
- urlο
- set_payload_type(kind)ο
Remap the payload type to query params (βparamsβ), body (βdataβ), or JSON payloads
- Return type:
None
- enrich_payload(value)ο
Temporarily append data to the payload of a request within a context, removing them when no longer in context.
- Parameters:
value (
dict
[str
,Any
]) β The value to append.- Return type:
Generator
[None
,None
,None
]
- enrich_headers(value)ο
Temporarily append data to the headers of a request within a context, removing them when no longer in context.
- Parameters:
value (
dict
[str
,Any
]) β The value to append.- Return type:
Generator
[None
,None
,None
]
- request(session)ο
Send the request within the given
session
and return the response.- Return type:
Coroutine
[ClientResponse
,None
,None
]
- paramsο
- dataο
- jsonο
- cookiesο
- headersο
- skip_auto_headersο
- authο
- allow_redirectsο
- max_redirectsο
- compressο
- chunkedο
- expect100ο
- raise_for_statusο
- read_until_eofο
- proxyο
- proxy_authο
- timeoutο
- verify_sslο
- fingerprintο
- ssl_contextο
- sslο
- server_hostnameο
- proxy_headersο
- trace_request_ctxο
- read_bufsizeο
- auto_decompressο
- max_line_sizeο
- max_field_sizeο
- class aiorequestful.auth.utils.AuthResponse(file_path=None, token_prefix_default=None, additional_headers=None)ο
Bases:
MutableMapping
[str
,Any
]Handle saving, loading, enriching, sanitising etc. of responses. Also handles token extraction and header generation from token responses.
- Parameters:
file_path (
str
|Path
(default:None
)) β Path to use for loading and saving a token.token_prefix_default (
str
|None
(default:None
)) β Prefix to add to the header value for authorised calls to an endpoint.additional_headers (
Mapping
[str
,str
] (default:None
)) β Extra headers to add to the final headers to ensure future successful requests.
Attributes:
Extract the token from the stored response.
Generate headers from the stored response, adding all additional headers as needed.
Returns a reformatted response, making it safe to log by removing sensitive values at predefined keys.
The
logging.Logger
for this objectPath to use for loading and saving a token.
Prefix to add to the header value for authorised calls to an endpoint.
The default prefix to append to the credentials in the 'Authorization' header value if one cannot be found in the response.
Extra headers to add to the final headers to ensure future successful requests.
Methods:
replace
(response)Replace the currently stored response with a new
response
enrich
([refresh_token])Extends the response by adding granted and expiry time information to it.
Load a stored response from given path
Save the stored response to the stored file path.
- property token: str | Noneο
Extract the token from the stored response.
- property headers: dict[str, str]ο
Generate headers from the stored response, adding all additional headers as needed.
- property sanitised: dict[str, str | int | float | list | dict | bool | None]ο
Returns a reformatted response, making it safe to log by removing sensitive values at predefined keys.
-
logger:
Logger
ο The
logging.Logger
for this object
-
file_path:
Path
|None
ο Path to use for loading and saving a token.
-
token_key:
str
ο Prefix to add to the header value for authorised calls to an endpoint.
-
token_prefix_default:
str
|None
ο The default prefix to append to the credentials in the βAuthorizationβ header value if one cannot be found in the response.
- additional_headersο
Extra headers to add to the final headers to ensure future successful requests.
- replace(response)ο
Replace the currently stored response with a new
response
- Return type:
None
- enrich(refresh_token=None)ο
Extends the response by adding granted and expiry time information to it. Adds the given
refresh_token
to the response if one is not present.- Return type:
None
- load_response_from_file()ο
Load a stored response from given path
- Return type:
dict
[str
,str
|int
|float
|list
|dict
|bool
|None
] |None
- save_response_to_file()ο
Save the stored response to the stored file path.
- Return type:
None
- class aiorequestful.auth.utils.AuthTester(request=None, response_test=None, max_expiry=0)ο
Bases:
object
Run tests against the response of authorisation request to ensure its validity.
- When setting
max_expiry
, the following example illustrates how this is used: A token has 600 second total expiry time,
it is 60 seconds old and therefore still has 540 seconds of authorised time left,
you set
max_expiry
= 300, the token will pass tests.The same token is tested again later when it is 500 now seconds old,
it now has only 100 seconds of authorised time left,
it will now fail the tests as 100 < 300.
- Parameters:
request (
AuthRequest
|None
(default:None
)) β The request to execute when testing the access token.response_test (
Callable
[[ClientResponse
],Awaitable
[bool
]] |None
(default:None
)) β Test to apply to the response from the access token request.max_expiry (
int
(default:0
)) β The max allowed time in seconds left until the token is due to expire. Useful for ensuring the token will be valid for long enough to run your operations.
Attributes:
The
logging.Logger
for this objectThe request to execute when testing the access token.
Test to apply to the response from the access token request.
The max allowed time in seconds left until the token is due to expire
Methods:
test
([response])Test validity of the
response
and givenheaders
.-
logger:
Logger
ο The
logging.Logger
for this object
- requestο
The request to execute when testing the access token.
- response_testο
Test to apply to the response from the access token request.
- max_expiryο
The max allowed time in seconds left until the token is due to expire
- async test(response=None)ο
Test validity of the
response
and givenheaders
. Returns True if all tests pass, False otherwise- Return type:
bool
- When setting
- class aiorequestful.auth.utils.SocketHandler(port=8080, timeout=120)ο
Bases:
object
- Parameters:
port (
int
(default:8080
)) β The port to open on the localhost for this socket.timeout (
int
(default:120
)) β The time in seconds to keep the socket listening for a request.
Attributes:
The port to open on the localhost for this socket
The time in seconds to keep the socket listening for a request.
- portο
The port to open on the localhost for this socket
- timeoutο
The time in seconds to keep the socket listening for a request.