Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
mongo-url-utils
Advanced tools
Utilities to parse url parameters into objects that can be passed to mongo functions.
Currently depends on mongo 2.6 for the eq support.
Tested against node 4 LTS, 6 LTS and 8 LTS.
var mongoUrlUtils = require('mongo-url-utils');
var params = {
sort: '-age,+firstName',
fields: '-_id,+email,+firstName',
limit: '10',
skip: '0',
query: 'or(gt(age,18),eq(married,false))'
};
var opts = mongoUrlUtils(params);
collection.find(opts.query, opts, function (err, docs) {
console.dir(docs);
});
The above would yield this opts
object:
{
query: {
$or: [
{ age: { '$gt': 18 } },
{ married: { '$eq': false } },
]
},
options: {
sort: {
age: -1.
firstName: 1
},
fields: {
_id: 0,
email: 1,
firstName: 1
},
limit: 10,
skip: 0
}
}
Or you can parse the query string directly:
mongoUrlUtils('query=gt(age,21)&sort=-age');
// {
// query: { age: { '$gt': 21 } },
// options: {
// sort: { age: -1 }
// }
// }
findIn
Sugar to parse a url or params and pass to mongo find
method of a collection. Returns a cursor.
var people = db.collection('people');
mongoUrlUtils.findIn(people, 'query=eq(id,3)').toArray(function (err, docs) {
// ...
});
findOneIn
Sugar to parse a url or params and pass to mongo findOne
method of a collection.
var people = db.collection('people');
mongoUrlUtils.findOneIn(people, 'query=eq(id,3)', function (err, person) {
// ...
});
A find string is made up of any of the query
, sort
, fields
, limit
and skip
operators.
query
A query string which when parsed builds a query object for find. Coverage of the mongo query interface isn't 100% implemented yet. Here's what's available:
operator | example |
---|---|
$eq | eq(name,"West and Sons") |
$gte | gte(id,6) |
$gt | gt(id,6) |
$lte | lte(id,3) |
$lt | lt(id,3) |
$ne | ne(closed,true) |
$size | size(grades,4) |
$in | in(restaurant_id,["8165423","5827429"]) |
$nin | nin(id,[1,2,3,4,5]) |
$all | all(address.coord,["-47.9327","-82.6261"]) |
$and | and(eq(grades.score,5),eq(borough,"Buckinghamshire")) |
$or | or(eq(id,1),eq(borough,"Buckinghamshire")) |
$not | not(size(grades,0)) |
$regex | regex(address.street,".*Road.*") |
$where | where("parseInt(this.restaurant_id, 10) === 5827429") |
$text | text("y hijos", "es") |
$mod | mod(id,5,1) |
$elemMatch | elemMatch(grades,eq(score,2)) |
$exists | exists(closed,false) |
$type | type(name,2) or type(name,String) (see Mongo Types) |
Example; only return people who are widowed or age is greater than 50 and less than 70.
GET /people?query=or(eq(widowed,true),and(gt(age,50),lt(age,70)))
There are also extra operators that wrap $regex
providing a more predictable query without the
full power or danger associated with PCREs.
operator | example |
---|---|
startsWith | startsWith(name, "We") |
endsWith | endsWith(address.street, "Road") |
contains | contains(borough, "shire") |
The extra operators also support $not
. For example not(contains(borough, "shire"))
would
find the docs in which borough
does not contain shire
.
In addition to the string, number, boolean and null
types, the query parser implements support for native Date parsing.
type | format | parsed as | example usage |
---|---|---|---|
date | Date Time String | Date | gt(grades.date,Date(2015-04-28T17:00Z)) |
Please submit pull requests for additional data types, particularly those that are found within the MongoDB Extended JSON specification.
Some operators support the i
flag to denote that the operator should match the value case
insensitively. This is useful if you want to enable case insensitive match without allowing
full $regex
powers (because $regex
is the only way of achieving this in mongo).
eq(tags, 'NODE', i)
matches Node, NODE, node, NoDe, etcAlso supported with ne
, startsWith
, endsWith
and contains
, but must be enabled using the
disabledOperators
query option as the default is to disable this feature.
var options = {
query: {
caseInsensitiveOperators: true
}
};
mongoUrlUtils({query: 'regex(email,"Person@Example.Com",i)'}, options);
The regex
query operator can be dangerous allowing attackers to create an expensive expression.
Set safeRegex
to true
to pass all regexes through safe-regex
and throw an error if an unsafe regex is sent.
var options = {
query: {
safeRegex: true
}
};
mongoUrlUtils({query: 'regex(email,"(a+){10}y")'}, options);
// throws Error
The type()
query operator allows either integer identifiers as per the mongodb documentation. For
convinience it also maps the following types to their ids: Double
, String
, Object
, Array
,
Binary
, Undefined
, ObjectId
, Boolean
, Date
, Null
, RegExp
, Javascript
, Symbol
,
ScopedJavascript
, Int32
, Timestamp
and Int64
.
$not
support
regex
, where
, text
, mod
, elemMatch
, exists
, type
sort
Comma separated field names prefixed with a +
for an ascending sort or -
for a descending sort.
There is no default so either -
or +
must be provided.
Example; return people sorted by oldest age first.
GET /people?sort=-age
fields
A projection parameter which limits which fields are returned. Fields are comma separated.
You can either use an inclusive or exclusive projection. An inclusive (+
) projection means
give me back only these fields. An exclusive (-
) projection means give me back all fields except
these. Inclusive and exclusive cannot be mixed, with one exception for the _id
field in an
inclusive projection.
Example; only return the first name and country of people and exclude _id
. This is the only
time you can mix -
and +
.
GET /people?fields=-_id,+firstName,+address.country
The following projection operators are also supported:
operator | example |
---|---|
elemMatch-projection | elemMatch(students,eq(school,102)) |
Projection operators can be mixed with projection parameters, however it's difficult to prevent mixed exclusive and exclusive parameters with operators so it's recommended that operators come last in the fields string. e.g.
GET /courses?fields=-id,+title,elemMatch(students,eq(gender,"female"))
limit
Limit how many documents are returned.
Example; return at most the first 10 documents.
GET /people?limit=10
skip
How many documents to skip before returning the set. When combined with limit
it can be used to
page results.
Example; return all except the first 10 documents.
GET /people?skip=10
Perhaps you don't want to allow all query operators for performance reasons. It's possible to disable operators at the parser level so the parser will throw an exception when a blacklisted operator is used.
Example; disable the regex operator.
var options = {
query: {
disabledOperators: ['regex', 'text']
}
};
mongoUrlUtils({query: 'regex(email,".*\\\\.gmail\\\\.com")'}, options);
// Error: regex operator is disabled
Browsers don't encode a literal +
in the query string of a url but node will convert them into
literal spaces when parsing the querystring. This is a little inconvenient for sort
and fields
which both prefix fields with +
. Both parsers works around this by treating a literal space as it
would a +
at the beginning of the query value.
If this magic behavior concerns you it can be disabled by setting the {strictEncoding: true}
option - but remember clients are now responsible for encoding +
before making the request.
var options = {
strictEncoding: true
};
mongoUrlUtils('fields=+id,-_id', options); // throws an Error
mongoUrlUtils('fields=%2Bid,-_id', options); // works as expected
1.5.0 (2017/12/28)
safeRegex
query
option
FAQs
url parser utilities for connecting with mongodb
The npm package mongo-url-utils receives a total of 0 weekly downloads. As such, mongo-url-utils popularity was classified as not popular.
We found that mongo-url-utils demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.