Sha256: 50880591c82fe150c70f55ab2d4b42fa5f621abc7f38ab25a7c2b44e12559f61

Contents?: true

Size: 1.46 KB

Versions: 6

Compression:

Stored size: 1.46 KB

Contents

module Qa::Authorities
  class Getty::AAT < Base
    include WebServiceBase

    def search q
      parse_authority_response(json(build_query_url(q)))
    end

    # get_json is not ideomatic, so we'll make an alias
    def json(*args)
      get_json(*args)
    end

    def build_query_url q
      query = URI.escape(sparql(untaint(q)))
      "http://vocab.getty.edu/sparql.json?query=#{URI.escape(sparql(q))}&_implicit=false&implicit=true&_equivalent=false&_form=%2Fsparql"
    end

    def sparql(q)
      search = untaint(q)
      # The full text index matches on fields besides the term, so we filter to ensure the match is in the term.
      sparql = "SELECT ?s ?name {
              ?s a skos:Concept; luc:term \"#{search}\";
                 skos:inScheme <http://vocab.getty.edu/aat/> ;
                 gvp:prefLabelGVP [skosxl:literalForm ?name].
              FILTER regex(?name, \"#{search}\", \"i\") .
            } ORDER BY ?name"
    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/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
    end

  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
qa-0.10.1 lib/qa/authorities/getty/aat.rb
qa-0.10.0 lib/qa/authorities/getty/aat.rb
qa-0.9.0 lib/qa/authorities/getty/aat.rb
qa-0.8.0 lib/qa/authorities/getty/aat.rb
qa-0.7.0 lib/qa/authorities/getty/aat.rb
qa-0.6.0 lib/qa/authorities/getty/aat.rb