2017-11-16 11:02:45 +00:00
|
|
|
module.exports = fi => {
|
2018-02-27 09:00:43 +00:00
|
|
|
if (fiWithCountry == null)
|
2017-12-04 07:17:29 +00:00
|
|
|
return true;
|
2017-11-16 11:02:45 +00:00
|
|
|
|
2018-02-27 09:00:43 +00:00
|
|
|
fiWithCountry = fiWithCountry.toUpperCase();
|
2017-11-16 11:02:45 +00:00
|
|
|
|
2018-02-27 09:00:43 +00:00
|
|
|
if (!/^[A-Z]{2}/.test(fiWithCountry))
|
|
|
|
fiWithCountry = `ES${fiWithCountry}`;
|
2017-11-16 11:02:45 +00:00
|
|
|
|
2018-02-27 09:00:43 +00:00
|
|
|
let country = fiWithCountry.substring(0, 2).toLowerCase();
|
|
|
|
let fi = fiWithCountry.substring(2);
|
|
|
|
let len = fi.length;
|
2017-11-16 11:02:45 +00:00
|
|
|
|
2018-02-27 09:00:43 +00:00
|
|
|
let validators = {
|
|
|
|
es: {
|
|
|
|
regExp: /^ES[A-Z0-9]\d{7}[A-Z0-9]$/,
|
|
|
|
validate: () => {
|
|
|
|
let isCif = /[A-W]/.test(fi.charAt(0));
|
|
|
|
let lastDigit = fi.charAt(len - 1);
|
|
|
|
let computedDigit;
|
2017-11-16 11:02:45 +00:00
|
|
|
|
2018-02-27 09:00:43 +00:00
|
|
|
if (isCif) {
|
|
|
|
let numbers = fi.substring(1, 8)
|
|
|
|
.split('')
|
|
|
|
.map(x => parseInt(x));
|
|
|
|
|
|
|
|
let pairSum = numbers
|
|
|
|
.filter((_, i) => i % 2 != 0)
|
|
|
|
.reduce((a, x) => a + x);
|
|
|
|
|
|
|
|
let oddSum = numbers
|
|
|
|
.filter((_, i) => i % 2 == 0)
|
|
|
|
.map(x => x * 2)
|
|
|
|
.join('')
|
|
|
|
.split('')
|
|
|
|
.map(x => parseInt(x))
|
|
|
|
.reduce((a, x) => a + x);
|
|
|
|
|
|
|
|
let sum = (pairSum + oddSum).toString();
|
|
|
|
let units = parseInt(sum.charAt(sum.length - 1));
|
|
|
|
let control = units != 0 ? 10 - units : 0;
|
|
|
|
let index = 'JABCDEFGHI'.indexOf(lastDigit);
|
|
|
|
computedDigit = index == -1 ? control.toString() : index;
|
|
|
|
} else {
|
|
|
|
// Foreign NIF
|
|
|
|
let index = 'XYZ'.indexOf(fi.charAt(0));
|
|
|
|
let nif = index == -1 ? fi : index.toString() + fi.substring(1);
|
2017-11-16 11:02:45 +00:00
|
|
|
|
2018-02-27 09:00:43 +00:00
|
|
|
let number = parseInt(nif.substring(0, 8));
|
|
|
|
let rest = number % 23;
|
|
|
|
computedDigit = 'TRWAGMYFPDXBNJZSQVHLCKE'.charAt(rest);
|
|
|
|
}
|
|
|
|
|
|
|
|
return computedDigit == lastDigit;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
pt: {
|
|
|
|
regExp: /^PT\d{9}$/
|
|
|
|
},
|
|
|
|
fr: {
|
|
|
|
regExp: /^FR[A-Z0-9]{2}\d{9}$/
|
|
|
|
},
|
|
|
|
it: {
|
|
|
|
regExp: /^IT\d{11}$/
|
2017-11-16 11:02:45 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2018-02-27 09:00:43 +00:00
|
|
|
let validator = validators[country];
|
|
|
|
|
|
|
|
if (!validator)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
return validator.regExp.test(fiWithCountry)
|
|
|
|
&& (!validator.validate || validator.validate());
|
2017-11-16 11:02:45 +00:00
|
|
|
};
|