Complex classes like PhoneNumberUtil often do a lot of different things. To break such a class down, we need to identify a cohesive component within that class. A common approach to find such a component is to look for fields/methods that share the same prefixes, or suffixes. You can also have a look at the cohesion graph to spot any un-connected, or weakly-connected components.
Once you have determined the fields that belong together, you can apply the Extract Class refactoring. If the component makes sense as a sub-class, Extract Subclass is also a candidate, and is often faster.
While breaking up the class, it is a good idea to analyze how other classes use PhoneNumberUtil, and based on these observations, apply Extract Interface, too.
1 | <?php |
||
21 | class PhoneNumberUtil |
||
22 | { |
||
23 | /** Flags to use when compiling regular expressions for phone numbers */ |
||
24 | const REGEX_FLAGS = 'ui'; //Unicode and case insensitive |
||
25 | // The minimum and maximum length of the national significant number. |
||
26 | const MIN_LENGTH_FOR_NSN = 2; |
||
27 | // The ITU says the maximum length should be 15, but we have found longer numbers in Germany. |
||
28 | const MAX_LENGTH_FOR_NSN = 17; |
||
29 | |||
30 | // We don't allow input strings for parsing to be longer than 250 chars. This prevents malicious |
||
31 | // input from overflowing the regular-expression engine. |
||
32 | const MAX_INPUT_STRING_LENGTH = 250; |
||
33 | |||
34 | // The maximum length of the country calling code. |
||
35 | const MAX_LENGTH_COUNTRY_CODE = 3; |
||
36 | |||
37 | const REGION_CODE_FOR_NON_GEO_ENTITY = "001"; |
||
38 | const META_DATA_FILE_PREFIX = 'PhoneNumberMetadata'; |
||
39 | const TEST_META_DATA_FILE_PREFIX = 'PhoneNumberMetadataForTesting'; |
||
40 | |||
41 | // Region-code for the unknown region. |
||
42 | const UNKNOWN_REGION = "ZZ"; |
||
43 | |||
44 | const NANPA_COUNTRY_CODE = 1; |
||
45 | /* |
||
46 | * The prefix that needs to be inserted in front of a Colombian landline number when dialed from |
||
47 | * a mobile number in Colombia. |
||
48 | */ |
||
49 | const COLOMBIA_MOBILE_TO_FIXED_LINE_PREFIX = "3"; |
||
50 | // The PLUS_SIGN signifies the international prefix. |
||
51 | const PLUS_SIGN = '+'; |
||
52 | const PLUS_CHARS = '++'; |
||
53 | const STAR_SIGN = '*'; |
||
54 | |||
55 | const RFC3966_EXTN_PREFIX = ";ext="; |
||
56 | const RFC3966_PREFIX = "tel:"; |
||
57 | const RFC3966_PHONE_CONTEXT = ";phone-context="; |
||
58 | const RFC3966_ISDN_SUBADDRESS = ";isub="; |
||
59 | |||
60 | // We use this pattern to check if the phone number has at least three letters in it - if so, then |
||
61 | // we treat it as a number where some phone-number digits are represented by letters. |
||
62 | const VALID_ALPHA_PHONE_PATTERN = "(?:.*?[A-Za-z]){3}.*"; |
||
63 | // We accept alpha characters in phone numbers, ASCII only, upper and lower case. |
||
64 | const VALID_ALPHA = "A-Za-z"; |
||
65 | |||
66 | |||
67 | // Default extension prefix to use when formatting. This will be put in front of any extension |
||
68 | // component of the number, after the main national number is formatted. For example, if you wish |
||
69 | // the default extension formatting to be " extn: 3456", then you should specify " extn: " here |
||
70 | // as the default extension prefix. This can be overridden by region-specific preferences. |
||
71 | const DEFAULT_EXTN_PREFIX = " ext. "; |
||
72 | |||
73 | // Regular expression of acceptable punctuation found in phone numbers. This excludes punctuation |
||
74 | // found as a leading character only. |
||
75 | // This consists of dash characters, white space characters, full stops, slashes, |
||
76 | // square brackets, parentheses and tildes. It also includes the letter 'x' as that is found as a |
||
77 | // placeholder for carrier information in some phone numbers. Full-width variants are also |
||
78 | // present. |
||
79 | const VALID_PUNCTUATION = "-x\xE2\x80\x90-\xE2\x80\x95\xE2\x88\x92\xE3\x83\xBC\xEF\xBC\x8D-\xEF\xBC\x8F \xC2\xA0\xC2\xAD\xE2\x80\x8B\xE2\x81\xA0\xE3\x80\x80()\xEF\xBC\x88\xEF\xBC\x89\xEF\xBC\xBB\xEF\xBC\xBD.\\[\\]/~\xE2\x81\x93\xE2\x88\xBC"; |
||
80 | const DIGITS = "\\p{Nd}"; |
||
81 | |||
82 | // Pattern that makes it easy to distinguish whether a region has a unique international dialing |
||
83 | // prefix or not. If a region has a unique international prefix (e.g. 011 in USA), it will be |
||
84 | // represented as a string that contains a sequence of ASCII digits. If there are multiple |
||
85 | // available international prefixes in a region, they will be represented as a regex string that |
||
86 | // always contains character(s) other than ASCII digits. |
||
87 | // Note this regex also includes tilde, which signals waiting for the tone. |
||
88 | const UNIQUE_INTERNATIONAL_PREFIX = "[\\d]+(?:[~\xE2\x81\x93\xE2\x88\xBC\xEF\xBD\x9E][\\d]+)?"; |
||
89 | const NON_DIGITS_PATTERN = "(\\D+)"; |
||
90 | |||
91 | // The FIRST_GROUP_PATTERN was originally set to $1 but there are some countries for which the |
||
92 | // first group is not used in the national pattern (e.g. Argentina) so the $1 group does not match |
||
93 | // correctly. Therefore, we use \d, so that the first group actually used in the pattern will be |
||
94 | // matched. |
||
95 | const FIRST_GROUP_PATTERN = "(\\$\\d)"; |
||
96 | const NP_PATTERN = '\\$NP'; |
||
97 | const FG_PATTERN = '\\$FG'; |
||
98 | const CC_PATTERN = '\\$CC'; |
||
99 | |||
100 | // A pattern that is used to determine if the national prefix formatting rule has the first group |
||
101 | // only, i.e., does not start with the national prefix. Note that the pattern explicitly allows |
||
102 | // for unbalanced parentheses. |
||
103 | const FIRST_GROUP_ONLY_PREFIX_PATTERN = '\\(?\\$1\\)?'; |
||
104 | public static $PLUS_CHARS_PATTERN; |
||
105 | protected static $SEPARATOR_PATTERN; |
||
106 | protected static $CAPTURING_DIGIT_PATTERN; |
||
107 | protected static $VALID_START_CHAR_PATTERN = null; |
||
108 | protected static $SECOND_NUMBER_START_PATTERN = "[\\\\/] *x"; |
||
109 | protected static $UNWANTED_END_CHAR_PATTERN = "[[\\P{N}&&\\P{L}]&&[^#]]+$"; |
||
110 | protected static $DIALLABLE_CHAR_MAPPINGS = array(); |
||
111 | protected static $CAPTURING_EXTN_DIGITS; |
||
112 | |||
113 | /** |
||
114 | * @var PhoneNumberUtil |
||
115 | */ |
||
116 | protected static $instance = null; |
||
117 | |||
118 | /** |
||
119 | * Only upper-case variants of alpha characters are stored. |
||
120 | * @var array |
||
121 | */ |
||
122 | protected static $ALPHA_MAPPINGS = array( |
||
123 | 'A' => '2', |
||
124 | 'B' => '2', |
||
125 | 'C' => '2', |
||
126 | 'D' => '3', |
||
127 | 'E' => '3', |
||
128 | 'F' => '3', |
||
129 | 'G' => '4', |
||
130 | 'H' => '4', |
||
131 | 'I' => '4', |
||
132 | 'J' => '5', |
||
133 | 'K' => '5', |
||
134 | 'L' => '5', |
||
135 | 'M' => '6', |
||
136 | 'N' => '6', |
||
137 | 'O' => '6', |
||
138 | 'P' => '7', |
||
139 | 'Q' => '7', |
||
140 | 'R' => '7', |
||
141 | 'S' => '7', |
||
142 | 'T' => '8', |
||
143 | 'U' => '8', |
||
144 | 'V' => '8', |
||
145 | 'W' => '9', |
||
146 | 'X' => '9', |
||
147 | 'Y' => '9', |
||
148 | 'Z' => '9', |
||
149 | ); |
||
150 | |||
151 | /** |
||
152 | * Map of country calling codes that use a mobile token before the area code. One example of when |
||
153 | * this is relevant is when determining the length of the national destination code, which should |
||
154 | * be the length of the area code plus the length of the mobile token. |
||
155 | * @var array |
||
156 | */ |
||
157 | protected static $MOBILE_TOKEN_MAPPINGS = array(); |
||
158 | |||
159 | /** |
||
160 | * Set of country codes that have geographically assigned mobile numbers (see GEO_MOBILE_COUNTRIES |
||
161 | * below) which are not based on *area codes*. For example, in China mobile numbers start with a |
||
162 | * carrier indicator, and beyond that are geographically assigned: this carrier indicator is not |
||
163 | * considered to be an area code. |
||
164 | * |
||
165 | * @var array |
||
166 | */ |
||
167 | protected static $GEO_MOBILE_COUNTRIES_WITHOUT_MOBILE_AREA_CODES; |
||
168 | |||
169 | /** |
||
170 | * Set of country calling codes that have geographically assigned mobile numbers. This may not be |
||
171 | * complete; we add calling codes case by case, as we find geographical mobile numbers or hear |
||
172 | * from user reports. Note that countries like the US, where we can't distinguish between |
||
173 | * fixed-line or mobile numbers, are not listed here, since we consider FIXED_LINE_OR_MOBILE to be |
||
174 | * a possibly geographically-related type anyway (like FIXED_LINE). |
||
175 | * |
||
176 | * @var array |
||
177 | */ |
||
178 | protected static $GEO_MOBILE_COUNTRIES; |
||
179 | |||
180 | /** |
||
181 | * For performance reasons, amalgamate both into one map. |
||
182 | * @var array |
||
183 | */ |
||
184 | protected static $ALPHA_PHONE_MAPPINGS = null; |
||
185 | |||
186 | /** |
||
187 | * Separate map of all symbols that we wish to retain when formatting alpha numbers. This |
||
188 | * includes digits, ASCII letters and number grouping symbols such as "-" and " ". |
||
189 | * @var array |
||
190 | */ |
||
191 | protected static $ALL_PLUS_NUMBER_GROUPING_SYMBOLS; |
||
192 | |||
193 | /** |
||
194 | * Simple ASCII digits map used to populate ALPHA_PHONE_MAPPINGS and |
||
195 | * ALL_PLUS_NUMBER_GROUPING_SYMBOLS. |
||
196 | * @var array |
||
197 | */ |
||
198 | protected static $asciiDigitMappings = array( |
||
199 | '0' => '0', |
||
200 | '1' => '1', |
||
201 | '2' => '2', |
||
202 | '3' => '3', |
||
203 | '4' => '4', |
||
204 | '5' => '5', |
||
205 | '6' => '6', |
||
206 | '7' => '7', |
||
207 | '8' => '8', |
||
208 | '9' => '9', |
||
209 | ); |
||
210 | |||
211 | /** |
||
212 | * Regexp of all possible ways to write extensions, for use when parsing. This will be run as a |
||
213 | * case-insensitive regexp match. Wide character versions are also provided after each ASCII |
||
214 | * version. |
||
215 | * @var String |
||
216 | */ |
||
217 | protected static $EXTN_PATTERNS_FOR_PARSING; |
||
218 | protected static $EXTN_PATTERN = null; |
||
219 | protected static $VALID_PHONE_NUMBER_PATTERN; |
||
220 | protected static $MIN_LENGTH_PHONE_NUMBER_PATTERN; |
||
221 | /** |
||
222 | * Regular expression of viable phone numbers. This is location independent. Checks we have at |
||
223 | * least three leading digits, and only valid punctuation, alpha characters and |
||
224 | * digits in the phone number. Does not include extension data. |
||
225 | * The symbol 'x' is allowed here as valid punctuation since it is often used as a placeholder for |
||
226 | * carrier codes, for example in Brazilian phone numbers. We also allow multiple "+" characters at |
||
227 | * the start. |
||
228 | * Corresponds to the following: |
||
229 | * [digits]{minLengthNsn}| |
||
230 | * plus_sign*(([punctuation]|[star])*[digits]){3,}([punctuation]|[star]|[digits]|[alpha])* |
||
231 | * |
||
232 | * The first reg-ex is to allow short numbers (two digits long) to be parsed if they are entered |
||
233 | * as "15" etc, but only if there is no punctuation in them. The second expression restricts the |
||
234 | * number of digits to three or more, but then allows them to be in international form, and to |
||
235 | * have alpha-characters and punctuation. |
||
236 | * |
||
237 | * Note VALID_PUNCTUATION starts with a -, so must be the first in the range. |
||
238 | * @var string |
||
239 | */ |
||
240 | protected static $VALID_PHONE_NUMBER; |
||
241 | protected static $numericCharacters = array( |
||
242 | "\xef\xbc\x90" => 0, |
||
243 | "\xef\xbc\x91" => 1, |
||
244 | "\xef\xbc\x92" => 2, |
||
245 | "\xef\xbc\x93" => 3, |
||
246 | "\xef\xbc\x94" => 4, |
||
247 | "\xef\xbc\x95" => 5, |
||
248 | "\xef\xbc\x96" => 6, |
||
249 | "\xef\xbc\x97" => 7, |
||
250 | "\xef\xbc\x98" => 8, |
||
251 | "\xef\xbc\x99" => 9, |
||
252 | |||
253 | "\xd9\xa0" => 0, |
||
254 | "\xd9\xa1" => 1, |
||
255 | "\xd9\xa2" => 2, |
||
256 | "\xd9\xa3" => 3, |
||
257 | "\xd9\xa4" => 4, |
||
258 | "\xd9\xa5" => 5, |
||
259 | "\xd9\xa6" => 6, |
||
260 | "\xd9\xa7" => 7, |
||
261 | "\xd9\xa8" => 8, |
||
262 | "\xd9\xa9" => 9, |
||
263 | |||
264 | "\xdb\xb0" => 0, |
||
265 | "\xdb\xb1" => 1, |
||
266 | "\xdb\xb2" => 2, |
||
267 | "\xdb\xb3" => 3, |
||
268 | "\xdb\xb4" => 4, |
||
269 | "\xdb\xb5" => 5, |
||
270 | "\xdb\xb6" => 6, |
||
271 | "\xdb\xb7" => 7, |
||
272 | "\xdb\xb8" => 8, |
||
273 | "\xdb\xb9" => 9, |
||
274 | |||
275 | "\xe1\xa0\x90" => 0, |
||
276 | "\xe1\xa0\x91" => 1, |
||
277 | "\xe1\xa0\x92" => 2, |
||
278 | "\xe1\xa0\x93" => 3, |
||
279 | "\xe1\xa0\x94" => 4, |
||
280 | "\xe1\xa0\x95" => 5, |
||
281 | "\xe1\xa0\x96" => 6, |
||
282 | "\xe1\xa0\x97" => 7, |
||
283 | "\xe1\xa0\x98" => 8, |
||
284 | "\xe1\xa0\x99" => 9, |
||
285 | ); |
||
286 | |||
287 | /** |
||
288 | * The set of county calling codes that map to the non-geo entity region ("001"). |
||
289 | * @var array |
||
290 | */ |
||
291 | protected $countryCodesForNonGeographicalRegion = array(); |
||
292 | /** |
||
293 | * The set of regions the library supports. |
||
294 | * @var array |
||
295 | */ |
||
296 | protected $supportedRegions = array(); |
||
297 | |||
298 | /** |
||
299 | * A mapping from a country calling code to the region codes which denote the region represented |
||
300 | * by that country calling code. In the case of multiple regions sharing a calling code, such as |
||
301 | * the NANPA regions, the one indicated with "isMainCountryForCode" in the metadata should be |
||
302 | * first. |
||
303 | * @var array |
||
304 | */ |
||
305 | protected $countryCallingCodeToRegionCodeMap = array(); |
||
306 | /** |
||
307 | * The set of regions that share country calling code 1. |
||
308 | * @var array |
||
309 | */ |
||
310 | protected $nanpaRegions = array(); |
||
311 | |||
312 | /** |
||
313 | * @var MetadataSourceInterface |
||
314 | */ |
||
315 | protected $metadataSource; |
||
316 | |||
317 | /** |
||
318 | * This class implements a singleton, so the only constructor is protected. |
||
319 | * @param MetadataSourceInterface $metadataSource |
||
320 | * @param $countryCallingCodeToRegionCodeMap |
||
321 | */ |
||
322 | 403 | protected function __construct(MetadataSourceInterface $metadataSource, $countryCallingCodeToRegionCodeMap) |
|
381 | |||
382 | /** |
||
383 | * Gets a {@link PhoneNumberUtil} instance to carry out international phone number formatting, |
||
384 | * parsing, or validation. The instance is loaded with phone number metadata for a number of most |
||
385 | * commonly used regions. |
||
386 | * |
||
387 | * <p>The {@link PhoneNumberUtil} is implemented as a singleton. Therefore, calling getInstance |
||
388 | * multiple times will only result in one instance being created. |
||
389 | * |
||
390 | * @param string $baseFileLocation |
||
391 | * @param array|null $countryCallingCodeToRegionCodeMap |
||
392 | * @param MetadataLoaderInterface|null $metadataLoader |
||
393 | * @param MetadataSourceInterface|null $metadataSource |
||
394 | * @return PhoneNumberUtil instance |
||
395 | */ |
||
396 | 5778 | public static function getInstance($baseFileLocation = self::META_DATA_FILE_PREFIX, array $countryCallingCodeToRegionCodeMap = null, MetadataLoaderInterface $metadataLoader = null, MetadataSourceInterface $metadataSource = null) |
|
415 | |||
416 | 403 | protected function init() |
|
438 | |||
439 | 403 | protected static function initCapturingExtnDigits() |
|
443 | |||
444 | 403 | protected static function initExtnPatterns() |
|
455 | |||
456 | // The FIRST_GROUP_PATTERN was originally set to $1 but there are some countries for which the |
||
457 | // first group is not used in the national pattern (e.g. Argentina) so the $1 group does not match |
||
458 | // correctly. Therefore, we use \d, so that the first group actually used in the pattern will be |
||
459 | // matched. |
||
460 | |||
461 | /** |
||
462 | * Helper initialiser method to create the regular-expression pattern to match extensions, |
||
463 | * allowing the one-char extension symbols provided by {@code singleExtnSymbols}. |
||
464 | * @param string $singleExtnSymbols |
||
465 | * @return string |
||
466 | */ |
||
467 | 403 | protected static function createExtnPattern($singleExtnSymbols) |
|
485 | |||
486 | 403 | protected static function initExtnPattern() |
|
490 | |||
491 | 405 | protected static function initAlphaPhoneMappings() |
|
495 | |||
496 | 404 | protected static function initValidStartCharPattern() |
|
500 | |||
501 | 404 | protected static function initMobileTokenMappings() |
|
507 | |||
508 | 404 | protected static function initDiallableCharMappings() |
|
509 | { |
||
510 | 404 | static::$DIALLABLE_CHAR_MAPPINGS = static::$asciiDigitMappings; |
|
511 | 404 | static::$DIALLABLE_CHAR_MAPPINGS[static::PLUS_SIGN] = static::PLUS_SIGN; |
|
512 | 404 | static::$DIALLABLE_CHAR_MAPPINGS['*'] = '*'; |
|
513 | 404 | static::$DIALLABLE_CHAR_MAPPINGS['#'] = '#'; |
|
514 | 404 | } |
|
515 | |||
516 | /** |
||
517 | * Used for testing purposes only to reset the PhoneNumberUtil singleton to null. |
||
518 | */ |
||
519 | 408 | public static function resetInstance() |
|
520 | { |
||
521 | 408 | static::$instance = null; |
|
522 | 408 | } |
|
523 | |||
524 | /** |
||
525 | * Converts all alpha characters in a number to their respective digits on a keypad, but retains |
||
526 | * existing formatting. |
||
527 | * @param string $number |
||
528 | * @return string |
||
529 | */ |
||
530 | 2 | public static function convertAlphaCharactersInNumber($number) |
|
531 | { |
||
532 | 2 | if (static::$ALPHA_PHONE_MAPPINGS === null) { |
|
533 | 1 | static::initAlphaPhoneMappings(); |
|
534 | } |
||
535 | |||
536 | 2 | return static::normalizeHelper($number, static::$ALPHA_PHONE_MAPPINGS, false); |
|
537 | } |
||
538 | |||
539 | /** |
||
540 | * Normalizes a string of characters representing a phone number by replacing all characters found |
||
541 | * in the accompanying map with the values therein, and stripping all other characters if |
||
542 | * removeNonMatches is true. |
||
543 | * |
||
544 | * @param string $number a string of characters representing a phone number |
||
545 | * @param array $normalizationReplacements a mapping of characters to what they should be replaced by in |
||
546 | * the normalized version of the phone number |
||
547 | * @param bool $removeNonMatches indicates whether characters that are not able to be replaced |
||
548 | * should be stripped from the number. If this is false, they will be left unchanged in the number. |
||
549 | * @return string the normalized string version of the phone number |
||
550 | */ |
||
551 | 14 | protected static function normalizeHelper($number, array $normalizationReplacements, $removeNonMatches) |
|
552 | { |
||
553 | 14 | $normalizedNumber = ""; |
|
554 | 14 | $strLength = mb_strlen($number, 'UTF-8'); |
|
555 | 14 | for ($i = 0; $i < $strLength; $i++) { |
|
556 | 14 | $character = mb_substr($number, $i, 1, 'UTF-8'); |
|
557 | 14 | if (isset($normalizationReplacements[mb_strtoupper($character, 'UTF-8')])) { |
|
558 | 14 | $normalizedNumber .= $normalizationReplacements[mb_strtoupper($character, 'UTF-8')]; |
|
559 | } else { |
||
560 | 14 | if (!$removeNonMatches) { |
|
561 | 2 | $normalizedNumber .= $character; |
|
562 | } |
||
563 | } |
||
564 | // If neither of the above are true, we remove this character. |
||
565 | } |
||
566 | 14 | return $normalizedNumber; |
|
567 | } |
||
568 | |||
569 | /** |
||
570 | * Helper function to check if the national prefix formatting rule has the first group only, i.e., |
||
571 | * does not start with the national prefix. |
||
572 | * @param string $nationalPrefixFormattingRule |
||
573 | * @return bool |
||
574 | */ |
||
575 | public static function formattingRuleHasFirstGroupOnly($nationalPrefixFormattingRule) |
||
576 | { |
||
577 | $m = preg_match(static::FIRST_GROUP_ONLY_PREFIX_PATTERN, $nationalPrefixFormattingRule); |
||
578 | return $m > 0; |
||
579 | } |
||
580 | |||
581 | /** |
||
582 | * Convenience method to get a list of what regions the library has metadata for. |
||
583 | * @return array |
||
584 | */ |
||
585 | 245 | public function getSupportedRegions() |
|
586 | { |
||
587 | 245 | return $this->supportedRegions; |
|
588 | } |
||
589 | |||
590 | /** |
||
591 | * Convenience method to get a list of what global network calling codes the library has metadata |
||
592 | * for. |
||
593 | * @return array |
||
594 | */ |
||
595 | 1 | public function getSupportedGlobalNetworkCallingCodes() |
|
596 | { |
||
597 | 1 | return $this->countryCodesForNonGeographicalRegion; |
|
598 | } |
||
599 | |||
600 | /** |
||
601 | * Gets the length of the geographical area code from the {@code nationalNumber} field of the |
||
602 | * PhoneNumber object passed in, so that clients could use it to split a national significant |
||
603 | * number into geographical area code and subscriber number. It works in such a way that the |
||
604 | * resultant subscriber number should be diallable, at least on some devices. An example of how |
||
605 | * this could be used: |
||
606 | * |
||
607 | * <code> |
||
608 | * $phoneUtil = PhoneNumberUtil::getInstance(); |
||
609 | * $number = $phoneUtil->parse("16502530000", "US"); |
||
610 | * $nationalSignificantNumber = $phoneUtil->getNationalSignificantNumber($number); |
||
611 | * |
||
612 | * $areaCodeLength = $phoneUtil->getLengthOfGeographicalAreaCode($number); |
||
613 | * if ($areaCodeLength > 0) |
||
614 | * { |
||
615 | * $areaCode = substr($nationalSignificantNumber, 0,$areaCodeLength); |
||
616 | * $subscriberNumber = substr($nationalSignificantNumber, $areaCodeLength); |
||
617 | * } else { |
||
618 | * $areaCode = ""; |
||
619 | * $subscriberNumber = $nationalSignificantNumber; |
||
620 | * } |
||
621 | * </code> |
||
622 | * |
||
623 | * N.B.: area code is a very ambiguous concept, so the I18N team generally recommends against |
||
624 | * using it for most purposes, but recommends using the more general {@code nationalNumber} |
||
625 | * instead. Read the following carefully before deciding to use this method: |
||
626 | * <ul> |
||
627 | * <li> geographical area codes change over time, and this method honors those changes; |
||
628 | * therefore, it doesn't guarantee the stability of the result it produces. |
||
629 | * <li> subscriber numbers may not be diallable from all devices (notably mobile devices, which |
||
630 | * typically requires the full national_number to be dialled in most regions). |
||
631 | * <li> most non-geographical numbers have no area codes, including numbers from non-geographical |
||
632 | * entities |
||
633 | * <li> some geographical numbers have no area codes. |
||
634 | * </ul> |
||
635 | * @param PhoneNumber $number PhoneNumber object for which clients want to know the length of the area code. |
||
636 | * @return int the length of area code of the PhoneNumber object passed in. |
||
637 | */ |
||
638 | 1 | public function getLengthOfGeographicalAreaCode(PhoneNumber $number) |
|
639 | { |
||
640 | 1 | $metadata = $this->getMetadataForRegion($this->getRegionCodeForNumber($number)); |
|
641 | 1 | if ($metadata === null) { |
|
642 | 1 | return 0; |
|
643 | } |
||
644 | // If a country doesn't use a national prefix, and this number doesn't have an Italian leading |
||
645 | // zero, we assume it is a closed dialling plan with no area codes. |
||
646 | 1 | if (!$metadata->hasNationalPrefix() && !$number->isItalianLeadingZero()) { |
|
|
|||
647 | 1 | return 0; |
|
648 | } |
||
649 | |||
650 | 1 | $type = $this->getNumberType($number); |
|
651 | 1 | $countryCallingCode = $number->getCountryCode(); |
|
652 | |||
653 | 1 | if ($type === PhoneNumberType::MOBILE |
|
654 | // Note this is a rough heuristic; it doesn't cover Indonesia well, for example, where area |
||
655 | // codes are present for some mobile phones but not for others. We have no better way of |
||
656 | // representing this in the metadata at this point. |
||
657 | 1 | && in_array($countryCallingCode, self::$GEO_MOBILE_COUNTRIES_WITHOUT_MOBILE_AREA_CODES) |
|
658 | ) { |
||
659 | 1 | return 0; |
|
660 | } |
||
661 | |||
662 | 1 | if (!$this->isNumberGeographical($type, $countryCallingCode)) { |
|
663 | 1 | return 0; |
|
664 | } |
||
665 | |||
666 | 1 | return $this->getLengthOfNationalDestinationCode($number); |
|
667 | } |
||
668 | |||
669 | /** |
||
670 | * Returns the metadata for the given region code or {@code null} if the region code is invalid |
||
671 | * or unknown. |
||
672 | * @param string $regionCode |
||
673 | * @return PhoneMetadata |
||
674 | */ |
||
675 | 4635 | public function getMetadataForRegion($regionCode) |
|
676 | { |
||
677 | 4635 | if (!$this->isValidRegionCode($regionCode)) { |
|
678 | 307 | return null; |
|
679 | } |
||
680 | |||
681 | 4622 | return $this->metadataSource->getMetadataForRegion($regionCode); |
|
682 | } |
||
683 | |||
684 | /** |
||
685 | * Helper function to check region code is not unknown or null. |
||
686 | * @param string $regionCode |
||
687 | * @return bool |
||
688 | */ |
||
689 | 4635 | protected function isValidRegionCode($regionCode) |
|
690 | { |
||
691 | 4635 | return $regionCode !== null && in_array($regionCode, $this->supportedRegions); |
|
692 | } |
||
693 | |||
694 | /** |
||
695 | * Returns the region where a phone number is from. This could be used for geocoding at the region |
||
696 | * level. |
||
697 | * |
||
698 | * @param PhoneNumber $number the phone number whose origin we want to know |
||
699 | * @return null|string the region where the phone number is from, or null if no region matches this calling |
||
700 | * code |
||
701 | */ |
||
702 | 2147 | public function getRegionCodeForNumber(PhoneNumber $number) |
|
703 | { |
||
704 | 2147 | $countryCode = $number->getCountryCode(); |
|
705 | 2147 | if (!isset($this->countryCallingCodeToRegionCodeMap[$countryCode])) { |
|
706 | 4 | return null; |
|
707 | } |
||
708 | 2146 | $regions = $this->countryCallingCodeToRegionCodeMap[$countryCode]; |
|
709 | 2146 | if (count($regions) == 1) { |
|
710 | 1646 | return $regions[0]; |
|
711 | } else { |
||
712 | 521 | return $this->getRegionCodeForNumberFromRegionList($number, $regions); |
|
713 | } |
||
714 | } |
||
715 | |||
716 | /** |
||
717 | * @param PhoneNumber $number |
||
718 | * @param array $regionCodes |
||
719 | * @return null|string |
||
720 | */ |
||
721 | 521 | protected function getRegionCodeForNumberFromRegionList(PhoneNumber $number, array $regionCodes) |
|
722 | { |
||
723 | 521 | $nationalNumber = $this->getNationalSignificantNumber($number); |
|
724 | 521 | foreach ($regionCodes as $regionCode) { |
|
725 | // If leadingDigits is present, use this. Otherwise, do full validation. |
||
726 | // Metadata cannot be null because the region codes come from the country calling code map. |
||
727 | 521 | $metadata = $this->getMetadataForRegion($regionCode); |
|
728 | 521 | if ($metadata->hasLeadingDigits()) { |
|
729 | 174 | $nbMatches = preg_match( |
|
730 | 174 | '/' . $metadata->getLeadingDigits() . '/', |
|
731 | $nationalNumber, |
||
732 | $matches, |
||
733 | 174 | PREG_OFFSET_CAPTURE |
|
734 | ); |
||
735 | 174 | if ($nbMatches > 0 && $matches[0][1] === 0) { |
|
736 | 174 | return $regionCode; |
|
737 | } |
||
738 | 505 | } elseif ($this->getNumberTypeHelper($nationalNumber, $metadata) != PhoneNumberType::UNKNOWN) { |
|
739 | 511 | return $regionCode; |
|
740 | } |
||
741 | } |
||
742 | 37 | return null; |
|
743 | } |
||
744 | |||
745 | /** |
||
746 | * Gets the national significant number of the a phone number. Note a national significant number |
||
747 | * doesn't contain a national prefix or any formatting. |
||
748 | * |
||
749 | * @param PhoneNumber $number the phone number for which the national significant number is needed |
||
750 | * @return string the national significant number of the PhoneNumber object passed in |
||
751 | */ |
||
752 | 1993 | public function getNationalSignificantNumber(PhoneNumber $number) |
|
753 | { |
||
754 | // If leading zero(s) have been set, we prefix this now. Note this is not a national prefix. |
||
755 | 1993 | $nationalNumber = ''; |
|
756 | 1993 | if ($number->isItalianLeadingZero()) { |
|
757 | 44 | $zeros = str_repeat('0', $number->getNumberOfLeadingZeros()); |
|
758 | 44 | $nationalNumber .= $zeros; |
|
759 | } |
||
760 | 1993 | $nationalNumber .= $number->getNationalNumber(); |
|
761 | 1993 | return $nationalNumber; |
|
762 | } |
||
763 | |||
764 | /** |
||
765 | * @param string $nationalNumber |
||
766 | * @param PhoneMetadata $metadata |
||
767 | * @return int PhoneNumberType constant |
||
768 | */ |
||
769 | 1931 | protected function getNumberTypeHelper($nationalNumber, PhoneMetadata $metadata) |
|
770 | { |
||
771 | 1931 | if (!$this->isNumberMatchingDesc($nationalNumber, $metadata->getGeneralDesc())) { |
|
772 | 251 | return PhoneNumberType::UNKNOWN; |
|
773 | } |
||
774 | 1730 | if ($this->isNumberMatchingDesc($nationalNumber, $metadata->getPremiumRate())) { |
|
775 | 147 | return PhoneNumberType::PREMIUM_RATE; |
|
776 | } |
||
777 | 1584 | if ($this->isNumberMatchingDesc($nationalNumber, $metadata->getTollFree())) { |
|
778 | 180 | return PhoneNumberType::TOLL_FREE; |
|
779 | } |
||
780 | |||
781 | |||
782 | 1413 | if ($this->isNumberMatchingDesc($nationalNumber, $metadata->getSharedCost())) { |
|
783 | 62 | return PhoneNumberType::SHARED_COST; |
|
784 | } |
||
785 | 1351 | if ($this->isNumberMatchingDesc($nationalNumber, $metadata->getVoip())) { |
|
786 | 78 | return PhoneNumberType::VOIP; |
|
787 | } |
||
788 | 1276 | if ($this->isNumberMatchingDesc($nationalNumber, $metadata->getPersonalNumber())) { |
|
789 | 63 | return PhoneNumberType::PERSONAL_NUMBER; |
|
790 | } |
||
791 | 1213 | if ($this->isNumberMatchingDesc($nationalNumber, $metadata->getPager())) { |
|
792 | 25 | return PhoneNumberType::PAGER; |
|
793 | } |
||
794 | 1190 | if ($this->isNumberMatchingDesc($nationalNumber, $metadata->getUan())) { |
|
795 | 59 | return PhoneNumberType::UAN; |
|
796 | } |
||
797 | 1133 | if ($this->isNumberMatchingDesc($nationalNumber, $metadata->getVoicemail())) { |
|
798 | 12 | return PhoneNumberType::VOICEMAIL; |
|
799 | } |
||
800 | 1122 | $isFixedLine = $this->isNumberMatchingDesc($nationalNumber, $metadata->getFixedLine()); |
|
801 | 1122 | if ($isFixedLine) { |
|
802 | 807 | if ($metadata->isSameMobileAndFixedLinePattern()) { |
|
803 | return PhoneNumberType::FIXED_LINE_OR_MOBILE; |
||
804 | 807 | } elseif ($this->isNumberMatchingDesc($nationalNumber, $metadata->getMobile())) { |
|
805 | 56 | return PhoneNumberType::FIXED_LINE_OR_MOBILE; |
|
806 | } |
||
807 | 759 | return PhoneNumberType::FIXED_LINE; |
|
808 | } |
||
809 | // Otherwise, test to see if the number is mobile. Only do this if certain that the patterns for |
||
810 | // mobile and fixed line aren't the same. |
||
811 | 444 | if (!$metadata->isSameMobileAndFixedLinePattern() && |
|
812 | 444 | $this->isNumberMatchingDesc($nationalNumber, $metadata->getMobile()) |
|
813 | ) { |
||
814 | 256 | return PhoneNumberType::MOBILE; |
|
815 | } |
||
816 | 211 | return PhoneNumberType::UNKNOWN; |
|
817 | } |
||
818 | |||
819 | /** |
||
820 | * @param string $nationalNumber |
||
821 | * @param PhoneNumberDesc $numberDesc |
||
822 | * @return bool |
||
823 | */ |
||
824 | 1955 | public function isNumberMatchingDesc($nationalNumber, PhoneNumberDesc $numberDesc) |
|
825 | { |
||
826 | // Check if any possible number lengths are present; if so, we use them to avoid checking the |
||
827 | // validation pattern if they don't match. If they are absent, this means they match the general |
||
828 | // description, which we have already checked before checking a specific number type. |
||
829 | 1955 | $actualLength = mb_strlen($nationalNumber); |
|
830 | 1955 | $possibleLengths = $numberDesc->getPossibleLength(); |
|
831 | 1955 | if (count($possibleLengths) > 0 && !in_array($actualLength, $possibleLengths)) { |
|
832 | 1555 | return false; |
|
833 | } |
||
834 | |||
835 | 1767 | $nationalNumberPatternMatcher = new Matcher($numberDesc->getNationalNumberPattern(), $nationalNumber); |
|
836 | |||
837 | 1767 | return $nationalNumberPatternMatcher->matches(); |
|
838 | } |
||
839 | |||
840 | /** |
||
841 | * isNumberGeographical(PhoneNumber) |
||
842 | * |
||
843 | * Tests whether a phone number has a geographical association. It checks if the number is |
||
844 | * associated to a certain region in the country where it belongs to. Note that this doesn't |
||
845 | * verify if the number is actually in use. |
||
846 | * |
||
847 | * isNumberGeographical(PhoneNumberType, $countryCallingCode) |
||
848 | * |
||
849 | * Tests whether a phone number has a geographical association, as represented by its type and the |
||
850 | * country it belongs to. |
||
851 | * |
||
852 | * This version exists since calculating the phone number type is expensive; if we have already |
||
853 | * done this, we don't want to do it again. |
||
854 | * |
||
855 | * @param PhoneNumber|int $phoneNumberObjOrType A PhoneNumber object, or a PhoneNumberType integer |
||
856 | * @param int|null $countryCallingCode Used when passing a PhoneNumberType |
||
857 | * @return bool |
||
858 | */ |
||
859 | 20 | public function isNumberGeographical($phoneNumberObjOrType, $countryCallingCode = null) |
|
860 | { |
||
861 | 20 | if ($phoneNumberObjOrType instanceof PhoneNumber) { |
|
862 | 1 | return $this->isNumberGeographical($this->getNumberType($phoneNumberObjOrType), $phoneNumberObjOrType->getCountryCode()); |
|
863 | } |
||
864 | |||
865 | 20 | return $phoneNumberObjOrType == PhoneNumberType::FIXED_LINE |
|
866 | 16 | || $phoneNumberObjOrType == PhoneNumberType::FIXED_LINE_OR_MOBILE |
|
867 | 12 | || (in_array($countryCallingCode, static::$GEO_MOBILE_COUNTRIES) |
|
868 | 20 | && $phoneNumberObjOrType == PhoneNumberType::MOBILE); |
|
869 | } |
||
870 | |||
871 | /** |
||
872 | * Gets the type of a phone number. |
||
873 | * @param PhoneNumber $number the number the phone number that we want to know the type |
||
874 | * @return int PhoneNumberType the type of the phone number |
||
875 | */ |
||
876 | 1365 | public function getNumberType(PhoneNumber $number) |
|
877 | { |
||
878 | 1365 | $regionCode = $this->getRegionCodeForNumber($number); |
|
879 | 1365 | $metadata = $this->getMetadataForRegionOrCallingCode($number->getCountryCode(), $regionCode); |
|
880 | 1365 | if ($metadata === null) { |
|
881 | 8 | return PhoneNumberType::UNKNOWN; |
|
882 | } |
||
883 | 1364 | $nationalSignificantNumber = $this->getNationalSignificantNumber($number); |
|
884 | 1364 | return $this->getNumberTypeHelper($nationalSignificantNumber, $metadata); |
|
885 | } |
||
886 | |||
887 | /** |
||
888 | * @param int $countryCallingCode |
||
889 | * @param string $regionCode |
||
890 | * @return PhoneMetadata |
||
891 | */ |
||
892 | 1918 | protected function getMetadataForRegionOrCallingCode($countryCallingCode, $regionCode) |
|
893 | { |
||
894 | 1918 | return static::REGION_CODE_FOR_NON_GEO_ENTITY === $regionCode ? |
|
895 | 1918 | $this->getMetadataForNonGeographicalRegion($countryCallingCode) : $this->getMetadataForRegion($regionCode); |
|
896 | } |
||
897 | |||
898 | /** |
||
899 | * @param int $countryCallingCode |
||
900 | * @return PhoneMetadata |
||
901 | */ |
||
902 | 31 | public function getMetadataForNonGeographicalRegion($countryCallingCode) |
|
903 | { |
||
904 | 31 | if (!isset($this->countryCallingCodeToRegionCodeMap[$countryCallingCode])) { |
|
905 | 1 | return null; |
|
906 | } |
||
907 | 31 | return $this->metadataSource->getMetadataForNonGeographicalRegion($countryCallingCode); |
|
908 | } |
||
909 | |||
910 | /** |
||
911 | * Gets the length of the national destination code (NDC) from the PhoneNumber object passed in, |
||
912 | * so that clients could use it to split a national significant number into NDC and subscriber |
||
913 | * number. The NDC of a phone number is normally the first group of digit(s) right after the |
||
914 | * country calling code when the number is formatted in the international format, if there is a |
||
915 | * subscriber number part that follows. An example of how this could be used: |
||
916 | * |
||
917 | * <code> |
||
918 | * $phoneUtil = PhoneNumberUtil::getInstance(); |
||
919 | * $number = $phoneUtil->parse("18002530000", "US"); |
||
920 | * $nationalSignificantNumber = $phoneUtil->getNationalSignificantNumber($number); |
||
921 | * |
||
922 | * $nationalDestinationCodeLength = $phoneUtil->getLengthOfNationalDestinationCode($number); |
||
923 | * if ($nationalDestinationCodeLength > 0) { |
||
924 | * $nationalDestinationCode = substr($nationalSignificantNumber, 0, $nationalDestinationCodeLength); |
||
925 | * $subscriberNumber = substr($nationalSignificantNumber, $nationalDestinationCodeLength); |
||
926 | * } else { |
||
927 | * $nationalDestinationCode = ""; |
||
928 | * $subscriberNumber = $nationalSignificantNumber; |
||
929 | * } |
||
930 | * </code> |
||
931 | * |
||
932 | * Refer to the unit tests to see the difference between this function and |
||
933 | * {@link #getLengthOfGeographicalAreaCode}. |
||
934 | * |
||
935 | * @param PhoneNumber $number the PhoneNumber object for which clients want to know the length of the NDC. |
||
936 | * @return int the length of NDC of the PhoneNumber object passed in. |
||
937 | */ |
||
938 | 2 | public function getLengthOfNationalDestinationCode(PhoneNumber $number) |
|
939 | { |
||
940 | 2 | if ($number->hasExtension()) { |
|
941 | // We don't want to alter the proto given to us, but we don't want to include the extension |
||
942 | // when we format it, so we copy it and clear the extension here. |
||
943 | $copiedProto = new PhoneNumber(); |
||
944 | $copiedProto->mergeFrom($number); |
||
945 | $copiedProto->clearExtension(); |
||
946 | } else { |
||
947 | 2 | $copiedProto = clone $number; |
|
948 | } |
||
949 | |||
950 | 2 | $nationalSignificantNumber = $this->format($copiedProto, PhoneNumberFormat::INTERNATIONAL); |
|
951 | |||
952 | 2 | $numberGroups = preg_split('/' . static::NON_DIGITS_PATTERN . '/', $nationalSignificantNumber); |
|
953 | |||
954 | // The pattern will start with "+COUNTRY_CODE " so the first group will always be the empty |
||
955 | // string (before the + symbol) and the second group will be the country calling code. The third |
||
956 | // group will be area code if it is not the last group. |
||
957 | 2 | if (count($numberGroups) <= 3) { |
|
958 | 1 | return 0; |
|
959 | } |
||
960 | |||
961 | 2 | if ($this->getNumberType($number) == PhoneNumberType::MOBILE) { |
|
962 | // For example Argentinian mobile numbers, when formatted in the international format, are in |
||
963 | // the form of +54 9 NDC XXXX.... As a result, we take the length of the third group (NDC) and |
||
964 | // add the length of the second group (which is the mobile token), which also forms part of |
||
965 | // the national significant number. This assumes that the mobile token is always formatted |
||
966 | // separately from the rest of the phone number. |
||
967 | |||
968 | 2 | $mobileToken = static::getCountryMobileToken($number->getCountryCode()); |
|
969 | 2 | if ($mobileToken !== "") { |
|
970 | 2 | return mb_strlen($numberGroups[2]) + mb_strlen($numberGroups[3]); |
|
971 | } |
||
972 | } |
||
973 | 2 | return mb_strlen($numberGroups[2]); |
|
974 | } |
||
975 | |||
976 | /** |
||
977 | * Formats a phone number in the specified format using default rules. Note that this does not |
||
978 | * promise to produce a phone number that the user can dial from where they are - although we do |
||
979 | * format in either 'national' or 'international' format depending on what the client asks for, we |
||
980 | * do not currently support a more abbreviated format, such as for users in the same "area" who |
||
981 | * could potentially dial the number without area code. Note that if the phone number has a |
||
982 | * country calling code of 0 or an otherwise invalid country calling code, we cannot work out |
||
983 | * which formatting rules to apply so we return the national significant number with no formatting |
||
984 | * applied. |
||
985 | * |
||
986 | * @param PhoneNumber $number the phone number to be formatted |
||
987 | * @param int $numberFormat the PhoneNumberFormat the phone number should be formatted into |
||
988 | * @return string the formatted phone number |
||
989 | */ |
||
990 | 289 | public function format(PhoneNumber $number, $numberFormat) |
|
991 | { |
||
992 | 289 | if ($number->getNationalNumber() == 0 && $number->hasRawInput()) { |
|
993 | // Unparseable numbers that kept their raw input just use that. |
||
994 | // This is the only case where a number can be formatted as E164 without a |
||
995 | // leading '+' symbol (but the original number wasn't parseable anyway). |
||
996 | // TODO: Consider removing the 'if' above so that unparseable |
||
997 | // strings without raw input format to the empty string instead of "+00" |
||
998 | 1 | $rawInput = $number->getRawInput(); |
|
999 | 1 | if (mb_strlen($rawInput) > 0) { |
|
1000 | 1 | return $rawInput; |
|
1001 | } |
||
1002 | } |
||
1003 | 289 | $metadata = null; |
|
1004 | 289 | $formattedNumber = ""; |
|
1005 | 289 | $countryCallingCode = $number->getCountryCode(); |
|
1006 | 289 | $nationalSignificantNumber = $this->getNationalSignificantNumber($number); |
|
1007 | 289 | if ($numberFormat == PhoneNumberFormat::E164) { |
|
1008 | // Early exit for E164 case (even if the country calling code is invalid) since no formatting |
||
1009 | // of the national number needs to be applied. Extensions are not formatted. |
||
1010 | 265 | $formattedNumber .= $nationalSignificantNumber; |
|
1011 | 265 | $this->prefixNumberWithCountryCallingCode($countryCallingCode, PhoneNumberFormat::E164, $formattedNumber); |
|
1012 | 41 | } elseif (!$this->hasValidCountryCallingCode($countryCallingCode)) { |
|
1013 | 1 | $formattedNumber .= $nationalSignificantNumber; |
|
1014 | } else { |
||
1015 | // Note getRegionCodeForCountryCode() is used because formatting information for regions which |
||
1016 | // share a country calling code is contained by only one region for performance reasons. For |
||
1017 | // example, for NANPA regions it will be contained in the metadata for US. |
||
1018 | 41 | $regionCode = $this->getRegionCodeForCountryCode($countryCallingCode); |
|
1019 | // Metadata cannot be null because the country calling code is valid (which means that the |
||
1020 | // region code cannot be ZZ and must be one of our supported region codes). |
||
1021 | 41 | $metadata = $this->getMetadataForRegionOrCallingCode($countryCallingCode, $regionCode); |
|
1022 | 41 | $formattedNumber .= $this->formatNsn($nationalSignificantNumber, $metadata, $numberFormat); |
|
1023 | 41 | $this->prefixNumberWithCountryCallingCode($countryCallingCode, $numberFormat, $formattedNumber); |
|
1024 | } |
||
1025 | 289 | $this->maybeAppendFormattedExtension($number, $metadata, $numberFormat, $formattedNumber); |
|
1026 | 289 | return $formattedNumber; |
|
1027 | } |
||
1028 | |||
1029 | /** |
||
1030 | * A helper function that is used by format and formatByPattern. |
||
1031 | * @param int $countryCallingCode |
||
1032 | * @param int $numberFormat PhoneNumberFormat |
||
1033 | * @param string $formattedNumber |
||
1034 | */ |
||
1035 | 290 | protected function prefixNumberWithCountryCallingCode($countryCallingCode, $numberFormat, &$formattedNumber) |
|
1036 | { |
||
1037 | switch ($numberFormat) { |
||
1038 | 290 | case PhoneNumberFormat::E164: |
|
1039 | 265 | $formattedNumber = static::PLUS_SIGN . $countryCallingCode . $formattedNumber; |
|
1040 | 265 | return; |
|
1041 | 42 | case PhoneNumberFormat::INTERNATIONAL: |
|
1042 | 19 | $formattedNumber = static::PLUS_SIGN . $countryCallingCode . " " . $formattedNumber; |
|
1043 | 19 | return; |
|
1044 | 39 | case PhoneNumberFormat::RFC3966: |
|
1045 | 4 | $formattedNumber = static::RFC3966_PREFIX . static::PLUS_SIGN . $countryCallingCode . "-" . $formattedNumber; |
|
1046 | 4 | return; |
|
1047 | 39 | case PhoneNumberFormat::NATIONAL: |
|
1048 | default: |
||
1049 | 39 | return; |
|
1050 | } |
||
1051 | } |
||
1052 | |||
1053 | /** |
||
1054 | * Helper function to check the country calling code is valid. |
||
1055 | * @param int $countryCallingCode |
||
1056 | * @return bool |
||
1057 | */ |
||
1058 | 47 | protected function hasValidCountryCallingCode($countryCallingCode) |
|
1059 | { |
||
1060 | 47 | return isset($this->countryCallingCodeToRegionCodeMap[$countryCallingCode]); |
|
1061 | } |
||
1062 | |||
1063 | /** |
||
1064 | * Returns the region code that matches the specific country calling code. In the case of no |
||
1065 | * region code being found, ZZ will be returned. In the case of multiple regions, the one |
||
1066 | * designated in the metadata as the "main" region for this calling code will be returned. If the |
||
1067 | * countryCallingCode entered is valid but doesn't match a specific region (such as in the case of |
||
1068 | * non-geographical calling codes like 800) the value "001" will be returned (corresponding to |
||
1069 | * the value for World in the UN M.49 schema). |
||
1070 | * |
||
1071 | * @param int $countryCallingCode |
||
1072 | * @return string |
||
1073 | */ |
||
1074 | 332 | public function getRegionCodeForCountryCode($countryCallingCode) |
|
1075 | { |
||
1076 | 332 | $regionCodes = isset($this->countryCallingCodeToRegionCodeMap[$countryCallingCode]) ? $this->countryCallingCodeToRegionCodeMap[$countryCallingCode] : null; |
|
1077 | 332 | return $regionCodes === null ? static::UNKNOWN_REGION : $regionCodes[0]; |
|
1078 | } |
||
1079 | |||
1080 | /** |
||
1081 | * Note in some regions, the national number can be written in two completely different ways |
||
1082 | * depending on whether it forms part of the NATIONAL format or INTERNATIONAL format. The |
||
1083 | * numberFormat parameter here is used to specify which format to use for those cases. If a |
||
1084 | * carrierCode is specified, this will be inserted into the formatted string to replace $CC. |
||
1085 | * @param string $number |
||
1086 | * @param PhoneMetadata $metadata |
||
1087 | * @param int $numberFormat PhoneNumberFormat |
||
1088 | * @param null|string $carrierCode |
||
1089 | * @return string |
||
1090 | */ |
||
1091 | 42 | protected function formatNsn($number, PhoneMetadata $metadata, $numberFormat, $carrierCode = null) |
|
1092 | { |
||
1093 | 42 | $intlNumberFormats = $metadata->intlNumberFormats(); |
|
1094 | // When the intlNumberFormats exists, we use that to format national number for the |
||
1095 | // INTERNATIONAL format instead of using the numberDesc.numberFormats. |
||
1096 | 42 | $availableFormats = (count($intlNumberFormats) == 0 || $numberFormat == PhoneNumberFormat::NATIONAL) |
|
1097 | 41 | ? $metadata->numberFormats() |
|
1098 | 42 | : $metadata->intlNumberFormats(); |
|
1099 | 42 | $formattingPattern = $this->chooseFormattingPatternForNumber($availableFormats, $number); |
|
1100 | 42 | return ($formattingPattern === null) |
|
1101 | 8 | ? $number |
|
1102 | 42 | : $this->formatNsnUsingPattern($number, $formattingPattern, $numberFormat, $carrierCode); |
|
1103 | } |
||
1104 | |||
1105 | /** |
||
1106 | * @param NumberFormat[] $availableFormats |
||
1107 | * @param string $nationalNumber |
||
1108 | * @return NumberFormat|null |
||
1109 | */ |
||
1110 | 43 | public function chooseFormattingPatternForNumber(array $availableFormats, $nationalNumber) |
|
1111 | { |
||
1112 | 43 | foreach ($availableFormats as $numFormat) { |
|
1113 | 43 | $leadingDigitsPatternMatcher = null; |
|
1114 | 43 | $size = $numFormat->leadingDigitsPatternSize(); |
|
1115 | // We always use the last leading_digits_pattern, as it is the most detailed. |
||
1116 | 43 | if ($size > 0) { |
|
1117 | 38 | $leadingDigitsPatternMatcher = new Matcher( |
|
1118 | 38 | $numFormat->getLeadingDigitsPattern($size - 1), |
|
1119 | $nationalNumber |
||
1120 | ); |
||
1121 | } |
||
1122 | 43 | if ($size == 0 || $leadingDigitsPatternMatcher->lookingAt()) { |
|
1123 | 42 | $m = new Matcher($numFormat->getPattern(), $nationalNumber); |
|
1124 | 42 | if ($m->matches() > 0) { |
|
1125 | 43 | return $numFormat; |
|
1126 | } |
||
1127 | } |
||
1128 | } |
||
1129 | 9 | return null; |
|
1130 | } |
||
1131 | |||
1132 | /** |
||
1133 | * Note that carrierCode is optional - if null or an empty string, no carrier code replacement |
||
1134 | * will take place. |
||
1135 | * @param string $nationalNumber |
||
1136 | * @param NumberFormat $formattingPattern |
||
1137 | * @param int $numberFormat PhoneNumberFormat |
||
1138 | * @param null|string $carrierCode |
||
1139 | * @return string |
||
1140 | */ |
||
1141 | 42 | protected function formatNsnUsingPattern( |
|
1142 | $nationalNumber, |
||
1143 | NumberFormat $formattingPattern, |
||
1144 | $numberFormat, |
||
1145 | $carrierCode = null |
||
1146 | ) { |
||
1147 | 42 | $numberFormatRule = $formattingPattern->getFormat(); |
|
1148 | 42 | $m = new Matcher($formattingPattern->getPattern(), $nationalNumber); |
|
1149 | 42 | if ($numberFormat === PhoneNumberFormat::NATIONAL && |
|
1150 | 42 | $carrierCode !== null && mb_strlen($carrierCode) > 0 && |
|
1151 | 42 | mb_strlen($formattingPattern->getDomesticCarrierCodeFormattingRule()) > 0 |
|
1152 | ) { |
||
1153 | // Replace the $CC in the formatting rule with the desired carrier code. |
||
1154 | 2 | $carrierCodeFormattingRule = $formattingPattern->getDomesticCarrierCodeFormattingRule(); |
|
1155 | 2 | $ccPatternMatcher = new Matcher(static::CC_PATTERN, $carrierCodeFormattingRule); |
|
1156 | 2 | $carrierCodeFormattingRule = $ccPatternMatcher->replaceFirst($carrierCode); |
|
1157 | // Now replace the $FG in the formatting rule with the first group and the carrier code |
||
1158 | // combined in the appropriate way. |
||
1159 | 2 | $firstGroupMatcher = new Matcher(static::FIRST_GROUP_PATTERN, $numberFormatRule); |
|
1160 | 2 | $numberFormatRule = $firstGroupMatcher->replaceFirst($carrierCodeFormattingRule); |
|
1161 | 2 | $formattedNationalNumber = $m->replaceAll($numberFormatRule); |
|
1162 | } else { |
||
1163 | // Use the national prefix formatting rule instead. |
||
1164 | 42 | $nationalPrefixFormattingRule = $formattingPattern->getNationalPrefixFormattingRule(); |
|
1165 | 42 | if ($numberFormat == PhoneNumberFormat::NATIONAL && |
|
1166 | 42 | $nationalPrefixFormattingRule !== null && |
|
1167 | 42 | mb_strlen($nationalPrefixFormattingRule) > 0 |
|
1168 | ) { |
||
1169 | 22 | $firstGroupMatcher = new Matcher(static::FIRST_GROUP_PATTERN, $numberFormatRule); |
|
1170 | 22 | $formattedNationalNumber = $m->replaceAll( |
|
1171 | 22 | $firstGroupMatcher->replaceFirst($nationalPrefixFormattingRule) |
|
1172 | ); |
||
1173 | } else { |
||
1174 | 34 | $formattedNationalNumber = $m->replaceAll($numberFormatRule); |
|
1175 | } |
||
1176 | } |
||
1177 | 42 | if ($numberFormat == PhoneNumberFormat::RFC3966) { |
|
1178 | // Strip any leading punctuation. |
||
1179 | 4 | $matcher = new Matcher(static::$SEPARATOR_PATTERN, $formattedNationalNumber); |
|
1180 | 4 | if ($matcher->lookingAt()) { |
|
1181 | 1 | $formattedNationalNumber = $matcher->replaceFirst(""); |
|
1182 | } |
||
1183 | // Replace the rest with a dash between each number group. |
||
1184 | 4 | $formattedNationalNumber = $matcher->reset($formattedNationalNumber)->replaceAll("-"); |
|
1185 | } |
||
1186 | 42 | return $formattedNationalNumber; |
|
1187 | } |
||
1188 | |||
1189 | /** |
||
1190 | * Appends the formatted extension of a phone number to formattedNumber, if the phone number had |
||
1191 | * an extension specified. |
||
1192 | * |
||
1193 | * @param PhoneNumber $number |
||
1194 | * @param PhoneMetadata|null $metadata |
||
1195 | * @param int $numberFormat PhoneNumberFormat |
||
1196 | * @param string $formattedNumber |
||
1197 | */ |
||
1198 | 291 | protected function maybeAppendFormattedExtension(PhoneNumber $number, $metadata, $numberFormat, &$formattedNumber) |
|
1199 | { |
||
1200 | 291 | if ($number->hasExtension() && mb_strlen($number->getExtension()) > 0) { |
|
1201 | 2 | if ($numberFormat === PhoneNumberFormat::RFC3966) { |
|
1202 | 1 | $formattedNumber .= static::RFC3966_EXTN_PREFIX . $number->getExtension(); |
|
1203 | } else { |
||
1204 | 2 | if (!empty($metadata) && $metadata->hasPreferredExtnPrefix()) { |
|
1205 | 1 | $formattedNumber .= $metadata->getPreferredExtnPrefix() . $number->getExtension(); |
|
1206 | } else { |
||
1207 | 2 | $formattedNumber .= static::DEFAULT_EXTN_PREFIX . $number->getExtension(); |
|
1208 | } |
||
1209 | } |
||
1210 | } |
||
1211 | 291 | } |
|
1212 | |||
1213 | /** |
||
1214 | * Returns the mobile token for the provided country calling code if it has one, otherwise |
||
1215 | * returns an empty string. A mobile token is a number inserted before the area code when dialing |
||
1216 | * a mobile number from that country from abroad. |
||
1217 | * |
||
1218 | * @param int $countryCallingCode the country calling code for which we want the mobile token |
||
1219 | * @return string the mobile token, as a string, for the given country calling code |
||
1220 | */ |
||
1221 | 16 | public static function getCountryMobileToken($countryCallingCode) |
|
1222 | { |
||
1223 | 16 | if (count(static::$MOBILE_TOKEN_MAPPINGS) === 0) { |
|
1224 | 1 | static::initMobileTokenMappings(); |
|
1225 | } |
||
1226 | |||
1227 | 16 | if (array_key_exists($countryCallingCode, static::$MOBILE_TOKEN_MAPPINGS)) { |
|
1228 | 5 | return static::$MOBILE_TOKEN_MAPPINGS[$countryCallingCode]; |
|
1229 | } |
||
1230 | 14 | return ""; |
|
1231 | } |
||
1232 | |||
1233 | /** |
||
1234 | * Checks if the number is a valid vanity (alpha) number such as 800 MICROSOFT. A valid vanity |
||
1235 | * number will start with at least 3 digits and will have three or more alpha characters. This |
||
1236 | * does not do region-specific checks - to work out if this number is actually valid for a region, |
||
1237 | * it should be parsed and methods such as {@link #isPossibleNumberWithReason} and |
||
1238 | * {@link #isValidNumber} should be used. |
||
1239 | * |
||
1240 | * @param string $number the number that needs to be checked |
||
1241 | * @return bool true if the number is a valid vanity number |
||
1242 | */ |
||
1243 | 1 | public function isAlphaNumber($number) |
|
1244 | { |
||
1245 | 1 | if (!static::isViablePhoneNumber($number)) { |
|
1246 | // Number is too short, or doesn't match the basic phone number pattern. |
||
1247 | 1 | return false; |
|
1248 | } |
||
1249 | 1 | $this->maybeStripExtension($number); |
|
1250 | 1 | return (bool)preg_match('/' . static::VALID_ALPHA_PHONE_PATTERN . '/' . static::REGEX_FLAGS, $number); |
|
1251 | } |
||
1252 | |||
1253 | /** |
||
1254 | * Checks to see if the string of characters could possibly be a phone number at all. At the |
||
1255 | * moment, checks to see that the string begins with at least 2 digits, ignoring any punctuation |
||
1256 | * commonly found in phone numbers. |
||
1257 | * This method does not require the number to be normalized in advance - but does assume that |
||
1258 | * leading non-number symbols have been removed, such as by the method extractPossibleNumber. |
||
1259 | * |
||
1260 | * @param string $number to be checked for viability as a phone number |
||
1261 | * @return boolean true if the number could be a phone number of some sort, otherwise false |
||
1262 | */ |
||
1263 | 2744 | public static function isViablePhoneNumber($number) |
|
1264 | { |
||
1265 | 2744 | if (mb_strlen($number) < static::MIN_LENGTH_FOR_NSN) { |
|
1266 | 5 | return false; |
|
1267 | } |
||
1268 | |||
1269 | 2743 | $validPhoneNumberPattern = static::getValidPhoneNumberPattern(); |
|
1270 | |||
1271 | 2743 | $m = preg_match($validPhoneNumberPattern, $number); |
|
1272 | 2743 | return $m > 0; |
|
1273 | } |
||
1274 | |||
1275 | /** |
||
1276 | * We append optionally the extension pattern to the end here, as a valid phone number may |
||
1277 | * have an extension prefix appended, followed by 1 or more digits. |
||
1278 | * @return string |
||
1279 | */ |
||
1280 | 2743 | protected static function getValidPhoneNumberPattern() |
|
1281 | { |
||
1282 | 2743 | return static::$VALID_PHONE_NUMBER_PATTERN; |
|
1283 | } |
||
1284 | |||
1285 | /** |
||
1286 | * Strips any extension (as in, the part of the number dialled after the call is connected, |
||
1287 | * usually indicated with extn, ext, x or similar) from the end of the number, and returns it. |
||
1288 | * |
||
1289 | * @param string $number the non-normalized telephone number that we wish to strip the extension from |
||
1290 | * @return string the phone extension |
||
1291 | */ |
||
1292 | 2740 | protected function maybeStripExtension(&$number) |
|
1293 | { |
||
1294 | 2740 | $matches = array(); |
|
1295 | 2740 | $find = preg_match(static::$EXTN_PATTERN, $number, $matches, PREG_OFFSET_CAPTURE); |
|
1296 | // If we find a potential extension, and the number preceding this is a viable number, we assume |
||
1297 | // it is an extension. |
||
1298 | 2740 | if ($find > 0 && static::isViablePhoneNumber(substr($number, 0, $matches[0][1]))) { |
|
1299 | // The numbers are captured into groups in the regular expression. |
||
1300 | |||
1301 | 5 | for ($i = 1, $length = count($matches); $i <= $length; $i++) { |
|
1302 | 5 | if ($matches[$i][0] != "") { |
|
1303 | // We go through the capturing groups until we find one that captured some digits. If none |
||
1304 | // did, then we will return the empty string. |
||
1305 | 5 | $extension = $matches[$i][0]; |
|
1306 | 5 | $number = substr($number, 0, $matches[0][1]); |
|
1307 | 5 | return $extension; |
|
1308 | } |
||
1309 | } |
||
1310 | } |
||
1311 | 2740 | return ""; |
|
1312 | } |
||
1313 | |||
1314 | /** |
||
1315 | * Parses a string and returns it in proto buffer format. This method differs from {@link #parse} |
||
1316 | * in that it always populates the raw_input field of the protocol buffer with numberToParse as |
||
1317 | * well as the country_code_source field. |
||
1318 | * |
||
1319 | * @param string $numberToParse number that we are attempting to parse. This can contain formatting |
||
1320 | * such as +, ( and -, as well as a phone number extension. It can also |
||
1321 | * be provided in RFC3966 format. |
||
1322 | * @param string $defaultRegion region that we are expecting the number to be from. This is only used |
||
1323 | * if the number being parsed is not written in international format. |
||
1324 | * The country calling code for the number in this case would be stored |
||
1325 | * as that of the default region supplied. |
||
1326 | * @param PhoneNumber $phoneNumber |
||
1327 | * @return PhoneNumber a phone number proto buffer filled with the parsed number |
||
1328 | */ |
||
1329 | 3 | public function parseAndKeepRawInput($numberToParse, $defaultRegion, PhoneNumber $phoneNumber = null) |
|
1330 | { |
||
1331 | 3 | if ($phoneNumber === null) { |
|
1332 | 3 | $phoneNumber = new PhoneNumber(); |
|
1333 | } |
||
1334 | 3 | $this->parseHelper($numberToParse, $defaultRegion, true, true, $phoneNumber); |
|
1335 | 3 | return $phoneNumber; |
|
1336 | } |
||
1337 | |||
1338 | /** |
||
1339 | * A helper function to set the values related to leading zeros in a PhoneNumber. |
||
1340 | * @param string $nationalNumber |
||
1341 | * @param PhoneNumber $phoneNumber |
||
1342 | */ |
||
1343 | 2737 | public static function setItalianLeadingZerosForPhoneNumber($nationalNumber, PhoneNumber $phoneNumber) |
|
1344 | { |
||
1345 | 2737 | if (strlen($nationalNumber) > 1 && substr($nationalNumber, 0, 1) == '0') { |
|
1346 | 49 | $phoneNumber->setItalianLeadingZero(true); |
|
1347 | 49 | $numberOfLeadingZeros = 1; |
|
1348 | // Note that if the national number is all "0"s, the last "0" is not counted as a leading |
||
1349 | // zero. |
||
1350 | 49 | while ($numberOfLeadingZeros < (strlen($nationalNumber) - 1) && |
|
1351 | 49 | substr($nationalNumber, $numberOfLeadingZeros, 1) == '0') { |
|
1352 | 5 | $numberOfLeadingZeros++; |
|
1353 | } |
||
1354 | |||
1355 | 49 | if ($numberOfLeadingZeros != 1) { |
|
1356 | 5 | $phoneNumber->setNumberOfLeadingZeros($numberOfLeadingZeros); |
|
1357 | } |
||
1358 | } |
||
1359 | 2737 | } |
|
1360 | |||
1361 | /** |
||
1362 | * Parses a string and fills up the phoneNumber. This method is the same as the public |
||
1363 | * parse() method, with the exception that it allows the default region to be null, for use by |
||
1364 | * isNumberMatch(). checkRegion should be set to false if it is permitted for the default region |
||
1365 | * to be null or unknown ("ZZ"). |
||
1366 | * @param string $numberToParse |
||
1367 | * @param string $defaultRegion |
||
1368 | * @param bool $keepRawInput |
||
1369 | * @param bool $checkRegion |
||
1370 | * @param PhoneNumber $phoneNumber |
||
1371 | * @throws NumberParseException |
||
1372 | */ |
||
1373 | 2742 | protected function parseHelper($numberToParse, $defaultRegion, $keepRawInput, $checkRegion, PhoneNumber $phoneNumber) |
|
1374 | { |
||
1375 | 2742 | if ($numberToParse === null) { |
|
1376 | 2 | throw new NumberParseException(NumberParseException::NOT_A_NUMBER, "The phone number supplied was null."); |
|
1377 | } |
||
1378 | |||
1379 | 2741 | $numberToParse = trim($numberToParse); |
|
1380 | |||
1381 | 2741 | if (mb_strlen($numberToParse) > static::MAX_INPUT_STRING_LENGTH) { |
|
1382 | 1 | throw new NumberParseException( |
|
1383 | 1 | NumberParseException::TOO_LONG, |
|
1384 | 1 | "The string supplied was too long to parse." |
|
1385 | ); |
||
1386 | } |
||
1387 | |||
1388 | 2740 | $nationalNumber = ''; |
|
1389 | 2740 | $this->buildNationalNumberForParsing($numberToParse, $nationalNumber); |
|
1390 | |||
1391 | 2740 | if (!static::isViablePhoneNumber($nationalNumber)) { |
|
1392 | 4 | throw new NumberParseException( |
|
1393 | 4 | NumberParseException::NOT_A_NUMBER, |
|
1394 | 4 | "The string supplied did not seem to be a phone number." |
|
1395 | ); |
||
1396 | } |
||
1397 | |||
1398 | // Check the region supplied is valid, or that the extracted number starts with some sort of + |
||
1399 | // sign so the number's region can be determined. |
||
1400 | 2739 | if ($checkRegion && !$this->checkRegionForParsing($nationalNumber, $defaultRegion)) { |
|
1401 | 5 | throw new NumberParseException( |
|
1402 | 5 | NumberParseException::INVALID_COUNTRY_CODE, |
|
1403 | 5 | "Missing or invalid default region." |
|
1404 | ); |
||
1405 | } |
||
1406 | |||
1407 | 2739 | if ($keepRawInput) { |
|
1408 | 3 | $phoneNumber->setRawInput($numberToParse); |
|
1409 | } |
||
1410 | // Attempt to parse extension first, since it doesn't require region-specific data and we want |
||
1411 | // to have the non-normalised number here. |
||
1412 | 2739 | $extension = $this->maybeStripExtension($nationalNumber); |
|
1413 | 2739 | if (mb_strlen($extension) > 0) { |
|
1414 | 4 | $phoneNumber->setExtension($extension); |
|
1415 | } |
||
1416 | |||
1417 | 2739 | $regionMetadata = $this->getMetadataForRegion($defaultRegion); |
|
1418 | // Check to see if the number is given in international format so we know whether this number is |
||
1419 | // from the default region or not. |
||
1420 | 2739 | $normalizedNationalNumber = ""; |
|
1421 | try { |
||
1422 | // TODO: This method should really just take in the string buffer that has already |
||
1423 | // been created, and just remove the prefix, rather than taking in a string and then |
||
1424 | // outputting a string buffer. |
||
1425 | 2739 | $countryCode = $this->maybeExtractCountryCode( |
|
1426 | $nationalNumber, |
||
1427 | $regionMetadata, |
||
1428 | $normalizedNationalNumber, |
||
1429 | $keepRawInput, |
||
1430 | $phoneNumber |
||
1431 | ); |
||
1432 | 2 | } catch (NumberParseException $e) { |
|
1433 | 2 | $matcher = new Matcher(static::$PLUS_CHARS_PATTERN, $nationalNumber); |
|
1434 | 2 | if ($e->getErrorType() == NumberParseException::INVALID_COUNTRY_CODE && $matcher->lookingAt()) { |
|
1435 | // Strip the plus-char, and try again. |
||
1436 | 2 | $countryCode = $this->maybeExtractCountryCode( |
|
1437 | 2 | substr($nationalNumber, $matcher->end()), |
|
1438 | $regionMetadata, |
||
1439 | $normalizedNationalNumber, |
||
1440 | $keepRawInput, |
||
1441 | $phoneNumber |
||
1442 | ); |
||
1443 | 2 | if ($countryCode == 0) { |
|
1444 | 1 | throw new NumberParseException( |
|
1445 | 1 | NumberParseException::INVALID_COUNTRY_CODE, |
|
1446 | 2 | "Could not interpret numbers after plus-sign." |
|
1447 | ); |
||
1448 | } |
||
1449 | } else { |
||
1450 | 1 | throw new NumberParseException($e->getErrorType(), $e->getMessage(), $e); |
|
1451 | } |
||
1452 | } |
||
1453 | 2739 | if ($countryCode !== 0) { |
|
1454 | 284 | $phoneNumberRegion = $this->getRegionCodeForCountryCode($countryCode); |
|
1455 | 284 | if ($phoneNumberRegion != $defaultRegion) { |
|
1456 | // Metadata cannot be null because the country calling code is valid. |
||
1457 | 284 | $regionMetadata = $this->getMetadataForRegionOrCallingCode($countryCode, $phoneNumberRegion); |
|
1458 | } |
||
1459 | } else { |
||
1460 | // If no extracted country calling code, use the region supplied instead. The national number |
||
1461 | // is just the normalized version of the number we were given to parse. |
||
1462 | |||
1463 | 2713 | $normalizedNationalNumber .= static::normalize($nationalNumber); |
|
1464 | 2713 | if ($defaultRegion !== null) { |
|
1465 | 2713 | $countryCode = $regionMetadata->getCountryCode(); |
|
1466 | 2713 | $phoneNumber->setCountryCode($countryCode); |
|
1467 | 3 | } elseif ($keepRawInput) { |
|
1468 | $phoneNumber->clearCountryCodeSource(); |
||
1469 | } |
||
1470 | } |
||
1471 | 2739 | if (mb_strlen($normalizedNationalNumber) < static::MIN_LENGTH_FOR_NSN) { |
|
1472 | 2 | throw new NumberParseException( |
|
1473 | 2 | NumberParseException::TOO_SHORT_NSN, |
|
1474 | 2 | "The string supplied is too short to be a phone number." |
|
1475 | ); |
||
1476 | } |
||
1477 | 2738 | if ($regionMetadata !== null) { |
|
1478 | 2738 | $carrierCode = ""; |
|
1479 | 2738 | $potentialNationalNumber = $normalizedNationalNumber; |
|
1480 | 2738 | $this->maybeStripNationalPrefixAndCarrierCode($potentialNationalNumber, $regionMetadata, $carrierCode); |
|
1481 | // We require that the NSN remaining after stripping the national prefix and carrier code be |
||
1482 | // long enough to be a possible length for the region. Otherwise, we don't do the stripping, |
||
1483 | // since the original number could be a valid short number. |
||
1484 | 2738 | if ($this->testNumberLength($potentialNationalNumber, $regionMetadata->getGeneralDesc()) !== ValidationResult::TOO_SHORT) { |
|
1485 | 2035 | $normalizedNationalNumber = $potentialNationalNumber; |
|
1486 | 2035 | if ($keepRawInput && mb_strlen($carrierCode) > 0) { |
|
1487 | 1 | $phoneNumber->setPreferredDomesticCarrierCode($carrierCode); |
|
1488 | } |
||
1489 | } |
||
1490 | } |
||
1491 | 2738 | $lengthOfNationalNumber = mb_strlen($normalizedNationalNumber); |
|
1492 | 2738 | if ($lengthOfNationalNumber < static::MIN_LENGTH_FOR_NSN) { |
|
1493 | throw new NumberParseException( |
||
1494 | NumberParseException::TOO_SHORT_NSN, |
||
1495 | "The string supplied is too short to be a phone number." |
||
1496 | ); |
||
1497 | } |
||
1498 | 2738 | if ($lengthOfNationalNumber > static::MAX_LENGTH_FOR_NSN) { |
|
1499 | 1 | throw new NumberParseException( |
|
1500 | 1 | NumberParseException::TOO_LONG, |
|
1501 | 1 | "The string supplied is too long to be a phone number." |
|
1502 | ); |
||
1503 | } |
||
1504 | 2737 | static::setItalianLeadingZerosForPhoneNumber($normalizedNationalNumber, $phoneNumber); |
|
1505 | |||
1506 | /* |
||
1507 | * We have to store the National Number as a string instead of a "long" as Google do |
||
1508 | * |
||
1509 | * Since PHP doesn't always support 64 bit INTs, this was a float, but that had issues |
||
1510 | * with long numbers. |
||
1511 | * |
||
1512 | * We have to remove the leading zeroes ourself though |
||
1513 | */ |
||
1514 | 2737 | if ((int)$normalizedNationalNumber == 0) { |
|
1515 | 3 | $normalizedNationalNumber = "0"; |
|
1516 | } else { |
||
1517 | 2735 | $normalizedNationalNumber = ltrim($normalizedNationalNumber, '0'); |
|
1518 | } |
||
1519 | |||
1520 | 2737 | $phoneNumber->setNationalNumber($normalizedNationalNumber); |
|
1521 | 2737 | } |
|
1522 | |||
1523 | /** |
||
1524 | * Converts numberToParse to a form that we can parse and write it to nationalNumber if it is |
||
1525 | * written in RFC3966; otherwise extract a possible number out of it and write to nationalNumber. |
||
1526 | * @param string $numberToParse |
||
1527 | * @param string $nationalNumber |
||
1528 | */ |
||
1529 | 2740 | protected function buildNationalNumberForParsing($numberToParse, &$nationalNumber) |
|
1573 | |||
1574 | /** |
||
1575 | * Attempts to extract a possible number from the string passed in. This currently strips all |
||
1576 | * leading characters that cannot be used to start a phone number. Characters that can be used to |
||
1577 | * start a phone number are defined in the VALID_START_CHAR_PATTERN. If none of these characters |
||
1578 | * are found in the number passed in, an empty string is returned. This function also attempts to |
||
1579 | * strip off any alternative extensions or endings if two or more are present, such as in the case |
||
1580 | * of: (530) 583-6985 x302/x2303. The second extension here makes this actually two phone numbers, |
||
1581 | * (530) 583-6985 x302 and (530) 583-6985 x2303. We remove the second extension so that the first |
||
1582 | * number is parsed correctly. |
||
1583 | * |
||
1584 | * @param int $number the string that might contain a phone number |
||
1585 | * @return string the number, stripped of any non-phone-number prefix (such as "Tel:") or an empty |
||
1586 | * string if no character used to start phone numbers (such as + or any digit) is |
||
1587 | * found in the number |
||
1588 | */ |
||
1589 | 2779 | public static function extractPossibleNumber($number) |
|
1616 | |||
1617 | /** |
||
1618 | * Checks to see that the region code used is valid, or if it is not valid, that the number to |
||
1619 | * parse starts with a + symbol so that we can attempt to infer the region from the number. |
||
1620 | * Returns false if it cannot use the region provided and the region cannot be inferred. |
||
1621 | * @param string $numberToParse |
||
1622 | * @param string $defaultRegion |
||
1623 | * @return bool |
||
1624 | */ |
||
1625 | 2739 | protected function checkRegionForParsing($numberToParse, $defaultRegion) |
|
1636 | |||
1637 | /** |
||
1638 | * Tries to extract a country calling code from a number. This method will return zero if no |
||
1639 | * country calling code is considered to be present. Country calling codes are extracted in the |
||
1640 | * following ways: |
||
1641 | * <ul> |
||
1642 | * <li> by stripping the international dialing prefix of the region the person is dialing from, |
||
1643 | * if this is present in the number, and looking at the next digits |
||
1644 | * <li> by stripping the '+' sign if present and then looking at the next digits |
||
1645 | * <li> by comparing the start of the number and the country calling code of the default region. |
||
1646 | * If the number is not considered possible for the numbering plan of the default region |
||
1647 | * initially, but starts with the country calling code of this region, validation will be |
||
1648 | * reattempted after stripping this country calling code. If this number is considered a |
||
1649 | * possible number, then the first digits will be considered the country calling code and |
||
1650 | * removed as such. |
||
1651 | * </ul> |
||
1652 | * It will throw a NumberParseException if the number starts with a '+' but the country calling |
||
1653 | * code supplied after this does not match that of any known region. |
||
1654 | * |
||
1655 | * @param string $number non-normalized telephone number that we wish to extract a country calling |
||
1656 | * code from - may begin with '+' |
||
1657 | * @param PhoneMetadata $defaultRegionMetadata metadata about the region this number may be from |
||
1658 | * @param string $nationalNumber a string buffer to store the national significant number in, in the case |
||
1659 | * that a country calling code was extracted. The number is appended to any existing contents. |
||
1660 | * If no country calling code was extracted, this will be left unchanged. |
||
1661 | * @param bool $keepRawInput true if the country_code_source and preferred_carrier_code fields of |
||
1662 | * phoneNumber should be populated. |
||
1663 | * @param PhoneNumber $phoneNumber the PhoneNumber object where the country_code and country_code_source need |
||
1664 | * to be populated. Note the country_code is always populated, whereas country_code_source is |
||
1665 | * only populated when keepCountryCodeSource is true. |
||
1666 | * @return int the country calling code extracted or 0 if none could be extracted |
||
1667 | * @throws NumberParseException |
||
1668 | */ |
||
1669 | 2740 | public function maybeExtractCountryCode( |
|
1748 | |||
1749 | /** |
||
1750 | * Strips any international prefix (such as +, 00, 011) present in the number provided, normalizes |
||
1751 | * the resulting number, and indicates if an international prefix was present. |
||
1752 | * |
||
1753 | * @param string $number the non-normalized telephone number that we wish to strip any international |
||
1754 | * dialing prefix from. |
||
1755 | * @param string $possibleIddPrefix string the international direct dialing prefix from the region we |
||
1756 | * think this number may be dialed in |
||
1757 | * @return int the corresponding CountryCodeSource if an international dialing prefix could be |
||
1758 | * removed from the number, otherwise CountryCodeSource.FROM_DEFAULT_COUNTRY if the number did |
||
1759 | * not seem to be in international format. |
||
1760 | */ |
||
1761 | 2741 | public function maybeStripInternationalPrefixAndNormalize(&$number, $possibleIddPrefix) |
|
1782 | |||
1783 | /** |
||
1784 | * Normalizes a string of characters representing a phone number. This performs |
||
1785 | * the following conversions: |
||
1786 | * Punctuation is stripped. |
||
1787 | * For ALPHA/VANITY numbers: |
||
1788 | * Letters are converted to their numeric representation on a telephone |
||
1789 | * keypad. The keypad used here is the one defined in ITU Recommendation |
||
1790 | * E.161. This is only done if there are 3 or more letters in the number, |
||
1791 | * to lessen the risk that such letters are typos. |
||
1792 | * For other numbers: |
||
1793 | * Wide-ascii digits are converted to normal ASCII (European) digits. |
||
1794 | * Arabic-Indic numerals are converted to European numerals. |
||
1795 | * Spurious alpha characters are stripped. |
||
1796 | * |
||
1797 | * @param string $number a string of characters representing a phone number. |
||
1798 | * @return string the normalized string version of the phone number. |
||
1799 | */ |
||
1800 | 2745 | public static function normalize(&$number) |
|
1813 | |||
1814 | /** |
||
1815 | * Normalizes a string of characters representing a phone number. This converts wide-ascii and |
||
1816 | * arabic-indic numerals to European numerals, and strips punctuation and alpha characters. |
||
1817 | * |
||
1818 | * @param $number string a string of characters representing a phone number |
||
1819 | * @return string the normalized string version of the phone number |
||
1820 | */ |
||
1821 | 2777 | public static function normalizeDigitsOnly($number) |
|
1825 | |||
1826 | /** |
||
1827 | * @param string $number |
||
1828 | * @param bool $keepNonDigits |
||
1829 | * @return string |
||
1830 | */ |
||
1831 | 2777 | public static function normalizeDigits($number, $keepNonDigits) |
|
1850 | |||
1851 | /** |
||
1852 | * Strips the IDD from the start of the number if present. Helper function used by |
||
1853 | * maybeStripInternationalPrefixAndNormalize. |
||
1854 | * @param string $iddPattern |
||
1855 | * @param string $number |
||
1856 | * @return bool |
||
1857 | */ |
||
1858 | 2722 | protected function parsePrefixAsIdd($iddPattern, &$number) |
|
1877 | |||
1878 | /** |
||
1879 | * Extracts country calling code from fullNumber, returns it and places the remaining number in nationalNumber. |
||
1880 | * It assumes that the leading plus sign or IDD has already been removed. |
||
1881 | * Returns 0 if fullNumber doesn't start with a valid country calling code, and leaves nationalNumber unmodified. |
||
1882 | * @param string $fullNumber |
||
1883 | * @param string $nationalNumber |
||
1884 | * @return int |
||
1885 | */ |
||
1886 | 281 | protected function extractCountryCode(&$fullNumber, &$nationalNumber) |
|
1902 | |||
1903 | /** |
||
1904 | * Strips any national prefix (such as 0, 1) present in the number provided. |
||
1905 | * |
||
1906 | * @param string $number the normalized telephone number that we wish to strip any national |
||
1907 | * dialing prefix from |
||
1908 | * @param PhoneMetadata $metadata the metadata for the region that we think this number is from |
||
1909 | * @param string $carrierCode a place to insert the carrier code if one is extracted |
||
1910 | * @return bool true if a national prefix or carrier code (or both) could be extracted. |
||
1911 | */ |
||
1912 | 2740 | public function maybeStripNationalPrefixAndCarrierCode(&$number, PhoneMetadata $metadata, &$carrierCode) |
|
1971 | |||
1972 | /** |
||
1973 | * Helper method to check a number against possible lengths for this number, and determine whether |
||
1974 | * it matches, or is too short or too long. Currently, if a number pattern suggests that numbers |
||
1975 | * of length 7 and 10 are possible, and a number in between these possible lengths is entered, |
||
1976 | * such as of length 8, this will return TOO_LONG. |
||
1977 | * @param string $number |
||
1978 | * @param PhoneNumberDesc $phoneNumberDesc |
||
1979 | * @return int ValidationResult |
||
1980 | */ |
||
1981 | 2742 | protected function testNumberLength($number, PhoneNumberDesc $phoneNumberDesc) |
|
2011 | |||
2012 | /** |
||
2013 | * Returns a list with the region codes that match the specific country calling code. For |
||
2014 | * non-geographical country calling codes, the region code 001 is returned. Also, in the case |
||
2015 | * of no region code being found, an empty list is returned. |
||
2016 | * @param int $countryCallingCode |
||
2017 | * @return array |
||
2018 | */ |
||
2019 | 10 | public function getRegionCodesForCountryCode($countryCallingCode) |
|
2024 | |||
2025 | /** |
||
2026 | * Returns the country calling code for a specific region. For example, this would be 1 for the |
||
2027 | * United States, and 64 for New Zealand. Assumes the region is already valid. |
||
2028 | * |
||
2029 | * @param string $regionCode the region that we want to get the country calling code for |
||
2030 | * @return int the country calling code for the region denoted by regionCode |
||
2031 | */ |
||
2032 | 2 | public function getCountryCodeForRegion($regionCode) |
|
2039 | |||
2040 | /** |
||
2041 | * Returns the country calling code for a specific region. For example, this would be 1 for the |
||
2042 | * United States, and 64 for New Zealand. Assumes the region is already valid. |
||
2043 | * |
||
2044 | * @param string $regionCode the region that we want to get the country calling code for |
||
2045 | * @return int the country calling code for the region denoted by regionCode |
||
2046 | * @throws \InvalidArgumentException if the region is invalid |
||
2047 | */ |
||
2048 | 1821 | protected function getCountryCodeForValidRegion($regionCode) |
|
2056 | |||
2057 | /** |
||
2058 | * Returns a number formatted in such a way that it can be dialed from a mobile phone in a |
||
2059 | * specific region. If the number cannot be reached from the region (e.g. some countries block |
||
2060 | * toll-free numbers from being called outside of the country), the method returns an empty |
||
2061 | * string. |
||
2062 | * |
||
2063 | * @param PhoneNumber $number the phone number to be formatted |
||
2064 | * @param string $regionCallingFrom the region where the call is being placed |
||
2065 | * @param boolean $withFormatting whether the number should be returned with formatting symbols, such as |
||
2066 | * spaces and dashes. |
||
2067 | * @return string the formatted phone number |
||
2068 | */ |
||
2069 | 1 | public function formatNumberForMobileDialing(PhoneNumber $number, $regionCallingFrom, $withFormatting) |
|
2155 | |||
2156 | /** |
||
2157 | * Formats a phone number in national format for dialing using the carrier as specified in the |
||
2158 | * {@code carrierCode}. The {@code carrierCode} will always be used regardless of whether the |
||
2159 | * phone number already has a preferred domestic carrier code stored. If {@code carrierCode} |
||
2160 | * contains an empty string, returns the number in national format without any carrier code. |
||
2161 | * |
||
2162 | * @param PhoneNumber $number the phone number to be formatted |
||
2163 | * @param string $carrierCode the carrier selection code to be used |
||
2164 | * @return string the formatted phone number in national format for dialing using the carrier as |
||
2165 | * specified in the {@code carrierCode} |
||
2166 | */ |
||
2167 | 2 | public function formatNationalNumberWithCarrierCode(PhoneNumber $number, $carrierCode) |
|
2196 | |||
2197 | /** |
||
2198 | * Formats a phone number in national format for dialing using the carrier as specified in the |
||
2199 | * preferredDomesticCarrierCode field of the PhoneNumber object passed in. If that is missing, |
||
2200 | * use the {@code fallbackCarrierCode} passed in instead. If there is no |
||
2201 | * {@code preferredDomesticCarrierCode}, and the {@code fallbackCarrierCode} contains an empty |
||
2202 | * string, return the number in national format without any carrier code. |
||
2203 | * |
||
2204 | * <p>Use {@link #formatNationalNumberWithCarrierCode} instead if the carrier code passed in |
||
2205 | * should take precedence over the number's {@code preferredDomesticCarrierCode} when formatting. |
||
2206 | * |
||
2207 | * @param PhoneNumber $number the phone number to be formatted |
||
2208 | * @param string $fallbackCarrierCode the carrier selection code to be used, if none is found in the |
||
2209 | * phone number itself |
||
2210 | * @return string the formatted phone number in national format for dialing using the number's |
||
2211 | * {@code preferredDomesticCarrierCode}, or the {@code fallbackCarrierCode} passed in if |
||
2212 | * none is found |
||
2213 | */ |
||
2214 | 1 | public function formatNationalNumberWithPreferredCarrierCode(PhoneNumber $number, $fallbackCarrierCode) |
|
2226 | |||
2227 | /** |
||
2228 | * Returns true if the number can be dialled from outside the region, or unknown. If the number |
||
2229 | * can only be dialled from within the region, returns false. Does not check the number is a valid |
||
2230 | * number. |
||
2231 | * TODO: Make this method public when we have enough metadata to make it worthwhile. |
||
2232 | * |
||
2233 | * @param PhoneNumber $number the phone-number for which we want to know whether it is diallable from outside the region |
||
2234 | * @return bool |
||
2235 | */ |
||
2236 | 32 | public function canBeInternationallyDialled(PhoneNumber $number) |
|
2247 | |||
2248 | /** |
||
2249 | * Normalizes a string of characters representing a phone number. This strips all characters which |
||
2250 | * are not diallable on a mobile phone keypad (including all non-ASCII digits). |
||
2251 | * |
||
2252 | * @param string $number a string of characters representing a phone number |
||
2253 | * @return string the normalized string version of the phone number |
||
2254 | */ |
||
2255 | 4 | public static function normalizeDiallableCharsOnly($number) |
|
2263 | |||
2264 | /** |
||
2265 | * Formats a phone number for out-of-country dialing purposes. |
||
2266 | * |
||
2267 | * Note that in this version, if the number was entered originally using alpha characters and |
||
2268 | * this version of the number is stored in raw_input, this representation of the number will be |
||
2269 | * used rather than the digit representation. Grouping information, as specified by characters |
||
2270 | * such as "-" and " ", will be retained. |
||
2271 | * |
||
2272 | * <p><b>Caveats:</b></p> |
||
2273 | * <ul> |
||
2274 | * <li> This will not produce good results if the country calling code is both present in the raw |
||
2275 | * input _and_ is the start of the national number. This is not a problem in the regions |
||
2276 | * which typically use alpha numbers. |
||
2277 | * <li> This will also not produce good results if the raw input has any grouping information |
||
2278 | * within the first three digits of the national number, and if the function needs to strip |
||
2279 | * preceding digits/words in the raw input before these digits. Normally people group the |
||
2280 | * first three digits together so this is not a huge problem - and will be fixed if it |
||
2281 | * proves to be so. |
||
2282 | * </ul> |
||
2283 | * |
||
2284 | * @param PhoneNumber $number the phone number that needs to be formatted |
||
2285 | * @param String $regionCallingFrom the region where the call is being placed |
||
2286 | * @return String the formatted phone number |
||
2287 | */ |
||
2288 | 1 | public function formatOutOfCountryKeepingAlphaChars(PhoneNumber $number, $regionCallingFrom) |
|
2381 | |||
2382 | /** |
||
2383 | * Formats a phone number for out-of-country dialing purposes. If no regionCallingFrom is |
||
2384 | * supplied, we format the number in its INTERNATIONAL format. If the country calling code is the |
||
2385 | * same as that of the region where the number is from, then NATIONAL formatting will be applied. |
||
2386 | * |
||
2387 | * <p>If the number itself has a country calling code of zero or an otherwise invalid country |
||
2388 | * calling code, then we return the number with no formatting applied. |
||
2389 | * |
||
2390 | * <p>Note this function takes care of the case for calling inside of NANPA and between Russia and |
||
2391 | * Kazakhstan (who share the same country calling code). In those cases, no international prefix |
||
2392 | * is used. For regions which have multiple international prefixes, the number in its |
||
2393 | * INTERNATIONAL format will be returned instead. |
||
2394 | * |
||
2395 | * @param PhoneNumber $number the phone number to be formatted |
||
2396 | * @param string $regionCallingFrom the region where the call is being placed |
||
2397 | * @return string the formatted phone number |
||
2398 | */ |
||
2399 | 8 | public function formatOutOfCountryCallingNumber(PhoneNumber $number, $regionCallingFrom) |
|
2466 | |||
2467 | /** |
||
2468 | * Checks if this is a region under the North American Numbering Plan Administration (NANPA). |
||
2469 | * @param string $regionCode |
||
2470 | * @return boolean true if regionCode is one of the regions under NANPA |
||
2471 | */ |
||
2472 | 5 | public function isNANPACountry($regionCode) |
|
2476 | |||
2477 | /** |
||
2478 | * Formats a phone number using the original phone number format that the number is parsed from. |
||
2479 | * The original format is embedded in the country_code_source field of the PhoneNumber object |
||
2480 | * passed in. If such information is missing, the number will be formatted into the NATIONAL |
||
2481 | * format by default. When the number contains a leading zero and this is unexpected for this |
||
2482 | * country, or we don't have a formatting pattern for the number, the method returns the raw input |
||
2483 | * when it is available. |
||
2484 | * |
||
2485 | * Note this method guarantees no digit will be inserted, removed or modified as a result of |
||
2486 | * formatting. |
||
2487 | * |
||
2488 | * @param PhoneNumber $number the phone number that needs to be formatted in its original number format |
||
2489 | * @param string $regionCallingFrom the region whose IDD needs to be prefixed if the original number |
||
2490 | * has one |
||
2491 | * @return string the formatted phone number in its original number format |
||
2492 | */ |
||
2493 | 1 | public function formatInOriginalFormat(PhoneNumber $number, $regionCallingFrom) |
|
2591 | |||
2592 | /** |
||
2593 | * Returns true if a number is from a region whose national significant number couldn't contain a |
||
2594 | * leading zero, but has the italian_leading_zero field set to true. |
||
2595 | * @param PhoneNumber $number |
||
2596 | * @return bool |
||
2597 | */ |
||
2598 | 1 | protected function hasUnexpectedItalianLeadingZero(PhoneNumber $number) |
|
2602 | |||
2603 | /** |
||
2604 | * Checks whether the country calling code is from a region whose national significant number |
||
2605 | * could contain a leading zero. An example of such a region is Italy. Returns false if no |
||
2606 | * metadata for the country is found. |
||
2607 | * @param int $countryCallingCode |
||
2608 | * @return bool |
||
2609 | */ |
||
2610 | 2 | public function isLeadingZeroPossible($countryCallingCode) |
|
2621 | |||
2622 | /** |
||
2623 | * @param PhoneNumber $number |
||
2624 | * @return bool |
||
2625 | */ |
||
2626 | 1 | protected function hasFormattingPatternForNumber(PhoneNumber $number) |
|
2638 | |||
2639 | /** |
||
2640 | * Returns the national dialling prefix for a specific region. For example, this would be 1 for |
||
2641 | * the United States, and 0 for New Zealand. Set stripNonDigits to true to strip symbols like "~" |
||
2642 | * (which indicates a wait for a dialling tone) from the prefix returned. If no national prefix is |
||
2643 | * present, we return null. |
||
2644 | * |
||
2645 | * <p>Warning: Do not use this method for do-your-own formatting - for some regions, the |
||
2646 | * national dialling prefix is used only for certain types of numbers. Use the library's |
||
2647 | * formatting functions to prefix the national prefix when required. |
||
2648 | * |
||
2649 | * @param string $regionCode the region that we want to get the dialling prefix for |
||
2650 | * @param boolean $stripNonDigits true to strip non-digits from the national dialling prefix |
||
2651 | * @return string the dialling prefix for the region denoted by regionCode |
||
2652 | */ |
||
2653 | 3 | public function getNddPrefixForRegion($regionCode, $stripNonDigits) |
|
2671 | |||
2672 | /** |
||
2673 | * Check if rawInput, which is assumed to be in the national format, has a national prefix. The |
||
2674 | * national prefix is assumed to be in digits-only form. |
||
2675 | * @param string $rawInput |
||
2676 | * @param string $nationalPrefix |
||
2677 | * @param string $regionCode |
||
2678 | * @return bool |
||
2679 | */ |
||
2680 | 1 | protected function rawInputContainsNationalPrefix($rawInput, $nationalPrefix, $regionCode) |
|
2698 | |||
2699 | /** |
||
2700 | * Tests whether a phone number matches a valid pattern. Note this doesn't verify the number |
||
2701 | * is actually in use, which is impossible to tell by just looking at a number itself. |
||
2702 | * |
||
2703 | * @param PhoneNumber $number the phone number that we want to validate |
||
2704 | * @return boolean that indicates whether the number is of a valid pattern |
||
2705 | */ |
||
2706 | 1841 | public function isValidNumber(PhoneNumber $number) |
|
2711 | |||
2712 | /** |
||
2713 | * Tests whether a phone number is valid for a certain region. Note this doesn't verify the number |
||
2714 | * is actually in use, which is impossible to tell by just looking at a number itself. If the |
||
2715 | * country calling code is not the same as the country calling code for the region, this |
||
2716 | * immediately exits with false. After this, the specific number pattern rules for the region are |
||
2717 | * examined. This is useful for determining for example whether a particular number is valid for |
||
2718 | * Canada, rather than just a valid NANPA number. |
||
2719 | * Warning: In most cases, you want to use {@link #isValidNumber} instead. For example, this |
||
2720 | * method will mark numbers from British Crown dependencies such as the Isle of Man as invalid for |
||
2721 | * the region "GB" (United Kingdom), since it has its own region code, "IM", which may be |
||
2722 | * undesirable. |
||
2723 | * |
||
2724 | * @param PhoneNumber $number the phone number that we want to validate |
||
2725 | * @param string $regionCode the region that we want to validate the phone number for |
||
2726 | * @return boolean that indicates whether the number is of a valid pattern |
||
2727 | */ |
||
2728 | 1847 | public function isValidNumberForRegion(PhoneNumber $number, $regionCode) |
|
2744 | |||
2745 | /** |
||
2746 | * Parses a string and returns it as a phone number in proto buffer format. The method is quite |
||
2747 | * lenient and looks for a number in the input text (raw input) and does not check whether the |
||
2748 | * string is definitely only a phone number. To do this, it ignores punctuation and white-space, |
||
2749 | * as well as any text before the number (e.g. a leading “Tel: ”) and trims the non-number bits. |
||
2750 | * It will accept a number in any format (E164, national, international etc), assuming it can |
||
2751 | * interpreted with the defaultRegion supplied. It also attempts to convert any alpha characters |
||
2752 | * into digits if it thinks this is a vanity number of the type "1800 MICROSOFT". |
||
2753 | * |
||
2754 | * <p> This method will throw a {@link NumberParseException} if the number is not considered to |
||
2755 | * be a possible number. Note that validation of whether the number is actually a valid number |
||
2756 | * for a particular region is not performed. This can be done separately with {@link #isValidnumber}. |
||
2757 | * |
||
2758 | * @param string $numberToParse number that we are attempting to parse. This can contain formatting |
||
2759 | * such as +, ( and -, as well as a phone number extension. |
||
2760 | * @param string $defaultRegion region that we are expecting the number to be from. This is only used |
||
2761 | * if the number being parsed is not written in international format. |
||
2762 | * The country_code for the number in this case would be stored as that |
||
2763 | * of the default region supplied. If the number is guaranteed to |
||
2764 | * start with a '+' followed by the country calling code, then |
||
2765 | * "ZZ" or null can be supplied. |
||
2766 | * @param PhoneNumber|null $phoneNumber |
||
2767 | * @param bool $keepRawInput |
||
2768 | * @return PhoneNumber a phone number proto buffer filled with the parsed number |
||
2769 | * @throws NumberParseException if the string is not considered to be a viable phone number (e.g. |
||
2770 | * too few or too many digits) or if no default region was supplied |
||
2771 | * and the number is not in international format (does not start |
||
2772 | * with +) |
||
2773 | */ |
||
2774 | 2741 | public function parse($numberToParse, $defaultRegion, PhoneNumber $phoneNumber = null, $keepRawInput = false) |
|
2782 | |||
2783 | /** |
||
2784 | * Formats a phone number in the specified format using client-defined formatting rules. Note that |
||
2785 | * if the phone number has a country calling code of zero or an otherwise invalid country calling |
||
2786 | * code, we cannot work out things like whether there should be a national prefix applied, or how |
||
2787 | * to format extensions, so we return the national significant number with no formatting applied. |
||
2788 | * |
||
2789 | * @param PhoneNumber $number the phone number to be formatted |
||
2790 | * @param int $numberFormat the format the phone number should be formatted into |
||
2791 | * @param array $userDefinedFormats formatting rules specified by clients |
||
2792 | * @return String the formatted phone number |
||
2793 | */ |
||
2794 | 2 | public function formatByPattern(PhoneNumber $number, $numberFormat, array $userDefinedFormats) |
|
2841 | |||
2842 | /** |
||
2843 | * Gets a valid number for the specified region. |
||
2844 | * |
||
2845 | * @param string regionCode the region for which an example number is needed |
||
2846 | * @return PhoneNumber a valid fixed-line number for the specified region. Returns null when the metadata |
||
2847 | * does not contain such information, or the region 001 is passed in. For 001 (representing |
||
2848 | * non-geographical numbers), call {@link #getExampleNumberForNonGeoEntity} instead. |
||
2849 | */ |
||
2850 | 247 | public function getExampleNumber($regionCode) |
|
2854 | |||
2855 | /** |
||
2856 | * Gets an invalid number for the specified region. This is useful for unit-testing purposes, |
||
2857 | * where you want to test what will happen with an invalid number. Note that the number that is |
||
2858 | * returned will always be able to be parsed and will have the correct country code. It may also |
||
2859 | * be a valid *short* number/code for this region. Validity checking such numbers is handled with |
||
2860 | * {@link ShortNumberInfo}. |
||
2861 | * |
||
2862 | * @param string $regionCode The region for which an example number is needed |
||
2863 | * @return PhoneNumber|null An invalid number for the specified region. Returns null when an unsupported region |
||
2864 | * or the region 001 (Earth) is passed in. |
||
2865 | */ |
||
2866 | 244 | public function getInvalidExampleNumber($regionCode) |
|
2912 | |||
2913 | /** |
||
2914 | * Gets a valid number for the specified region and number type. |
||
2915 | * |
||
2916 | * @param string|int $regionCodeOrType the region for which an example number is needed |
||
2917 | * @param int $type the PhoneNumberType of number that is needed |
||
2918 | * @return PhoneNumber a valid number for the specified region and type. Returns null when the metadata |
||
2919 | * does not contain such information or if an invalid region or region 001 was entered. |
||
2920 | * For 001 (representing non-geographical numbers), call |
||
2921 | * {@link #getExampleNumberForNonGeoEntity} instead. |
||
2922 | * |
||
2923 | * If $regionCodeOrType is the only parameter supplied, then a valid number for the specified number type |
||
2924 | * will be returned that may belong to any country. |
||
2925 | */ |
||
2926 | 3175 | public function getExampleNumberForType($regionCodeOrType, $type = null) |
|
2927 | { |
||
2928 | 3175 | if ($regionCodeOrType !== null && $type === null) { |
|
2929 | /* |
||
2930 | * Gets a valid number for the specified number type (it may belong to any country). |
||
2931 | */ |
||
2932 | 11 | foreach ($this->getSupportedRegions() as $regionCode) { |
|
2933 | 11 | $exampleNumber = $this->getExampleNumberForType($regionCode, $regionCodeOrType); |
|
2934 | 11 | if ($exampleNumber !== null) { |
|
2935 | 11 | return $exampleNumber; |
|
2936 | } |
||
2937 | } |
||
2938 | |||
2939 | // If there wasn't an example number for a region, try the non-geographical entities |
||
2940 | foreach ($this->getSupportedGlobalNetworkCallingCodes() as $countryCallingCode) { |
||
2941 | $desc = $this->getNumberDescByType($this->getMetadataForNonGeographicalRegion($countryCallingCode), $regionCodeOrType); |
||
2942 | try { |
||
2943 | if ($desc->getExampleNumber() != '') { |
||
2944 | return $this->parse("+" . $countryCallingCode . $desc->getExampleNumber(), static::UNKNOWN_REGION); |
||
2945 | } |
||
2946 | } catch (NumberParseException $e) { |
||
2947 | } |
||
2948 | } |
||
2949 | // There are no example numbers of this type for any country in the library. |
||
2950 | return null; |
||
2951 | } |
||
2952 | |||
2953 | // Check the region code is valid. |
||
2954 | 3175 | if (!$this->isValidRegionCode($regionCodeOrType)) { |
|
2955 | 1 | return null; |
|
2956 | } |
||
2957 | 3175 | $desc = $this->getNumberDescByType($this->getMetadataForRegion($regionCodeOrType), $type); |
|
2958 | try { |
||
2959 | 3175 | if ($desc->hasExampleNumber()) { |
|
2960 | 3175 | return $this->parse($desc->getExampleNumber(), $regionCodeOrType); |
|
2961 | } |
||
2962 | } catch (NumberParseException $e) { |
||
2963 | } |
||
2964 | 1376 | return null; |
|
2965 | } |
||
2966 | |||
2967 | /** |
||
2968 | * @param PhoneMetadata $metadata |
||
2969 | * @param int $type PhoneNumberType |
||
2970 | * @return PhoneNumberDesc |
||
2971 | */ |
||
2972 | 3419 | protected function getNumberDescByType(PhoneMetadata $metadata, $type) |
|
2973 | { |
||
2974 | switch ($type) { |
||
2975 | 3419 | case PhoneNumberType::PREMIUM_RATE: |
|
2976 | 245 | return $metadata->getPremiumRate(); |
|
2977 | 3174 | case PhoneNumberType::TOLL_FREE: |
|
2978 | 245 | return $metadata->getTollFree(); |
|
2979 | 2929 | case PhoneNumberType::MOBILE: |
|
2980 | 246 | return $metadata->getMobile(); |
|
2981 | 2684 | case PhoneNumberType::FIXED_LINE: |
|
2982 | 1948 | case PhoneNumberType::FIXED_LINE_OR_MOBILE: |
|
2983 | 1214 | return $metadata->getFixedLine(); |
|
2984 | 1470 | case PhoneNumberType::SHARED_COST: |
|
2985 | 245 | return $metadata->getSharedCost(); |
|
2986 | 1225 | case PhoneNumberType::VOIP: |
|
2987 | 245 | return $metadata->getVoip(); |
|
2988 | 980 | case PhoneNumberType::PERSONAL_NUMBER: |
|
2989 | 245 | return $metadata->getPersonalNumber(); |
|
2990 | 735 | case PhoneNumberType::PAGER: |
|
2991 | 245 | return $metadata->getPager(); |
|
2992 | 490 | case PhoneNumberType::UAN: |
|
2993 | 245 | return $metadata->getUan(); |
|
2994 | 245 | case PhoneNumberType::VOICEMAIL: |
|
2995 | 245 | return $metadata->getVoicemail(); |
|
2996 | default: |
||
2997 | return $metadata->getGeneralDesc(); |
||
2998 | } |
||
2999 | } |
||
3000 | |||
3001 | /** |
||
3002 | * Gets a valid number for the specified country calling code for a non-geographical entity. |
||
3003 | * |
||
3004 | * @param int $countryCallingCode the country calling code for a non-geographical entity |
||
3005 | * @return PhoneNumber a valid number for the non-geographical entity. Returns null when the metadata |
||
3006 | * does not contain such information, or the country calling code passed in does not belong |
||
3007 | * to a non-geographical entity. |
||
3008 | */ |
||
3009 | 10 | public function getExampleNumberForNonGeoEntity($countryCallingCode) |
|
3010 | { |
||
3011 | 10 | $metadata = $this->getMetadataForNonGeographicalRegion($countryCallingCode); |
|
3012 | 10 | if ($metadata !== null) { |
|
3013 | // For geographical entities, fixed-line data is always present. However, for non-geographical |
||
3014 | // entities, this is not the case, so we have to go through different types to find the |
||
3015 | // example number. We don't check fixed-line or personal number since they aren't used by |
||
3016 | // non-geographical entities (if this changes, a unit-test will catch this.) |
||
3017 | /** @var PhoneNumberDesc[] $list */ |
||
3018 | $list = array( |
||
3019 | 10 | $metadata->getMobile(), |
|
3020 | 10 | $metadata->getTollFree(), |
|
3021 | 10 | $metadata->getSharedCost(), |
|
3022 | 10 | $metadata->getVoip(), |
|
3023 | 10 | $metadata->getVoicemail(), |
|
3024 | 10 | $metadata->getUan(), |
|
3025 | 10 | $metadata->getPremiumRate(), |
|
3026 | ); |
||
3027 | 10 | foreach ($list as $desc) { |
|
3028 | try { |
||
3029 | 10 | if ($desc !== null && $desc->hasExampleNumber()) { |
|
3030 | 10 | return $this->parse('+' . $countryCallingCode . $desc->getExampleNumber(), self::UNKNOWN_REGION); |
|
3031 | } |
||
3032 | 7 | } catch (NumberParseException $e) { |
|
3033 | } |
||
3034 | } |
||
3035 | } |
||
3036 | return null; |
||
3037 | } |
||
3038 | |||
3039 | |||
3040 | /** |
||
3041 | * Takes two phone numbers and compares them for equality. |
||
3042 | * |
||
3043 | * <p>Returns EXACT_MATCH if the country_code, NSN, presence of a leading zero |
||
3044 | * for Italian numbers and any extension present are the same. Returns NSN_MATCH |
||
3045 | * if either or both has no region specified, and the NSNs and extensions are |
||
3046 | * the same. Returns SHORT_NSN_MATCH if either or both has no region specified, |
||
3047 | * or the region specified is the same, and one NSN could be a shorter version |
||
3048 | * of the other number. This includes the case where one has an extension |
||
3049 | * specified, and the other does not. Returns NO_MATCH otherwise. For example, |
||
3050 | * the numbers +1 345 657 1234 and 657 1234 are a SHORT_NSN_MATCH. The numbers |
||
3051 | * +1 345 657 1234 and 345 657 are a NO_MATCH. |
||
3052 | * |
||
3053 | * @param $firstNumberIn PhoneNumber|string First number to compare. If it is a |
||
3054 | * string it can contain formatting, and can have country calling code specified |
||
3055 | * with + at the start. |
||
3056 | * @param $secondNumberIn PhoneNumber|string Second number to compare. If it is a |
||
3057 | * string it can contain formatting, and can have country calling code specified |
||
3058 | * with + at the start. |
||
3059 | * @throws \InvalidArgumentException |
||
3060 | * @return int {MatchType} NOT_A_NUMBER, NO_MATCH, |
||
3061 | */ |
||
3062 | 4 | public function isNumberMatch($firstNumberIn, $secondNumberIn) |
|
3063 | { |
||
3064 | 4 | if (is_string($firstNumberIn) && is_string($secondNumberIn)) { |
|
3065 | try { |
||
3066 | 4 | $firstNumberAsProto = $this->parse($firstNumberIn, static::UNKNOWN_REGION); |
|
3067 | 4 | return $this->isNumberMatch($firstNumberAsProto, $secondNumberIn); |
|
3068 | 3 | } catch (NumberParseException $e) { |
|
3069 | 3 | if ($e->getErrorType() === NumberParseException::INVALID_COUNTRY_CODE) { |
|
3070 | try { |
||
3071 | 3 | $secondNumberAsProto = $this->parse($secondNumberIn, static::UNKNOWN_REGION); |
|
3072 | 2 | return $this->isNumberMatch($secondNumberAsProto, $firstNumberIn); |
|
3073 | 3 | } catch (NumberParseException $e2) { |
|
3074 | 3 | if ($e2->getErrorType() === NumberParseException::INVALID_COUNTRY_CODE) { |
|
3075 | try { |
||
3076 | 3 | $firstNumberProto = new PhoneNumber(); |
|
3077 | 3 | $secondNumberProto = new PhoneNumber(); |
|
3078 | 3 | $this->parseHelper($firstNumberIn, null, false, false, $firstNumberProto); |
|
3079 | 3 | $this->parseHelper($secondNumberIn, null, false, false, $secondNumberProto); |
|
3080 | 3 | return $this->isNumberMatch($firstNumberProto, $secondNumberProto); |
|
3081 | } catch (NumberParseException $e3) { |
||
3082 | // Fall through and return MatchType::NOT_A_NUMBER |
||
3083 | } |
||
3084 | } |
||
3085 | } |
||
3086 | } |
||
3087 | } |
||
3088 | 1 | return MatchType::NOT_A_NUMBER; |
|
3089 | } |
||
3090 | 4 | if ($firstNumberIn instanceof PhoneNumber && is_string($secondNumberIn)) { |
|
3091 | // First see if the second number has an implicit country calling code, by attempting to parse |
||
3092 | // it. |
||
3093 | try { |
||
3094 | 4 | $secondNumberAsProto = $this->parse($secondNumberIn, static::UNKNOWN_REGION); |
|
3095 | 2 | return $this->isNumberMatch($firstNumberIn, $secondNumberAsProto); |
|
3096 | 3 | } catch (NumberParseException $e) { |
|
3097 | 3 | if ($e->getErrorType() === NumberParseException::INVALID_COUNTRY_CODE) { |
|
3098 | // The second number has no country calling code. EXACT_MATCH is no longer possible. |
||
3099 | // We parse it as if the region was the same as that for the first number, and if |
||
3100 | // EXACT_MATCH is returned, we replace this with NSN_MATCH. |
||
3101 | 3 | $firstNumberRegion = $this->getRegionCodeForCountryCode($firstNumberIn->getCountryCode()); |
|
3102 | try { |
||
3103 | 3 | if ($firstNumberRegion != static::UNKNOWN_REGION) { |
|
3104 | 3 | $secondNumberWithFirstNumberRegion = $this->parse($secondNumberIn, $firstNumberRegion); |
|
3105 | 3 | $match = $this->isNumberMatch($firstNumberIn, $secondNumberWithFirstNumberRegion); |
|
3106 | 3 | if ($match === MatchType::EXACT_MATCH) { |
|
3107 | 1 | return MatchType::NSN_MATCH; |
|
3108 | } |
||
3109 | 2 | return $match; |
|
3110 | } else { |
||
3111 | // If the first number didn't have a valid country calling code, then we parse the |
||
3112 | // second number without one as well. |
||
3113 | 1 | $secondNumberProto = new PhoneNumber(); |
|
3114 | 1 | $this->parseHelper($secondNumberIn, null, false, false, $secondNumberProto); |
|
3115 | 1 | return $this->isNumberMatch($firstNumberIn, $secondNumberProto); |
|
3116 | } |
||
3117 | } catch (NumberParseException $e2) { |
||
3118 | // Fall-through to return NOT_A_NUMBER. |
||
3119 | } |
||
3120 | } |
||
3121 | } |
||
3122 | } |
||
3123 | 4 | if ($firstNumberIn instanceof PhoneNumber && $secondNumberIn instanceof PhoneNumber) { |
|
3124 | // Make copies of the phone number so that the numbers passed in are not edited. |
||
3125 | 4 | $firstNumber = new PhoneNumber(); |
|
3126 | 4 | $firstNumber->mergeFrom($firstNumberIn); |
|
3127 | 4 | $secondNumber = new PhoneNumber(); |
|
3128 | 4 | $secondNumber->mergeFrom($secondNumberIn); |
|
3129 | |||
3130 | // First clear raw_input, country_code_source and preferred_domestic_carrier_code fields and any |
||
3131 | // empty-string extensions so that we can use the proto-buffer equality method. |
||
3132 | 4 | $firstNumber->clearRawInput(); |
|
3133 | 4 | $firstNumber->clearCountryCodeSource(); |
|
3134 | 4 | $firstNumber->clearPreferredDomesticCarrierCode(); |
|
3135 | 4 | $secondNumber->clearRawInput(); |
|
3136 | 4 | $secondNumber->clearCountryCodeSource(); |
|
3137 | 4 | $secondNumber->clearPreferredDomesticCarrierCode(); |
|
3138 | 4 | if ($firstNumber->hasExtension() && mb_strlen($firstNumber->getExtension()) === 0) { |
|
3139 | 1 | $firstNumber->clearExtension(); |
|
3140 | } |
||
3141 | |||
3142 | 4 | if ($secondNumber->hasExtension() && mb_strlen($secondNumber->getExtension()) === 0) { |
|
3143 | 1 | $secondNumber->clearExtension(); |
|
3144 | } |
||
3145 | |||
3146 | // Early exit if both had extensions and these are different. |
||
3147 | 4 | if ($firstNumber->hasExtension() && $secondNumber->hasExtension() && |
|
3148 | 4 | $firstNumber->getExtension() != $secondNumber->getExtension() |
|
3149 | ) { |
||
3150 | 1 | return MatchType::NO_MATCH; |
|
3151 | } |
||
3152 | |||
3153 | 4 | $firstNumberCountryCode = $firstNumber->getCountryCode(); |
|
3154 | 4 | $secondNumberCountryCode = $secondNumber->getCountryCode(); |
|
3155 | // Both had country_code specified. |
||
3156 | 4 | if ($firstNumberCountryCode != 0 && $secondNumberCountryCode != 0) { |
|
3157 | 4 | if ($firstNumber->equals($secondNumber)) { |
|
3158 | 2 | return MatchType::EXACT_MATCH; |
|
3159 | 2 | } elseif ($firstNumberCountryCode == $secondNumberCountryCode && |
|
3160 | 2 | $this->isNationalNumberSuffixOfTheOther($firstNumber, $secondNumber) |
|
3161 | ) { |
||
3162 | // A SHORT_NSN_MATCH occurs if there is a difference because of the presence or absence of |
||
3163 | // an 'Italian leading zero', the presence or absence of an extension, or one NSN being a |
||
3164 | // shorter variant of the other. |
||
3165 | 1 | return MatchType::SHORT_NSN_MATCH; |
|
3166 | } |
||
3167 | // This is not a match. |
||
3168 | 1 | return MatchType::NO_MATCH; |
|
3169 | } |
||
3170 | // Checks cases where one or both country_code fields were not specified. To make equality |
||
3171 | // checks easier, we first set the country_code fields to be equal. |
||
3172 | 3 | $firstNumber->setCountryCode($secondNumberCountryCode); |
|
3173 | // If all else was the same, then this is an NSN_MATCH. |
||
3174 | 3 | if ($firstNumber->equals($secondNumber)) { |
|
3175 | 1 | return MatchType::NSN_MATCH; |
|
3176 | } |
||
3177 | 3 | if ($this->isNationalNumberSuffixOfTheOther($firstNumber, $secondNumber)) { |
|
3178 | 2 | return MatchType::SHORT_NSN_MATCH; |
|
3179 | } |
||
3180 | 1 | return MatchType::NO_MATCH; |
|
3181 | } |
||
3182 | return MatchType::NOT_A_NUMBER; |
||
3183 | } |
||
3184 | |||
3185 | /** |
||
3186 | * Returns true when one national number is the suffix of the other or both are the same. |
||
3187 | * @param PhoneNumber $firstNumber |
||
3188 | * @param PhoneNumber $secondNumber |
||
3189 | * @return bool |
||
3190 | */ |
||
3191 | 3 | protected function isNationalNumberSuffixOfTheOther(PhoneNumber $firstNumber, PhoneNumber $secondNumber) |
|
3198 | |||
3199 | 3 | protected function stringEndsWithString($hayStack, $needle) |
|
3205 | |||
3206 | /** |
||
3207 | * Returns true if the supplied region supports mobile number portability. Returns false for |
||
3208 | * invalid, unknown or regions that don't support mobile number portability. |
||
3209 | * |
||
3210 | * @param string $regionCode the region for which we want to know whether it supports mobile number |
||
3211 | * portability or not. |
||
3212 | * @return bool |
||
3213 | */ |
||
3214 | 3 | public function isMobileNumberPortableRegion($regionCode) |
|
3223 | |||
3224 | /** |
||
3225 | * Check whether a phone number is a possible number given a number in the form of a string, and |
||
3226 | * the region where the number could be dialed from. It provides a more lenient check than |
||
3227 | * {@link #isValidNumber}. See {@link #isPossibleNumber(PhoneNumber)} for details. |
||
3228 | * |
||
3229 | * <p>This method first parses the number, then invokes {@link #isPossibleNumber(PhoneNumber)} |
||
3230 | * with the resultant PhoneNumber object. |
||
3231 | * |
||
3232 | * @param PhoneNumber|string $number the number that needs to be checked, in the form of a string |
||
3233 | * @param string $regionDialingFrom the region that we are expecting the number to be dialed from. |
||
3234 | * Note this is different from the region where the number belongs. For example, the number |
||
3235 | * +1 650 253 0000 is a number that belongs to US. When written in this form, it can be |
||
3236 | * dialed from any region. When it is written as 00 1 650 253 0000, it can be dialed from any |
||
3237 | * region which uses an international dialling prefix of 00. When it is written as |
||
3238 | * 650 253 0000, it can only be dialed from within the US, and when written as 253 0000, it |
||
3239 | * can only be dialed from within a smaller area in the US (Mountain View, CA, to be more |
||
3240 | * specific). |
||
3241 | * @return boolean true if the number is possible |
||
3242 | */ |
||
3243 | 2 | public function isPossibleNumber($number, $regionDialingFrom = null) |
|
3257 | |||
3258 | |||
3259 | /** |
||
3260 | * Check whether a phone number is a possible number. It provides a more lenient check than |
||
3261 | * {@link #isValidNumber} in the following sense: |
||
3262 | * <ol> |
||
3263 | * <li> It only checks the length of phone numbers. In particular, it doesn't check starting |
||
3264 | * digits of the number. |
||
3265 | * <li> It doesn't attempt to figure out the type of the number, but uses general rules which |
||
3266 | * applies to all types of phone numbers in a region. Therefore, it is much faster than |
||
3267 | * isValidNumber. |
||
3268 | * <li> For fixed line numbers, many regions have the concept of area code, which together with |
||
3269 | * subscriber number constitute the national significant number. It is sometimes okay to dial |
||
3270 | * the subscriber number only when dialing in the same area. This function will return |
||
3271 | * true if the subscriber-number-only version is passed in. On the other hand, because |
||
3272 | * isValidNumber validates using information on both starting digits (for fixed line |
||
3273 | * numbers, that would most likely be area codes) and length (obviously includes the |
||
3274 | * length of area codes for fixed line numbers), it will return false for the |
||
3275 | * subscriber-number-only version. |
||
3276 | * </ol> |
||
3277 | * @param PhoneNumber $number the number that needs to be checked |
||
3278 | * @return int a ValidationResult object which indicates whether the number is possible |
||
3279 | */ |
||
3280 | 4 | public function isPossibleNumberWithReason(PhoneNumber $number) |
|
3298 | |||
3299 | /** |
||
3300 | * Attempts to extract a valid number from a phone number that is too long to be valid, and resets |
||
3301 | * the PhoneNumber object passed in to that valid version. If no valid number could be extracted, |
||
3302 | * the PhoneNumber object passed in will not be modified. |
||
3303 | * @param PhoneNumber $number a PhoneNumber object which contains a number that is too long to be valid. |
||
3304 | * @return boolean true if a valid phone number can be successfully extracted. |
||
3305 | */ |
||
3306 | 1 | public function truncateTooLongNumber(PhoneNumber $number) |
|
3324 | } |
||
3325 |
If an expression can have both
false
, andnull
as possible values. It is generally a good practice to always use strict comparison to clearly distinguish between those two values.