Class: Rubydora::Datastream
- Inherits:
-
Object
- Object
- Rubydora::Datastream
- Extended by:
- ActiveModel::Callbacks
- Includes:
- ActiveModel::Dirty
- Defined in:
- lib/rubydora/datastream.rb
Overview
This class represents a Fedora datastream object and provides helper methods for creating and manipulating them.
Constant Summary collapse
- DS_ATTRIBUTES =
mapping datastream attributes (and api parameters) to datastream profile names
{:controlGroup => :dsControlGroup, :dsLocation => :dsLocation, :altIDs => nil, :dsLabel => :dsLabel, :versionable => :dsVersionable, :dsState => :dsState, :formatURI => :dsFormatURI, :checksumType => :dsChecksumType, :checksum => :dsChecksum, :mimeType => :dsMIME, :logMessage => nil, :ignoreContent => nil, :lastModifiedDate => nil, :content => nil, :asOfDateTime => nil}
- DS_DEFAULT_ATTRIBUTES =
{ :controlGroup => 'M', :dsState => 'A', :versionable => true }
- DS_READONLY_ATTRIBUTES =
[ :dsCreateDate , :dsSize, :dsVersionID ]
Instance Attribute Summary collapse
-
#digital_object ⇒ Object
readonly
Returns the value of attribute digital_object.
-
#dsid ⇒ Object
readonly
Returns the value of attribute dsid.
Class Method Summary collapse
Instance Method Summary collapse
- #asOfDateTime(asOfDateTime = nil) ⇒ Object
-
#content ⇒ String
(also: #read)
Retrieve the content of the datastream (and cache it).
-
#content=(new_content) ⇒ String or IO
Set the content of the datastream.
-
#content_will_change! ⇒ Object
Content_will_change! would be dynamically created by ActiveModel::Dirty, but it would eagerly load the content.
-
#create ⇒ Rubydora::Datastream
Add datastream to Fedora.
- #datastream_will_change! ⇒ Object
- #default_attributes ⇒ Object
- #default_attributes=(attributes) ⇒ Object
-
#delete ⇒ Rubydora::Datastream
Purge the datastream from Fedora.
- #has_content? ⇒ Boolean
-
#initialize(digital_object, dsid, options = {}, default_instance_attributes = {}) ⇒ Datastream
constructor
Initialize a Rubydora::Datastream object, which may or may not already exist in the datastore.
-
#new? ⇒ Boolean
Does this datastream already exist?.
-
#pid ⇒ Object
Helper method to get digital object pid.
-
#profile(opts = {}) ⇒ Hash
Retrieve the datastream profile as a hash (and cache it).
- #profile=(profile_xml) ⇒ Object
- #profile_xml(opts = {}) ⇒ Object
- #profile_xml_to_hash(profile_xml) ⇒ Object
-
#save ⇒ Rubydora::Datastream
Modify or save the datastream.
-
#url ⇒ String
Get the URL for the datastream content.
- #versions ⇒ Object
Constructor Details
#initialize(digital_object, dsid, options = {}, default_instance_attributes = {}) ⇒ Datastream
Initialize a Rubydora::Datastream object, which may or may not already exist in the datastore.
Provides ‘after_initialize` callback for extensions
101 102 103 104 105 106 107 108 109 110 111 |
# File 'lib/rubydora/datastream.rb', line 101 def initialize digital_object, dsid, = {}, default_instance_attributes = {} _run_initialize_callbacks do @digital_object = digital_object @dsid = dsid @options = @default_attributes = default_attributes.merge(default_instance_attributes) .each do |key, value| self.send(:"#{key}=", value) end end end |
Instance Attribute Details
#digital_object ⇒ Object (readonly)
Returns the value of attribute digital_object.
15 16 17 |
# File 'lib/rubydora/datastream.rb', line 15 def digital_object @digital_object end |
#dsid ⇒ Object (readonly)
Returns the value of attribute dsid.
15 16 17 |
# File 'lib/rubydora/datastream.rb', line 15 def dsid @dsid end |
Class Method Details
.default_attributes ⇒ Object
80 81 82 |
# File 'lib/rubydora/datastream.rb', line 80 def self.default_attributes DS_DEFAULT_ATTRIBUTES end |
Instance Method Details
#asOfDateTime(asOfDateTime = nil) ⇒ Object
72 73 74 75 76 77 78 |
# File 'lib/rubydora/datastream.rb', line 72 def asOfDateTime asOfDateTime = nil if asOfDateTime == nil return @asOfDateTime end return self.class.new(@digital_object, @dsid, @options.merge(:asOfDateTime => asOfDateTime)) end |
#content ⇒ String Also known as: read
Retrieve the content of the datastream (and cache it)
126 127 128 129 130 131 132 133 134 135 136 137 138 139 |
# File 'lib/rubydora/datastream.rb', line 126 def content return @content if new? begin = { :pid => pid, :dsid => dsid } [:asOfDateTime] = asOfDateTime if asOfDateTime @content ||= repository.datastream_dissemination rescue RestClient::ResourceNotFound end content = @content.read and @content.rewind if @content.kind_of? IO content ||= @content end |
#content=(new_content) ⇒ String or IO
Set the content of the datastream
153 154 155 156 |
# File 'lib/rubydora/datastream.rb', line 153 def content= new_content content_will_change! if (self.eager_load_datastream_content and content != new_content) or (@content.nil? or @content != new_content) @content = new_content end |
#content_will_change! ⇒ Object
Content_will_change! would be dynamically created by ActiveModel::Dirty, but it would eagerly load the content. We don’t want to do that.
160 161 162 163 |
# File 'lib/rubydora/datastream.rb', line 160 def content_will_change! raise "Can't change values on older versions" if @asOfDateTime changed_attributes['content'] = nil end |
#create ⇒ Rubydora::Datastream
Add datastream to Fedora
244 245 246 247 248 249 250 251 |
# File 'lib/rubydora/datastream.rb', line 244 def create check_if_read_only run_callbacks :create do repository.add_datastream to_api_params.merge({ :pid => pid, :dsid => dsid, :content => content }) reset_profile_attributes self.class.new(digital_object, dsid, @options) end end |
#datastream_will_change! ⇒ Object
277 278 279 |
# File 'lib/rubydora/datastream.rb', line 277 def datastream_will_change! attribute_will_change! :profile end |
#default_attributes ⇒ Object
84 85 86 |
# File 'lib/rubydora/datastream.rb', line 84 def default_attributes @default_attributes ||= self.class.default_attributes end |
#default_attributes=(attributes) ⇒ Object
88 89 90 |
# File 'lib/rubydora/datastream.rb', line 88 def default_attributes= attributes @default_attributes = default_attributes.merge attributes end |
#delete ⇒ Rubydora::Datastream
Purge the datastream from Fedora
267 268 269 270 271 272 273 274 275 |
# File 'lib/rubydora/datastream.rb', line 267 def delete check_if_read_only run_callbacks :destroy do repository.purge_datastream(:pid => pid, :dsid => dsid) unless self.new? digital_object.datastreams.delete(dsid) reset_profile_attributes self end end |
#has_content? ⇒ Boolean
165 166 167 168 169 170 171 |
# File 'lib/rubydora/datastream.rb', line 165 def has_content? return true unless new? return !dsLocation.blank? if ['E','R'].include? controlGroup !@content.blank? end |
#new? ⇒ Boolean
Does this datastream already exist?
120 121 122 |
# File 'lib/rubydora/datastream.rb', line 120 def new? digital_object.nil? || digital_object.new? || profile_xml.blank? end |
#pid ⇒ Object
Helper method to get digital object pid
114 115 116 |
# File 'lib/rubydora/datastream.rb', line 114 def pid digital_object.pid end |
#profile(opts = {}) ⇒ Hash
Retrieve the datastream profile as a hash (and cache it)
176 177 178 179 180 181 182 183 184 185 186 187 188 189 |
# File 'lib/rubydora/datastream.rb', line 176 def profile opts= {} if @profile && !(opts[:validateChecksum] && !@profile.has_key?('dsChecksumValid')) ## Force a recheck of the profile if they've passed :validateChecksum and we don't have dsChecksumValid return @profile end return @profile = {} unless digital_object.respond_to? :repository @profile = begin xml = profile_xml(opts) (self.profile_xml_to_hash(xml) unless xml.blank?) || {} end end |
#profile=(profile_xml) ⇒ Object
209 210 211 |
# File 'lib/rubydora/datastream.rb', line 209 def profile= profile_xml @profile = self.profile_xml_to_hash(profile_xml) end |
#profile_xml(opts = {}) ⇒ Object
191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 |
# File 'lib/rubydora/datastream.rb', line 191 def profile_xml opts = {} @profile_xml = nil unless opts.empty? @profile_xml ||= begin = { :pid => pid, :dsid => dsid } .merge!(opts) [:asOfDateTime] = asOfDateTime if asOfDateTime [:validateChecksum] = true if repository.config[:validateChecksum] repository.datastream() rescue RestClient::Unauthorized => e raise e rescue RestClient::ResourceNotFound # the datastream is new '' end end |
#profile_xml_to_hash(profile_xml) ⇒ Object
213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 |
# File 'lib/rubydora/datastream.rb', line 213 def profile_xml_to_hash profile_xml profile_xml.gsub! '<datastreamProfile', '<datastreamProfile xmlns="http://www.fedora.info/definitions/1/0/management/"' unless profile_xml =~ /xmlns=/ doc = Nokogiri::XML(profile_xml) h = doc.xpath('/management:datastreamProfile/*', {'management' => "http://www.fedora.info/definitions/1/0/management/"} ).inject({}) do |sum, node| sum[node.name] ||= [] sum[node.name] << node.text sum end.reject { |key, values| values.empty? } h.select { |key, values| values.length == 1 }.each do |key, values| h[key] = values.reject { |x| x.empty? }.first end h['dsSize'] &&= h['dsSize'].to_i rescue h['dsSize'] h['dsCreateDate'] &&= Time.parse(h['dsCreateDate']) rescue h['dsCreateDate'] h['dsChecksumValid'] &&= h['dsChecksumValid'] == 'true' h['dsVersionable'] &&= h['dsVersionable'] == 'true' h end |
#save ⇒ Rubydora::Datastream
Modify or save the datastream
255 256 257 258 259 260 261 262 263 |
# File 'lib/rubydora/datastream.rb', line 255 def save check_if_read_only run_callbacks :save do return create if new? repository.modify_datastream to_api_params.merge({ :pid => pid, :dsid => dsid }) reset_profile_attributes self.class.new(digital_object, dsid, @options) end end |
#url ⇒ String
Get the URL for the datastream content
144 145 146 147 148 |
# File 'lib/rubydora/datastream.rb', line 144 def url = { } [:asOfDateTime] = asOfDateTime if asOfDateTime repository.datastream_url(pid, dsid, ) + "/content" end |
#versions ⇒ Object
232 233 234 235 236 237 238 239 240 |
# File 'lib/rubydora/datastream.rb', line 232 def versions versions_xml = repository.datastream_versions(:pid => pid, :dsid => dsid) return [] if versions_xml.nil? versions_xml.gsub! '<datastreamProfile', '<datastreamProfile xmlns="http://www.fedora.info/definitions/1/0/management/"' unless versions_xml =~ /xmlns=/ doc = Nokogiri::XML(versions_xml) doc.xpath('//management:datastreamProfile', {'management' => "http://www.fedora.info/definitions/1/0/management/"} ).map do |ds| self.class.new @digital_object, @dsid, :profile => ds.to_s, :asOfDateTime => ds.xpath('management:dsCreateDate', 'management' => "http://www.fedora.info/definitions/1/0/management/").text end end |