mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-08 23:53:08 +02:00
29 lines
597 B
TypeScript
29 lines
597 B
TypeScript
import * as mongo from 'mongodb';
|
|
import { Query } from 'cafy';
|
|
|
|
export const isAnId = (x: any) => mongo.ObjectID.isValid(x);
|
|
export const isNotAnId = (x: any) => !isAnId(x);
|
|
|
|
/**
|
|
* ID
|
|
*/
|
|
export default class ID extends Query<mongo.ObjectID> {
|
|
constructor() {
|
|
super();
|
|
|
|
this.transform = v => {
|
|
if (isAnId(v) && !mongo.ObjectID.prototype.isPrototypeOf(v)) {
|
|
return new mongo.ObjectID(v);
|
|
} else {
|
|
return v;
|
|
}
|
|
};
|
|
|
|
this.push(v => {
|
|
if (!mongo.ObjectID.prototype.isPrototypeOf(v) && isNotAnId(v)) {
|
|
return new Error('must-be-an-id');
|
|
}
|
|
return true;
|
|
});
|
|
}
|
|
}
|