1
0
forked from Yara724/api

Initial commit after migration to gitea

This commit is contained in:
2026-01-18 11:27:43 +03:30
parent a21039410c
commit ea4b8eb543
196 changed files with 45567 additions and 9 deletions

View File

@@ -0,0 +1,29 @@
import {
PipeTransform,
Injectable,
BadRequestException,
ArgumentMetadata,
} from "@nestjs/common";
@Injectable()
export class ParseJsonPipe implements PipeTransform {
transform(value: string | undefined, metadata: ArgumentMetadata): any {
if (value === undefined) {
return undefined;
}
if (typeof value !== "string") {
throw new BadRequestException(
`Validation failed: Expected a stringified JSON for query parameter '${metadata.data}'.`,
);
}
try {
return JSON.parse(value);
} catch (e) {
throw new BadRequestException(
`Invalid JSON format in query parameter '${metadata.data}'.`,
);
}
}
}