- Delete old Vite+Svelte frontend - Initialize new SvelteKit project with TypeScript - Configure Tailwind CSS v4 + DaisyUI - Implement JWT authentication with auto-refresh - Create login page with form validation (Zod) - Add protected route guards - Update Docker configuration for single-stage build - Add E2E tests with Playwright (6/11 passing) - Fix Svelte 5 reactivity with $state() runes Known issues: - 5 E2E tests failing (timing/async issues) - Token refresh implementation needs debugging - Validation error display timing
69 lines
2.5 KiB
JavaScript
69 lines
2.5 KiB
JavaScript
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports["default"] = matchPhoneNumberStringAgainstPhoneNumber;
|
|
var _parsePhoneNumber = _interopRequireDefault(require("../parsePhoneNumber.js"));
|
|
function _interopRequireDefault(e) { return e && e.__esModule ? e : { "default": e }; }
|
|
/**
|
|
* Matches a phone number object against a phone number string.
|
|
* @param {string} phoneNumberString
|
|
* @param {PhoneNumber} phoneNumber
|
|
* @param {object} metadata — Metadata JSON
|
|
* @return {'INVALID_NUMBER'|'NO_MATCH'|'SHORT_NSN_MATCH'|'NSN_MATCH'|'EXACT_MATCH'}
|
|
*/
|
|
function matchPhoneNumberStringAgainstPhoneNumber(phoneNumberString, phoneNumber, metadata) {
|
|
// Parse `phoneNumberString`.
|
|
var phoneNumberStringContainsCallingCode = true;
|
|
var parsedPhoneNumber = (0, _parsePhoneNumber["default"])(phoneNumberString, metadata);
|
|
if (!parsedPhoneNumber) {
|
|
// If `phoneNumberString` didn't contain a country calling code
|
|
// then substitute it with the `phoneNumber`'s country calling code.
|
|
phoneNumberStringContainsCallingCode = false;
|
|
parsedPhoneNumber = (0, _parsePhoneNumber["default"])(phoneNumberString, {
|
|
defaultCallingCode: phoneNumber.countryCallingCode
|
|
}, metadata);
|
|
}
|
|
if (!parsedPhoneNumber) {
|
|
return 'INVALID_NUMBER';
|
|
}
|
|
|
|
// Check that the extensions match.
|
|
if (phoneNumber.ext) {
|
|
if (parsedPhoneNumber.ext !== phoneNumber.ext) {
|
|
return 'NO_MATCH';
|
|
}
|
|
} else {
|
|
if (parsedPhoneNumber.ext) {
|
|
return 'NO_MATCH';
|
|
}
|
|
}
|
|
|
|
// Check that country calling codes match.
|
|
if (phoneNumberStringContainsCallingCode) {
|
|
if (phoneNumber.countryCallingCode !== parsedPhoneNumber.countryCallingCode) {
|
|
return 'NO_MATCH';
|
|
}
|
|
}
|
|
|
|
// Check if the whole numbers match.
|
|
if (phoneNumber.number === parsedPhoneNumber.number) {
|
|
if (phoneNumberStringContainsCallingCode) {
|
|
return 'EXACT_MATCH';
|
|
} else {
|
|
return 'NSN_MATCH';
|
|
}
|
|
}
|
|
|
|
// Check if one national number is a "suffix" of the other.
|
|
if (phoneNumber.nationalNumber.indexOf(parsedPhoneNumber.nationalNumber) === 0 || parsedPhoneNumber.nationalNumber.indexOf(phoneNumber.nationalNumber) === 0) {
|
|
// "A SHORT_NSN_MATCH occurs if there is a difference because of the
|
|
// presence or absence of an 'Italian leading zero', the presence or
|
|
// absence of an extension, or one NSN being a shorter variant of the
|
|
// other."
|
|
return 'SHORT_NSN_MATCH';
|
|
}
|
|
return 'NO_MATCH';
|
|
}
|
|
//# sourceMappingURL=matchPhoneNumberStringAgainstPhoneNumber.js.map
|