Module: Dor::Releaseable

Extended by:
ActiveSupport::Concern
Included in:
Collection, Item
Defined in:
lib/dor/models/concerns/releaseable.rb

Instance Method Summary collapse

Instance Method Details

#add_release_node(release, attrs = {}) ⇒ Nokogiri::XML::Element

Add a release node for the item Will use the current time if timestamp not supplied. You can supply a timestap for correcting history, etc if desired Timestamp will be calculated by the function

Examples:

item.add_release_node(true,{:what=>'self',:to=>'Searchworks',:who=>'petucket'})

Parameters:

  • release (Boolean)

    True or false for the release node

  • attrs (hash) (defaults to: {})

    A hash of any attributes to be placed onto the tag

Returns:

  • (Nokogiri::XML::Element)

    the tag added if successful

Raises:

  • (ArgumentError)

    Raised if attributes are improperly supplied



213
214
215
216
217
218
219
220
# File 'lib/dor/models/concerns/releaseable.rb', line 213

def add_release_node(release, attrs = {})
  allowed_release_attributes=[:what,:to,:who,:when] # any other release attributes sent in will be rejected and not stored
   = 
  attrs.delete_if { |key, value| !allowed_release_attributes.include?(key) }
  attrs[:when] = Time.now.utc.iso8601 if attrs[:when].nil? # add the timestamp
  valid_release_attributes(release, attrs)
  .add_value(:release, release.to_s, attrs)
end

#add_release_nodes_and_start_releaseWF(release_tags) ⇒ Object

Add release tags to an item and initialize the item release workflow Each tag should be of the form {:tag => ‘Fitch : Batch2’, :what => ‘self’, :to => ‘Searchworks’, :who => ‘petucket’, :release => true}

Parameters:

  • release_tags (Hash, Array<Hash>)

    hash of a single release tag or an array of many such hashes

Raises:

  • (ArgumentError)

    Raised if the tags are improperly supplied



12
13
14
15
16
17
18
19
20
21
22
23
# File 'lib/dor/models/concerns/releaseable.rb', line 12

def add_release_nodes_and_start_releaseWF(release_tags)
  release_tags = [release_tags] unless release_tags.is_a?(Array)

  # Add in each tag
  release_tags.each do |r_tag|
    add_release_node(r_tag[:release], r_tag)
  end

  # Save item to dor so the robots work with the latest data
  save
  create_workflow('releaseWF')
end

#add_tags_from_purl(new_tags) ⇒ Hash

This function calls purl and gets a list of all release tags currently in purl. It then compares to the list you have generated. Any tag that is on purl, but not in the newly generated list is added to the new list with a value of false.

Parameters:

  • new_tags (Hash{String => Boolean})

    all new tags in the form of {“Project” => Boolean}

Returns:

  • (Hash)

    same form as new_tags, with all missing tags not in new_tags, but in current_tag_names, added in with a Boolean value of false



299
300
301
302
303
304
305
306
# File 'lib/dor/models/concerns/releaseable.rb', line 299

def add_tags_from_purl(new_tags)
  tags_currently_in_purl = get_release_tags_from_purl
  missing_tags = tags_currently_in_purl.map(&:downcase) - new_tags.keys.map(&:downcase)
  missing_tags.each do |missing_tag|
    new_tags[missing_tag.capitalize] = {'release' => false}
  end
  new_tags
end

#combine_two_release_tag_hashes(hash_one, hash_two) ⇒ Hash

Take two hashes of tags and combine them, will not overwrite but will enforce uniqueness of the tags

Parameters:

  • hash_one (Hash)

    a hash of tags obtained via Dor::Item.release_tags or matching format

  • hash_two (Hash)

    a hash of tags obtained via Dor::Item.release_tags or matching format

Returns:

  • (Hash)

    the combined hash with uniquiness enforced



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

def combine_two_release_tag_hashes(hash_one, hash_two)
  hash_two.keys.each do |key|
    hash_one[key] = hash_two[key] if hash_one[key].nil?
    hash_one[key] = (hash_one[key] + hash_two[key]).uniq unless hash_one[key].nil?
  end
  hash_one
