joi-email-extensions
Joi extensions providing email normalization, MX record validation, checking
for emails from free and disposable email providers and various ways to match
against a list of email patterns or domains.
Usage
The methods of this extension are chained after the Joi email validator.
import BaseJoi from 'joi'
import JoiEmailExtensions from 'joi-email-extensions'
const Joi = BaseJoi.extend([JoiEmailExtensions])
const schema = Joi.object().keys({
normalizedEmail: Joi.string().email().normalize(),
notAThrowAwayEmail: Joi.string().email().nonDisposable(),
mxValidatedEmail: Joi.string().email().hasMx(),
exactDomain: Joi.string().email().domains(['mydomain.tld']),
onlyUkEuDomains: Joi.string().email().domains([
'*.uk',
'*.eu'
], { mode: 'glob' }),
onlyAwesomeDomains: Joi.string().email().domains([
/awe(some|ful)/
], { mode: 'regexp' })
})
const result = schema.validate({
normalizedEmail: 'someEmaIlAdDress@MydoMaiN.tld',
notAThrowAwayEmail: 'john.doe@mydomain.tld',
mxValidatedEmail: 'webmaster@google.com',
exactDomain: 'john.die@mydomain.tld',
onlyUkEuDomains: 'john.doe@mydomain.eu',
onlyAwesomeDomains: 'john.doe@awesome.tld'
})
console.log(result)
API
normalize
Transforms email string to a normalized form. Uses normalize-email under the hood.
Joi.string().email().normalize()
nonDisposable
Require the email to be from a domain that is not a known disposable email provider.
Joi.string().email().nonDisposable()
hasMx
Require the email to have valid MX records for handling email.
Joi.string().email().hasMx()
domains(patterns, options)
Require the email to be from a list of domain names. The domain names to match against are passed as the patterns argument and can be specified as exact strings, or glob patterns or regular expressions. The options argument takes an object containing 'mode' with acceptable values of 'exact'
(default), 'regexp'
or 'glob'
.
Joi.string().email().domains(['mydomain.tld'], { mode: 'exact' })
Author
Jawish Hameed