60 lines
1.6 KiB
Python
60 lines
1.6 KiB
Python
import jwt
|
|
from chalicelib.utils import helper
|
|
from chalicelib.utils.TimeUTC import TimeUTC
|
|
from decouple import config
|
|
from chalicelib.core import tenants
|
|
from chalicelib.core import users
|
|
|
|
|
|
def jwt_authorizer(token):
|
|
token = token.split(" ")
|
|
if len(token) != 2 or token[0].lower() != "bearer":
|
|
return None
|
|
try:
|
|
payload = jwt.decode(
|
|
token[1],
|
|
config("jwt_secret"),
|
|
algorithms=config("jwt_algorithm"),
|
|
audience=[ f"front:{helper.get_stage_name()}"]
|
|
)
|
|
except jwt.ExpiredSignatureError:
|
|
print("! JWT Expired signature")
|
|
return None
|
|
except BaseException as e:
|
|
print("! JWT Base Exception")
|
|
return None
|
|
return payload
|
|
|
|
|
|
def jwt_context(context):
|
|
user = users.get(user_id=context["userId"], tenant_id=context["tenantId"])
|
|
if user is None:
|
|
return None
|
|
return {
|
|
"tenantId": context["tenantId"],
|
|
"userId": context["userId"],
|
|
**user
|
|
}
|
|
|
|
|
|
def generate_jwt(id, tenant_id, iat, aud):
|
|
token = jwt.encode(
|
|
payload={
|
|
"userId": id,
|
|
"tenantId": tenant_id,
|
|
"exp": iat // 1000 + config("ASSIST_JWT_EXPIRATION", cast=int) + TimeUTC.get_utc_offset() // 1000,
|
|
"iss": config("JWT_ISSUER"),
|
|
"iat": iat // 1000,
|
|
"aud": aud
|
|
},
|
|
key=config("jwt_secret"),
|
|
algorithm=config("jwt_algorithm")
|
|
)
|
|
return token
|
|
|
|
|
|
def api_key_authorizer(token):
|
|
t = tenants.get_by_api_key(token)
|
|
if t is not None:
|
|
t["createdAt"] = TimeUTC.datetime_to_timestamp(t["createdAt"])
|
|
return t
|