1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
// Copyright (C) 2017 1aim GmbH
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

use std::fmt;
use std::str::FromStr;
use std::ops::Deref;
use either::*;

use crate::country;
use crate::national_number::NationalNumber;
use crate::extension::Extension;
use crate::carrier::Carrier;
use crate::metadata::{DATABASE, Database, Metadata};
use crate::parser;
use crate::formatter;
use crate::validator;
use crate::error;

/// A phone number.
#[derive(Clone, Eq, PartialEq, Serialize, Deserialize, Hash, Debug)]
pub struct PhoneNumber {
	/// The country calling code for this number, as defined by the International
	/// Telecommunication Union (ITU). For example, this would be 1 for NANPA
	/// countries, and 33 for France.
	pub(crate) code: country::Code,

	/// The National (significant) Number, as defined in International
	/// Telecommunication Union (ITU) Recommendation E.164, without any leading
	/// zero. The leading-zero is stored separately if required, since this is an
	/// uint64 and hence cannot store such information. Do not use this field
	/// directly: if you want the national significant number, call the
	/// getNationalSignificantNumber method of PhoneNumberUtil.
	///
	/// For countries which have the concept of an "area code" or "national
	/// destination code", this is included in the National (significant) Number.
	/// Although the ITU says the maximum length should be 15, we have found
	/// longer numbers in some countries e.g. Germany.  Note that the National
	/// (significant) Number does not contain the National (trunk) prefix.
	/// Obviously, as a uint64, it will never contain any formatting (hyphens,
	/// spaces, parentheses), nor any alphanumeric spellings.
	pub(crate) national: NationalNumber,

	/// Extension is not standardized in ITU recommendations, except for being
	/// defined as a series of numbers with a maximum length of 40 digits. It is
	/// defined as a string here to accommodate for the possible use of a leading
	/// zero in the extension (organizations have complete freedom to do so, as
	/// there is no standard defined). Other than digits, some other dialling
	/// characters such as "," (indicating a wait) may be stored here.
	pub(crate) extension: Option<Extension>,

	/// The carrier selection code that is preferred when calling this phone
	/// number domestically. This also includes codes that need to be dialed in
	/// some countries when calling from landlines to mobiles or vice versa. For
	/// example, in Columbia, a "3" needs to be dialed before the phone number
	/// itself when calling from a mobile phone to a domestic landline phone and
	/// vice versa.
	///
	/// Note this is the "preferred" code, which means other codes may work as
	/// well.
	pub(crate) carrier: Option<Carrier>,
}

/// Wrapper to make it easier to access information about the country of a
/// phone number.
pub struct Country<'a>(&'a PhoneNumber);

/// The phone number type.
#[derive(Copy, Clone, Eq, PartialEq, Serialize, Deserialize, Hash, Debug)]
#[serde(rename_all = "snake_case")]
pub enum Type {
	///
	FixedLine,

	///
	Mobile,

	/// In some regions (e.g. the USA), it is impossible to distinguish between
	/// fixed-line and mobile numbers by looking at the phone number itself.
	FixedLineOrMobile,

	/// Freephone lines.
	TollFree,

	///
	PremiumRate,

	/// The cost of this call is shared between the caller and the recipient, and
	/// is hence typically less than PREMIUM_RATE calls. See
	/// http://en.wikipedia.org/wiki/Shared_Cost_Service for more information.
	SharedCost,

	/// A personal number is associated with a particular person, and may be
	/// routed to either a MOBILE or FIXED_LINE number. Some more information can
	/// be found here: http://en.wikipedia.org/wiki/Personal_Numbers
	PersonalNumber,

	/// Voice over IP numbers. This includes TSoIP (Telephony Service over IP).
	Voip,

	///
	Pager,

	/// Used for "Universal Access Numbers" or "Company Numbers". They may be
	/// further routed to specific offices, but allow one number to be used for a
	/// company.
	Uan,

	///
	Emergency,

	/// Used for "Voice Mail Access Numbers".
	Voicemail,

	///
	ShortCode,

	///
	StandardRate,

	///
	Carrier,

	///
	NoInternational,

	/// A phone number is of type UNKNOWN when it does not fit any of the known
	/// patterns for a specific region.
	Unknown,
}

impl FromStr for PhoneNumber {
	type Err = error::Parse;

	fn from_str(s: &str) -> Result<Self, Self::Err> {
		parser::parse(None, s)
	}
}

impl fmt::Display for PhoneNumber {
	fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
		write!(f, "{}", self.format())
	}
}

impl PhoneNumber {
	/// Get information about the country for the phone number.
	pub fn country(&self) -> Country {
		Country(self)
	}

	/// Get the country code.
	pub fn code(&self) -> &country::Code {
		&self.code
	}

	/// Get the national number.
	pub fn national(&self) -> &NationalNumber {
		&self.national
	}

	/// Get the extension.
	pub fn extension(&self) -> Option<&Extension> {
		self.extension.as_ref()
	}

	/// Get the carrier.
	pub fn carrier(&self) -> Option<&Carrier> {
		self.carrier.as_ref()
	}

	/// Prepare a formatter for this `PhoneNumber`.
	///
	/// # Example
	///
	/// ```
	/// use phonenumber::{self, country, Mode};
	///
	/// let number = phonenumber::parse(Some(country::DE), "301/23456").unwrap()
	/// 	.format().mode(Mode::National).to_string();
	///
	/// assert_eq!("030 123456", number);
	/// ```
	pub fn format<'n>(&'n self) -> formatter::Formatter<'n, 'static, 'static> {
		formatter::format(self)
	}

	/// Prepare a formatter for this `PhoneNumber` with the given `Database`.
	pub fn format_with<'n, 'd>(&'n self, database: &'d Database) -> formatter::Formatter<'n, 'd, 'static> {
		formatter::format_with(database, self)
	}

	/// Get the metadata that applies to this phone number from the given
	/// database.
	pub fn metadata<'a>(&self, database: &'a Database) -> Option<&'a Metadata> {
		match try_opt!(None; validator::source_for(database, self.code.value(), &self.national.to_string())) {
			Left(region) =>
				database.by_id(region.as_ref()),

			Right(code) =>
				database.by_code(&code).and_then(|m| m.into_iter().next()),
		}
	}

	/// Check if the phone number is valid.
	pub fn is_valid(&self) -> bool {
		validator::is_valid(self)
	}

	/// Check if the phone number is valid with the given `Database`.
	pub fn is_valid_with(&self, database: &Database) -> bool {
		validator::is_valid_with(database, self)
	}
}

impl<'a> Country<'a> {
	pub fn code(&self) -> u16 {
		self.0.code.value()
	}

	pub fn id(&self) -> Option<country::Id> {
		self.0.metadata(&*DATABASE).map(|m| m.id().parse().unwrap())
	}
}

impl<'a> Deref for Country<'a> {
	type Target = country::Code;

	fn deref(&self) -> &Self::Target {
		self.0.code()
	}
}

#[cfg(test)]
mod test {
	use crate::parser;
	use crate::country;

	#[test]
	fn country_id() {
		assert_eq!(country::AU,
			parser::parse(None, "+61406823897").unwrap()
				.country().id().unwrap());

		assert_eq!(country::ES,
			parser::parse(None, "+34666777888").unwrap()
				.country().id().unwrap());

		assert_eq!(country::KY,
			parser::parse(None, "+13459492311").unwrap()
				.country().id().unwrap());

		assert_eq!(country::CA,
			parser::parse(None, "+16137827274").unwrap()
				.country().id().unwrap());
	}
}