DocSpace-buildtools/packages/asc-web-components/utils/email/email.js
2021-02-24 17:42:09 +03:00

300 lines
7.3 KiB
JavaScript

/* eslint-disable no-useless-escape, no-control-regex */
import emailAddresses from "email-addresses";
import punycode from "punycode";
import { parseErrorTypes, errorKeys } from "./../constants";
import { EmailSettings } from "./emailSettings";
const getParts = (string) => {
let mass = [];
let e = string.replace(/[\s,;]*$/, ",");
for (let t, i = false, o = 0, a = 0, s = e.length; s > a; a += 1) {
switch (e.charAt(a)) {
case ",":
case ";":
if (!i) {
t = e.substring(o, a);
t = t.trim();
if (t) {
mass.push(t);
}
o = a + 1;
}
break;
case '"':
"\\" !== e.charAt(a - 1) && '"' !== e.charAt(a + 1) && (i = !i);
}
}
return mass;
};
const str2Obj = (str) => {
let t = /^"(.*)"\s*<([^>]+)>$/,
n = /^(.*)<([^>]+)>$/,
i = str.match(t) || str.match(n);
return i
? {
name: i[1].replace(/\\"/g, '"').replace(/\\\\/g, "\\").trim(),
email: i[2].trim(),
}
: {
email: str,
};
};
const obj2str = (object) => {
let t = undefined;
if (object.email) {
t = object.email;
object.name &&
(t =
'"' +
object.name.replace(/\\/g, "\\\\").replace(/"/g, '\\"') +
'" <' +
t +
">");
}
return t;
};
const normalizeString = (str) => {
return obj2str(str2Obj(str));
};
const checkErrors = (parsedAddress, options) => {
const errors = [];
if (
!options.allowLocalDomainName &&
parsedAddress.domain.indexOf(".") === -1
) {
errors.push({
message: "Local domains are not supported",
type: parseErrorTypes.IncorrectEmail,
errorItem: parsedAddress,
errorKey: errorKeys.LocalDomain,
});
}
if (
!(
options.allowDomainIp ||
options.allowDomainPunycode ||
options.allowLocalDomainName
) &&
!/(^((?!-)[a-zA-Z0-9-]{1,63}\.)+[a-zA-Z]{2,63}\.?$)/.test(
parsedAddress.domain
)
) {
errors.push({
message: "Incorrect domain",
type: parseErrorTypes.IncorrectEmail,
errorItem: parsedAddress,
errorKey: errorKeys.IncorrectDomain,
});
}
if (
!options.allowDomainIp &&
parsedAddress.domain.indexOf("[") === 0 &&
parsedAddress.domain.indexOf("]") === parsedAddress.domain.length - 1
) {
errors.push({
message: "Domains as ip address are not supported",
type: parseErrorTypes.IncorrectEmail,
errorItem: parsedAddress,
errorKey: errorKeys.DomainIpAddress,
});
}
if (
!options.allowDomainPunycode &&
!/^[\x00-\x7F]+$/.test(punycode.toUnicode(parsedAddress.domain))
) {
errors.push({
message: "Punycode domains are not supported",
type: parseErrorTypes.IncorrectEmail,
errorItem: parsedAddress,
errorKey: errorKeys.PunycodeDomain,
});
}
if (
!options.allowLocalPartPunycode &&
parsedAddress.local.length > 0 &&
!/^[\x00-\x7F]+$/.test(punycode.toUnicode(parsedAddress.local))
) {
errors.push({
message: "Punycode local part are not supported",
type: parseErrorTypes.IncorrectEmail,
errorItem: parsedAddress,
errorKey: errorKeys.PunycodeLocalPart,
});
}
if (
options.allowStrictLocalPart &&
(!/^[\x00-\x7F]+$/.test(parsedAddress.local) ||
!/^([a-zA-Z0-9]+)([_\-\.\+][a-zA-Z0-9]+)*$/.test(parsedAddress.local))
) {
errors.push({
message: "Incorrect localpart",
type: parseErrorTypes.IncorrectEmail,
errorItem: parsedAddress,
errorKey: errorKeys.IncorrectLocalPart,
});
}
if (
!options.allowSpaces &&
(/\s+/.test(parsedAddress.local) ||
parsedAddress.local !== parsedAddress.parts.local.tokens)
) {
errors.push({
message: "Incorrect, localpart contains spaces",
type: parseErrorTypes.IncorrectEmail,
errorItem: parsedAddress,
errorKey: errorKeys.SpacesInLocalPart,
});
}
if (parsedAddress.local.length > 64) {
errors.push({
message:
"The maximum total length of a user name or other local-part is 64 characters. See RFC2821",
type: parseErrorTypes.IncorrectEmail,
errorItem: parsedAddress,
errorKey: errorKeys.MaxLengthExceeded,
});
}
return errors;
};
/**
* Parse addresses from string
* @param {String} str
* @return {Array} result with array of Email objects
*/
export const parseAddresses = (str, options = new EmailSettings()) => {
if (!(options instanceof EmailSettings))
throw new TypeError("Invalid options");
const parts = getParts(str);
const resultEmails = [];
let i,
n = parts.length;
for (i = 0; i < n; i++) {
const normalizedStr = normalizeString(parts[i]);
const parsedAddress = emailAddresses.parseOneAddress(normalizedStr);
const errors = [];
if (!parsedAddress || (parsedAddress.name && !options.allowName)) {
errors.push({
message: "Incorrect email",
type: parseErrorTypes.IncorrectEmail,
errorKey: errorKeys.IncorrectEmail,
});
} else {
const checkOptionErrors = checkErrors(parsedAddress, options);
checkOptionErrors.length && errors.push(...checkOptionErrors);
}
resultEmails.push(
parsedAddress
? new Email(parsedAddress.name, parsedAddress.address, errors)
: new Email(null, parts[i], errors)
);
}
return resultEmails;
};
/**
* Parse address from string
* @param {String} str
* @return {Email} result
*/
export const parseAddress = (str, options = new EmailSettings()) => {
const parsedEmails = parseAddresses(str, options);
if (!parsedEmails.length) {
return new Email("", str, [
{
message: "No one email parsed",
type: parseErrorTypes.EmptyRecipients,
errorKey: errorKeys.EmptyEmail,
},
]);
}
if (parsedEmails.length > 1) {
return new Email("", str, [
{
message: "Too many email parsed",
type: parseErrorTypes.IncorrectEmail,
errorKey: errorKeys.ManyEmails,
},
]);
}
const resultEmail = parsedEmails[0];
return resultEmail;
};
/**
* Check domain validity
* @param {String} domain
* @return {Bool} result
*/
export const isValidDomainName = (domain) => {
let parsed = emailAddresses.parseOneAddress("test@" + domain);
if (!parsed) return false;
return parsed && parsed.domain === domain && domain.indexOf(".") !== -1;
};
/**
* Compare emails
* @param {String}/{Object} email1
* @param {String}/{Object} email2
* @return {Bool} result
*/
export const isEqualEmail = (email1, email2) => {
const emailSettings = new EmailSettings();
emailSettings.disableAllSettings();
const parsed1 = parseAddress(email1, emailSettings);
const parsed2 = parseAddress(email2, emailSettings);
if (!parsed1.isValid() || !parsed2.isValid()) {
return false;
}
return parsed1.email === parsed2.email;
};
export class Email {
constructor(name, email, parseErrors) {
this.name = name || "";
this.email = email;
this.parseErrors = parseErrors;
}
isValid = () => {
return this.parseErrors.length === 0;
};
equals = function (addr) {
if (typeof addr === "object" && addr instanceof Email) {
return this.email === addr.email && this.name === addr.name;
} else if (typeof addr === "string") {
const parsed = parseAddress(addr);
return this.email === parsed.email && this.name === parsed.name;
}
return false;
};
}