123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198 |
- //
- // NBPhoneNumberUtil+ShortNumber.h
- // libPhoneNumberiOS
- //
- // Created by Paween Itthipalkul on 11/29/17.
- // Copyright © 2017 Google LLC. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- #import "NBPhoneNumberUtil.h"
- @class NBPhoneNumber;
- NS_ASSUME_NONNULL_BEGIN
- #if SHORT_NUMBER_SUPPORT
- typedef NS_ENUM(NSUInteger, NBEShortNumberCost) {
- NBEShortNumberCostUnknown = 0,
- NBEShortNumberCostTollFree = 1,
- NBEShortNumberCostStandardRate = 2,
- NBEShortNumberCostPremiumRate = 3,
- };
- @interface NBPhoneNumberUtil (ShortNumber)
- // Short number related methods
- /**
- * Check whether a short number is a possible number when dialed from the given region. This
- * provides a more lenient check than {@link #isValidShortNumberForRegion}.
- *
- * @param phoneNumber the short number to check
- * @param regionDialingFrom the region from which the number is dialed
- * @return whether the number is a possible short number
- */
- - (BOOL)isPossibleShortNumber:(NBPhoneNumber *)phoneNumber forRegion:(NSString *)regionDialingFrom;
- /**
- * Check whether a short number is a possible number. If a country calling code is shared by
- * multiple regions, this returns true if it's possible in any of them. This provides a more
- * lenient check than {@link #isValidShortNumber}. See {@link
- * #isPossibleShortNumberForRegion(PhoneNumber, String)} for details.
- *
- * @param phoneNumber the short number to check
- * @return whether the number is a possible short number
- */
- - (BOOL)isPossibleShortNumber:(NBPhoneNumber *)phoneNumber;
- /**
- * Tests whether a short number matches a valid pattern in a region. Note that this doesn't verify
- * the number is actually in use, which is impossible to tell by just looking at the number
- * itself.
- *
- * @param phoneNumber the short number for which we want to test the validity
- * @param regionDialingFrom the region from which the number is dialed
- * @return whether the short number matches a valid pattern
- */
- - (BOOL)isValidShortNumber:(NBPhoneNumber *)phoneNumber forRegion:(NSString *)regionDialingFrom;
- /**
- * Tests whether a short number matches a valid pattern. If a country calling code is shared by
- * multiple regions, this returns true if it's valid in any of them. Note that this doesn't verify
- * the number is actually in use, which is impossible to tell by just looking at the number
- * itself. See {@link #isValidShortNumberForRegion(PhoneNumber, String)} for details.
- *
- * @param phoneNumber the short number for which we want to test the validity
- * @return whether the short number matches a valid pattern
- */
- - (BOOL)isValidShortNumber:(NBPhoneNumber *)phoneNumber;
- /**
- * Gets the expected cost category of a short number when dialed from a region (however, nothing
- * is implied about its validity). If it is important that the number is valid, then its validity
- * must first be checked using {@link #isValidShortNumberForRegion}. Note that emergency numbers
- * are always considered toll-free. Example usage:
- * <pre>{@code
- * // The region for which the number was parsed and the region we subsequently check against
- * // need not be the same. Here we parse the number in the US and check it for Canada.
- * PhoneNumber number = phoneUtil.parse("110", "US");
- * ...
- * String regionCode = "CA";
- * ShortNumberInfo shortInfo = ShortNumberInfo.getInstance();
- * if (shortInfo.isValidShortNumberForRegion(shortNumber, regionCode)) {
- * ShortNumberCost cost = shortInfo.getExpectedCostForRegion(number, regionCode);
- * // Do something with the cost information here.
- * }}</pre>
- *
- * @param phoneNumber the short number for which we want to know the expected cost category
- * @param regionDialingFrom the region from which the number is dialed
- * @return the expected cost category for that region of the short number. Returns UNKNOWN_COST if
- * the number does not match a cost category. Note that an invalid number may match any cost
- * category.
- */
- - (NBEShortNumberCost)expectedCostOfPhoneNumber:(NBPhoneNumber *)phoneNumber
- forRegion:(NSString *)regionDialingFrom;
- /**
- * Gets the expected cost category of a short number (however, nothing is implied about its
- * validity). If the country calling code is unique to a region, this method behaves exactly the
- * same as {@link #getExpectedCostForRegion(PhoneNumber, String)}. However, if the country
- * calling code is shared by multiple regions, then it returns the highest cost in the sequence
- * PREMIUM_RATE, UNKNOWN_COST, STANDARD_RATE, TOLL_FREE. The reason for the position of
- * UNKNOWN_COST in this order is that if a number is UNKNOWN_COST in one region but STANDARD_RATE
- * or TOLL_FREE in another, its expected cost cannot be estimated as one of the latter since it
- * might be a PREMIUM_RATE number.
- * <p>
- * For example, if a number is STANDARD_RATE in the US, but TOLL_FREE in Canada, the expected
- * cost returned by this method will be STANDARD_RATE, since the NANPA countries share the same
- * country calling code.
- * <p>
- * Note: If the region from which the number is dialed is known, it is highly preferable to call
- * {@link #getExpectedCostForRegion(PhoneNumber, String)} instead.
- *
- * @param phoneNumber the short number for which we want to know the expected cost category
- * @return the highest expected cost category of the short number in the region(s) with the given
- * country calling code
- */
- - (NBEShortNumberCost)expectedCostOfPhoneNumber:(NBPhoneNumber *)phoneNumber;
- /**
- * Given a valid short number, determines whether it is carrier-specific (however, nothing is
- * implied about its validity). Carrier-specific numbers may connect to a different end-point, or
- * not connect at all, depending on the user's carrier. If it is important that the number is
- * valid, then its validity must first be checked using {@link #isValidShortNumber} or
- * {@link #isValidShortNumberForRegion}.
- *
- * @param phoneNumber the valid short number to check
- * @return whether the short number is carrier-specific, assuming the input was a valid short
- * number
- */
- - (BOOL)isPhoneNumberCarrierSpecific:(NBPhoneNumber *)phoneNumber;
- /**
- * Given a valid short number, determines whether it is carrier-specific when dialed from the
- * given region (however, nothing is implied about its validity). Carrier-specific numbers may
- * connect to a different end-point, or not connect at all, depending on the user's carrier. If
- * it is important that the number is valid, then its validity must first be checked using
- * {@link #isValidShortNumber} or {@link #isValidShortNumberForRegion}. Returns false if the
- * number doesn't match the region provided.
- *
- * @param phoneNumber the valid short number to check
- * @param regionDialingFrom the region from which the number is dialed
- * @return whether the short number is carrier-specific in the provided region, assuming the
- * input was a valid short number
- */
- - (BOOL)isPhoneNumberCarrierSpecific:(NBPhoneNumber *)phoneNumber forRegion:(NSString *)regionCode;
- /**
- * Given a valid short number, determines whether it is an SMS service (however, nothing is
- * implied about its validity). An SMS service is where the primary or only intended usage is to
- * receive and/or send text messages (SMSs). This includes MMS as MMS numbers downgrade to SMS if
- * the other party isn't MMS-capable. If it is important that the number is valid, then its
- * validity must first be checked using {@link #isValidShortNumber} or {@link
- * #isValidShortNumberForRegion}. Returns false if the number doesn't match the region provided.
- *
- * @param phoneNumber the valid short number to check
- * @param regionDialingFrom the region from which the number is dialed
- * @return whether the short number is an SMS service in the provided region, assuming the input
- * was a valid short number
- */
- - (BOOL)isPhoneNumberSMSService:(NBPhoneNumber *)phoneNumber forRegion:(NSString *)regionCode;
- /**
- * Returns true if the given number, exactly as dialed, might be used to connect to an emergency
- * service in the given region.
- * <p>
- * This method accepts a string, rather than a PhoneNumber, because it needs to distinguish
- * cases such as "+1 911" and "911", where the former may not connect to an emergency service in
- * all cases but the latter would. This method takes into account cases where the number might
- * contain formatting, or might have additional digits appended (when it is okay to do that in
- * the specified region).
- *
- * @param number the phone number to test
- * @param regionCode the region where the phone number is being dialed
- * @return whether the number might be used to connect to an emergency service in the given region
- */
- - (BOOL)connectsToEmergencyNumberFromString:(NSString *)number forRegion:(NSString *)regionCode;
- /**
- * Returns true if the given number exactly matches an emergency service number in the given
- * region.
- * <p>
- * This method takes into account cases where the number might contain formatting, but doesn't
- * allow additional digits to be appended. Note that {@code isEmergencyNumber(number, region)}
- * implies {@code connectsToEmergencyNumber(number, region)}.
- *
- * @param number the phone number to test
- * @param regionCode the region where the phone number is being dialed
- * @return whether the number exactly matches an emergency services number in the given region
- */
- - (BOOL)isEmergencyNumber:(NSString *)number forRegion:(NSString *)regionCode;
- @end
- #endif // SHORT_NUMBER_SUPPORT
- NS_ASSUME_NONNULL_END
|