aboutsummaryrefslogtreecommitdiff
path: root/gn2/wqflask/oauth2
diff options
context:
space:
mode:
authorFrederick Muriuki Muriithi2024-06-10 12:29:51 -0500
committerFrederick Muriuki Muriithi2024-06-10 12:29:51 -0500
commit624107ecf84158efa0ed8e63b6e6e4f0b07715b2 (patch)
tree3269f4f74f1c64814e42494f901cb9b129849e80 /gn2/wqflask/oauth2
parent47fc559ca2b554f54112586e8d198d883f8c8118 (diff)
downloadgenenetwork2-624107ecf84158efa0ed8e63b6e6e4f0b07715b2.tar.gz
Set default headers for OAuth2Client requests.
Diffstat (limited to 'gn2/wqflask/oauth2')
-rw-r--r--gn2/wqflask/oauth2/client.py31
1 files changed, 24 insertions, 7 deletions
diff --git a/gn2/wqflask/oauth2/client.py b/gn2/wqflask/oauth2/client.py
index 75e438cc..876ecf6b 100644
--- a/gn2/wqflask/oauth2/client.py
+++ b/gn2/wqflask/oauth2/client.py
@@ -70,12 +70,18 @@ def __no_token__(_err) -> Left:
resp.status_code = 400
return Left(resp)
-def oauth2_get(uri_path: str, data: dict = {},
- jsonify_p: bool = False, **kwargs) -> Either:
+def oauth2_get(
+ uri_path: str,
+ data: dict = {},
+ jsonify_p: bool = False,
+ headers: dict = {"Content-Type": "application/json"},
+ **kwargs
+) -> Either:
def __get__(token) -> Either:
resp = oauth2_client().get(
urljoin(authserver_uri(), uri_path),
data=data,
+ headers=headers,
**kwargs)
if resp.status_code == 200:
if jsonify_p:
@@ -87,11 +93,18 @@ def oauth2_get(uri_path: str, data: dict = {},
return session.user_token().either(__no_token__, __get__)
def oauth2_post(
- uri_path: str, data: Optional[dict] = None, json: Optional[dict] = None,
- **kwargs) -> Either:
+ uri_path: str,
+ data: Optional[dict] = None,
+ json: Optional[dict] = None,
+ headers: dict = {"Content-Type": "application/json"},
+ **kwargs
+) -> Either:
def __post__(token) -> Either:
resp = oauth2_client().post(
- urljoin(authserver_uri(), uri_path), data=data, json=json,
+ urljoin(authserver_uri(), uri_path),
+ data=data,
+ json=json,
+ headers=headers,
**kwargs)
if resp.status_code == 200:
return Right(resp.json())
@@ -100,10 +113,14 @@ def oauth2_post(
return session.user_token().either(__no_token__, __post__)
-def no_token_get(uri_path: str, **kwargs) -> Either:
+def no_token_get(
+ uri_path: str,
+ headers: dict = {"Content-Type": "application/json"},
+ **kwargs
+) -> Either:
uri = urljoin(authserver_uri(), uri_path)
try:
- resp = requests.get(uri, **kwargs)
+ resp = requests.get(uri, headers=headers, **kwargs)
if resp.status_code == 200:
return Right(resp.json())
return Left(resp)