"use strict";
var __extends = (this && this.__extends) || (function () {
var extendStatics = function (d, b) {
extendStatics = Object.setPrototypeOf ||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
return extendStatics(d, b);
};
return function (d, b) {
extendStatics(d, b);
function __() { this.constructor = d; }
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
};
})();
Object.defineProperty(exports, "__esModule", { value: true });
var matcher_1 = require("./matcher");
var phone_match_1 = require("../match/phone-match");
/**
* @class Autolinker.matcher.Phone
* @extends Autolinker.matcher.Matcher
*
* Matcher to find Phone number matches in an input string.
*
* See this class's superclass ({@link Autolinker.matcher.Matcher}) for more
* details.
*/
var PhoneMatcher = (function (_super) {
__extends(PhoneMatcher, _super);
function PhoneMatcher() {
var _this = _super !== null && _super.apply(this, arguments) || this;
/**
* The regular expression to match Phone numbers. Example match:
*
* (123) 456-7890
*
* This regular expression has the following capturing groups:
*
* 1 or 2. The prefixed '+' sign, if there is one.
*
* @protected
* @property {RegExp} matcherRegex
*/
_this.matcherRegex = /(?:(?:(?:(\+)?\d{1,3}[-\040.]?)?\(?\d{3}\)?[-\040.]?\d{3}[-\040.]?\d{4})|(?:(\+)(?:9[976]\d|8[987530]\d|6[987]\d|5[90]\d|42\d|3[875]\d|2[98654321]\d|9[8543210]|8[6421]|6[6543210]|5[87654321]|4[987654310]|3[9643210]|2[70]|7|1)[-\040.]?(?:\d[-\040.]?){6,12}\d+))([,;]+[0-9]+#?)*/g;
return _this;
}
// ex: (123) 456-7890, 123 456 7890, 123-456-7890, +18004441234,,;,10226420346#,
// +1 (800) 444 1234, 10226420346#, 1-800-444-1234,1022,64,20346#
/**
* @inheritdoc
*/
PhoneMatcher.prototype.parseMatches = function (text) {
var matcherRegex = this.matcherRegex, tagBuilder = this.tagBuilder, matches = [], match;
while ((match = matcherRegex.exec(text)) !== null) {
// Remove non-numeric values from phone number string
var matchedText = match[0], cleanNumber = matchedText.replace(/[^0-9,;#]/g, ''), // strip out non-digit characters exclude comma semicolon and #
plusSign = !!(match[1] || match[2]), // match[ 1 ] or match[ 2 ] is the prefixed plus sign, if there is one
before = match.index == 0 ? '' : text.substr(match.index - 1, 1), after = text.substr(match.index + matchedText.length, 1), contextClear = !before.match(/\d/) && !after.match(/\d/);
if (this.testMatch(match[3]) && this.testMatch(matchedText) && contextClear) {
matches.push(new phone_match_1.PhoneMatch({
tagBuilder: tagBuilder,
matchedText: matchedText,
offset: match.index,
number: cleanNumber,
plusSign: plusSign
}));
}
}
return matches;
};
PhoneMatcher.prototype.testMatch = function (text) {
return /\D/.test(text);
};
return PhoneMatcher;
}(matcher_1.Matcher));
exports.PhoneMatcher = PhoneMatcher;
//# sourceMappingURL=phone-matcher.js.map