usso 0.9.0__py3-none-any.whl → 0.11.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- usso/b64tools.py +1 -1
- usso/core.py +8 -3
- usso/fastapi/__init__.py +1 -1
- {usso-0.9.0.dist-info → usso-0.11.0.dist-info}/METADATA +1 -1
- usso-0.11.0.dist-info/RECORD +13 -0
- usso-0.9.0.dist-info/RECORD +0 -13
- {usso-0.9.0.dist-info → usso-0.11.0.dist-info}/LICENSE.txt +0 -0
- {usso-0.9.0.dist-info → usso-0.11.0.dist-info}/WHEEL +0 -0
- {usso-0.9.0.dist-info → usso-0.11.0.dist-info}/entry_points.txt +0 -0
- {usso-0.9.0.dist-info → usso-0.11.0.dist-info}/top_level.txt +0 -0
usso/b64tools.py
CHANGED
usso/core.py
CHANGED
@@ -1,12 +1,13 @@
|
|
1
1
|
import uuid
|
2
|
-
import base64
|
3
2
|
from functools import lru_cache
|
4
3
|
from typing import Optional, Tuple
|
5
4
|
|
6
5
|
import jwt
|
7
6
|
from pydantic import BaseModel
|
7
|
+
|
8
8
|
from . import b64tools
|
9
9
|
|
10
|
+
|
10
11
|
class UserData(BaseModel):
|
11
12
|
user_id: str
|
12
13
|
email: str | None = None
|
@@ -18,16 +19,20 @@ class UserData(BaseModel):
|
|
18
19
|
token: str | None = None
|
19
20
|
|
20
21
|
@property
|
21
|
-
def
|
22
|
+
def uid(self) -> uuid.UUID:
|
22
23
|
user_id = self.user_id
|
23
24
|
|
24
25
|
if user_id.startswith("u_"):
|
25
26
|
user_id = user_id[2:]
|
26
27
|
if 22 <= len(user_id) <= 24:
|
27
28
|
user_id = b64tools.b64_decode_uuid(user_id)
|
28
|
-
|
29
|
+
|
29
30
|
return uuid.UUID(user_id)
|
30
31
|
|
32
|
+
@property
|
33
|
+
def b64id(self) -> uuid.UUID:
|
34
|
+
return b64tools.b64_encode_uuid_strip(self.uid)
|
35
|
+
|
31
36
|
|
32
37
|
def get_authorization_scheme_param(
|
33
38
|
authorization_header_value: Optional[str],
|
usso/fastapi/__init__.py
CHANGED
@@ -1 +1 @@
|
|
1
|
-
from .integration import
|
1
|
+
from .integration import jwt_access_security, user_data_from_token
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: usso
|
3
|
-
Version: 0.
|
3
|
+
Version: 0.11.0
|
4
4
|
Summary: A plug-and-play client for integrating universal single sign-on (SSO) with Python frameworks, enabling secure and seamless authentication across microservices.
|
5
5
|
Author-email: Mahdi Kiani <mahdikiany@gmail.com>
|
6
6
|
Maintainer-email: Mahdi Kiani <mahdikiany@gmail.com>
|
@@ -0,0 +1,13 @@
|
|
1
|
+
usso/__init__.py,sha256=bHjlWFkwxHTNsC0g-aUqynQ8IrtXp1apELqCqsrynns,27
|
2
|
+
usso/b64tools.py,sha256=6YCBx2lLaYFdk36f064VNZ1RejJTHtmgxqq0eT1sCwQ,518
|
3
|
+
usso/core.py,sha256=dYV6Oq7IFpSHKRIhKpCvvWF_a1r7cTHL_p35uxQi2ec,1114
|
4
|
+
usso/exceptions.py,sha256=hawOAuVbvQtjgRfwp1KFZ4SmV7fh720y5Gom9JVA8W8,504
|
5
|
+
usso/package_data.dat,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
6
|
+
usso/fastapi/__init__.py,sha256=lp2o47nCG-vIobgEOKdEnnPBGizv5om7oPXjqe0R9qU,67
|
7
|
+
usso/fastapi/integration.py,sha256=WGDSYGMRA-jguHzyQr96iGZEoV_pbP0OaCRt_Tm6mtg,2583
|
8
|
+
usso-0.11.0.dist-info/LICENSE.txt,sha256=ceC9ZJOV9H6CtQDcYmHOS46NA3dHJ_WD4J9blH513pc,1081
|
9
|
+
usso-0.11.0.dist-info/METADATA,sha256=68ofbLz-xZhxHV84BZckCOBZy98XiNeke9Y677AAU_I,4306
|
10
|
+
usso-0.11.0.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
11
|
+
usso-0.11.0.dist-info/entry_points.txt,sha256=4Zgpm5ELaAWPf0jPGJFz1_X69H7un8ycT3WdGoJ0Vvk,35
|
12
|
+
usso-0.11.0.dist-info/top_level.txt,sha256=g9Jf6h1Oyidh0vPiFni7UHInTJjSvu6cUalpLTIvthg,5
|
13
|
+
usso-0.11.0.dist-info/RECORD,,
|
usso-0.9.0.dist-info/RECORD
DELETED
@@ -1,13 +0,0 @@
|
|
1
|
-
usso/__init__.py,sha256=bHjlWFkwxHTNsC0g-aUqynQ8IrtXp1apELqCqsrynns,27
|
2
|
-
usso/b64tools.py,sha256=dmZJZfbeVXW-1Vn-gwRPgNkfkx0cHbbOupINg9TQ_C4,518
|
3
|
-
usso/core.py,sha256=wMFqZ9iar4Gp9g4_dz-uDR3YvPbY368SNn-L6oOUsOI,1032
|
4
|
-
usso/exceptions.py,sha256=hawOAuVbvQtjgRfwp1KFZ4SmV7fh720y5Gom9JVA8W8,504
|
5
|
-
usso/package_data.dat,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
6
|
-
usso/fastapi/__init__.py,sha256=mLF1jtu9w1WXksXh6F8RoOLnh3s5W9S22iPq6uF6zQU,66
|
7
|
-
usso/fastapi/integration.py,sha256=WGDSYGMRA-jguHzyQr96iGZEoV_pbP0OaCRt_Tm6mtg,2583
|
8
|
-
usso-0.9.0.dist-info/LICENSE.txt,sha256=ceC9ZJOV9H6CtQDcYmHOS46NA3dHJ_WD4J9blH513pc,1081
|
9
|
-
usso-0.9.0.dist-info/METADATA,sha256=vojO06lxtBoEqdvF__GAjMESNdO8j0Q1C2GKOFuYqr0,4305
|
10
|
-
usso-0.9.0.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
11
|
-
usso-0.9.0.dist-info/entry_points.txt,sha256=4Zgpm5ELaAWPf0jPGJFz1_X69H7un8ycT3WdGoJ0Vvk,35
|
12
|
-
usso-0.9.0.dist-info/top_level.txt,sha256=g9Jf6h1Oyidh0vPiFni7UHInTJjSvu6cUalpLTIvthg,5
|
13
|
-
usso-0.9.0.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|