forked from rommapp/romm
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsync_sessions_handler.py
More file actions
191 lines (175 loc) · 5.91 KB
/
sync_sessions_handler.py
File metadata and controls
191 lines (175 loc) · 5.91 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
from collections.abc import Sequence
from datetime import datetime, timezone
from sqlalchemy import select, update
from sqlalchemy.exc import NoResultFound
from sqlalchemy.orm import Session
from decorators.database import begin_session
from models.sync_session import SyncSession, SyncSessionStatus
from .base_handler import DBBaseHandler
class DBSyncSessionsHandler(DBBaseHandler):
@begin_session
def create_session(
self,
device_id: str,
user_id: int,
session: Session = None, # type: ignore
) -> SyncSession:
sync_session = SyncSession(
device_id=device_id,
user_id=user_id,
status=SyncSessionStatus.PENDING,
initiated_at=datetime.now(timezone.utc),
)
session.add(sync_session)
session.flush()
return sync_session
@begin_session
def get_session(
self,
session_id: int,
user_id: int,
session: Session = None, # type: ignore
) -> SyncSession | None:
return session.scalar(
select(SyncSession).filter_by(id=session_id, user_id=user_id).limit(1)
)
@begin_session
def get_active_session(
self,
device_id: str,
user_id: int,
session: Session = None, # type: ignore
) -> SyncSession | None:
return session.scalar(
select(SyncSession)
.filter(
SyncSession.device_id == device_id,
SyncSession.user_id == user_id,
SyncSession.status.in_(
[
SyncSessionStatus.PENDING,
SyncSessionStatus.IN_PROGRESS,
]
),
)
.order_by(SyncSession.initiated_at.desc())
.limit(1)
)
@begin_session
def update_session(
self,
session_id: int,
data: dict,
session: Session = None, # type: ignore
) -> SyncSession:
session.execute(
update(SyncSession)
.where(SyncSession.id == session_id)
.values(**data)
.execution_options(synchronize_session="evaluate")
)
result = session.scalar(select(SyncSession).filter_by(id=session_id))
if not result:
raise NoResultFound(f"SyncSession {session_id} not found after update")
return result
@begin_session
def increment_operations_completed(
self,
session_id: int,
session: Session = None, # type: ignore
) -> None:
session.execute(
update(SyncSession)
.where(SyncSession.id == session_id)
.values(
operations_completed=SyncSession.operations_completed + 1,
)
.execution_options(synchronize_session="evaluate")
)
@begin_session
def complete_session(
self,
session_id: int,
operations_completed: int = 0,
operations_failed: int = 0,
session: Session = None, # type: ignore
) -> SyncSession:
session.execute(
update(SyncSession)
.where(SyncSession.id == session_id)
.values(
status=SyncSessionStatus.COMPLETED,
completed_at=datetime.now(timezone.utc),
operations_completed=operations_completed,
operations_failed=operations_failed,
)
.execution_options(synchronize_session="evaluate")
)
result = session.scalar(select(SyncSession).filter_by(id=session_id))
if not result:
raise NoResultFound(f"SyncSession {session_id} not found after complete")
return result
@begin_session
def fail_session(
self,
session_id: int,
error_message: str | None = None,
session: Session = None, # type: ignore
) -> SyncSession:
session.execute(
update(SyncSession)
.where(SyncSession.id == session_id)
.values(
status=SyncSessionStatus.FAILED,
completed_at=datetime.now(timezone.utc),
error_message=error_message,
)
.execution_options(synchronize_session="evaluate")
)
result = session.scalar(select(SyncSession).filter_by(id=session_id))
if not result:
raise NoResultFound(f"SyncSession {session_id} not found after fail")
return result
@begin_session
def cancel_active_sessions(
self,
device_id: str,
user_id: int,
session: Session = None, # type: ignore
) -> int:
"""Cancel all active sessions for a device. Returns count of cancelled sessions."""
result = session.execute(
update(SyncSession)
.where(
SyncSession.device_id == device_id,
SyncSession.user_id == user_id,
SyncSession.status.in_(
[
SyncSessionStatus.PENDING,
SyncSessionStatus.IN_PROGRESS,
]
),
)
.values(
status=SyncSessionStatus.CANCELLED,
completed_at=datetime.now(timezone.utc),
)
.execution_options(synchronize_session="evaluate")
)
return result.rowcount
@begin_session
def get_sessions(
self,
user_id: int,
device_id: str | None = None,
status: SyncSessionStatus | None = None,
limit: int = 50,
session: Session = None, # type: ignore
) -> Sequence[SyncSession]:
query = select(SyncSession).filter_by(user_id=user_id)
if device_id:
query = query.filter_by(device_id=device_id)
if status:
query = query.filter_by(status=status)
query = query.order_by(SyncSession.initiated_at.desc()).limit(limit)
return session.scalars(query).all()