Sha256: 50ac124cf3e5b911608c4f2740550f0dc0c08b0df5257913a66b561eb62f651a
Contents?: true
Size: 1.5 KB
Versions: 1
Compression:
Stored size: 1.5 KB
Contents
module Dor class RoleMetadataDS < ActiveFedora::OmDatastream include SolrDocHelper set_terminology do |t| t.root :path => 'roleMetadata' t.actor do t.identifier do t.type_ :path => {:attribute => 'type'} end t.name end t.person :ref => [:actor], :path => 'person' t.group :ref => [:actor], :path => 'group' t.role do t.type_ :path => {:attribute => 'type'} t.person :ref => [:person] t.group :ref => [:group] end t.manager :ref => [:role], :attributes => {:type => 'manager'} t.depositor :ref => [:role], :attributes => {:type => 'depositor'} t.reviewer :ref => [:role], :attributes => {:type => 'reviewer'} t.viewer :ref => [:role], :attributes => {:type => 'viewer'} end def self.xml_template Nokogiri::XML::Builder.new do |xml| xml.roleMetadata{ } end.doc end def to_solr(solr_doc=Hash.new, *args) self.find_by_xpath('/roleMetadata/role/*').each do |actor| role_type = actor.parent['type'] val = [actor.at_xpath('identifier/@type'), actor.at_xpath('identifier/text()')].join ':' add_solr_value(solr_doc, "apo_role_#{actor.name}_#{role_type}", val, :string, [:symbol]) add_solr_value(solr_doc, "apo_role_#{role_type}", val, :string, [:symbol]) if ['dor-apo-manager','dor-apo-depositor'].include? role_type add_solr_value(solr_doc, "apo_register_permissions", val, :string, [:symbol, :stored_searchable]) end end solr_doc end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
dor-services-5.1.1 | lib/dor/datastreams/role_metadata_ds.rb |