Module: Dor::Editable

Extended by:
ActiveSupport::Concern
Included in:
AdminPolicyObject
Defined in:
lib/dor/models/concerns/editable.rb

Overview

This is basically used just by APOs. Arguably “editable” is the wrong name.

Constant Summary collapse

CREATIVE_COMMONS_USE_LICENSES =

these hashes map short (“machine”) license codes to their corresponding URIs and human readable titles. they also allow for deprecated entries (via optional :deprecation_warning). clients that use these maps are advised to only display undeprecated entries, except where a deprecated entry is already in use by an object. e.g., an APO that already specifies “by_sa” for its default license code could continue displaying that in a list of license options for editing, preferably with the deprecation warning. but other deprecated entries would be omitted in such a selectbox. TODO: seems like Editable is not the most semantically appropriate place for these mappings? though they’re used by methods that live in Editable. TODO: need some way to do versioning. for instance, what happens when a new version of an existing license comes out, since it will presumably use the same license code, but a different title and URI?

{
  'by' =>       { :human_readable => 'Attribution 3.0 Unported',
                  :uri => 'https://creativecommons.org/licenses/by/3.0/' },
  'by-sa' =>    { :human_readable => 'Attribution Share Alike 3.0 Unported',
                  :uri => 'https://creativecommons.org/licenses/by-sa/3.0/' },
  'by_sa' =>    { :human_readable => 'Attribution Share Alike 3.0 Unported',
                  :uri => 'https://creativecommons.org/licenses/by-sa/3.0/',
                  :deprecation_warning => 'license code "by_sa" was a typo in argo, prefer "by-sa"' },
  'by-nd' =>    { :human_readable => 'Attribution No Derivatives 3.0 Unported',
                  :uri => 'https://creativecommons.org/licenses/by-nd/3.0/' },
  'by-nc' =>    { :human_readable => 'Attribution Non-Commercial 3.0 Unported',
                  :uri => 'https://creativecommons.org/licenses/by-nc/3.0/' },
  'by-nc-sa' => { :human_readable => 'Attribution Non-Commercial Share Alike 3.0 Unported',
                  :uri => 'https://creativecommons.org/licenses/by-nc-sa/3.0/' },
  'by-nc-nd' => { :human_readable => 'Attribution Non-Commercial, No Derivatives 3.0 Unported',
                  :uri => 'https://creativecommons.org/licenses/by-nc-nd/3.0/' },
  'pdm' =>      { :human_readable => 'Public Domain Mark 1.0',
                  :uri => 'https://creativecommons.org/publicdomain/mark/1.0/'}
}.freeze
OPEN_DATA_COMMONS_USE_LICENSES =
{
  'pddl' =>     { :human_readable => 'Open Data Commons Public Domain Dedication and License 1.0',
                  :uri => 'http://opendatacommons.org/licenses/pddl/1.0/' },
  'odc-by' =>   { :human_readable => 'Open Data Commons Attribution License 1.0',
                  :uri => 'http://opendatacommons.org/licenses/by/1.0/' },
  'odc-odbl' => { :human_readable => 'Open Data Commons Open Database License 1.0',
                  :uri => 'http://opendatacommons.org/licenses/odbl/1.0/' }
}.freeze

Instance Method Summary collapse

Instance Method Details

#add_default_collection(val) ⇒ Object

Add a collection to the listing of collections for items governed by this apo.

Parameters:

  • val (String)

    pid of the collection, ex. druid:ab123cd4567



101
102
103
104
105
106
107
108
109
110
111
112
# File 'lib/dor/models/concerns/editable.rb', line 101

def add_default_collection(val)
  xml = .ng_xml
  .ng_xml_will_change!
  reg = xml.search('//administrativeMetadata/registration').first
  unless reg
    reg = Nokogiri::XML::Node.new('registration', xml)
    xml.search('/administrativeMetadata').first.add_child(reg)
  end
  node = Nokogiri::XML::Node.new('collection', xml)
  node['id'] = val
  reg.add_child(node)
end

#add_roleplayer(role, entity, type = :workgroup) ⇒ Object

Adds a person or group to a role in the APO role metadata datastream

Parameters:

  • role (String)

    the role the group or person will be filed under, ex. dor-apo-manager

  • entity (String)

    the name of the person or group, ex dlss:developers or sunetid:someone

  • type (Symbol) (defaults to: :workgroup)

    :workgroup for a group or :person for a person



53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
# File 'lib/dor/models/concerns/editable.rb', line 53

