Skip to content

Commit f3d3d25

Browse files
authoredMar 5, 2025··
feat: Add ObjectId validation & parsing pipes
1 parent 90f29ed commit f3d3d25

File tree

4 files changed

+33
-0
lines changed

4 files changed

+33
-0
lines changed
 

‎lib/index.ts

+1
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,4 @@ export * from './factories';
55
export * from './interfaces';
66
export * from './mongoose.module';
77
export * from './utils';
8+
export * from './pipes';

‎lib/pipes/index.ts

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
export * from './is-object-id.pipe'
2+
export * from './parse-object-id.pipe'

‎lib/pipes/is-object-id.pipe.ts

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
import { ArgumentMetadata, BadRequestException, Injectable, PipeTransform } from '@nestjs/common';
2+
import { Types } from 'mongoose';
3+
4+
@Injectable()
5+
export class IsObjectIdPipe implements PipeTransform {
6+
transform(value: string, metadata: ArgumentMetadata): string {
7+
const isValidObjectId = Types.ObjectId.isValid(value);
8+
9+
if (!isValidObjectId) {
10+
throw new BadRequestException("Invalid ObjectId");
11+
}
12+
13+
return value;
14+
}
15+
}

‎lib/pipes/parse-object-id.pipe.ts

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
import { ArgumentMetadata, BadRequestException, Injectable, PipeTransform } from '@nestjs/common';
2+
import { Types } from 'mongoose';
3+
4+
@Injectable()
5+
export class ParseObjectIdPipe implements PipeTransform {
6+
transform(value: string, metadata: ArgumentMetadata): Types.ObjectId {
7+
const isValidObjectId = Types.ObjectId.isValid(value);
8+
9+
if (!isValidObjectId) {
10+
throw new BadRequestException("Invalid ObjectId");
11+
}
12+
13+
return new Types.ObjectId(value);
14+
}
15+
}

0 commit comments

Comments
 (0)
Please sign in to comment.