同步操作将从 Gitee 极速下载/FastAPI 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
from datetime import datetime, timedelta, timezonefrom typing import List, Unionfrom fastapi import Depends, FastAPI, HTTPException, Security, statusfrom fastapi.security import (OAuth2PasswordBearer,OAuth2PasswordRequestForm,SecurityScopes,)from jose import JWTError, jwtfrom passlib.context import CryptContextfrom pydantic import BaseModel, ValidationError# to get a string like this run:# openssl rand -hex 32SECRET_KEY = "09d25e094faa6ca2556c818166b7a9563b93f7099f6f0f4caa6cf63b88e8d3e7"ALGORITHM = "HS256"ACCESS_TOKEN_EXPIRE_MINUTES = 30fake_users_db = {"johndoe": {"username": "johndoe","full_name": "John Doe","email": "johndoe@example.com","hashed_password": "2ドルb12ドル$EixZaYVK1fsbw1ZfbX3OXePaWxn96p36WQoeG6Lruj3vjPGga31lW","disabled": False,},"alice": {"username": "alice","full_name": "Alice Chains","email": "alicechains@example.com","hashed_password": "2ドルb12ドル$gSvqqUPvlXP2tfVFaWK1Be7DlH.PKZbv5H8KnzzVgXXbVxpva.pFm","disabled": True,},}class Token(BaseModel):access_token: strtoken_type: strclass TokenData(BaseModel):username: Union[str, None] = Nonescopes: List[str] = []class User(BaseModel):username: stremail: Union[str, None] = Nonefull_name: Union[str, None] = Nonedisabled: Union[bool, None] = Noneclass UserInDB(User):hashed_password: strpwd_context = CryptContext(schemes=["bcrypt"], deprecated="auto")oauth2_scheme = OAuth2PasswordBearer(tokenUrl="token",scopes={"me": "Read information about the current user.", "items": "Read items."},)app = FastAPI()def verify_password(plain_password, hashed_password):return pwd_context.verify(plain_password, hashed_password)def get_password_hash(password):return pwd_context.hash(password)def get_user(db, username: str):if username in db:user_dict = db[username]return UserInDB(**user_dict)def authenticate_user(fake_db, username: str, password: str):user = get_user(fake_db, username)if not user:return Falseif not verify_password(password, user.hashed_password):return Falsereturn userdef create_access_token(data: dict, expires_delta: Union[timedelta, None] = None):to_encode = data.copy()if expires_delta:expire = datetime.now(timezone.utc) + expires_deltaelse:expire = datetime.now(timezone.utc) + timedelta(minutes=15)to_encode.update({"exp": expire})encoded_jwt = jwt.encode(to_encode, SECRET_KEY, algorithm=ALGORITHM)return encoded_jwtasync def get_current_user(security_scopes: SecurityScopes, token: str = Depends(oauth2_scheme)):if security_scopes.scopes:authenticate_value = f'Bearer scope="{security_scopes.scope_str}"'else:authenticate_value = "Bearer"credentials_exception = HTTPException(status_code=status.HTTP_401_UNAUTHORIZED,detail="Could not validate credentials",headers={"WWW-Authenticate": authenticate_value},)try:payload = jwt.decode(token, SECRET_KEY, algorithms=[ALGORITHM])username: str = payload.get("sub")if username is None:raise credentials_exceptiontoken_scopes = payload.get("scopes", [])token_data = TokenData(scopes=token_scopes, username=username)except (JWTError, ValidationError):raise credentials_exceptionuser = get_user(fake_users_db, username=token_data.username)if user is None:raise credentials_exceptionfor scope in security_scopes.scopes:if scope not in token_data.scopes:raise HTTPException(status_code=status.HTTP_401_UNAUTHORIZED,detail="Not enough permissions",headers={"WWW-Authenticate": authenticate_value},)return userasync def get_current_active_user(current_user: User = Security(get_current_user, scopes=["me"]),):if current_user.disabled:raise HTTPException(status_code=400, detail="Inactive user")return current_user@app.post("/token")async def login_for_access_token(form_data: OAuth2PasswordRequestForm = Depends(),) -> Token:user = authenticate_user(fake_users_db, form_data.username, form_data.password)if not user:raise HTTPException(status_code=400, detail="Incorrect username or password")access_token_expires = timedelta(minutes=ACCESS_TOKEN_EXPIRE_MINUTES)access_token = create_access_token(data={"sub": user.username, "scopes": form_data.scopes},expires_delta=access_token_expires,)return Token(access_token=access_token, token_type="bearer")@app.get("/users/me/", response_model=User)async def read_users_me(current_user: User = Depends(get_current_active_user)):return current_user@app.get("/users/me/items/")async def read_own_items(current_user: User = Security(get_current_active_user, scopes=["items"]),):return [{"item_id": "Foo", "owner": current_user.username}]@app.get("/status/")async def read_system_status(current_user: User = Depends(get_current_user)):return {"status": "ok"}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。