def add_roleplayer(role, entity, type = :workgroup)
  xml = .ng_xml
  .ng_xml_will_change!
  group = type == :workgroup ? 'group' : 'person'
  nodes = xml.search('/roleMetadata/role[@type=\'' + role + '\']')
  if nodes.length > 0
    group_node = Nokogiri::XML::Node.new(group, xml)
    id_node = Nokogiri::XML::Node.new('identifier', xml)
    group_node.add_child(id_node)
    id_node.content = entity
    id_node['type'] = type.to_s
    nodes.first.add_child(group_node)
  else
    node = Nokogiri::XML::Node.new('role', xml)
    node['type'] = role
    group_node = Nokogiri::XML::Node.new(group, xml)
    node.add_child group_node
    id_node = Nokogiri::XML::Node.new('identifier', xml)
    group_node.add_child(id_node)
    id_node.content = entity
    id_node['type'] = type.to_s
    xml.search('/roleMetadata').first.add_child(node)
  end
end

#agreementObject



340
341
342
# File 'lib/dor/models/concerns/editable.rb', line 340

def agreement
  agreement_object ? agreement_object.pid : ''
end

#agreement=(val) ⇒ Object



344
345
346
347
# File 'lib/dor/models/concerns/editable.rb', line 344

def agreement=(val)
  fail ArgumentError, 'agreement must have a valid druid' if val.blank?
  self.agreement_object = Dor.find val.to_s, :cast => true
end


153
154
155
# File 'lib/dor/models/concerns/editable.rb', line 153

def copyright_statement
  defaultObjectRights.copyright.first
end


157
158
159
# File 'lib/dor/models/concerns/editable.rb', line 157

def copyright_statement=(val)
  defaultObjectRights.update_term!(:copyright, val.nil? ? '' : val)
end

#creative_commons_licenseObject



161
162
163
# File 'lib/dor/models/concerns/editable.rb', line 161

def creative_commons_license
  defaultObjectRights.creative_commons.first
end

#creative_commons_license=(use_license_machine) ⇒ Object



195
196
197
198
199
# File 'lib/dor/models/concerns/editable.rb', line 195

def creative_commons_license=(use_license_machine)
  defaultObjectRights.initialize_term!(:creative_commons)
  defaultObjectRights.creative_commons = use_license_machine
  defaultObjectRights.creative_commons.uri = CREATIVE_COMMONS_USE_LICENSES[use_license_machine][:uri]
end

#creative_commons_license_humanObject



165
166
167
# File 'lib/dor/models/concerns/editable.rb', line 165

def creative_commons_license_human
  defaultObjectRights.creative_commons_human.first
end

#creative_commons_license_human=(use_license_human) ⇒ Object



201
202
203
204
# File 'lib/dor/models/concerns/editable.rb', line 201

def creative_commons_license_human=(use_license_human)
  defaultObjectRights.initialize_term!(:creative_commons_human)
  defaultObjectRights.creative_commons_human = use_license_human
end

#default_collectionsArray

get all collections listed for this APO, used during registration

Returns:

  • (Array)

    array of pids



95
96
97
# File 'lib/dor/models/concerns/editable.rb', line 95

def default_collections
  .term_values(:registration, :default_collection)
end

#default_rightsString

RightsMetadataDS::RIGHTS_TYPE_CODES.keys (so this is essentially the inverse of RightsMetadataDS.upd_rights_xml_for_rights_type).

Returns:

  • (String)

    A description of the rights defined in the default object rights datastream. Can be one of



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
# File 'lib/dor/models/concerns/editable.rb', line 239

def default_rights
  xml = defaultObjectRights.ng_xml
  machine_read_access = xml.search('//rightsMetadata/access[@type="read"]/machine')
  machine_discover_access = xml.search('//rightsMetadata/access[@type="discover"]/machine')

  machine_read_access_node = machine_read_access.length == 1 ? machine_read_access.first : nil
  machine_discover_access_node = machine_discover_access.length == 1 ? machine_discover_access.first : nil

  if machine_read_access_node && machine_read_access_node.search('./group[text()="Stanford" or text()="stanford"]').length == 1
    if machine_read_access_node.search('./group[@rule="no-download"]').length == 1
      'stanford-nd'
    else
      'stanford'
    end
  elsif machine_read_access_node && machine_read_access_node.search('./world').length == 1
    if machine_read_access_node.search('./world[@rule="no-download"]').length == 1
      'world-nd'
    else
      'world'
    end
  elsif machine_read_access_node && machine_read_access_node.search('./location[text()="spec"]').length == 1
    'loc:spec'
  elsif machine_read_access_node && machine_read_access_node.search('./location[text()="music"]').length == 1
    'loc:music'
  elsif machine_discover_access_node && machine_discover_access_node.search('./world').length == 1
    # if it's not stanford restricted, world readable, or location restricted, but it is world discoverable, it's "citation only"
    'none'
  elsif machine_discover_access_node && machine_discover_access_node.search('./none').length == 1
    # if it's not even discoverable, it's "dark"
    'dark'
  else
    # if none of the above, the rights xml structure is unsupported/unintelligible
    nil
  end
