-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathaat.rb
62 lines (53 loc) · 1.88 KB
/
aat.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
module Qa::Authorities
class Getty::AAT < Base
include WebServiceBase
def search(q)
parse_authority_response(json(build_query_url(q)))
end
def build_query_url(q)
"http://vocab.getty.edu/sparql.json?query=#{ERB::Util.url_encode(sparql(q))}&_implicit=false&implicit=true&_equivalent=false&_form=%2Fsparql"
end
def sparql(q) # rubocop:disable Metrics/MethodLength
search = untaint(q)
if search.include?(' ')
clauses = search.split(' ').collect do |i|
%((regex(?name, "#{i}", "i")))
end
ex = "(#{clauses.join(' && ')})"
else
ex = %(regex(?name, "#{search}", "i"))
end
# The full text index matches on fields besides the term, so we filter to ensure the match is in the term.
%(SELECT ?s ?name {
?s a skos:Concept; luc:term "#{search}";
skos:inScheme <http://vocab.getty.edu/aat/> ;
gvp:prefLabelGVP [skosxl:literalForm ?name].
FILTER #{ex} .
} ORDER BY ?name).gsub(/[\s\n]+/, " ")
end
def untaint(q)
q.gsub(/[^\w\s-]/, '')
end
def find(id)
json(find_url(id))
end
def find_url(id)
"http://vocab.getty.edu/download/json?uri=http://vocab.getty.edu/aat/#{id}.json"
end
def request_options
{ accept: 'application/sparql-results+json' }
end
private
# Reformats the data received from the Getty service
def parse_authority_response(response)
response['results']['bindings'].map do |result|
{ 'id' => result['s']['value'], 'label' => result['name']['value'] }
end
rescue StandardError => e
cause = response.fetch('error', {}).fetch('cause', 'UNKNOWN')
cause = cause.presence || 'UNKNOWN'
Rails.logger.warn " ERROR fetching Getty response: #{e.message}; cause: #{cause}"
{}
end
end
end