-
Notifications
You must be signed in to change notification settings - Fork 0
/
models.py
266 lines (260 loc) · 10.7 KB
/
models.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
from werkzeug.datastructures import FileStorage
def generate_page_model(api):
return api.schema_model('Page', {
"type": "object",
"required": [
"id",
"title",
"tokens"
],
"properties": {
"id": {
"type": "string",
"description": "UUID stránky"
},
"title": {
"type": "string",
"description": "Nadpis stránky"
},
"source": {
"type": "string",
"description": "URL na zdroje stránky, napríklad https://dnnt.mzk.cz/view/uuid:57f3ff20-9ee3-11e3-8b69"
"-005056825209?page=uuid:ecabc240-a45d-11e3-b74a-5ef3fc9ae867 "
"https://dnnt.mzk.cz/search/api/v5.0/item/uuid:ecabc240-a45d-11e3-b74a-5ef3fc9ae867/"
},
"tokens": {
"type": "array",
"description": "Pole slov",
"items": {
"type": "object",
"required": [
"content",
"linguisticMetadata"
],
"properties": {
"content": {
"type": "string",
"description": "Slovo v texte"
},
"nameTagMetadata": {
"type": "string",
"description": "Výstup ku danému slovu z nástroja NameTag."
},
"linguisticMetadata": {
"type": "object",
"description": "Výstup ku danému slovu z nástroja UDPipe.",
"required": [
"position",
"lemma"
],
"properties": {
"position": {
"type": "number",
"description": "Pozícia slova vo vete, číslované od 1."
},
"uPosTag": {
"type": "string",
"description": "Výstup z nástroja UDPipe."
},
"misc": {
"type": "string",
"description": "Výstup z nástroja UDPipe."
},
"feats": {
"type": "string",
"description": "Výstup z nástroja UDPipe."
},
"lemma": {
"type": "string",
"description": "Slovo v základnom tvare."
}
}
},
"altoMetadata": {
"type": "object",
"description": "Informácie z formátu alto.",
"required": [
"width",
"height",
"vpos",
"hpos"
],
"properties": {
"width": {
"type": "number"
},
"height": {
"type": "number"
},
"vpos": {
"type": "number"
},
"hpos": {
"type": "number"
}
}
}
}
}
}
}
})
def generate_header_model(api):
return api.schema_model('Header', {
"type": "object",
"required": [
"author",
"identifiers",
"originInfo",
"physicalDescription",
"title"
],
"properties": {
"title": {
"type": "string",
"description": "Nadpis publikácie"
},
"source": {
"type": "string",
"description": "URL na zdroje publikácie, napríklad "
"https://dnnt.mzk.cz/view/uuid:57f3ff20-9ee3-11e3-8b69-005056825209 "
"https://dnnt.mzk.cz/search/api/v5.0/item/uuid:57f3ff20-9ee3-11e3-8b69-005056825209/ "
},
"physicalDescription": {
"type": "object",
"required": [
"extent"
],
"properties": {
"extent": {
"type": "string",
"description": "Fyzické rozmery publikácie"
}
}
},
"author": {
"type": "object",
"required": [
"type",
"name",
"identifier"
],
"properties": {
"type": {
"type": "string",
"enum": ["corporate", "person"],
"description": "Typ autora"
},
"name": {
"type": "string",
"description": "Názov/meno autora"
},
"identifier": {
"type": "string",
"description": "Identifikátor autora"
}
}
},
"originInfo": {
"type": "object",
"required": [
"publisher",
"date",
"places"
],
"properties": {
"publisher": {
"type": "string",
"description": "Vydávateľ"
},
"date": {
"type": "string",
"description": "Dátum vydania"
},
"places": {
"type": "array",
"items": {
"type": "string",
"description": "Miesto vydania"
}
}
}
},
"identifiers": {
"type": "array",
"description": "Identifikátory publikácie",
"items": {
"type": "object",
"required": [
"type",
"value"
],
"properties": {
"type": {
"type": "string",
"description": "Typ identifikátora"
},
"value": {
"type": "string",
"description": "Hodnota identifikátora"
}
}
}
},
"processedBy": {
"type": "array",
"description": "Aplikácie použité pre spracovanie",
"items": {
"type": "object",
"required": [
"identifier",
"version"
],
"properties": {
"identifier": {
"type": "string",
"description": "Identifikátor nástroja/aplikácie"
},
"version": {
"type": "string",
"description": "Verzia nástroja/aplikácie"
},
"from": {
"type": "string",
"description": "Dátum použitia nástroja/aplikácie, od"
},
"to": {
"type": "string",
"description": "Dátum použitia nástroja/aplikácie, do"
},
"when": {
"type": "string",
"description": "Dátum použitia nástroja/aplikácie"
},
"label": {
"type": "string",
"description": "Bližší popis nástroja/aplikácie"
}
}
}
}
}
})
def generate_merge_parser(api):
merge_parser = api.parser()
merge_parser.add_argument('header', location='files', type=FileStorage, required=True,
help='TEI hlavička dokumentu vygenerovaná službou `POST /convert/header`')
merge_parser.add_argument('page[]', location='files', type=FileStorage, required=True,
help='TEI stránok dokumentu vygenerované službou `POST /convert/page`. Môže byť '
'vložených opakovane pre zlúčenie viac stránok do dokumentu')
merge_parser.add_argument('NameTag', type=str, location='form',
help='Filtrácia NameTag rozpoznaných entít. Uveďte zoznam skupín entít, ktoré majú byť '
'zachované. Zoznam podporovaných skupín: `a,g,i,m,n,o,p,t`')
merge_parser.add_argument('UDPipe', type=str, location='form',
help='Filtrácia UDPipe rozpoznaných atribútov. Uveďte zoznam (oddelené čiarkou) '
'atribútov, ktoré majú byť zachované. Zoznam podporovaných atribútov: '
'`n,lemma,pos,msd,join`')
merge_parser.add_argument('ALTO', type=str, location='form',
help='Filtrácia ALTO rozpoznaných atribútov. Uveďte zoznam (oddelené čiarkou) atribútov, '
'ktoré majú byť zachované. Zoznam podporovaných atribútov: `width,height,vpos,hpos`')
return merge_parser