end

#does_release_tag_apply(release_tag, admin_tags = false) ⇒ Boolean

Takes a tag and returns true or false if it applies to the specific item

Parameters:

  • release_tag (Hash)

    the tag in a hashed form

  • admin_tags (Array) (defaults to: false)

    the administrative tags on an item, if not supplied it will attempt to retrieve them

Returns:

  • (Boolean)

    true or false if it applies (not true or false if it is released, that is the release_tag data)



121
122
123
124
125
126
# File 'lib/dor/models/concerns/releaseable.rb', line 121

def does_release_tag_apply(release_tag, admin_tags = false)
  # Is the tag global or restricted
  return true if release_tag['tag'].nil?  # no specific tag specificied means this tag is global to all members of the collection
  admin_tags = tags unless admin_tags     # We use false instead of [], since an item can have no admin_tags at which point we'd be passing this var as [] and would not attempt to retrieve it
  admin_tags.include?(release_tag['tag'])
end

#form_purl_urlString

Take the and create the entire purl url that will usable for the open method in open-uri, returns http

Returns:

  • (String)

    the full url



276
277
278
# File 'lib/dor/models/concerns/releaseable.rb', line 276

def form_purl_url
  'https://' + Dor::Config.stacks.document_cache_host + "/#{remove_druid_prefix}.xml"
end

#get_newest_release_tag(tags) ⇒ Hash

Take a hash of tags as obtained via Dor::Item.release_tags and returns the newest tag for each namespace

Parameters:

  • tags (Hash)

    a hash of tags obtained via Dor::Item.release_tags or matching format

Returns:

  • (Hash)

    a hash of latest tags for each to value



102
103
104
# File 'lib/dor/models/concerns/releaseable.rb', line 102

def get_newest_release_tag(tags)
  Hash[tags.map {|key, val| [key, newest_release_tag_in_an_array(val)]}]
end

#get_release_tags_for_item_and_all_governing_setsHash

Take an item and get all of its release tags and all tags on collections it is a member of it

Returns:

  • (Hash)

    a hash of all tags



65
66
67
68
69
70
71
72
# File 'lib/dor/models/concerns/releaseable.rb', line 65

def get_release_tags_for_item_and_all_governing_sets
  return_tags = release_nodes || {}
  collections.each do |collection|
    next if collection.id == id  # recursive, so parents of parents are found, but we need to avoid an infinite loop if the collection references itself (i.e. bad data)
    return_tags = combine_two_release_tag_hashes(return_tags, collection.get_release_tags_for_item_and_all_governing_sets)
  end
  return_tags
end

#get_release_tags_from_purlArray

Pull all release nodes from the public xml obtained via the purl query

Returns:

  • (Array)

    An array containing all the release tags



291
292
293
# File 'lib/dor/models/concerns/releaseable.rb', line 291

def get_release_tags_from_purl
  get_release_tags_from_purl_xml(get_xml_from_purl)
end

#get_release_tags_from_purl_xml(doc) ⇒ Array

Pull all release nodes from the public xml obtained via the purl query

Parameters:

  • doc (Nokogiri::HTML::Document)

    The druid of the object you want

Returns:

  • (Array)

    An array containing all the release tags



283
284
285
286
287
# File 'lib/dor/models/concerns/releaseable.rb', line 283

def get_release_tags_from_purl_xml(doc)
  nodes = doc.xpath('//html/body/publicobject/releasedata').children
  # We only want the nodes with a name that isn't text
  nodes.reject {|n| n.name.nil? || n.name.casecmp('text') == 0 }.map {|n| n.attr('to')}.uniq
end

#get_self_release_tags(tags) ⇒ Hash

Take a hash of tags as obtained via Dor::Item.release_tags and returns all self tags

Parameters:

  • tags (Hash)

    a hash of tags obtained via Dor::Item.release_tags or matching format

