bsovs / mongoose-diff-history

Manage Mongo Collection diff History and versions

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Build Status Downloads Codacy Code Climate Test Coverage

mongoose-diff-history

Stores and Manages all the differences and versions, any Mongo collection goes through it's lifecycle.

Installation


npm

npm install mongoose-diff-history

Operation


Each update will create a history record with jsonDiff of the change. This helps in tracking all the changes happened to an object from the beginning.

Following will be the structure of the diff history being saved:

diff Collection schema:

_id : mongo id of the diff object
collectionId : Mongo Id of the collection being modified
diff: diff object
user: User who modified
reason: Why the collection is modified
createdAt: When the collection is modified
_v: version

Usage


Use as you would any Mongoose plugin:

const mongoose = require('mongoose'),
      diffHistory = require('mongoose-diff-history/diffHistory'),
      schema = new mongoose.Schema({ ... });
      schema.plugin(diffHistory.plugin, { name: 'SchemaHistory' });

The plugin also has an omit option which accepts either a string or array. This will omit the given keys from history. Follows dot syntax for deeply nested values.

const mongoose = require('mongoose');
const diffHistory = require('mongoose-diff-history/diffHistory');

const Schema = new mongoose.Schema({
    someField: String,
    ignoredField: String,
    some: {
        deepField: String
    }
});

schema.plugin(diffHistory.plugin, {
    name: 'MyModelHistory',
    omit: ['ignoredField', 'some.deepField']
});
const mongooseModel = mongoose.model('MyModel', Schema);

Helper Methods


You can get all the histories created for an object using following method:

const expandableFields = ['abc', 'def'];

mongooseModel.getHistories(ObjectId, expandableFields, function (
    err,
    histories
) {});

// or, as a promise
mongooseModel
    .getHistories(ObjectId, expandableFields)
    .then(histories => {})
    .catch(console.error);

If you just want the raw histories return with json diff patches:

mongooseModel.getDiffs(ObjectId, function (err, histories) {});

// or, as a promise
mongooseModel
    .getDiffs(ObjectId)
    .then(histories => {})
    .catch(console.error);

// with optional query parameters:
mongooseModel
    .getDiffs(ObjectId, { select: 'diff user' })
    .then(histories => {})
    .catch(console.error);

You can get an older version of the object using following method:

mongooseModel.getVersion(ObjectId, version, function (err, oldObject) {});

// or, as a promise
mongooseModel
    .getVersion(ObjectId, version)
    .then(oldObject => {})
    .catch(console.error);

You can also use Mongoose query options with getVersion like so:

mongooseModel.getVersion(ObjectId, version, { lean: true }, function (
    err,
    oldObject
) {});

// or, as a promise
mongooseModel
    .getVersion(ObjectId, version, { lean: true })
    .then(oldObject => {})
    .catch(console.error);

Access History Model

You can access the model's history-model by calling: mongooseModel.history on your attached model

From there you can call custom mongoose queries on the history model:

mongooseModel.history
    .find({ diff: { name: 'foo' } })
    .limit(10)
    .then(oldObject => {})
    .catch(console.error);

Example


I have created an example express service (documentation here), demonstrating this plugin via an simple employee schema, checkout example directory in this repo.

Contributing


This project is now using Conventional Commit syntax for commit messages, to allow for easier updates in change logs & release notes. Please follow these conventions in your commits.

About

Manage Mongo Collection diff History and versions

License:Apache License 2.0


Languages

Language:JavaScript 99.9%Language:EJS 0.1%