Sha256: 5ec744233bdbc2d5ed61ea8365823306a87f5a8a4d31fca3e5dc3d20f8ac86b7
Contents?: true
Size: 1.58 KB
Versions: 4
Compression:
Stored size: 1.58 KB
Contents
module ActiveFedora # a Hash of properties that have changed and their present values class ChangeSet attr_reader :object, :graph, :changed_attributes # @param [ActiveFedora::Base] object The resource that has associations and properties # @param [RDF::Graph] graph The RDF graph that holds the current state # @param [Array] changed_attributes A list of properties that have changed def initialize(object, graph, changed_attributes) @object = object @graph = graph @changed_attributes = changed_attributes end def empty? changes.empty? end # @return [Hash<RDF::URI, RDF::Queryable::Enumerator>] hash of predicate uris to statements def changes @changes ||= changed_attributes.each_with_object({}) do |key, result| if object.respond_to?(:association) && object.association(key.to_sym).present? predicate = object.association(key.to_sym).reflection.predicate result[predicate] = graph.query(predicate: predicate) elsif object.class.properties.keys.include?(key) predicate = graph.reflections.reflect_on_property(key).predicate result[predicate] = graph.query(predicate: predicate) elsif key == 'type'.freeze # working around https://github.com/ActiveTriples/ActiveTriples/issues/122 predicate = ::RDF.type result[predicate] = graph.query(predicate: predicate) elsif object.local_attributes.include?(key) raise "Unable to find a graph predicate corresponding to the attribute: \"#{key}\"" end end end end end
Version data entries
4 entries across 4 versions & 1 rubygems