-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathweb.rb
279 lines (249 loc) · 6.41 KB
/
web.rb
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
require "sparql/client"
require "uri"
queryFindMappingEffort = <<QUERY
PREFIX mp: <http://sem.tenforce.com/vocabularies/mapping-platform/>
PREFIX mu: <http://mu.semte.ch/vocabularies/core/>
SELECT ?mappingEffort
FROM <#{settings.graph}>
WHERE
{
?mappingEffort a mp:MappingEffort ;
mu:uuid %uuid% .
}
QUERY
queryFromEsco = <<QUERY
PREFIX esco: <http://data.europa.eu/esco/model#>
PREFIX mp: <http://sem.tenforce.com/vocabularies/mapping-platform/>
PREFIX mu: <http://mu.semte.ch/vocabularies/core/>
PREFIX skosxl: <http://www.w3.org/2008/05/skos-xl#>
SELECT ?nocID ?nocPrefLabel ?escoURI ?escoPrefLabel ?mappingType ?status
FROM <#{settings.graph}>
WHERE
{
?mapping a mp:Mapping ;
mp:isMappingFor <%mappingEffort%> ;
mp:mapsFrom ?escoURI ;
mp:mapsTo ?nocURI ;
mp:matchType ?mappingType ;
mp:status ?status .
OPTIONAL { ?escoURI skosxl:prefLabel/skosxl:literalForm ?escoPrefLabel } .
?nocURI esco:NOCID ?nocID .
OPTIONAL { ?nocURI skosxl:prefLabel/skosxl:literalForm ?nocPrefLabel } .
}
QUERY
queryToEsco = <<QUERY
PREFIX esco: <http://data.europa.eu/esco/model#>
PREFIX mp: <http://sem.tenforce.com/vocabularies/mapping-platform/>
PREFIX mu: <http://mu.semte.ch/vocabularies/core/>
PREFIX skosxl: <http://www.w3.org/2008/05/skos-xl#>
SELECT ?nocID ?nocPrefLabel ?escoURI ?escoPrefLabel ?mappingType ?status
FROM <#{settings.graph}>
WHERE
{
?mapping a mp:Mapping ;
mp:isMappingFor <%mappingEffort%> ;
mp:mapsFrom ?nocURI ;
mp:mapsTo ?escoURI ;
mp:matchType ?mappingType ;
mp:status ?status .
OPTIONAL { ?escoURI skosxl:prefLabel/skosxl:literalForm ?escoPrefLabel } .
?nocURI esco:NOCID ?nocID .
OPTIONAL { ?nocURI skosxl:prefLabel/skosxl:literalForm ?nocPrefLabel } .
}
QUERY
queryIsMappingToNoc = <<QUERY
PREFIX esco: <http://data.europa.eu/esco/model#>
PREFIX mp: <http://sem.tenforce.com/vocabularies/mapping-platform/>
PREFIX mu: <http://mu.semte.ch/vocabularies/core/>
ASK
FROM <#{settings.graph}>
{
?mapping a mp:Mapping ;
mp:isMappingFor <%mappingEffort%> ;
mp:mapsTo/esco:NOCID ?x .
}
QUERY
queryFetchHeadersToNoc = <<QUERY
PREFIX esco: <http://data.europa.eu/esco/model#>
PREFIX mp: <http://sem.tenforce.com/vocabularies/mapping-platform/>
SELECT ?key ?value
FROM <#{settings.graph}>
WHERE
{
{
SELECT ("Mapping version:" AS ?key) (?mappingVersion AS ?value)
WHERE
{
<%mappingEffort%> mp:mappingVersion ?mappingVersion .
}
}
UNION
{
SELECT ("From URI:" AS ?key) (?fromUri AS ?value)
WHERE
{
<%mappingEffort%> mp:taxonomyFrom ?fromUri .
}
}
UNION
{
SELECT ("To ID:" AS ?key) (?toId AS ?value)
WHERE
{
?mapping a mp:Mapping ;
mp:isMappingFor <%mappingEffort%> ;
mp:mapsTo/esco:NOCClassification ?toId .
}
LIMIT 1
}
UNION
{
SELECT ("To version:" AS ?key) (?toVersion AS ?value)
WHERE
{
?mapping a mp:Mapping ;
mp:isMappingFor <%mappingEffort%> ;
mp:mapsTo/esco:NOCVersion ?toVersion .
}
LIMIT 1
}
UNION
{
SELECT ("To type:" AS ?key) (?toType AS ?value)
WHERE
{
<%mappingEffort%> mp:taxonomyTo ?toUri .
?toUri esco:NOCConceptType ?toType .
}
}
UNION
{
SELECT ("Language:" AS ?key) (?language AS ?value)
WHERE
{
?mapping a mp:Mapping ;
mp:isMappingFor <%mappingEffort%> ;
mp:mapsTo/esco:referenceLanguage ?language .
}
LIMIT 1
}
}
QUERY
queryFetchHeadersFromNoc = <<QUERY
PREFIX esco: <http://data.europa.eu/esco/model#>
PREFIX mp: <http://sem.tenforce.com/vocabularies/mapping-platform/>
SELECT ?key ?value
FROM <#{settings.graph}>
WHERE
{
{
SELECT ("Mapping version:" AS ?key) (?mappingVersion AS ?value)
WHERE
{
<%mappingEffort%> mp:mappingVersion ?mappingVersion .
}
}
UNION
{
SELECT ("From ID:" AS ?key) (?fromId AS ?value)
WHERE
{
?mapping a mp:Mapping ;
mp:isMappingFor <%mappingEffort%> ;
mp:mapsFrom/esco:NOCClassification ?fromId .
}
LIMIT 1
}
UNION
{
SELECT ("From version:" AS ?key) (?fromVersion AS ?value)
WHERE
{
?mapping a mp:Mapping ;
mp:isMappingFor <%mappingEffort%> ;
mp:mapsFrom/esco:NOCVersion ?fromVersion .
}
LIMIT 1
}
UNION
{
SELECT ("From type:" AS ?key) (?fromType AS ?value)
WHERE
{
<%mappingEffort%> mp:taxonomyFrom ?fromUri .
?fromUri esco:NOCConceptType ?fromType .
}
}
UNION
{
SELECT ("To URI:" AS ?key) (?toUri AS ?value)
WHERE
{
<%mappingEffort%> mp:taxonomyTo ?toUri .
}
}
UNION
{
SELECT ("Language:" AS ?key) (?language AS ?value)
WHERE
{
?mapping a mp:Mapping ;
mp:isMappingFor <%mappingEffort%> ;
mp:mapsFrom/esco:referenceLanguage ?language .
}
LIMIT 1
}
}
QUERY
allowed_formats = [
SPARQL::Client::RESULT_CSV,
SPARQL::Client::RESULT_TSV,
].freeze
get '/export' do
# use a default format if not specified
format = params[:format] || SPARQL::Client::RESULT_CSV
uuid = params[:uuid]
if uuid.nil?
status 400
body "Argument uuid is required"
return
end
if !allowed_formats.any? {|x| x == format}
status 400
body "Not recognized format #{format}"
return
end
mappingEffortCandidates = query(
queryFindMappingEffort.gsub('%uuid%', uuid.sparql_escape))
if mappingEffortCandidates.empty?
status 404
body "Can't find mapping effort #{uuid}"
return
end
mappingEffort = mappingEffortCandidates.first[:mappingEffort].to_s
isMappingFromEsco = query(
queryIsMappingToNoc.gsub("%mappingEffort%", URI.escape(mappingEffort)))
headersQuery = (
if isMappingFromEsco
queryFetchHeadersToNoc.gsub("%mappingEffort%", URI.escape(mappingEffort))
else
queryFetchHeadersFromNoc.gsub("%mappingEffort%", URI.escape(mappingEffort))
end
)
responseHeaders = settings.sparql_client.response(headersQuery, {:content_type => format})
headersLines = responseHeaders.body.lines.to_a
if headersLines.count < 3
raise "Can not determine headers for mapping effort #{mappingEffort}"
end
exportQuery = (
if isMappingFromEsco
queryFromEsco.gsub("%mappingEffort%", URI.escape(mappingEffort))
else
queryToEsco.gsub("%mappingEffort%", URI.escape(mappingEffort))
end
)
response = settings.sparql_client.response(exportQuery, {:content_type => format})
# return body of the response directly in the body
headers "Content-Type" => response.header.content_type
body headersLines[1..-1].join + response.body
end