Sha256: 35344d9f74efedcabb7aa73029b35e0c7f4f5343a8565108174e797265d51165
Contents?: true
Size: 1.59 KB
Versions: 6
Compression:
Stored size: 1.59 KB
Contents
module Bolognese module DoiUtils def validate_doi(doi) doi = Array(/\A(?:(http|https):\/(\/)?(dx\.)?(doi.org|doi.test.datacite.org)\/)?(doi:)?(10\.\d{4,5}\/.+)\z/.match(doi)).last doi = doi.delete("\u200B").downcase if doi.present? end def validate_prefix(doi) Array(/\A(?:(http|https):\/(\/)?(dx\.)?(doi.org|doi.test.datacite.org)\/)?(doi:)?(10\.\d{4,5}).*\z/.match(doi)).last end def doi_resolver(doi, options={}) sandbox = Array(/doi.test.datacite.org/.match(doi)).last sandbox.present? || options[:sandbox] ? "https://doi.test.datacite.org/" : "https://doi.org/" end def normalize_doi(doi, options={}) doi_str = validate_doi(doi) return nil unless doi_str.present? # remove non-printing whitespace and downcase doi_str = doi_str.delete("\u200B").downcase # turn DOI into URL, escape unsafe characters doi_resolver(doi, options) + Addressable::URI.encode(doi_str) end def doi_from_url(url) if /\A(?:(http|https):\/\/(dx\.)?(doi.org|doi.test.datacite.org)\/)?(doi:)?(10\.\d{4,5}\/.+)\z/.match(url) uri = Addressable::URI.parse(url) uri.path.gsub(/^\//, '').downcase end end def doi_as_url(doi) "https://doi.org/#{doi}" if doi.present? end # get DOI registration agency def get_doi_ra(doi) prefix = validate_prefix(doi) return nil if prefix.blank? url = "https://api.datacite.org/prefixes/#{prefix}" result = Maremma.get(url) result.body.fetch("data", {}).fetch('attributes', {}).fetch('registration-agency', nil) end end end
Version data entries
6 entries across 6 versions & 1 rubygems