-
-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathservices.py
281 lines (178 loc) · 8.54 KB
/
services.py
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
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
"""Example domain objects for testing."""
from __future__ import annotations
from typing import Any
from advanced_alchemy.service import (
SQLAlchemyAsyncRepositoryService,
SQLAlchemySyncRepositoryService,
)
from tests.fixtures.bigint.models import (
BigIntAuthor,
BigIntBook,
BigIntEventLog,
BigIntItem,
BigIntModelWithFetchedValue,
BigIntRule,
BigIntSecret,
BigIntSlugBook,
BigIntTag,
)
from tests.fixtures.bigint.repositories import (
AuthorAsyncMockRepository,
AuthorAsyncRepository,
AuthorSyncMockRepository,
AuthorSyncRepository,
BookAsyncMockRepository,
BookAsyncRepository,
BookSyncMockRepository,
BookSyncRepository,
EventLogAsyncRepository,
EventLogSyncRepository,
ItemAsyncMockRepository,
ItemAsyncRepository,
ItemSyncMockRepository,
ItemSyncRepository,
ModelWithFetchedValueAsyncRepository,
ModelWithFetchedValueSyncRepository,
RuleAsyncMockRepository,
RuleAsyncRepository,
RuleSyncMockRepository,
RuleSyncRepository,
SecretAsyncRepository,
SecretSyncRepository,
SlugBookAsyncMockRepository,
SlugBookAsyncRepository,
SlugBookSyncMockRepository,
SlugBookSyncRepository,
TagAsyncMockRepository,
TagAsyncRepository,
TagSyncMockRepository,
TagSyncRepository,
)
# Services
class SecretAsyncService(SQLAlchemyAsyncRepositoryService[BigIntSecret]):
"""Rule repository."""
repository_type = SecretAsyncRepository
class RuleAsyncService(SQLAlchemyAsyncRepositoryService[BigIntRule]):
"""Rule repository."""
repository_type = RuleAsyncRepository
class RuleAsyncMockService(SQLAlchemyAsyncRepositoryService[BigIntRule]):
"""Rule repository."""
repository_type = RuleAsyncMockRepository
class RuleSyncMockService(SQLAlchemySyncRepositoryService[BigIntRule]):
"""Rule repository."""
repository_type = RuleSyncMockRepository
class AuthorAsyncService(SQLAlchemyAsyncRepositoryService[BigIntAuthor]):
"""Author repository."""
repository_type = AuthorAsyncRepository
class AuthorAsyncMockService(SQLAlchemyAsyncRepositoryService[BigIntAuthor]):
"""Author repository."""
repository_type = AuthorAsyncMockRepository
class AuthorSyncMockService(SQLAlchemySyncRepositoryService[BigIntAuthor]):
"""Author repository."""
repository_type = AuthorSyncMockRepository
class BookAsyncService(SQLAlchemyAsyncRepositoryService[BigIntBook]):
"""Book repository."""
repository_type = BookAsyncRepository
class BookAsyncMockService(SQLAlchemyAsyncRepositoryService[BigIntBook]):
"""Book repository."""
repository_type = BookAsyncMockRepository
class BookSyncMockService(SQLAlchemySyncRepositoryService[BigIntBook]):
"""Book repository."""
repository_type = BookSyncMockRepository
class EventLogAsyncService(SQLAlchemyAsyncRepositoryService[BigIntEventLog]):
"""Event log repository."""
repository_type = EventLogAsyncRepository
class ModelWithFetchedValueAsyncService(SQLAlchemyAsyncRepositoryService[BigIntModelWithFetchedValue]):
"""BigIntModelWithFetchedValue repository."""
repository_type = ModelWithFetchedValueAsyncRepository
class TagAsyncService(SQLAlchemyAsyncRepositoryService[BigIntTag]):
"""Tag repository."""
repository_type = TagAsyncRepository
class TagAsyncMockService(SQLAlchemyAsyncRepositoryService[BigIntTag]):
"""Tag repository."""
repository_type = TagAsyncMockRepository
class TagSyncMockService(SQLAlchemySyncRepositoryService[BigIntTag]):
"""Tag repository."""
repository_type = TagSyncMockRepository
class ItemAsyncService(SQLAlchemyAsyncRepositoryService[BigIntItem]):
"""Item repository."""
repository_type = ItemAsyncRepository
class ItemAsyncMockService(SQLAlchemyAsyncRepositoryService[BigIntItem]):
"""Item repository."""
repository_type = ItemAsyncMockRepository
class ItemSyncMockService(SQLAlchemySyncRepositoryService[BigIntItem]):
"""Item repository."""
repository_type = ItemSyncMockRepository
class RuleSyncService(SQLAlchemySyncRepositoryService[BigIntRule]):
"""Rule repository."""
repository_type = RuleSyncRepository
class AuthorSyncService(SQLAlchemySyncRepositoryService[BigIntAuthor]):
"""Author repository."""
repository_type = AuthorSyncRepository
class BookSyncService(SQLAlchemySyncRepositoryService[BigIntBook]):
"""Book repository."""
repository_type = BookSyncRepository
class EventLogSyncService(SQLAlchemySyncRepositoryService[BigIntEventLog]):
"""Event log repository."""
repository_type = EventLogSyncRepository
class ModelWithFetchedValueSyncService(SQLAlchemySyncRepositoryService[BigIntModelWithFetchedValue]):
"""BigIntModelWithFetchedValue repository."""
repository_type = ModelWithFetchedValueSyncRepository
class SecretSyncService(SQLAlchemySyncRepositoryService[BigIntSecret]):
"""Rule repository."""
repository_type = SecretSyncRepository
class TagSyncService(SQLAlchemySyncRepositoryService[BigIntTag]):
"""Tag repository."""
repository_type = TagSyncRepository
class ItemSyncService(SQLAlchemySyncRepositoryService[BigIntItem]):
"""Item repository."""
repository_type = ItemSyncRepository
# Slug book
class SlugBookAsyncService(SQLAlchemyAsyncRepositoryService[BigIntSlugBook]):
"""Book repository."""
repository_type = SlugBookAsyncRepository
match_fields = ["title"]
def __init__(self, **repo_kwargs: Any) -> None:
self.repository: SlugBookAsyncRepository = self.repository_type(**repo_kwargs) # pyright: ignore
async def to_model(self, data: BigIntSlugBook | dict[str, Any], operation: str | None = None) -> BigIntSlugBook:
if isinstance(data, dict) and "slug" not in data and operation == "create":
data["slug"] = await self.repository.get_available_slug(data["title"])
if isinstance(data, dict) and "slug" not in data and "title" in data and operation == "update":
data["slug"] = await self.repository.get_available_slug(data["title"])
return await super().to_model(data, operation)
class SlugBookSyncService(SQLAlchemySyncRepositoryService[BigIntSlugBook]):
"""Book repository."""
repository_type = SlugBookSyncRepository
match_fields = ["title"]
def __init__(self, **repo_kwargs: Any) -> None:
self.repository: SlugBookSyncRepository = self.repository_type(**repo_kwargs) # pyright: ignore
def to_model(self, data: BigIntSlugBook | dict[str, Any], operation: str | None = None) -> BigIntSlugBook:
if isinstance(data, dict) and "slug" not in data and operation == "create":
data["slug"] = self.repository.get_available_slug(data["title"])
if isinstance(data, dict) and "slug" not in data and "title" in data and operation == "update":
data["slug"] = self.repository.get_available_slug(data["title"])
return super().to_model(data, operation)
class SlugBookAsyncMockService(SQLAlchemyAsyncRepositoryService[BigIntSlugBook]):
"""Book repository."""
repository_type = SlugBookAsyncMockRepository
match_fields = ["title"]
def __init__(self, **repo_kwargs: Any) -> None:
self.repository: SlugBookAsyncMockRepository = self.repository_type(**repo_kwargs) # pyright: ignore
async def to_model(self, data: BigIntSlugBook | dict[str, Any], operation: str | None = None) -> BigIntSlugBook:
if isinstance(data, dict) and "slug" not in data and operation == "create":
data["slug"] = await self.repository.get_available_slug(data["title"])
if isinstance(data, dict) and "slug" not in data and "title" in data and operation == "update":
data["slug"] = await self.repository.get_available_slug(data["title"])
return await super().to_model(data, operation)
class SlugBookSyncMockService(SQLAlchemySyncRepositoryService[BigIntSlugBook]):
"""Book repository."""
repository_type = SlugBookSyncMockRepository
match_fields = ["title"]
def __init__(self, **repo_kwargs: Any) -> None:
self.repository: SlugBookSyncMockRepository = self.repository_type(**repo_kwargs) # pyright: ignore
def to_model(self, data: BigIntSlugBook | dict[str, Any], operation: str | None = None) -> BigIntSlugBook:
if isinstance(data, dict) and "slug" not in data and operation == "create":
data["slug"] = self.repository.get_available_slug(data["title"])
if isinstance(data, dict) and "slug" not in data and "title" in data and operation == "update":
data["slug"] = self.repository.get_available_slug(data["title"])
return super().to_model(data, operation)