aiteamutils 0.2.47__tar.gz → 0.2.48__tar.gz
Sign up to get free protection for your applications and to get access to all the features.
- {aiteamutils-0.2.47 → aiteamutils-0.2.48}/PKG-INFO +1 -1
- {aiteamutils-0.2.47 → aiteamutils-0.2.48}/aiteamutils/database.py +21 -22
- {aiteamutils-0.2.47 → aiteamutils-0.2.48}/aiteamutils/dependencies.py +7 -14
- aiteamutils-0.2.48/aiteamutils/version.py +2 -0
- aiteamutils-0.2.47/aiteamutils/version.py +0 -2
- {aiteamutils-0.2.47 → aiteamutils-0.2.48}/.cursorrules +0 -0
- {aiteamutils-0.2.47 → aiteamutils-0.2.48}/.gitignore +0 -0
- {aiteamutils-0.2.47 → aiteamutils-0.2.48}/README.md +0 -0
- {aiteamutils-0.2.47 → aiteamutils-0.2.48}/aiteamutils/__init__.py +0 -0
- {aiteamutils-0.2.47 → aiteamutils-0.2.48}/aiteamutils/base_model.py +0 -0
- {aiteamutils-0.2.47 → aiteamutils-0.2.48}/aiteamutils/base_repository.py +0 -0
- {aiteamutils-0.2.47 → aiteamutils-0.2.48}/aiteamutils/base_service.py +0 -0
- {aiteamutils-0.2.47 → aiteamutils-0.2.48}/aiteamutils/cache.py +0 -0
- {aiteamutils-0.2.47 → aiteamutils-0.2.48}/aiteamutils/config.py +0 -0
- {aiteamutils-0.2.47 → aiteamutils-0.2.48}/aiteamutils/enums.py +0 -0
- {aiteamutils-0.2.47 → aiteamutils-0.2.48}/aiteamutils/exceptions.py +0 -0
- {aiteamutils-0.2.47 → aiteamutils-0.2.48}/aiteamutils/security.py +0 -0
- {aiteamutils-0.2.47 → aiteamutils-0.2.48}/aiteamutils/validators.py +0 -0
- {aiteamutils-0.2.47 → aiteamutils-0.2.48}/pyproject.toml +0 -0
- {aiteamutils-0.2.47 → aiteamutils-0.2.48}/setup.py +0 -0
@@ -1020,28 +1020,28 @@ async def get_db() -> AsyncGenerator[AsyncSession, None]:
|
|
1020
1020
|
source_function="get_db"
|
1021
1021
|
)
|
1022
1022
|
|
1023
|
-
session = None
|
1024
1023
|
try:
|
1025
|
-
|
1026
|
-
|
1027
|
-
|
1028
|
-
|
1029
|
-
|
1030
|
-
|
1031
|
-
|
1024
|
+
session = db_service.get_session()
|
1025
|
+
if session is None:
|
1026
|
+
raise CustomException(
|
1027
|
+
ErrorCode.DB_CONNECTION_ERROR,
|
1028
|
+
detail="Failed to create database session",
|
1029
|
+
source_function="get_db"
|
1030
|
+
)
|
1031
|
+
|
1032
|
+
# 세션이 유효한지 확인
|
1033
|
+
try:
|
1034
|
+
await session.execute(select(1))
|
1035
|
+
except Exception as e:
|
1036
|
+
await session.close()
|
1037
|
+
raise CustomException(
|
1038
|
+
ErrorCode.DB_CONNECTION_ERROR,
|
1039
|
+
detail="Database session is not valid",
|
1040
|
+
source_function="get_db",
|
1041
|
+
original_error=e
|
1042
|
+
)
|
1032
1043
|
|
1033
|
-
|
1034
|
-
try:
|
1035
|
-
await session.execute(select(1))
|
1036
|
-
except Exception as e:
|
1037
|
-
raise CustomException(
|
1038
|
-
ErrorCode.DB_CONNECTION_ERROR,
|
1039
|
-
detail="Database session is not valid",
|
1040
|
-
source_function="get_db",
|
1041
|
-
original_error=e
|
1042
|
-
)
|
1043
|
-
|
1044
|
-
yield session
|
1044
|
+
yield session
|
1045
1045
|
except Exception as e:
|
1046
1046
|
if isinstance(e, CustomException):
|
1047
1047
|
raise e
|
@@ -1052,8 +1052,7 @@ async def get_db() -> AsyncGenerator[AsyncSession, None]:
|
|
1052
1052
|
original_error=e
|
1053
1053
|
)
|
1054
1054
|
finally:
|
1055
|
-
|
1056
|
-
await session.close()
|
1055
|
+
await session.close()
|
1057
1056
|
|
1058
1057
|
async def get_database_service() -> DatabaseService:
|
1059
1058
|
"""DatabaseService 의존성
|
@@ -5,7 +5,7 @@ from jose import JWTError, jwt
|
|
5
5
|
from sqlalchemy.ext.asyncio import AsyncSession
|
6
6
|
import logging
|
7
7
|
|
8
|
-
from .database import DatabaseServiceManager, get_db, get_database_service
|
8
|
+
from .database import DatabaseServiceManager, DatabaseService, get_db, get_database_service
|
9
9
|
from .exceptions import CustomException, ErrorCode
|
10
10
|
from .config import get_settings
|
11
11
|
|
@@ -56,23 +56,16 @@ def get_service(name: str):
|
|
56
56
|
Returns:
|
57
57
|
Callable: 서비스 인스턴스를 반환하는 의존성 함수
|
58
58
|
"""
|
59
|
-
|
59
|
+
def _get_service(
|
60
|
+
db_service: DatabaseService = Depends(get_database_service),
|
61
|
+
session: AsyncSession = Depends(get_db)
|
62
|
+
):
|
60
63
|
try:
|
61
64
|
repository_class, service_class = service_registry.get(name)
|
62
65
|
repository = repository_class(db_service)
|
63
66
|
service = service_class(repository, db_service)
|
64
|
-
|
65
|
-
|
66
|
-
async with db_service.get_session() as session:
|
67
|
-
if session is None:
|
68
|
-
raise CustomException(
|
69
|
-
ErrorCode.DB_CONNECTION_ERROR,
|
70
|
-
detail="Failed to create database session",
|
71
|
-
source_function="dependencies.get_service"
|
72
|
-
)
|
73
|
-
service.session = session
|
74
|
-
return service
|
75
|
-
|
67
|
+
service.session = session
|
68
|
+
return service
|
76
69
|
except CustomException as e:
|
77
70
|
raise e
|
78
71
|
except Exception as e:
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|