Returns:

  • (Hash)

    a hash of self tags for each to value



59
60
61
# File 'lib/dor/models/concerns/releaseable.rb', line 59

def get_self_release_tags(tags)
  get_tags_for_what_value(tags, 'self')
end

#get_tags_for_what_value(tags, what_target) ⇒ Hash

Take a hash of tags and return all tags with the matching what target

Parameters:

  • tags (Hash)

    a hash of tags obtained via Dor::Item.release_tags or matching format

  • what_target (String)

    the target for the ‘what’ key, self or collection

Returns:

  • (Hash)

    a hash of self tags for each to value



90
91
92
93
94
95
96
97
# File 'lib/dor/models/concerns/releaseable.rb', line 90

def get_tags_for_what_value(tags, what_target)
  return_hash = {}
  tags.keys.each do |key|
    self_tags = tags[key].select {|tag| tag['what'].casecmp(what_target) == 0}
    return_hash[key] = self_tags if self_tags.size > 0
  end
  return_hash
end

#get_xml_from_purlNokogiri::HTML::Document

Get a list of all release nodes found in a purl document Fetches purl xml for a druid

Returns:

  • (Nokogiri::HTML::Document)

    parsed XML for the druid or an empty document if no purl is found

Raises:

  • (OpenURI::HTTPError)


258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
# File 'lib/dor/models/concerns/releaseable.rb', line 258

def get_xml_from_purl
  url = form_purl_url
  handler = proc do |exception, attempt_number, total_delay|
    # We assume a 404 means the document has never been published before and thus has no purl
    Dor.logger.warn "[Attempt #{attempt_number}] GET #{url} -- #{exception.class}: #{exception.message}; #{total_delay} seconds elapsed."
    raise exception unless exception.is_a? OpenURI::HTTPError
    return Nokogiri::HTML::Document.new if exception.io.status.first == '404' # ["404", "Not Found"] from OpenURI::Meta.status
  end

  with_retries(:max_retries => 3, :base_sleep_seconds => 3, :max_sleep_seconds => 5, :handler => handler) do |attempt|
    # If you change the method used for opening the webpage, you can change the :rescue param to handle the new method's errors
    Dor.logger.info "[Attempt #{attempt}] GET #{url}"
    return Nokogiri::HTML(OpenURI.open_uri(url))
  end
end

#latest_applicable_release_tag_in_array(release_tags, admin_tags) ⇒ Hash

Takes an array of release tags and returns the most recent one that applies to this item

Parameters:

  • release_tags (Array)

    an array of release tags in hashed form

  • admin_tags (Array)

    the administrative tags on an on item

Returns:

  • (Hash)

    the tag, or nil if none applicable



132
133
134
135
136
137
138
139
140
141
142
# File 'lib/dor/models/concerns/releaseable.rb', line 132

def latest_applicable_release_tag_in_array(release_tags, admin_tags)
  newest_tag = newest_release_tag_in_an_array(release_tags)
  return newest_tag if does_release_tag_apply(newest_tag, admin_tags)

  # The latest tag wasn't applicable, slice it off and try again
  # This could be optimized by reordering on the timestamp and just running down it instead of constantly resorting, at least if we end up getting numerous release tags on an item
  release_tags.slice!(release_tags.index(newest_tag))

  return latest_applicable_release_tag_in_array(release_tags, admin_tags) if release_tags.size > 0 # Try again after dropping the inapplicable
  nil # We're out of tags, no applicable ones
end

#newest_release_tag_in_an_array(array_of_tags) ⇒ Hash

Takes an array of release tags and returns the most recent one

Parameters:

  • array_of_tags (Array)

    an array of hashes, each hash a release tag

Returns:

  • (Hash)

    the most recent tag



109
110
111
112
113
114
115
# File 'lib/dor/models/concerns/releaseable.rb', line 109

def newest_release_tag_in_an_array(array_of_tags)
  latest_tag_in_array = array_of_tags[0] || {}
  array_of_tags.each do |tag|
    latest_tag_in_array = tag if tag['when'] > latest_tag_in_array['when']
  end
  latest_tag_in_array