end

#default_rights=(rights) ⇒ Object

Set the rights in default object rights

Parameters:

  • rights (String)

    Stanford, World, Dark, or None

Raises:

  • (ArgumentError)


277
278
279
280
281
282
283
284
# File 'lib/dor/models/concerns/editable.rb', line 277

def default_rights=(rights)
  rights = rights.downcase
  raise(ArgumentError, "Unrecognized rights value '#{rights}'") unless RightsMetadataDS.valid_rights_type? rights

  rights_xml = defaultObjectRights.ng_xml
  defaultObjectRights.ng_xml_will_change!
  RightsMetadataDS.upd_rights_xml_for_rights_type(rights_xml, rights)
end

#default_workflow=(wf) ⇒ Object

set a single default workflow

Parameters:

  • wf (String)

    the name of the workflow, ex. ‘digitizationWF’



320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
# File 'lib/dor/models/concerns/editable.rb', line 320

def default_workflow=(wf)
  fail ArgumentError, 'Must have a valid workflow for default' if wf.blank?
  xml = .ng_xml
  .ng_xml_will_change!
  nodes = xml.search('//registration/workflow')
  if nodes.first
    nodes.first['id'] = wf
  else
    nodes = xml.search('//registration')
    unless nodes.first
      reg_node = Nokogiri::XML::Node.new('registration', xml)
      xml.root.add_child(reg_node)
    end
    nodes = xml.search('//registration')
    wf_node = Nokogiri::XML::Node.new('workflow', xml)
    wf_node['id'] = wf
    nodes.first.add_child(wf_node)
  end
end

#default_workflowsArray

List of default workflows, used to provide choices at registration

Returns:

  • (Array)

    and array of pids, ex [‘druid:ab123cd4567’]



314
315
316
# File 'lib/dor/models/concerns/editable.rb', line 314

def default_workflows
  .term_values(:registration, :workflow_id)
end

#desc_metadata_formatObject



286
287
288
# File 'lib/dor/models/concerns/editable.rb', line 286

def 
  ..first
end

#desc_metadata_format=(format) ⇒ Object



290
291
292
293
294
295
296
297
# File 'lib/dor/models/concerns/editable.rb', line 290

def (format)
  # create the node if it isnt there already
  unless ..first
    .ng_xml_will_change!
    .add_child_node(.ng_xml.root, :metadata_format)
  end
  .update_values({[:metadata_format] => format})
end

#desc_metadata_sourceObject



299
300
301
# File 'lib/dor/models/concerns/editable.rb', line 299

def 
  ..first
end

#desc_metadata_source=(source) ⇒ Object



303
304
305
306
307
308
309
310
# File 'lib/dor/models/concerns/editable.rb', line 303

def (source)
  # create the node if it isnt there already
  unless ..first
    .ng_xml_will_change!
    .add_child_node(.ng_xml.root, :metadata_source)
  end
  .update_values({[:metadata_source] => format})
end

#metadata_sourceObject



133
134
135
# File 'lib/dor/models/concerns/editable.rb', line 133

def 
  ..first
end

#metadata_source=(val) ⇒ Object



137
138
139
140
141
142
143
# File 'lib/dor/models/concerns/editable.rb', line 137

def (val)
  if ..nil?
    .ng_xml_will_change!
    .add_child_node(, :descMetadata)
  end
  .update_values({[:descMetadata, :source] => val})
end

#mods_titleObject



85
86
87
# File 'lib/dor/models/concerns/editable.rb', line 85

def mods_title
  .term_values(:title_info, :main_title).first
end

#mods_title=(val) ⇒ Object



89
90
91
# File 'lib/dor/models/concerns/editable.rb', line 89

def mods_title=(val)
  .update_values({[:title_info, :main_title] => val})
end

#open_data_commons_licenseObject



169
170
171
# File 'lib/dor/models/concerns/editable.rb', line 169

def open_data_commons_license
  defaultObjectRights.open_data_commons.first
end

#open_data_commons_license=(use_license_machine) ⇒ Object



206
207
208
209
210
# File 'lib/dor/models/concerns/editable.rb', line 206

def open_data_commons_license=(use_license_machine)
  defaultObjectRights.initialize_term!(:open_data_commons)
  defaultObjectRights.open_data_commons = use_license_machine
  defaultObjectRights.open_data_commons.uri = OPEN_DATA_COMMONS_USE_LICENSES[use_license_machine][:uri]
