Demosthene-OR
commited on
Commit
·
e7b9432
1
Parent(s):
d5afcb3
Update main.py
Browse files
main.py
CHANGED
@@ -89,7 +89,7 @@ async def validation_exception_handler(request: Request, exc: ValidationError):
|
|
89 |
# Fonction pour vérifier l'authentification de l'utilisateur
|
90 |
def authenticate(authorization: str = Header(None)):
|
91 |
if not authorization:
|
92 |
-
raise HTTPException(status_code=401, detail="Utilisateur non authorisé1
|
93 |
try:
|
94 |
scheme, credentials = authorization.split()
|
95 |
if scheme != 'Basic':
|
@@ -98,7 +98,7 @@ def authenticate(authorization: str = Header(None)):
|
|
98 |
if username not in users_credentials or users_credentials[username] != password:
|
99 |
raise HTTPException(status_code=401, detail="Utilisateur non authorisé "+username+":"+password)
|
100 |
except Exception as e:
|
101 |
-
raise HTTPException(status_code=401, detail="Utilisateur non authorisé2
|
102 |
return username, password
|
103 |
|
104 |
# Endpoint pour vérifier que l'API est fonctionnelle
|
|
|
89 |
# Fonction pour vérifier l'authentification de l'utilisateur
|
90 |
def authenticate(authorization: str = Header(None)):
|
91 |
if not authorization:
|
92 |
+
raise HTTPException(status_code=401, detail="Utilisateur non authorisé1")
|
93 |
try:
|
94 |
scheme, credentials = authorization.split()
|
95 |
if scheme != 'Basic':
|
|
|
98 |
if username not in users_credentials or users_credentials[username] != password:
|
99 |
raise HTTPException(status_code=401, detail="Utilisateur non authorisé "+username+":"+password)
|
100 |
except Exception as e:
|
101 |
+
raise HTTPException(status_code=401, detail="Utilisateur non authorisé2")
|
102 |
return username, password
|
103 |
|
104 |
# Endpoint pour vérifier que l'API est fonctionnelle
|