misskey/src/misc/cafy-id.ts

34 lines
659 B
TypeScript
Raw Normal View History

2018-04-24 02:13:06 -07:00
import * as mongo from 'mongodb';
2018-07-05 07:36:07 -07:00
import { Context } from 'cafy';
2018-04-24 02:13:06 -07:00
2018-06-17 17:54:53 -07:00
export const isAnId = (x: any) => mongo.ObjectID.isValid(x);
export const isNotAnId = (x: any) => !isAnId(x);
2018-04-24 02:13:06 -07:00
/**
* ID
*/
2018-07-05 07:36:07 -07:00
export default class ID extends Context<mongo.ObjectID> {
2018-05-02 02:06:16 -07:00
constructor() {
super();
2018-04-24 02:13:06 -07:00
this.transform = v => {
if (isAnId(v) && !mongo.ObjectID.prototype.isPrototypeOf(v)) {
return new mongo.ObjectID(v);
} else {
return v;
}
};
2018-05-02 02:06:16 -07:00
this.push(v => {
2018-04-24 02:13:06 -07:00
if (!mongo.ObjectID.prototype.isPrototypeOf(v) && isNotAnId(v)) {
return new Error('must-be-an-id');
}
return true;
});
}
2018-07-05 20:38:07 -07:00
public getType() {
return super.getType('string');
}
2018-04-24 02:13:06 -07:00
}