Skip to content

Commit 1f159ea

Browse files
arafatknrubiin
andauthored
feat(ulid): ULID validation (validatorjs#2294)
Co-authored-by: Rubin Bhandari <[email protected]>
1 parent 89e856c commit 1f159ea

File tree

4 files changed

+32
-0
lines changed

4 files changed

+32
-0
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -167,6 +167,7 @@ Validator | Description
167167
**isTime(str [, options])** | check if the string is a valid time e.g. [`23:01:59`, new Date().toLocaleTimeString()].<br/><br/> `options` is an object which can contain the keys `hourFormat` or `mode`.<br/><br/>`hourFormat` is a key and defaults to `'hour24'`.<br/><br/>`mode` is a key and defaults to `'default'`. <br/><br/>`hourFormat` can contain the values `'hour12'` or `'hour24'`, `'hour24'` will validate hours in 24 format and `'hour12'` will validate hours in 12 format. <br/><br/>`mode` can contain the values `'default'` or `'withSeconds'`, `'default'` will validate `HH:MM` format, `'withSeconds'` will validate the `HH:MM:SS` format.
168168
**isTaxID(str, locale)** | check if the string is a valid Tax Identification Number. Default locale is `en-US`.<br/><br/>More info about exact TIN support can be found in `src/lib/isTaxID.js`.<br/><br/>Supported locales: `[ 'bg-BG', 'cs-CZ', 'de-AT', 'de-DE', 'dk-DK', 'el-CY', 'el-GR', 'en-CA', 'en-GB', 'en-IE', 'en-US', 'es-AR', 'es-ES', 'et-EE', 'fi-FI', 'fr-BE', 'fr-CA', 'fr-FR', 'fr-LU', 'hr-HR', 'hu-HU', 'it-IT', 'lb-LU', 'lt-LT', 'lv-LV', 'mt-MT', 'nl-BE', 'nl-NL', 'pl-PL', 'pt-BR', 'pt-PT', 'ro-RO', 'sk-SK', 'sl-SI', 'sv-SE', 'uk-UA']`.
169169
**isURL(str [, options])** | check if the string is a URL.<br/><br/>`options` is an object which defaults to `{ protocols: ['http','https','ftp'], require_tld: true, require_protocol: false, require_host: true, require_port: false, require_valid_protocol: true, allow_underscores: false, host_whitelist: false, host_blacklist: false, allow_trailing_dot: false, allow_protocol_relative_urls: false, allow_fragments: true, allow_query_components: true, disallow_auth: false, validate_length: true }`.<br/><br/>`require_protocol` - if set to true isURL will return false if protocol is not present in the URL.<br/>`require_valid_protocol` - isURL will check if the URL's protocol is present in the protocols option.<br/>`protocols` - valid protocols can be modified with this option.<br/>`require_host` - if set to false isURL will not check if host is present in the URL.<br/>`require_port` - if set to true isURL will check if port is present in the URL.<br/>`allow_protocol_relative_urls` - if set to true protocol relative URLs will be allowed.<br/>`allow_fragments` - if set to false isURL will return false if fragments are present.<br/>`allow_query_components` - if set to false isURL will return false if query components are present.<br/>`validate_length` - if set to false isURL will skip string length validation (2083 characters is IE max URL length).
170+
**isULID(str)** | check if the string is a [ULID](https://github.com/ulid/spec).
170171
**isUUID(str [, version])** | check if the string is an RFC9562 UUID.<br/>`version` is one of `'1'`-`'8'`, `'nil'`, `'max'`, or `'all'`.
171172
**isVariableWidth(str)** | check if the string contains a mixture of full and half-width chars.
172173
**isVAT(str, countryCode)** | check if the string is a [valid VAT number][VAT Number] if validation is available for the given country code matching [ISO 3166-1 alpha-2][ISO 3166-1 alpha-2]. <br/><br/>`countryCode` is one of `['AL', 'AR', 'AT', 'AU', 'BE', 'BG', 'BO', 'BR', 'BY', 'CA', 'CH', 'CL', 'CO', 'CR', 'CY', 'CZ', 'DE', 'DK', 'DO', 'EC', 'EE', 'EL', 'ES', 'FI', 'FR', 'GB', 'GT', 'HN', 'HR', 'HU', 'ID', 'IE', 'IL', 'IN', 'IS', 'IT', 'KZ', 'LT', 'LU', 'LV', 'MK', 'MT', 'MX', 'NG', 'NI', 'NL', 'NO', 'NZ', 'PA', 'PE', 'PH', 'PL', 'PT', 'PY', 'RO', 'RS', 'RU', 'SA', 'SE', 'SI', 'SK', 'SM', 'SV', 'TR', 'UA', 'UY', 'UZ', 'VE']`.

src/index.js

+2
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ import isEmpty from './lib/isEmpty';
6363
import isLength from './lib/isLength';
6464
import isByteLength from './lib/isByteLength';
6565

66+
import isULID from './lib/isULID';
6667
import isUUID from './lib/isUUID';
6768
import isMongoId from './lib/isMongoId';
6869

@@ -186,6 +187,7 @@ const validator = {
186187
isLength,
187188
isLocale,
188189
isByteLength,
190+
isULID,
189191
isUUID,
190192
isMongoId,
191193
isAfter,

src/lib/isULID.js

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
import assertString from './util/assertString';
2+
3+
export default function isULID(str) {
4+
assertString(str);
5+
return /^[0-7][0-9A-HJKMNP-TV-Z]{25}$/i.test(str);
6+
}

test/validators.test.js

+23
Original file line numberDiff line numberDiff line change
@@ -5420,6 +5420,29 @@ describe('Validators', () => {
54205420
});
54215421
});
54225422

5423+
it('should validate ULIDs', () => {
5424+
test({
5425+
validator: 'isULID',
5426+
valid: [
5427+
'01HBGW8CWQ5Q6DTT7XP89VV4KT',
5428+
'01HBGW8CWR8MZQMBG6FA2QHMDD',
5429+
'01HBGW8CWS3MEEK12Y9G7SVW4V',
5430+
'01hbgw8cws1tq2njavy9amb0wx',
5431+
'01HBGW8cwS43H4jkQ0A4ZRJ7QV',
5432+
],
5433+
invalid: [
5434+
'',
5435+
'01HBGW-CWS3MEEK1#Y9G7SVW4V',
5436+
'91HBGW8CWS3MEEK12Y9G7SVW4V',
5437+
'81HBGW8CWS3MEEK12Y9G7SVW4V',
5438+
'934859',
5439+
'01HBGW8CWS3MEEK12Y9G7SVW4VXXX',
5440+
'01UBGW8IWS3MOEK12Y9G7SVW4V',
5441+
'01HBGW8CuS43H4JKQ0A4ZRJ7QV',
5442+
],
5443+
});
5444+
});
5445+
54235446
it('should validate UUIDs', () => {
54245447
test({
54255448
validator: 'isUUID',

0 commit comments

Comments
 (0)