2018-04-24 11:13:06 +02:00
|
|
|
import * as mongo from 'mongodb';
|
|
|
|
import { Query } from 'cafy';
|
|
|
|
|
|
|
|
export const isAnId = x => mongo.ObjectID.isValid(x);
|
|
|
|
export const isNotAnId = x => !isAnId(x);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* ID
|
|
|
|
*/
|
|
|
|
export default class ID extends Query<mongo.ObjectID> {
|
|
|
|
constructor(...args) {
|
|
|
|
super(...args);
|
|
|
|
|
|
|
|
this.transform = v => {
|
|
|
|
if (isAnId(v) && !mongo.ObjectID.prototype.isPrototypeOf(v)) {
|
|
|
|
return new mongo.ObjectID(v);
|
|
|
|
} else {
|
|
|
|
return v;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2018-04-24 16:34:18 +02:00
|
|
|
this.pushValidator(v => {
|
2018-04-24 11:13:06 +02:00
|
|
|
if (!mongo.ObjectID.prototype.isPrototypeOf(v) && isNotAnId(v)) {
|
|
|
|
return new Error('must-be-an-id');
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|