import { ValidationOptions } from "../ValidationOptions"; import { buildMessage, ValidateBy } from "../common/ValidateBy"; import ValidatorJS from "validator"; export const IS_URL = "isUrl"; /** * Checks if the string is an url. * If given value is not a string, then it returns false. */ export function isURL(value: string, options?: ValidatorJS.IsURLOptions): boolean { return typeof value === "string" && ValidatorJS.isURL(value, options); } /** * Checks if the string is an url. * If given value is not a string, then it returns false. */ export function IsUrl(options?: ValidatorJS.IsURLOptions, validationOptions?: ValidationOptions): PropertyDecorator { return ValidateBy( { name: IS_URL, constraints: [options], validator: { validate: (value, args): boolean => isURL(value, args.constraints[0]), defaultMessage: buildMessage( (eachPrefix) => eachPrefix + "$property must be an URL address", validationOptions ) } }, validationOptions ); }