end

#release_nodesNokogiri::XML::NodeSet

Helper method to get the release nodes as a nodeset

Returns:

  • (Nokogiri::XML::NodeSet)

    of all release tags and their attributes



240
241
242
243
244
245
246
247
248
249
250
251
252
# File 'lib/dor/models/concerns/releaseable.rb', line 240

def release_nodes
  release_tags = .ng_xml.xpath('//release')
  return_hash = {}
  release_tags.each do |release_tag|
    hashed_node = release_tag_node_to_hash(release_tag)
    if !return_hash[hashed_node[:to]].nil?
      return_hash[hashed_node[:to]] << hashed_node[:attrs]
    else
      return_hash[hashed_node[:to]] = [hashed_node[:attrs]]
    end
  end
  return_hash
end

#release_tag_node_to_hash(rtag) ⇒ Hash{:to, :attrs => String, Hash}

Convert one release element into a Hash

Parameters:

  • rtag (Nokogiri::XML::Element)

    the release tag element

Returns:

  • (Hash{:to, :attrs => String, Hash})

    in the form of {:to => String :attrs = Hash}



163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
# File 'lib/dor/models/concerns/releaseable.rb', line 163

def release_tag_node_to_hash(rtag)
  to = 'to'
  release = 'release'
  when_word = 'when' # TODO: Make to and when_word load from some config file instead of hardcoded here
  attrs = rtag.attributes
  return_hash = { :to => attrs[to].value }
  attrs.tap { |a| a.delete(to) }
  attrs[release] = rtag.text.casecmp('true') == 0 # save release as a boolean
  return_hash[:attrs] = attrs

  # convert all the attrs beside :to to strings, they are currently Nokogiri::XML::Attr
  (return_hash[:attrs].keys - [to]).each do |a|
    return_hash[:attrs][a] = return_hash[:attrs][a].to_s if a != release
  end

  return_hash[:attrs][when_word] = Time.parse(return_hash[:attrs][when_word]) # convert when to a datetime
  return_hash
end

#release_tagsNokogiri::XML::NodeSet

Helper method to get the release tags as a nodeset

Returns:

  • (Nokogiri::XML::NodeSet)

    all release tags and their attributes



146
147
148
149
150
151
152
153
154
155
156
157
158
# File 'lib/dor/models/concerns/releaseable.rb', line 146

def release_tags
  release_tags = .ng_xml.xpath('//release')
  return_hash = {}
  release_tags.each do |release_tag|
    hashed_node = release_tag_node_to_hash(release_tag)
    if !return_hash[hashed_node[:to]].nil?
      return_hash[hashed_node[:to]] << hashed_node[:attrs]
    else
      return_hash[hashed_node[:to]] = [hashed_node[:attrs]]
    end
  end
  return_hash
end

#released_for(skip_live_purl = false) ⇒ Hash{String => Boolean}

Determine projects in which an item is released

Parameters:

  • skip_live_purl (Boolean) (defaults to: false)

    set true to skip requesting from purl backend

Returns:

  • (Hash{String => Boolean})

    all namespaces, keys are Project name Strings, values are Boolean



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

def released_for(skip_live_purl = false)
  released_hash = {}

  # Get the most recent self tag for all targets and retain their result since most recent self always trumps any other non self tags
  latest_self_tags = get_newest_release_tag get_self_release_tags(release_nodes)
  latest_self_tags.each do |key, payload|
    released_hash[key] = {'release' => payload['release']}
  end

  # With Self Tags resolved we now need to deal with tags on all sets this object is part of.
  # Get all release tags on the item and strip out the what = self ones, we've already processed all the self tags on this item.
  # This will be where we store all tags that apply, regardless of their timestamp:
  potential_applicable_release_tags = get_tags_for_what_value(get_release_tags_for_item_and_all_governing_sets, 'collection')
  administrative_tags = tags  # Get admin tags once here and pass them down

  # We now have the keys for all potential releases, we need to check the tags: the most recent timestamp with an explicit true or false wins.
  # In a nil case, the lack of an explicit false tag we do nothing.
  (potential_applicable_release_tags.keys - released_hash.keys).each do |key|  # don't bother checking if already added to the release hash, they were added due to a self tag so that has won
    latest_tag = latest_applicable_release_tag_in_array(potential_applicable_release_tags[key], administrative_tags)
    next if latest_tag.nil? # Otherwise, we have a valid tag, record it
    released_hash[key] = {'release' => latest_tag['release']}
  end

  # See what the application is currently released for on Purl.  If released in purl but not listed here, it needs to be added as a false
  add_tags_from_purl(released_hash) unless skip_live_purl
  released_hash
