Class: GenericResource

Inherits:
ActiveFedora::Base
  • Object
show all
Extended by:
ActiveModel::Callbacks
Includes:
ActiveFedora::DatastreamCollections, ActiveFedora::FinderMethods::RepositoryMethods, Cul::Hydra::Fedora::UrlHelperBehavior, Cul::Hydra::Models::Common, Cul::Hydra::Models::ImageResource, Cul::Hydra::Models::RelsInt
Defined in:
app/models/generic_resource.rb

Constant Summary collapse

IMAGE_EXT =
{"image/bmp" => 'bmp', "image/gif" => 'gif', "image/jpeg" => 'jpg', "image/png" => 'png', "image/tiff" => 'tif', "image/x-windows-bmp" => 'bmp'}
WIDTH =
RDF::URI(ActiveFedora::Predicates.find_graph_predicate(:image_width))
LENGTH =
RDF::URI(ActiveFedora::Predicates.find_graph_predicate(:image_length))

Constants included from Cul::Hydra::Models::ImageResource

Cul::Hydra::Models::ImageResource::DEGREES_TO_EXIF_ORIENTATIONS, Cul::Hydra::Models::ImageResource::EXIF_ORIENTATION_TO_DEGREES, Cul::Hydra::Models::ImageResource::EXTENT_PREDICATE, Cul::Hydra::Models::ImageResource::FORMAT_OF_PREDICATE, Cul::Hydra::Models::ImageResource::FORMAT_URI, Cul::Hydra::Models::ImageResource::LENGTH_PREDICATE, Cul::Hydra::Models::ImageResource::WIDTH_PREDICATE

Instance Method Summary collapse

Methods included from Cul::Hydra::Fedora::UrlHelperBehavior

#fedora_ds_url, #fedora_method_url, #fedora_object_url, #fedora_risearch_url, #fedora_url, #pid_for_url

Methods included from Cul::Hydra::Models::RelsInt

#rels_int

Methods included from Cul::Hydra::Models::ImageResource

#length, #long, #orientation, #orientation=, #required_rotation_for_upright_display, #width

Methods included from Cul::Hydra::Models::Common

#cmodel_pid, #datastreams_in_fedora, #get_representative_generic_resource, #get_singular_rel, #has_desc?, #initialize, #label=, #rdf_type, #rdf_types!, #set_singular_rel, #set_size_labels, #update_datastream_attributes

Instance Method Details

#access_levelsObject



116
117
118
119
120
# File 'app/models/generic_resource.rb', line 116

def access_levels
  acm = datastreams['accessControlMetadata']
  return [] if acm.content.blank?
  return acm.to_solr.fetch('access_control_levels_ssim', [])
end

#assert_content_modelObject



27
28
29
30
# File 'app/models/generic_resource.rb', line 27

def assert_content_model
  super
  add_relationship(:rdf_type, RDF::CUL.Resource.to_s)
end

#closed?Boolean

Returns:

  • (Boolean)


112
113
114
# File 'app/models/generic_resource.rb', line 112

def closed?
  return access_levels.map(&:downcase).include?('closed')
end

#index_type_labelObject



36
37
38
# File 'app/models/generic_resource.rb', line 36

def index_type_label
  "FILE ASSET"
end

#linkable_resourcesObject



75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
# File 'app/models/generic_resource.rb', line 75

def linkable_resources
  # let's start with the known DSIDs from lindquist, then work our way back to parsing the solrized relsint
  results = []
  if (rels = rels_int.instance_variable_get :@solr_hash)
    # this was loaded from solr
    rels.each do |dsuri, props|
      if dsuri =~ /\/content$/ or not props[FORMAT_OF_PREDICATE].blank?
        dsid =  dsuri.split('/')[-1]
        res = datastream_as_resource(dsid, props.with_indifferent_access)
        results << res
      end
    end
  else
    content_uri = RDF::URI("info:fedora/#{self.pid}/content")
    dsuris = [content_uri]
    results = []
    # read the graph
    datastreams.each do |k, v|
      rels = rels_int.relationships(v, :format_of, content_uri)
      dsuris << rels[0].subject unless rels.blank?
    end

    dsuris.each do |dsuri|
      dsid = dsuri.to_s.split('/')[-1]
      width_rel = rels_int.relationships(dsuri, :image_width)[0]
      length_rel = rels_int.relationships(dsuri, :image_length)[0]
      extent_rel = rels_int.relationships(dsuri, :extent)[0]
      props = {extent: [], image_width: [], image_length: []}
      props[:extent] << extent_rel.object.to_s unless extent_rel.blank?
      props[:image_width] << width_rel.object.to_s unless width_rel.blank?
      props[:image_length] << length_rel.object.to_s unless length_rel.blank?
      results << datastream_as_resource(dsid, props)
    end
  end
  results
