UNPKG

iridium

Version:

A custom lightweight ORM for MongoDB designed for power-users

180 lines 8.12 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const Bluebird = require("bluebird"); /** * An Iridium collection cursor which allows the itteration through documents * in the collection, automatically wrapping them in the correct instance type. * * @param TDocument The interface representing the collection's documents * @param TInstance The interface or class used to represent the wrapped documents. */ class Cursor { /** * Creates a new Iridium cursor which wraps a MongoDB cursor object * @param {Model} model The Iridium model that this cursor belongs to * @param {Object} conditions The conditions that resulte in this cursor being created * @param {MongoDB.Cursor} cursor The MongoDB native cursor object to be wrapped * @constructor */ constructor(model, conditions, cursor) { this.model = model; this.conditions = conditions; this.cursor = cursor; } /** * Counts the number of documents which are matched by this cursor * @param {function} [callback] A callback which is triggered when the result is available * @return {Promise} A promise which will resolve with the number of documents matched by this cursor */ count(callback) { return new Bluebird((resolve, reject) => { this.cursor.count(true, (err, count) => { if (err) return reject(err); return resolve(count); }); }).nodeify(callback); } /** * Runs the specified handler over each instance in the query results * @param {function} handler The handler which is triggered for each element in the query * @param {function} [callback] A callback which is triggered when all operations have been dispatched * @return {Promise} A promise which is resolved when all operations have been dispatched */ forEach(handler, callback) { let helpers = this.model.helpers; return new Bluebird((resolve, reject) => { this.cursor.forEach((item) => { this.model.handlers.documentReceived(this.conditions, item, function () { return helpers.wrapDocument.apply(helpers, arguments); }).then(handler); }, (err) => { if (err) return reject(err); return resolve(undefined); }); }).nodeify(callback); } /** * Runs the specified transform over each instance in the query results and returns the resulting transformed objects * @param {function} transform A handler which is used to transform the result objects * @param {function} [callback] A callback which is triggered when the transformations are completed * @return {Promise} A promise which is fulfilled with the results of the transformations */ map(transform, callback) { let helpers = this.model.helpers; return new Bluebird((resolve, reject) => { let promises = []; this.cursor.forEach((item) => { promises.push(this.model.handlers.documentReceived(this.conditions, item, function () { return helpers.wrapDocument.apply(helpers, arguments); }) .then(transform)); }, (err) => { if (err) return reject(err); return resolve(Bluebird.all(promises)); }); }).nodeify(callback); } /** * Retrieves all matching instances and returns them in an array * @param {function} [callback] A callback which is triggered with the resulting instances * @return {Promise} A promise which resolves with the instances returned by the query */ toArray(callback) { let helpers = this.model.helpers; return new Bluebird((resolve, reject) => { this.cursor.toArray((err, results) => { if (err) return reject(err); return resolve(results); }); }).map((document) => { return this.model.handlers.documentReceived(this.conditions, document, function () { return helpers.wrapDocument.apply(helpers, arguments); }); }).nodeify(callback); } /** * Retrieves the next item in the results list * @param {function} [callback] A callback which is triggered when the next item becomes available * @return {Promise} A promise which is resolved with the next item */ next(callback) { return new Bluebird((resolve, reject) => { this.cursor.next((err, result) => { if (err) return reject(err); return resolve(result); }); }).then((document) => { if (!document) return Bluebird.resolve(undefined); return this.model.handlers.documentReceived(this.conditions, document, (document, isNew, isPartial) => this.model.helpers.wrapDocument(document, isNew, isPartial)); }).nodeify(callback); } /** * Retrieves the next item in the result list and then closes the cursor * @param {function} [callback] A callback which is triggered when the next item becomes available * @return {Promise} A promise which is resolved once the item becomes available and the cursor has been closed. */ one(callback) { return new Bluebird((resolve, reject) => { this.cursor.next((err, result) => { if (err) return reject(err); return resolve(result); }); }).then((document) => { return new Bluebird((resolve, reject) => { this.cursor.close((err) => { if (err) return reject(err); return resolve(document); }); }); }).then((document) => { if (!document) return Bluebird.resolve(undefined); return this.model.handlers.documentReceived(this.conditions, document, (document, isNew, isPartial) => this.model.helpers.wrapDocument(document, isNew, isPartial)); }).nodeify(callback); } /** * Returns a new cursor which behaves the same as this one did before any results were retrieved * @return {Cursor} The new cursor which starts at the beginning of the results */ rewind() { this.cursor.rewind(); return this; } /** * Returns a new cursor which sorts its results by the given index expression * @param {model.IndexSpecification} sortExpression The index expression dictating the sort order and direction to use * @return {Cursor} The new cursor which sorts its results by the sortExpression */ sort(sortExpression) { return new Cursor(this.model, this.conditions, this.cursor.sort(sortExpression)); } /** * Returns a new cursor which limits the number of returned results * @param {Number} limit The maximum number of results to return * @return {Cursor} The new cursor which will return a maximum number of results */ limit(limit) { return new Cursor(this.model, this.conditions, this.cursor.limit(limit)); } /** * Returns a new cursor which skips a number of results before it begins * returning any. * @param {Number} skip The number of results to skip before the cursor beings returning * @return {Cursor} The new cursor which skips a number of results */ skip(skip) { return new Cursor(this.model, this.conditions, this.cursor.skip(skip)); } /** * Returns a new cursor which will read from the specified node type. * @param {String} type The type of node to read from - see https://docs.mongodb.org/manual/core/read-preference/ * @return {Cursor} The new cursor which reads from the specified node type */ readFrom(type) { return new Cursor(this.model, this.conditions, this.cursor.setReadPreference(type)); } } exports.Cursor = Cursor; //# sourceMappingURL=Cursor.js.map