| 
									
										
										
										
											2023-12-30 18:53:33 +08:00
										 |  |  | from fastapi.security import HTTPBearer, HTTPAuthorizationCredentials | 
					
						
							|  |  |  | from fastapi import HTTPException, status, Depends | 
					
						
							| 
									
										
										
										
											2024-04-03 01:05:53 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-05-26 16:15:48 +08:00
										 |  |  | from apps.webui.models.users import Users | 
					
						
							| 
									
										
										
										
											2024-03-26 18:22:17 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-11-19 08:47:12 +08:00
										 |  |  | from pydantic import BaseModel | 
					
						
							|  |  |  | from typing import Union, Optional | 
					
						
							| 
									
										
										
										
											2023-12-30 18:53:33 +08:00
										 |  |  | from constants import ERROR_MESSAGES | 
					
						
							| 
									
										
										
										
											2023-11-19 08:47:12 +08:00
										 |  |  | from passlib.context import CryptContext | 
					
						
							|  |  |  | from datetime import datetime, timedelta | 
					
						
							|  |  |  | import requests | 
					
						
							|  |  |  | import jwt | 
					
						
							| 
									
										
										
										
											2024-03-26 18:22:17 +08:00
										 |  |  | import uuid | 
					
						
							| 
									
										
										
										
											2024-01-06 04:22:27 +08:00
										 |  |  | import logging | 
					
						
							| 
									
										
										
										
											2023-11-19 08:47:12 +08:00
										 |  |  | import config | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-01-06 04:22:27 +08:00
										 |  |  | logging.getLogger("passlib").setLevel(logging.ERROR) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-02-02 03:40:59 +08:00
										 |  |  | SESSION_SECRET = config.WEBUI_SECRET_KEY | 
					
						
							| 
									
										
										
										
											2023-11-19 08:47:12 +08:00
										 |  |  | ALGORITHM = "HS256" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ############## | 
					
						
							|  |  |  | # Auth Utils | 
					
						
							|  |  |  | ############## | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-02-02 04:52:11 +08:00
										 |  |  | bearer_security = HTTPBearer() | 
					
						
							| 
									
										
										
										
											2023-11-19 08:47:12 +08:00
										 |  |  | pwd_context = CryptContext(schemes=["bcrypt"], deprecated="auto") | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | def verify_password(plain_password, hashed_password): | 
					
						
							| 
									
										
										
										
											2024-01-06 04:22:27 +08:00
										 |  |  |     return ( | 
					
						
							|  |  |  |         pwd_context.verify(plain_password, hashed_password) if hashed_password else None | 
					
						
							|  |  |  |     ) | 
					
						
							| 
									
										
										
										
											2023-11-19 08:47:12 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | def get_password_hash(password): | 
					
						
							|  |  |  |     return pwd_context.hash(password) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-01-06 04:22:27 +08:00
										 |  |  | def create_token(data: dict, expires_delta: Union[timedelta, None] = None) -> str: | 
					
						
							| 
									
										
										
										
											2023-11-19 08:47:12 +08:00
										 |  |  |     payload = data.copy() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if expires_delta: | 
					
						
							|  |  |  |         expire = datetime.utcnow() + expires_delta | 
					
						
							|  |  |  |         payload.update({"exp": expire}) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-02-02 03:40:59 +08:00
										 |  |  |     encoded_jwt = jwt.encode(payload, SESSION_SECRET, algorithm=ALGORITHM) | 
					
						
							| 
									
										
										
										
											2023-11-19 08:47:12 +08:00
										 |  |  |     return encoded_jwt | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | def decode_token(token: str) -> Optional[dict]: | 
					
						
							|  |  |  |     try: | 
					
						
							| 
									
										
										
										
											2024-02-02 04:52:46 +08:00
										 |  |  |         decoded = jwt.decode(token, SESSION_SECRET, algorithms=[ALGORITHM]) | 
					
						
							| 
									
										
										
										
											2023-11-19 08:47:12 +08:00
										 |  |  |         return decoded | 
					
						
							|  |  |  |     except Exception as e: | 
					
						
							|  |  |  |         return None | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | def extract_token_from_auth_header(auth_header: str): | 
					
						
							| 
									
										
										
										
											2024-01-06 04:22:27 +08:00
										 |  |  |     return auth_header[len("Bearer ") :] | 
					
						
							| 
									
										
										
										
											2023-11-19 08:47:12 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-03-26 18:22:17 +08:00
										 |  |  | def create_api_key(): | 
					
						
							|  |  |  |     key = str(uuid.uuid4()).replace("-", "") | 
					
						
							|  |  |  |     return f"sk-{key}" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-02-24 14:44:56 +08:00
										 |  |  | def get_http_authorization_cred(auth_header: str): | 
					
						
							|  |  |  |     try: | 
					
						
							|  |  |  |         scheme, credentials = auth_header.split(" ") | 
					
						
							| 
									
										
										
										
											2024-02-25 14:10:43 +08:00
										 |  |  |         return HTTPAuthorizationCredentials(scheme=scheme, credentials=credentials) | 
					
						
							| 
									
										
										
										
											2024-02-24 14:44:56 +08:00
										 |  |  |     except: | 
					
						
							|  |  |  |         raise ValueError(ERROR_MESSAGES.INVALID_TOKEN) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-02-11 09:54:33 +08:00
										 |  |  | def get_current_user( | 
					
						
							|  |  |  |     auth_token: HTTPAuthorizationCredentials = Depends(bearer_security), | 
					
						
							|  |  |  | ): | 
					
						
							| 
									
										
										
										
											2024-03-26 18:22:17 +08:00
										 |  |  |     # auth by api key | 
					
						
							|  |  |  |     if auth_token.credentials.startswith("sk-"): | 
					
						
							|  |  |  |         return get_current_user_by_api_key(auth_token.credentials) | 
					
						
							|  |  |  |     # auth by jwt token | 
					
						
							| 
									
										
										
										
											2023-12-30 18:53:33 +08:00
										 |  |  |     data = decode_token(auth_token.credentials) | 
					
						
							| 
									
										
										
										
											2024-02-02 04:04:48 +08:00
										 |  |  |     if data != None and "id" in data: | 
					
						
							|  |  |  |         user = Users.get_user_by_id(data["id"]) | 
					
						
							| 
									
										
										
										
											2023-12-30 18:53:33 +08:00
										 |  |  |         if user is None: | 
					
						
							|  |  |  |             raise HTTPException( | 
					
						
							|  |  |  |                 status_code=status.HTTP_401_UNAUTHORIZED, | 
					
						
							|  |  |  |                 detail=ERROR_MESSAGES.INVALID_TOKEN, | 
					
						
							| 
									
										
										
										
											2023-11-19 08:47:12 +08:00
										 |  |  |             ) | 
					
						
							| 
									
										
										
										
											2024-04-28 07:38:51 +08:00
										 |  |  |         else: | 
					
						
							|  |  |  |             Users.update_user_last_active_by_id(user.id) | 
					
						
							| 
									
										
										
										
											2024-01-01 16:55:50 +08:00
										 |  |  |         return user | 
					
						
							| 
									
										
										
										
											2023-12-30 18:53:33 +08:00
										 |  |  |     else: | 
					
						
							|  |  |  |         raise HTTPException( | 
					
						
							|  |  |  |             status_code=status.HTTP_401_UNAUTHORIZED, | 
					
						
							|  |  |  |             detail=ERROR_MESSAGES.UNAUTHORIZED, | 
					
						
							|  |  |  |         ) | 
					
						
							| 
									
										
										
										
											2024-02-09 08:05:01 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-04-03 00:42:45 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-03-26 18:22:17 +08:00
										 |  |  | def get_current_user_by_api_key(api_key: str): | 
					
						
							| 
									
										
										
										
											2024-04-03 01:06:58 +08:00
										 |  |  |     user = Users.get_user_by_api_key(api_key) | 
					
						
							| 
									
										
										
										
											2024-04-28 07:38:51 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-03-26 18:22:17 +08:00
										 |  |  |     if user is None: | 
					
						
							|  |  |  |         raise HTTPException( | 
					
						
							|  |  |  |             status_code=status.HTTP_401_UNAUTHORIZED, | 
					
						
							|  |  |  |             detail=ERROR_MESSAGES.INVALID_TOKEN, | 
					
						
							|  |  |  |         ) | 
					
						
							| 
									
										
										
										
											2024-04-28 07:38:51 +08:00
										 |  |  |     else: | 
					
						
							|  |  |  |         Users.update_user_last_active_by_id(user.id) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-03-26 18:22:17 +08:00
										 |  |  |     return user | 
					
						
							| 
									
										
										
										
											2024-02-09 08:05:01 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-04-03 00:42:45 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-02-11 09:54:33 +08:00
										 |  |  | def get_verified_user(user=Depends(get_current_user)): | 
					
						
							| 
									
										
										
										
											2024-02-09 08:05:01 +08:00
										 |  |  |     if user.role not in {"user", "admin"}: | 
					
						
							|  |  |  |         raise HTTPException( | 
					
						
							|  |  |  |             status_code=status.HTTP_401_UNAUTHORIZED, | 
					
						
							|  |  |  |             detail=ERROR_MESSAGES.ACCESS_PROHIBITED, | 
					
						
							|  |  |  |         ) | 
					
						
							| 
									
										
										
										
											2024-02-11 09:54:33 +08:00
										 |  |  |     return user | 
					
						
							| 
									
										
										
										
											2024-02-09 08:05:01 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-02-11 09:54:33 +08:00
										 |  |  | def get_admin_user(user=Depends(get_current_user)): | 
					
						
							| 
									
										
										
										
											2024-02-09 08:05:01 +08:00
										 |  |  |     if user.role != "admin": | 
					
						
							|  |  |  |         raise HTTPException( | 
					
						
							|  |  |  |             status_code=status.HTTP_401_UNAUTHORIZED, | 
					
						
							|  |  |  |             detail=ERROR_MESSAGES.ACCESS_PROHIBITED, | 
					
						
							|  |  |  |         ) | 
					
						
							| 
									
										
										
										
											2024-02-11 09:54:33 +08:00
										 |  |  |     return user |