import { ValidationOptions } from "../ValidationOptions"; import { buildMessage, ValidateBy } from "../common/ValidateBy"; import validator from "validator"; export const IS_BASE32 = "isBase32"; /** * Checks if a string is base32 encoded. * If given value is not a string, then it returns false. */ export function isBase32(value: unknown): boolean { return typeof value === "string" && validator.isBase32(value); } /** * Check if a string is base32 encoded. * If given value is not a string, then it returns false. */ export function IsBase32(validationOptions?: ValidationOptions): PropertyDecorator { return ValidateBy( { name: IS_BASE32, validator: { validate: (value, args): boolean => isBase32(value), defaultMessage: buildMessage( (eachPrefix) => eachPrefix + "$property must be base32 encoded", validationOptions ) } }, validationOptions ); }