Module: ActiveFedora::Persistence

Extended by:
ActiveSupport::Concern
Included in:
Base
Defined in:
lib/active_fedora/persistence.rb

Overview

Active Fedora Persistence

Defined Under Namespace

Modules: ClassMethods

Instance Method Summary collapse

Instance Method Details

#assert_content_modelObject

This can be overriden to assert a different model It’s normally called once in the lifecycle, by #create#



37
38
39
# File 'lib/active_fedora/persistence.rb', line 37

def assert_content_model
  add_relationship(:has_model, self.class.to_class_uri)
end

#deleteObject

Deletes a Base object, also deletes the info indexed in Solr, and the underlying inner_object. If this object is held in any relationships (ie inbound relationships outside of this object it will remove it from those items rels-ext as well



58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
# File 'lib/active_fedora/persistence.rb', line 58

def delete
  reflections.each_pair do |name, reflection|
    if reflection.macro == :has_many
      association(name).delete_all
    end
  end

  @pid ||= self.pid ## cache so it's still available after delete
  begin
    @inner_object.delete
  rescue RestClient::ResourceNotFound => e
    raise ObjectNotFoundError, "Unable to find #{pid} in the repository"
  end
  if ENABLE_SOLR_UPDATES
    solr = ActiveFedora::SolrService.instance.conn
    solr.delete_by_id(pid, params: {'softCommit' => true}) 
  end
  @destroyed = true
  freeze
end

#destroyObject



79
80
81
# File 'lib/active_fedora/persistence.rb', line 79

def destroy
  delete
end

#destroyed?Boolean

Returns true if this object has been destroyed, otherwise returns false.

Returns:

  • (Boolean)


16
17
18
# File 'lib/active_fedora/persistence.rb', line 16

def destroyed?
  @destroyed
end

#new_record?Boolean

Required by associations

Returns:

  • (Boolean)


7
8
9
# File 'lib/active_fedora/persistence.rb', line 7

def new_record?
  inner_object.new_record?
end

#persisted?Boolean

Returns:

  • (Boolean)


11
12
13
# File 'lib/active_fedora/persistence.rb', line 11

def persisted?
  !(new_record? || destroyed?)
end

#refreshObject

Refreshes the object’s info from Fedora Note: Currently just registers any new datastreams that have appeared in fedora



51
52
53
# File 'lib/active_fedora/persistence.rb', line 51

def refresh
#      inner_object.load_attributes_from_fedora
end

#save(options = {}) ⇒ Boolean

Saves a Base object, and any dirty datastreams, then updates the Solr index for this object, unless option :update_index=>false is present. Indexing is also controlled by the ‘create_needs_index?’ and ‘update_needs_index?’ methods.

Parameters:

  • options (Hash) (defaults to: {})

Options Hash (options):

  • :update_index (Boolean) — default: true

    set false to skip indexing

Returns:

  • (Boolean)

    true if save was successful, otherwise false



27
28
29
# File 'lib/active_fedora/persistence.rb', line 27

def save(options={})
  new_record? ? create(options) : update_record(options)
end

#save!(options = {}) ⇒ Object



31
32
33
# File 'lib/active_fedora/persistence.rb', line 31

def save!(options={})
  save(options)
end

#update(attributes) ⇒ Object Also known as: update_attributes

Pushes the object and all of its new or dirty datastreams into Fedora



42
43
44
45
# File 'lib/active_fedora/persistence.rb', line 42

def update(attributes)
  self.attributes=attributes
  save
end