Module: Qa::Authorities::LocSubauthority

Included in:
Loc
Defined in:
lib/qa/authorities/loc_subauthority.rb

Instance Method Summary collapse

Instance Method Details

#authoritiesObject



10
11
12
13
14
15
16
17
18
19
# File 'lib/qa/authorities/loc_subauthority.rb', line 10

def authorities
  [
    "subjects",
    "names",
    "classification",
    "childrensSubjects",
    "genreForms",
    "performanceMediums"
  ]
end

#datatypesObject



39
40
41
# File 'lib/qa/authorities/loc_subauthority.rb', line 39

def datatypes
  ["edtf"]
end

#get_url_for_authority(authority) ⇒ Object



2
3
4
5
6
7
8
# File 'lib/qa/authorities/loc_subauthority.rb', line 2

def get_url_for_authority(authority)
  if authorities.include?(authority) then authority_base_url
  elsif vocabularies.include?(authority) then vocab_base_url
  elsif datatypes.include?(authority)    then datatype_base_url
  elsif preservation.include?(authority) then vocab_preservation_base_url
  end
end

#preservationObject

rubocop:disable Metrics/MethodLength



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
# File 'lib/qa/authorities/loc_subauthority.rb', line 43

def preservation # rubocop:disable Metrics/MethodLength
  [
    "contentLocationType",
    "copyrightStatus",
    "cryptographicHashFunctions",
    "environmentCharacteristic",
    "environmentPurpose",
    "eventRelatedAgentRole",
    "eventRelatedObjectRole",
    "eventType",
    "formatRegistryRole",
    "hardwareType",
    "inhibitorTarget",
    "inhibitorType",
    "objectCategory",
    "preservationLevelRole",
    "relationshipSubType",
    "relationshipType",
    "rightsBasis",
    "rightsRelatedAgentRole",
    "signatureEncoding",
    "signatureMethod",
    "softwareType",
    "storageMedium"
  ]
end

#vocabulariesObject

rubocop:disable Metrics/MethodLength



21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# File 'lib/qa/authorities/loc_subauthority.rb', line 21

def vocabularies # rubocop:disable Metrics/MethodLength
  [
    "graphicMaterials",
    "organizations",
    "relators",
    "countries",
    "ethnographicTerms",
    "geographicAreas",
    "languages",
    "iso639-1",
    "iso639-2",
    "iso639-5",
    "preservation",
    "actionsGranted",
    "agentType"
  ]
end