2018-04-24 04:13:06 -05:00
|
|
|
import * as mongo from 'mongodb';
|
2018-07-05 09:36:07 -05:00
|
|
|
import { Context } from 'cafy';
|
2018-10-15 21:38:09 -05:00
|
|
|
import isObjectId from './is-objectid';
|
2018-04-24 04:13:06 -05:00
|
|
|
|
2018-06-17 19:54:53 -05:00
|
|
|
export const isAnId = (x: any) => mongo.ObjectID.isValid(x);
|
|
|
|
export const isNotAnId = (x: any) => !isAnId(x);
|
2018-11-01 13:32:24 -05:00
|
|
|
export const transform = (x: string | mongo.ObjectID): mongo.ObjectID => {
|
2019-01-20 20:23:32 -06:00
|
|
|
if (x === undefined) return undefined;
|
|
|
|
if (x === null) return null;
|
2018-11-01 13:32:24 -05:00
|
|
|
|
|
|
|
if (isAnId(x) && !isObjectId(x)) {
|
|
|
|
return new mongo.ObjectID(x);
|
|
|
|
} else {
|
|
|
|
return x as mongo.ObjectID;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
export const transformMany = (xs: (string | mongo.ObjectID)[]): mongo.ObjectID[] => {
|
|
|
|
if (xs == null) return null;
|
|
|
|
|
|
|
|
return xs.map(x => transform(x));
|
|
|
|
};
|
|
|
|
|
|
|
|
export type ObjectId = mongo.ObjectID;
|
2018-04-24 04:13:06 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* ID
|
|
|
|
*/
|
2019-02-13 01:33:07 -06:00
|
|
|
export default class ID<Maybe = string> extends Context<string | Maybe> {
|
2019-02-22 20:20:58 -06:00
|
|
|
public readonly name = 'ID';
|
|
|
|
|
2019-02-13 01:33:07 -06:00
|
|
|
constructor(optional = false, nullable = false) {
|
|
|
|
super(optional, nullable);
|
2018-04-24 04:13:06 -05:00
|
|
|
|
2018-11-01 13:32:24 -05:00
|
|
|
this.push((v: any) => {
|
2018-10-15 21:38:09 -05:00
|
|
|
if (!isObjectId(v) && isNotAnId(v)) {
|
2018-04-24 04:13:06 -05:00
|
|
|
return new Error('must-be-an-id');
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
});
|
|
|
|
}
|
2018-07-05 22:38:07 -05:00
|
|
|
|
|
|
|
public getType() {
|
2019-02-22 20:20:58 -06:00
|
|
|
return super.getType('String');
|
2018-07-05 22:38:07 -05:00
|
|
|
}
|
2019-02-13 01:33:07 -06:00
|
|
|
|
|
|
|
public makeOptional(): ID<undefined> {
|
|
|
|
return new ID(true, false);
|
|
|
|
}
|
|
|
|
|
|
|
|
public makeNullable(): ID<null> {
|
|
|
|
return new ID(false, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
public makeOptionalNullable(): ID<undefined | null> {
|
|
|
|
return new ID(true, true);
|
|
|
|
}
|
2018-04-24 04:13:06 -05:00
|
|
|
}
|