Module: ActiveRecord::Acts::Versioned::Behaviors
- Extended by:
- ActiveSupport::Concern
- Defined in:
- lib/acts_as_versioned_rails3.rb
Defined Under Namespace
Modules: ClassMethods
Instance Method Summary collapse
- #altered? ⇒ Boolean
-
#clear_old_versions ⇒ Object
Clears old revisions if a limit is set with the :limit option in
acts_as_versioned
. - #clone_inheritance_column(orig_model, new_model) ⇒ Object
-
#clone_versioned_model(orig_model, new_model) ⇒ Object
Clones a model.
- #empty_callback ⇒ Object
-
#revert_to(version) ⇒ Object
Reverts a model to a given version.
-
#revert_to!(version) ⇒ Object
Reverts a model to a given version and saves the model.
-
#save_version ⇒ Object
Saves a version of the model in the versioned table.
-
#save_version? ⇒ Boolean
Checks whether a new version shall be saved or not.
-
#save_without_revision ⇒ Object
Temporarily turns off Optimistic Locking while saving.
- #save_without_revision! ⇒ Object
-
#version_condition_met? ⇒ Boolean
Checks condition set in the :if option to check whether a revision should be created or not.
-
#without_locking(&block) ⇒ Object
Turns off optimistic locking for the duration of the block.
-
#without_revision(&block) ⇒ Object
Executes the block with the versioning callbacks disabled.
Instance Method Details
#altered? ⇒ Boolean
327 328 329 |
# File 'lib/acts_as_versioned_rails3.rb', line 327 def altered? track_altered_attributes ? (version_if_changed - changed).length < version_if_changed.length : changed? end |
#clear_old_versions ⇒ Object
Clears old revisions if a limit is set with the :limit option in acts_as_versioned
. Override this method to set your own criteria for clearing old versions.
285 286 287 288 289 290 291 |
# File 'lib/acts_as_versioned_rails3.rb', line 285 def clear_old_versions return if self.class.max_version_limit == 0 excess_baggage = send(self.class.version_column).to_i - self.class.max_version_limit if excess_baggage > 0 self.class.versioned_class.delete_all ["#{self.class.version_column} <= ? and #{self.class.versioned_foreign_key} = ?", excess_baggage, id] end end |
#clone_inheritance_column(orig_model, new_model) ⇒ Object
340 341 342 343 344 345 346 |
# File 'lib/acts_as_versioned_rails3.rb', line 340 def clone_inheritance_column(orig_model, new_model) if orig_model.is_a?(self.class.versioned_class) && new_model.class.column_names.include?(new_model.class.inheritance_column.to_s) new_model[new_model.class.inheritance_column] = orig_model[self.class.versioned_inheritance_column] elsif new_model.is_a?(self.class.versioned_class) && new_model.class.column_names.include?(self.class.versioned_inheritance_column.to_s) new_model[self.class.versioned_inheritance_column] = orig_model[orig_model.class.inheritance_column] end end |
#clone_versioned_model(orig_model, new_model) ⇒ Object
Clones a model. Used when saving a new version or reverting a model’s version.
332 333 334 335 336 337 338 |
# File 'lib/acts_as_versioned_rails3.rb', line 332 def clone_versioned_model(orig_model, new_model) self.class.versioned_columns.each do |col| new_model[col.name] = orig_model.send(col.name) if orig_model.has_attribute?(col.name) end clone_inheritance_column(orig_model, new_model) end |
#empty_callback ⇒ Object
386 387 |
# File 'lib/acts_as_versioned_rails3.rb', line 386 def empty_callback() end |
#revert_to(version) ⇒ Object
Reverts a model to a given version. Takes either a version number or an instance of the versioned model
294 295 296 297 298 299 300 301 302 303 |
# File 'lib/acts_as_versioned_rails3.rb', line 294 def revert_to(version) if version.is_a?(self.class.versioned_class) return false unless version.send(self.class.versioned_foreign_key) == id and !version.new_record? else return false unless version = versions.where(self.class.version_column => version).first end self.clone_versioned_model(version, self) send("#{self.class.version_column}=", version.send(self.class.version_column)) true end |
#revert_to!(version) ⇒ Object
Reverts a model to a given version and saves the model. Takes either a version number or an instance of the versioned model
307 308 309 |
# File 'lib/acts_as_versioned_rails3.rb', line 307 def revert_to!(version) revert_to(version) ? save_without_revision : false end |
#save_version ⇒ Object
Saves a version of the model in the versioned table. This is called in the after_save callback by default
272 273 274 275 276 277 278 279 280 281 |
# File 'lib/acts_as_versioned_rails3.rb', line 272 def save_version if @saving_version @saving_version = nil rev = self.class.versioned_class.new clone_versioned_model(self, rev) rev.send("#{self.class.version_column}=", send(self.class.version_column)) rev.send("#{self.class.versioned_foreign_key}=", id) rev.save end end |
#save_version? ⇒ Boolean
Checks whether a new version shall be saved or not. Calls version_condition_met?
and changed?
.
349 350 351 |
# File 'lib/acts_as_versioned_rails3.rb', line 349 def save_version? version_condition_met? && altered? end |
#save_without_revision ⇒ Object
Temporarily turns off Optimistic Locking while saving. Used when reverting so that a new version is not created.
312 313 314 315 316 317 |
# File 'lib/acts_as_versioned_rails3.rb', line 312 def save_without_revision save_without_revision! true rescue false end |
#save_without_revision! ⇒ Object
319 320 321 322 323 324 325 |
# File 'lib/acts_as_versioned_rails3.rb', line 319 def save_without_revision! without_locking do without_revision do save! end end end |
#version_condition_met? ⇒ Boolean
Checks condition set in the :if option to check whether a revision should be created or not. Override this for custom version condition checking.
355 356 357 358 359 360 361 362 363 364 |
# File 'lib/acts_as_versioned_rails3.rb', line 355 def version_condition_met? case when version_condition.is_a?(Symbol) send(version_condition) when version_condition.respond_to?(:call) && (version_condition.arity == 1 || version_condition.arity == -1) version_condition.call(self) else version_condition end end |
#without_locking(&block) ⇒ Object
Turns off optimistic locking for the duration of the block
@foo.without_locking do
@foo.save
end
382 383 384 |
# File 'lib/acts_as_versioned_rails3.rb', line 382 def without_locking(&block) self.class.without_locking(&block) end |
#without_revision(&block) ⇒ Object
Executes the block with the versioning callbacks disabled.
@foo.without_revision do
@foo.save
end
372 373 374 |
# File 'lib/acts_as_versioned_rails3.rb', line 372 def without_revision(&block) self.class.without_revision(&block) end |