1
|
|
|
""" |
2
|
|
|
This module adds DataManagers for Atramhasis. These are service layer objects |
3
|
|
|
that abstract all interactions with the database away from the views. |
4
|
|
|
|
5
|
|
|
:versionadded: 0.4.1 |
6
|
|
|
""" |
7
|
|
|
import uuid |
8
|
|
|
|
9
|
|
|
from datetime import date |
10
|
|
|
from datetime import datetime |
11
|
|
|
|
12
|
|
|
import dateutil.relativedelta |
13
|
|
|
from skosprovider_sqlalchemy.models import Collection |
14
|
|
|
from skosprovider_sqlalchemy.models import Concept |
15
|
|
|
from skosprovider_sqlalchemy.models import ConceptScheme |
16
|
|
|
from skosprovider_sqlalchemy.models import Label |
17
|
|
|
from skosprovider_sqlalchemy.models import LabelType |
18
|
|
|
from skosprovider_sqlalchemy.models import Language |
19
|
|
|
from skosprovider_sqlalchemy.models import Match |
20
|
|
|
from skosprovider_sqlalchemy.models import MatchType |
21
|
|
|
from skosprovider_sqlalchemy.models import Thing |
22
|
|
|
from sqlalchemy import desc |
23
|
|
|
from sqlalchemy import func |
24
|
|
|
from sqlalchemy import select |
25
|
|
|
from sqlalchemy.orm import joinedload |
26
|
|
|
|
27
|
|
|
from atramhasis.data import popular_concepts |
28
|
|
|
from atramhasis.data.models import ConceptVisitLog |
29
|
|
|
from atramhasis.data.models import ConceptschemeCounts |
30
|
|
|
from atramhasis.skos import IDGenerationStrategy |
31
|
|
|
|
32
|
|
|
|
33
|
|
|
class DataManager: |
34
|
|
|
""" |
35
|
|
|
A DataManager abstracts all interactions with the database for a certain model. |
36
|
|
|
""" |
37
|
|
|
|
38
|
|
|
def __init__(self, session): |
39
|
|
|
self.session = session |
40
|
|
|
|
41
|
|
|
|
42
|
|
|
class ConceptSchemeManager(DataManager): |
43
|
|
|
""" |
44
|
|
|
A :class:`DataManager` for |
45
|
|
|
:class:`ConceptSchemes <skosprovider_sqlalchemy.models.ConceptScheme>.` |
46
|
|
|
""" |
47
|
|
|
|
48
|
|
|
def __init__(self, session): |
49
|
|
|
super().__init__(session) |
50
|
|
|
|
51
|
|
|
def get(self, conceptscheme_id): |
52
|
|
|
""" |
53
|
|
|
|
54
|
|
|
:param conceptscheme_id: a concepscheme id |
55
|
|
|
:return: the concepscheme for the given id |
56
|
|
|
""" |
57
|
|
|
return self.session.execute( |
58
|
|
|
select(ConceptScheme) |
59
|
|
|
.filter(ConceptScheme.id == conceptscheme_id) |
60
|
|
|
).scalar_one() |
61
|
|
|
|
62
|
|
|
def find(self, conceptscheme_id, query): |
63
|
|
|
""" |
64
|
|
|
Find concepts and collections in this concept scheme. |
65
|
|
|
|
66
|
|
|
:param conceptscheme_id: a concepscheme id |
67
|
|
|
:param query: A python dictionary containing query parameters. |
68
|
|
|
:returns: A :class:`list` of |
69
|
|
|
:class:`skosprovider_sqlalchemy.models.Thing` instances. |
70
|
|
|
""" |
71
|
|
|
db_query = ( |
72
|
|
|
select(Thing) |
73
|
|
|
.options(joinedload('labels')) |
74
|
|
|
.filter(Thing.conceptscheme_id == conceptscheme_id) |
75
|
|
|
) |
76
|
|
|
if 'type' in query and query['type'] in ['concept', 'collection']: |
77
|
|
|
db_query = db_query.filter(Thing.type == query['type']) |
78
|
|
|
if 'label' in query: |
79
|
|
|
db_query = db_query.filter( |
80
|
|
|
Thing.labels.any( |
81
|
|
|
Label.label.ilike('%' + query['label'].lower() + '%') |
82
|
|
|
) |
83
|
|
|
) |
84
|
|
|
return self.session.execute(db_query).unique().scalars().all() |
85
|
|
|
|
86
|
|
|
def get_concepts_for_scheme_tree(self, conceptscheme_id): |
87
|
|
|
""" |
88
|
|
|
|
89
|
|
|
:param conceptscheme_id: a concepscheme id |
90
|
|
|
:return: all concepts for the scheme_tree |
91
|
|
|
""" |
92
|
|
|
return self.session.execute( |
93
|
|
|
select(Concept) |
94
|
|
|
.filter( |
95
|
|
|
Concept.conceptscheme_id == conceptscheme_id, |
96
|
|
|
~Concept.broader_concepts.any(), |
97
|
|
|
~Collection.member_of.any() |
98
|
|
|
) |
99
|
|
|
).scalars().all() |
100
|
|
|
|
101
|
|
|
def get_collections_for_scheme_tree(self, conceptscheme_id): |
102
|
|
|
""" |
103
|
|
|
|
104
|
|
|
:param conceptscheme_id: a concepscheme id |
105
|
|
|
:return: all collections for the scheme_tree |
106
|
|
|
""" |
107
|
|
|
return self.session.execute( |
108
|
|
|
select(Collection) |
109
|
|
|
.filter( |
110
|
|
|
Collection.conceptscheme_id == conceptscheme_id, |
111
|
|
|
~Collection.broader_concepts.any(), |
112
|
|
|
~Collection.member_of.any(), |
113
|
|
|
) |
114
|
|
|
).scalars().all() |
115
|
|
|
|
116
|
|
|
def get_all(self, conceptscheme_id): |
117
|
|
|
""" |
118
|
|
|
Get all concepts and collections in this concept scheme. |
119
|
|
|
|
120
|
|
|
:param conceptscheme_id: a concepscheme id |
121
|
|
|
:returns: A :class:`list` of |
122
|
|
|
:class:`skosprovider_sqlalchemy.models.Thing` instances. |
123
|
|
|
""" |
124
|
|
|
all_results = self.session.execute( |
125
|
|
|
select(Thing) |
126
|
|
|
.options(joinedload('labels')) |
127
|
|
|
.filter(Thing.conceptscheme_id == conceptscheme_id) |
128
|
|
|
).unique().scalars().all() |
129
|
|
|
return all_results |
130
|
|
|
|
131
|
|
|
def save(self, conceptscheme): |
132
|
|
|
""" |
133
|
|
|
|
134
|
|
|
:param conceptscheme: conceptscheme to save |
135
|
|
|
:return: saved conceptscheme |
136
|
|
|
""" |
137
|
|
|
self.session.merge(conceptscheme) |
138
|
|
|
self.session.flush() |
139
|
|
|
return conceptscheme |
140
|
|
|
|
141
|
|
|
|
142
|
|
|
class SkosManager(DataManager): |
143
|
|
|
""" |
144
|
|
|
A :class:`DataManager` for |
145
|
|
|
:class:`Concepts and Collections <skosprovider_sqlalchemy.models.Thing>.` |
146
|
|
|
""" |
147
|
|
|
|
148
|
|
|
def __init__(self, session): |
149
|
|
|
super().__init__(session) |
150
|
|
|
|
151
|
|
|
def get_thing(self, concept_id, conceptscheme_id): |
152
|
|
|
""" |
153
|
|
|
|
154
|
|
|
:param concept_id: a concept id |
155
|
|
|
:param conceptscheme_id: a conceptscheme id |
156
|
|
|
:return: the selected thing (Concept or Collection) |
157
|
|
|
""" |
158
|
|
|
return self.session.execute( |
159
|
|
|
select(Thing) |
160
|
|
|
.filter( |
161
|
|
|
Thing.concept_id == concept_id, |
162
|
|
|
Thing.conceptscheme_id == conceptscheme_id |
163
|
|
|
) |
164
|
|
|
).scalar_one() |
165
|
|
|
|
166
|
|
|
def save(self, thing): |
167
|
|
|
""" |
168
|
|
|
|
169
|
|
|
:param thing: thing to save |
170
|
|
|
:return: saved thing |
171
|
|
|
""" |
172
|
|
|
self.session.add(thing) |
173
|
|
|
self.session.flush() |
174
|
|
|
return thing |
175
|
|
|
|
176
|
|
|
def change_type(self, thing, concept_id, conceptscheme_id, new_type, uri): |
177
|
|
|
self.delete_thing(thing) |
178
|
|
|
self.session.flush() |
179
|
|
|
thing = Concept() if new_type == 'concept' else Collection() |
180
|
|
|
thing.type = new_type |
181
|
|
|
thing.concept_id = concept_id |
182
|
|
|
thing.conceptscheme_id = conceptscheme_id |
183
|
|
|
thing.uri = uri |
184
|
|
|
self.save(thing) |
185
|
|
|
return thing |
186
|
|
|
|
187
|
|
|
def delete_thing(self, thing): |
188
|
|
|
""" |
189
|
|
|
|
190
|
|
|
:param thing: the thing to delete |
191
|
|
|
""" |
192
|
|
|
self.session.delete(thing) |
193
|
|
|
|
194
|
|
|
def get_by_list_type(self, list_type): |
195
|
|
|
""" |
196
|
|
|
|
197
|
|
|
:param list_type: a specific list type |
198
|
|
|
:return: all results for the specific list type |
199
|
|
|
""" |
200
|
|
|
return self.session.execute(select(list_type)).scalars().all() |
201
|
|
|
|
202
|
|
|
def get_match_type(self, match_type): |
203
|
|
|
return self.session.execute( |
204
|
|
|
select(MatchType) |
205
|
|
|
.filter(MatchType.name == match_type) |
206
|
|
|
).scalar_one() |
207
|
|
|
|
208
|
|
|
def get_match(self, uri, matchtype_id, concept_id): |
209
|
|
|
return self.session.execute( |
210
|
|
|
select(Match) |
211
|
|
|
.filter( |
212
|
|
|
Match.uri == uri, |
213
|
|
|
Match.matchtype_id == matchtype_id, |
214
|
|
|
Match.concept_id == concept_id |
215
|
|
|
) |
216
|
|
|
).scalar_one() |
217
|
|
|
|
218
|
|
|
def get_all_label_types(self): |
219
|
|
|
return self.session.execute(select(LabelType)).scalars().all() |
220
|
|
|
|
221
|
|
|
def get_next_cid(self, conceptscheme_id, id_generation_strategy): |
222
|
|
|
if id_generation_strategy == IDGenerationStrategy.NUMERIC: |
223
|
|
|
max_id = self.session.execute( |
224
|
|
|
select(func.max(Thing.concept_id)) |
225
|
|
|
.filter_by(conceptscheme_id=conceptscheme_id) |
226
|
|
|
).scalar_one() |
227
|
|
|
return max_id + 1 if max_id else 1 |
228
|
|
|
elif id_generation_strategy == IDGenerationStrategy.GUID: |
229
|
|
|
return str(uuid.uuid4()) |
230
|
|
|
else: |
231
|
|
|
raise ValueError("unsupported id_generation_strategy") |
232
|
|
|
|
233
|
|
|
|
234
|
|
|
class LanguagesManager(DataManager): |
235
|
|
|
""" |
236
|
|
|
A :class:`DataManager` for |
237
|
|
|
:class:`Languages <skosprovider_sqlalchemy.models.Language>.` |
238
|
|
|
""" |
239
|
|
|
|
240
|
|
|
def __init__(self, session): |
241
|
|
|
super().__init__(session) |
242
|
|
|
|
243
|
|
|
def get(self, language_id): |
244
|
|
|
return self.session.execute( |
245
|
|
|
select(Language) |
246
|
|
|
.filter(Language.id == language_id) |
247
|
|
|
).scalar_one() |
248
|
|
|
|
249
|
|
|
def save(self, language): |
250
|
|
|
""" |
251
|
|
|
|
252
|
|
|
:param language: language to save |
253
|
|
|
:return: saved language |
254
|
|
|
""" |
255
|
|
|
self.session.add(language) |
256
|
|
|
self.session.flush() |
257
|
|
|
return language |
258
|
|
|
|
259
|
|
|
def delete(self, language): |
260
|
|
|
""" |
261
|
|
|
|
262
|
|
|
:param language: the language to delete |
263
|
|
|
""" |
264
|
|
|
self.session.delete(language) |
265
|
|
|
|
266
|
|
|
def get_all(self): |
267
|
|
|
""" |
268
|
|
|
|
269
|
|
|
:return: list of all languages |
270
|
|
|
""" |
271
|
|
|
return self.session.execute(select(Language)).scalars().all() |
272
|
|
|
|
273
|
|
|
def get_all_sorted(self, sort_coll, sort_desc): |
274
|
|
|
""" |
275
|
|
|
|
276
|
|
|
:param sort_coll: sort on this column |
277
|
|
|
:param sort_desc: descending or not |
278
|
|
|
:return: sorted list of languages |
279
|
|
|
""" |
280
|
|
|
if sort_desc: |
281
|
|
|
return self.session.execute( |
282
|
|
|
select(Language) |
283
|
|
|
.order_by(desc(sort_coll)) |
284
|
|
|
).scalars().all() |
285
|
|
|
else: |
286
|
|
|
return self.session.execute( |
287
|
|
|
select(Language) |
288
|
|
|
.order_by(sort_coll) |
289
|
|
|
).scalars().all() |
290
|
|
|
|
291
|
|
|
def count_languages(self, language_tag): |
292
|
|
|
return self.session.execute( |
293
|
|
|
select(func.count(Language.id)) |
294
|
|
|
.filter(Language.id == language_tag) |
295
|
|
|
).scalar_one() |
296
|
|
|
|
297
|
|
|
|
298
|
|
|
class AuditManager(DataManager): |
299
|
|
|
""" |
300
|
|
|
A data manager for logging the visit. |
301
|
|
|
""" |
302
|
|
|
|
303
|
|
|
def save(self, visit_log): |
304
|
|
|
""" |
305
|
|
|
save a certain visit |
306
|
|
|
:param visit_log: log of visit to save |
307
|
|
|
:return: The saved visit log |
308
|
|
|
""" |
309
|
|
|
self.session.add(visit_log) |
310
|
|
|
self.session.flush() |
311
|
|
|
return visit_log |
312
|
|
|
|
313
|
|
|
@popular_concepts.cache_on_arguments(expiration_time=86400) |
314
|
|
|
def get_most_popular_concepts_for_conceptscheme( |
315
|
|
|
self, conceptscheme_id, max_results=5, period='last_month' |
316
|
|
|
): |
317
|
|
|
""" |
318
|
|
|
get the most popular concepts for a conceptscheme |
319
|
|
|
:param conceptscheme_id: id of the conceptscheme |
320
|
|
|
:param max_results: maximum number of results, default 5 |
321
|
|
|
:param period: 'last_day' or 'last_week' or 'last_month' or 'last_year', default 'last_mont h' |
322
|
|
|
:return: List of the most popular concepts of a conceptscheme over a certain period |
323
|
|
|
""" |
324
|
|
|
|
325
|
|
|
start_date = self._get_first_day(period) |
326
|
|
|
rows = self.session.execute( |
327
|
|
|
select( |
328
|
|
|
ConceptVisitLog.concept_id, |
329
|
|
|
func.count(ConceptVisitLog.concept_id).label('count') |
330
|
|
|
) |
331
|
|
|
.filter( |
332
|
|
|
ConceptVisitLog.conceptscheme_id == str(conceptscheme_id), |
333
|
|
|
ConceptVisitLog.visited_at >= start_date |
334
|
|
|
) |
335
|
|
|
.group_by(ConceptVisitLog.concept_id) |
336
|
|
|
.order_by(desc('count')) |
337
|
|
|
.limit(max_results) |
338
|
|
|
).all() |
339
|
|
|
results = [] |
340
|
|
|
for row in rows: |
341
|
|
|
results.append({'concept_id': row.concept_id, 'scheme_id': conceptscheme_id}) |
342
|
|
|
return results |
343
|
|
|
|
344
|
|
|
@staticmethod |
345
|
|
|
def _get_first_day(period): |
346
|
|
|
""" |
347
|
|
|
get the first day of a certain period until now |
348
|
|
|
:param period: 'last_day' or 'last_week' or 'last_month' or 'last_year' |
349
|
|
|
:return: (string) the first day of the period |
350
|
|
|
""" |
351
|
|
|
d = date.today() |
352
|
|
|
datetime.combine(d, datetime.min.time()) |
353
|
|
|
start_date = d - dateutil.relativedelta.relativedelta( |
354
|
|
|
days=1 if period == 'last_day' else 0, |
355
|
|
|
weeks=1 if period == 'last_week' else 0, |
356
|
|
|
months=1 if period == 'last_month' else 0, |
357
|
|
|
years=1 if period == 'last_year' else 0 |
358
|
|
|
) |
359
|
|
|
return start_date.strftime("%Y-%m-%d") |
360
|
|
|
|
361
|
|
|
|
362
|
|
|
class CountsManager(DataManager): |
363
|
|
|
""" |
364
|
|
|
A data manager that deals with triple counts. |
365
|
|
|
""" |
366
|
|
|
|
367
|
|
|
def save(self, counts): |
368
|
|
|
""" |
369
|
|
|
Save a certain counts object |
370
|
|
|
|
371
|
|
|
:param atramhasis.data.models.ConceptschemeCounts counts: Counts object to save |
372
|
|
|
|
373
|
|
|
:return: The saved count |
374
|
|
|
""" |
375
|
|
|
self.session.add(counts) |
376
|
|
|
self.session.flush() |
377
|
|
|
return counts |
378
|
|
|
|
379
|
|
|
def get_most_recent_count_for_scheme(self, conceptscheme_id): |
380
|
|
|
recent = self.session.execute( |
381
|
|
|
select(ConceptschemeCounts) |
382
|
|
|
.filter(ConceptschemeCounts.conceptscheme_id == conceptscheme_id) |
383
|
|
|
.order_by(desc('counted_at')) |
384
|
|
|
).scalar_one() |
385
|
|
|
return recent |
386
|
|
|
|