end

#to_solr(solr_doc = {}, *args) ⇒ Object



308
309
310
311
312
313
314
315
316
317
318
319
320
321
# File 'lib/dor/models/concerns/releaseable.rb', line 308

def to_solr(solr_doc = {}, *args)
  solr_doc = super(solr_doc, *args)

  # TODO: sort of worried about the performance impact in bulk reindex
  # situations, since released_for recurses all parent collections.  jmartin 2015-07-14
  released_for(true).each { |release_target, release_info|
    add_solr_value(solr_doc, 'released_to', release_target, :symbol, []) if release_info['release']
  }

  # TODO: need to solrize whether item is released to purl?  does released_for return that?
  # logic is: "True when there is a published lifecycle and Access Rights is anything but Dark"

  solr_doc
end

#valid_release_attributes(tag, attrs = {}) ⇒ Boolean

Determine if the supplied tag is a valid release node that meets all requirements

Parameters:

  • tag (Boolean)

    True or false for the release node

  • attrs (hash) (defaults to: {})

    A hash of attributes for the tag, must contain :when, a ISO 8601 timestamp and :who to identify who or what added the tag, :to,

Returns:

  • (Boolean)

    Returns true if no errors found

Raises:

  • (ArgumentError)

    Raises an error of the first fault in the release tag



228
229
230
231
232
233
234
235
236
# File 'lib/dor/models/concerns/releaseable.rb', line 228

def valid_release_attributes(tag, attrs = {})
  raise ArgumentError, ':when is not iso8601' if attrs[:when].match('\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}Z').nil?
  [:who, :to, :what].each do |check_attr|
    raise ArgumentError, "#{check_attr} not supplied as a String" if attrs[check_attr].class != String
  end
  raise ArgumentError, ':what must be self or collection' unless %w(self collection).include? attrs[:what]
  raise ArgumentError, 'the value set for this tag is not a boolean' unless [true,false].include? tag
  true
end

#valid_release_attributes_and_tag(tag, attrs = {}) ⇒ Boolean

Determine if the supplied tag is a valid release tag that meets all requirements

Parameters:

  • attrs (hash) (defaults to: {})

    A hash of attributes for the tag, must contain: :when, a ISO 8601 timestamp; :who, to identify who or what added the tag; and :to, a string identifying the release target

Returns:

  • (Boolean)

    Returns true if no errors found

Raises:

  • (RuntimeError)

    Raises an error of the first fault in the release tag



187
188
189
190
191
192
193
194
195
196
197
198
199
200
# File 'lib/dor/models/concerns/releaseable.rb', line 187

def valid_release_attributes_and_tag(tag, attrs = {})
  raise ArgumentError, ':when is not iso8601' if attrs[:when].match('\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}Z').nil?
  [:who, :to, :what].each do |check_attr|
    raise ArgumentError, "#{check_attr} not supplied as a String" if attrs[check_attr].class != String
  end

  what_correct = false
  %w(self collection).each do |allowed_what_value|
    what_correct = true if attrs[:what] == allowed_what_value
  end
  raise ArgumentError, ':what must be self or collection' unless what_correct
  raise ArgumentError, 'the value set for this tag is not a boolean' if !!tag != tag # rubocop:disable Style/DoubleNegation
  true
end