end

#open_data_commons_license_humanObject



173
174
175
# File 'lib/dor/models/concerns/editable.rb', line 173

def open_data_commons_license_human
  defaultObjectRights.open_data_commons_human.first
end

#open_data_commons_license_human=(use_license_human) ⇒ Object



212
213
214
215
# File 'lib/dor/models/concerns/editable.rb', line 212

def open_data_commons_license_human=(use_license_human)
  defaultObjectRights.initialize_term!(:open_data_commons_human)
  defaultObjectRights.open_data_commons_human = use_license_human
end

#purge_rolesObject

remove all people groups and roles from the APO role metadata datastream



79
80
81
82
83
# File 'lib/dor/models/concerns/editable.rb', line 79

def purge_roles
  .ng_xml.search('/roleMetadata/role').each do |node|
    node.remove
  end
end

#remove_default_collection(val) ⇒ Object



114
115
116
117
118
# File 'lib/dor/models/concerns/editable.rb', line 114

def remove_default_collection(val)
  xml = .ng_xml
  .ng_xml_will_change!
  xml.search('//administrativeMetadata/registration/collection[@id=\'' + val + '\']').remove
end

#rolesHash

Get all roles defined in the role metadata, and the people or groups in those roles. Groups are prefixed with ‘workgroup:’

Returns:

  • (Hash)

    role => [‘person’,‘group’] ex. {“dor-apo-manager” => [“workgroup:dlss:developers”, “sunetid:lmcrae”]



122
123
124
125
126
127
128
129
130
131
# File 'lib/dor/models/concerns/editable.rb', line 122

def roles
  roles = {}
  .ng_xml.search('/roleMetadata/role').each do |role|
    roles[role['type']] = []
    role.search('identifier').each do |entity|
      roles[role['type']] << entity['type'] + ':' + entity.text
    end
  end
  roles
end

#use_licenseObject



177
178
179
180
181
# File 'lib/dor/models/concerns/editable.rb', line 177

def use_license
  return creative_commons_license unless creative_commons_license.blank?
  return open_data_commons_license unless open_data_commons_license.blank?
  nil
end

#use_license=(use_license_machine) ⇒ Object

If set to ‘:none` then Use License is removed

Parameters:

  • use_license_machine (String|Symbol)

    The machine code for the desired Use License



219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
# File 'lib/dor/models/concerns/editable.rb', line 219

def use_license=(use_license_machine)
  if use_license_machine.blank? || use_license_machine == :none
    # delete use license by directly removing the XML used to define the use license
    defaultObjectRights.update_term!(:creative_commons, ' ')
    defaultObjectRights.update_term!(:creative_commons_human, ' ')
    defaultObjectRights.update_term!(:open_data_commons, ' ')
    defaultObjectRights.update_term!(:open_data_commons_human, ' ')
  elsif CREATIVE_COMMONS_USE_LICENSES.include? use_license_machine
    self.creative_commons_license = use_license_machine
    self.creative_commons_license_human = CREATIVE_COMMONS_USE_LICENSES[use_license_machine][:human_readable]
  elsif OPEN_DATA_COMMONS_USE_LICENSES.include? use_license_machine
    self.open_data_commons_license = use_license_machine
    self.open_data_commons_license_human = OPEN_DATA_COMMONS_USE_LICENSES[use_license_machine][:human_readable]
  else
    fail ArgumentError, "'#{use_license_machine}' is not a valid license code"
  end
end

#use_license_humanObject



189
190
191
192
193
# File 'lib/dor/models/concerns/editable.rb', line 189

def use_license_human
  return creative_commons_license_human unless creative_commons_license_human.blank?
  return open_data_commons_license_human unless open_data_commons_license_human.blank?
  nil
end

#use_license_uriObject



183
184
185
186
187
# File 'lib/dor/models/concerns/editable.rb', line 183

def use_license_uri
  return defaultObjectRights.creative_commons.uri.first unless defaultObjectRights.creative_commons.uri.blank?
  return defaultObjectRights.open_data_commons.uri.first unless defaultObjectRights.open_data_commons.uri.blank?
  nil
end

#use_statementObject



145
146
147
# File 'lib/dor/models/concerns/editable.rb', line 145

def use_statement
  defaultObjectRights.use_statement.first
end

#use_statement=(val) ⇒ Object



149
150
151
# File 'lib/dor/models/concerns/editable.rb', line 149

def use_statement=(val)
  defaultObjectRights.update_term!(:use_statement, val.nil? ? '' : val)
end