Versioned

Automatically store a version of a MongoMapper document every time it's updated. Configure a maximum number of versions you'd like to keep, or even the amount of time a particular document should keep versions around.

Setup

Add the gem to your Gemfile. Add the necessary Mongo indexes: run Version.create_indexes in your console, or if you are using Rails run the rake versioned:create_indexes command.

Basic Usage

Add the versioned declaration to the MongoMapper document models you want to keep versions of. When you make a change to a versioned document, a new version will be stored. Deleting a stored document will delete all the associated versions.

class User
  versioned 

  key :name, String
  key :email, String
end

Querying

Every versioned document model has an association called versions. It's a plain old MongoMapper one-to-many association with the Version model, sorted in reverse chronological order. You can query for versions using MongoMapper's standard query criteria:

@user.versions.where(:created_at.lt > 1.day.ago)

Pruning old versions

Use the max option to specifiy the maximum number of versions you want to keep. When the document is updated, the oldest versions will be pruned away to keep no more than the maximum number you specify.

class User
  versioned max: 10

  key :name, String
  key :email, String
end

If you'd rather specify the amount of time the versions of a doc should be kept, implement keep_versions_for. It must return the number of seconds to keep each revision. Every time a new version is created, versions will be purged based on their age.

This doesn't work with the max option. Use one or the other.

class User
  versioned

  key :name, String
  key :email, String

  def keep_versions_for
    90.days
  end
end

Auditing

When a versioned document is saved, you can pass the updater option to the save method. The associated version will keep a reference to the document passed. This allows you to keep track of who made a change to a versioned document.

@reginold = User.find_by_email('[email protected]')
@user.name = "Bob"
@user.save(:updater => @reginold)
@user.versions.first.updater
=> @reginold

Rolling back

Each Version contains a copy of the document that was versioned. You can roll back to a particular version by calling the rollback method on the version you want. Reload the versioned document to pull the changes into the reference you're holding to the document.

@user.versions[5].rollback
@user.reload

After you roll back, newer versions are automatically removed.

Version IDs

A versioned document has a version_id key. When you update a document, the new Version document takes on the ID of the document's current version_id value. The document gets a new version_id.

Rolling back to a previous revision will also roll back the version_id value of the document.

This mechanism allows you to undo changes to a document:

version_id = @user.version_id
@user.name 
=> "Roger"

@user.name = "Frank"
@user.save
@user.name = "Bob"
@user.save
@user.versions.find(version_id).rollback

@user.reload
@user.name
=> "Roger"
@user.version_id == version_id
=> true