end

#route_asObject



32
33
34
# File 'app/models/generic_resource.rb', line 32

def route_as
  "resource"
end

#service_datastreamObject



122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
# File 'app/models/generic_resource.rb', line 122

def service_datastream
  # we have to 'manually' query the graph because rels_int doesn't support subject pattern matching
  args = [:s, rels_int.to_predicate(:format_of), RDF::URI.new("#{internal_uri}/content")]
  query = RDF::Query.new { |q| q << args }
  candidates = query.execute(rels_int.graph).map(&:to_hash).map do |hash|
    hash[:s]
  end
  args = [:s, rels_int.to_predicate(:rdf_type), RDF::URI.new("http://pcdm.org/use#ServiceFile")]
  query = RDF::Query.new { |q| q << args }
  candidates &= query.execute(rels_int.graph).map(&:to_hash).map do |hash|
    hash[:s]
  end
  candidate_dsid = candidates.first && candidates.first.to_s.split('/')[-1]
  return datastreams[candidate_dsid] if datastreams.keys.include? candidate_dsid
  return nil
end

#to_solr(solr_doc = Hash.new, opts = {}) ⇒ Object



40
41
42
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
69
70
71
72
73
# File 'app/models/generic_resource.rb', line 40

def to_solr(solr_doc = Hash.new, opts={})
  solr_doc = super

  unless solr_doc["extent_ssim"] || self.datastreams["content"].nil?
    if self.datastreams["content"].dsSize.to_i > 0
      solr_doc["extent_ssim"] = [self.datastreams["content"].dsSize]
    else
      repo = ActiveFedora::Base.connection_for_pid(pid)
      ds_parms = {pid: pid, dsid: "content", method: :head}
      repo.datastream_dissemination(ds_parms) do |res|
        solr_doc["extent_ssim"] = res['Content-Length']
      end
    end
  end

  if (service_ds = self.service_datastream)
    solr_doc['service_dslocation_ss'] = service_ds.dsLocation
  end
  solr_doc["fulltext_tesim"] = []
  unless self.datastreams["fulltext"].nil?
    solr_doc["fulltext_tesim"].concat(solr_doc["title_display_ssm"]) unless solr_doc["title_display_ssm"].nil? or solr_doc["title_display_ssm"].length == 0
    utf8able = Cul::Hydra::Datastreams::EncodedTextDatastream.utf8able!(self.datastreams["fulltext"].content)
    solr_doc["fulltext_tesim"] << utf8able.encode(Encoding::UTF_8)
  end
  relationships(:original_name).each do |original_name|
    solr_doc["original_name_tesim"] ||= []
    original_name = original_name.object.to_s.split('/').join(' ')
    solr_doc["original_name_tesim"] << original_name.strip
  end

  solr_doc['access_control_levels_ssim'] ||= [Cul::Hydra::AccessLevels::ACCESS_LEVEL_PUBLIC]
  solr_doc['access_control_permissions_bsi'] = !!solr_doc['access_control_permissions_bsi']
  solr_doc
end

#with_ds_resource(ds_id, fedora_content_filesystem_mounted = false, &block) ⇒ Object



139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
# File 'app/models/generic_resource.rb', line 139

def with_ds_resource(ds_id, fedora_content_filesystem_mounted=false, &block)
  ds = self.datastreams[ds_id]

  # If the dsLocation starts with the pid, that means that we're dealing with an internally-managed ds,
  # so we can't reference the file directly even if we do have the fedora content filesystem mounted.
  if ! ds.dsLocation.start_with?(self.pid) && fedora_content_filesystem_mounted
    if ds.dsLocation =~ /^file:\//
      dsLocation = ds.dsLocation.sub(/^file:\/+/,'/')
      path = URI.unescape(dsLocation)
    else
      path = ds.dsLocation
    end

    yield(path)
  else
    internal_uri = "info:fedora/#{self.pid}/#{ds_id}"
    # No local fedora mount, need to download content over http[s]

    file_basename = File.basename(ds.dsLocation.gsub(/^file:/,''))
    file_extension = File.extname(file_basename)

    # In some cases, we actually do want to know the original extension of the file, so we'll preserve it in the temp file filename
    temp_file = Tempfile.new([file_basename, file_extension])
    begin
      parts = internal_uri.split('/')
      open(temp_file.path, 'wb') do |blob|
        repo = ActiveFedora::Base.connection_for_pid(parts[1])
        repo.datastream_dissemination({:dsid=>parts[2], :pid=>parts[1], :finished=>false}) do |res|
          res.read_body do |seg|
            blob << seg
          end
        end
      end
      yield(temp_file.path)
    ensure
      temp_file.unlink
    end
  end

end