Postnov Roman
2 days ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
13 changed files with
24 additions and
0 deletions
-
docs_src/security/tutorial004.py
-
docs_src/security/tutorial004_an.py
-
docs_src/security/tutorial004_an_py310.py
-
docs_src/security/tutorial004_an_py39.py
-
docs_src/security/tutorial004_py310.py
-
docs_src/security/tutorial005.py
-
docs_src/security/tutorial005_an.py
-
docs_src/security/tutorial005_an_py310.py
-
docs_src/security/tutorial005_an_py39.py
-
docs_src/security/tutorial005_py310.py
-
docs_src/security/tutorial005_py39.py
-
tests/test_tutorial/test_sql_databases/test_tutorial001.py
-
tests/test_tutorial/test_sql_databases/test_tutorial002.py
|
@ -1,4 +1,5 @@ |
|
|
from datetime import datetime, timedelta, timezone |
|
|
from datetime import datetime, timedelta, timezone |
|
|
|
|
|
from functools import lru_cache |
|
|
from typing import Union |
|
|
from typing import Union |
|
|
|
|
|
|
|
|
import jwt |
|
|
import jwt |
|
@ -53,6 +54,7 @@ oauth2_scheme = OAuth2PasswordBearer(tokenUrl="token") |
|
|
app = FastAPI() |
|
|
app = FastAPI() |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@lru_cache |
|
|
def verify_password(plain_password, hashed_password): |
|
|
def verify_password(plain_password, hashed_password): |
|
|
return pwd_context.verify(plain_password, hashed_password) |
|
|
return pwd_context.verify(plain_password, hashed_password) |
|
|
|
|
|
|
|
|
|
@ -1,4 +1,5 @@ |
|
|
from datetime import datetime, timedelta, timezone |
|
|
from datetime import datetime, timedelta, timezone |
|
|
|
|
|
from functools import lru_cache |
|
|
from typing import Union |
|
|
from typing import Union |
|
|
|
|
|
|
|
|
import jwt |
|
|
import jwt |
|
@ -54,6 +55,7 @@ oauth2_scheme = OAuth2PasswordBearer(tokenUrl="token") |
|
|
app = FastAPI() |
|
|
app = FastAPI() |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@lru_cache |
|
|
def verify_password(plain_password, hashed_password): |
|
|
def verify_password(plain_password, hashed_password): |
|
|
return pwd_context.verify(plain_password, hashed_password) |
|
|
return pwd_context.verify(plain_password, hashed_password) |
|
|
|
|
|
|
|
|
|
@ -1,4 +1,5 @@ |
|
|
from datetime import datetime, timedelta, timezone |
|
|
from datetime import datetime, timedelta, timezone |
|
|
|
|
|
from functools import lru_cache |
|
|
from typing import Annotated |
|
|
from typing import Annotated |
|
|
|
|
|
|
|
|
import jwt |
|
|
import jwt |
|
@ -53,6 +54,7 @@ oauth2_scheme = OAuth2PasswordBearer(tokenUrl="token") |
|
|
app = FastAPI() |
|
|
app = FastAPI() |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@lru_cache |
|
|
def verify_password(plain_password, hashed_password): |
|
|
def verify_password(plain_password, hashed_password): |
|
|
return pwd_context.verify(plain_password, hashed_password) |
|
|
return pwd_context.verify(plain_password, hashed_password) |
|
|
|
|
|
|
|
|
|
@ -1,4 +1,5 @@ |
|
|
from datetime import datetime, timedelta, timezone |
|
|
from datetime import datetime, timedelta, timezone |
|
|
|
|
|
from functools import lru_cache |
|
|
from typing import Annotated, Union |
|
|
from typing import Annotated, Union |
|
|
|
|
|
|
|
|
import jwt |
|
|
import jwt |
|
@ -53,6 +54,7 @@ oauth2_scheme = OAuth2PasswordBearer(tokenUrl="token") |
|
|
app = FastAPI() |
|
|
app = FastAPI() |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@lru_cache |
|
|
def verify_password(plain_password, hashed_password): |
|
|
def verify_password(plain_password, hashed_password): |
|
|
return pwd_context.verify(plain_password, hashed_password) |
|
|
return pwd_context.verify(plain_password, hashed_password) |
|
|
|
|
|
|
|
|
|
@ -1,4 +1,5 @@ |
|
|
from datetime import datetime, timedelta, timezone |
|
|
from datetime import datetime, timedelta, timezone |
|
|
|
|
|
from functools import lru_cache |
|
|
|
|
|
|
|
|
import jwt |
|
|
import jwt |
|
|
from fastapi import Depends, FastAPI, HTTPException, status |
|
|
from fastapi import Depends, FastAPI, HTTPException, status |
|
@ -52,6 +53,7 @@ oauth2_scheme = OAuth2PasswordBearer(tokenUrl="token") |
|
|
app = FastAPI() |
|
|
app = FastAPI() |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@lru_cache |
|
|
def verify_password(plain_password, hashed_password): |
|
|
def verify_password(plain_password, hashed_password): |
|
|
return pwd_context.verify(plain_password, hashed_password) |
|
|
return pwd_context.verify(plain_password, hashed_password) |
|
|
|
|
|
|
|
|
|
@ -1,4 +1,5 @@ |
|
|
from datetime import datetime, timedelta, timezone |
|
|
from datetime import datetime, timedelta, timezone |
|
|
|
|
|
from functools import lru_cache |
|
|
from typing import List, Union |
|
|
from typing import List, Union |
|
|
|
|
|
|
|
|
import jwt |
|
|
import jwt |
|
@ -68,6 +69,7 @@ oauth2_scheme = OAuth2PasswordBearer( |
|
|
app = FastAPI() |
|
|
app = FastAPI() |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@lru_cache |
|
|
def verify_password(plain_password, hashed_password): |
|
|
def verify_password(plain_password, hashed_password): |
|
|
return pwd_context.verify(plain_password, hashed_password) |
|
|
return pwd_context.verify(plain_password, hashed_password) |
|
|
|
|
|
|
|
|
|
@ -1,4 +1,5 @@ |
|
|
from datetime import datetime, timedelta, timezone |
|
|
from datetime import datetime, timedelta, timezone |
|
|
|
|
|
from functools import lru_cache |
|
|
from typing import List, Union |
|
|
from typing import List, Union |
|
|
|
|
|
|
|
|
import jwt |
|
|
import jwt |
|
@ -69,6 +70,7 @@ oauth2_scheme = OAuth2PasswordBearer( |
|
|
app = FastAPI() |
|
|
app = FastAPI() |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@lru_cache |
|
|
def verify_password(plain_password, hashed_password): |
|
|
def verify_password(plain_password, hashed_password): |
|
|
return pwd_context.verify(plain_password, hashed_password) |
|
|
return pwd_context.verify(plain_password, hashed_password) |
|
|
|
|
|
|
|
|
|
@ -1,4 +1,5 @@ |
|
|
from datetime import datetime, timedelta, timezone |
|
|
from datetime import datetime, timedelta, timezone |
|
|
|
|
|
from functools import lru_cache |
|
|
from typing import Annotated |
|
|
from typing import Annotated |
|
|
|
|
|
|
|
|
import jwt |
|
|
import jwt |
|
@ -68,6 +69,7 @@ oauth2_scheme = OAuth2PasswordBearer( |
|
|
app = FastAPI() |
|
|
app = FastAPI() |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@lru_cache |
|
|
def verify_password(plain_password, hashed_password): |
|
|
def verify_password(plain_password, hashed_password): |
|
|
return pwd_context.verify(plain_password, hashed_password) |
|
|
return pwd_context.verify(plain_password, hashed_password) |
|
|
|
|
|
|
|
|
|
@ -1,4 +1,5 @@ |
|
|
from datetime import datetime, timedelta, timezone |
|
|
from datetime import datetime, timedelta, timezone |
|
|
|
|
|
from functools import lru_cache |
|
|
from typing import Annotated, Union |
|
|
from typing import Annotated, Union |
|
|
|
|
|
|
|
|
import jwt |
|
|
import jwt |
|
@ -68,6 +69,7 @@ oauth2_scheme = OAuth2PasswordBearer( |
|
|
app = FastAPI() |
|
|
app = FastAPI() |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@lru_cache |
|
|
def verify_password(plain_password, hashed_password): |
|
|
def verify_password(plain_password, hashed_password): |
|
|
return pwd_context.verify(plain_password, hashed_password) |
|
|
return pwd_context.verify(plain_password, hashed_password) |
|
|
|
|
|
|
|
|
|
@ -1,4 +1,5 @@ |
|
|
from datetime import datetime, timedelta, timezone |
|
|
from datetime import datetime, timedelta, timezone |
|
|
|
|
|
from functools import lru_cache |
|
|
|
|
|
|
|
|
import jwt |
|
|
import jwt |
|
|
from fastapi import Depends, FastAPI, HTTPException, Security, status |
|
|
from fastapi import Depends, FastAPI, HTTPException, Security, status |
|
@ -67,6 +68,7 @@ oauth2_scheme = OAuth2PasswordBearer( |
|
|
app = FastAPI() |
|
|
app = FastAPI() |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@lru_cache |
|
|
def verify_password(plain_password, hashed_password): |
|
|
def verify_password(plain_password, hashed_password): |
|
|
return pwd_context.verify(plain_password, hashed_password) |
|
|
return pwd_context.verify(plain_password, hashed_password) |
|
|
|
|
|
|
|
|
|
@ -1,4 +1,5 @@ |
|
|
from datetime import datetime, timedelta, timezone |
|
|
from datetime import datetime, timedelta, timezone |
|
|
|
|
|
from functools import lru_cache |
|
|
from typing import Union |
|
|
from typing import Union |
|
|
|
|
|
|
|
|
import jwt |
|
|
import jwt |
|
@ -68,6 +69,7 @@ oauth2_scheme = OAuth2PasswordBearer( |
|
|
app = FastAPI() |
|
|
app = FastAPI() |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@lru_cache |
|
|
def verify_password(plain_password, hashed_password): |
|
|
def verify_password(plain_password, hashed_password): |
|
|
return pwd_context.verify(plain_password, hashed_password) |
|
|
return pwd_context.verify(plain_password, hashed_password) |
|
|
|
|
|
|
|
|
|
@ -29,6 +29,7 @@ def clear_sqlmodel(): |
|
|
pytest.param("tutorial001_an_py39", marks=needs_py39), |
|
|
pytest.param("tutorial001_an_py39", marks=needs_py39), |
|
|
pytest.param("tutorial001_an_py310", marks=needs_py310), |
|
|
pytest.param("tutorial001_an_py310", marks=needs_py310), |
|
|
], |
|
|
], |
|
|
|
|
|
scope="module", |
|
|
) |
|
|
) |
|
|
def get_client(request: pytest.FixtureRequest): |
|
|
def get_client(request: pytest.FixtureRequest): |
|
|
clear_sqlmodel() |
|
|
clear_sqlmodel() |
|
|
|
@ -29,6 +29,7 @@ def clear_sqlmodel(): |
|
|
pytest.param("tutorial002_an_py39", marks=needs_py39), |
|
|
pytest.param("tutorial002_an_py39", marks=needs_py39), |
|
|
pytest.param("tutorial002_an_py310", marks=needs_py310), |
|
|
pytest.param("tutorial002_an_py310", marks=needs_py310), |
|
|
], |
|
|
], |
|
|
|
|
|
scope="module", |
|
|
) |
|
|
) |
|
|
def get_client(request: pytest.FixtureRequest): |
|
|
def get_client(request: pytest.FixtureRequest): |
|
|
clear_sqlmodel() |
|
|
clear_sqlmodel() |
|
|