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
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
|
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "components/autofill/browser/wallet/wallet_address.h"
#include "base/logging.h"
#include "base/utf_string_conversions.h"
#include "base/values.h"
#include "components/autofill/browser/autofill_country.h"
#include "components/autofill/browser/autofill_profile.h"
namespace autofill {
namespace wallet {
namespace {
Address* CreateAddressInternal(const base::DictionaryValue& dictionary,
const std::string& object_id) {
std::string country_name_code;
if (!dictionary.GetString("postal_address.country_name_code",
&country_name_code)) {
DLOG(ERROR) << "Response from Google Wallet missing country name";
return NULL;
}
string16 recipient_name;
if (!dictionary.GetString("postal_address.recipient_name",
&recipient_name)) {
DLOG(ERROR) << "Response from Google Wallet recipient name";
return NULL;
}
string16 postal_code_number;
if (!dictionary.GetString("postal_address.postal_code_number",
&postal_code_number)) {
DLOG(ERROR) << "Response from Google Wallet missing postal code number";
return NULL;
}
string16 phone_number;
if (!dictionary.GetString("phone_number", &phone_number))
DVLOG(1) << "Response from Google Wallet missing phone number";
string16 address_line_1;
string16 address_line_2;
const ListValue* address_line_list;
if (dictionary.GetList("postal_address.address_line", &address_line_list)) {
if (!address_line_list->GetString(0, &address_line_1))
DVLOG(1) << "Response from Google Wallet missing address line 1";
if (!address_line_list->GetString(1, &address_line_2))
DVLOG(1) << "Response from Google Wallet missing address line 2";
} else {
DVLOG(1) << "Response from Google Wallet missing address lines";
}
string16 locality_name;
if (!dictionary.GetString("postal_address.locality_name",
&locality_name)) {
DVLOG(1) << "Response from Google Wallet missing locality name";
}
string16 administrative_area_name;
if (!dictionary.GetString("postal_address.administrative_area_name",
&administrative_area_name)) {
DVLOG(1) << "Response from Google Wallet missing administrative area name";
}
return new Address(country_name_code,
recipient_name ,
address_line_1,
address_line_2,
locality_name,
administrative_area_name,
postal_code_number,
phone_number,
object_id);
}
} // namespace
Address::Address() {}
Address::Address(const AutofillProfile& profile)
: country_name_code_(
UTF16ToASCII(profile.GetRawInfo(ADDRESS_HOME_COUNTRY))),
recipient_name_(profile.GetRawInfo(NAME_FULL)),
address_line_1_(profile.GetRawInfo(ADDRESS_HOME_LINE1)),
address_line_2_(profile.GetRawInfo(ADDRESS_HOME_LINE2)),
locality_name_(profile.GetRawInfo(ADDRESS_HOME_CITY)),
administrative_area_name_(profile.GetRawInfo(ADDRESS_HOME_STATE)),
postal_code_number_(profile.GetRawInfo(ADDRESS_HOME_ZIP)),
phone_number_(profile.GetRawInfo(PHONE_HOME_WHOLE_NUMBER)) {}
Address::Address(const std::string& country_name_code,
const string16& recipient_name,
const string16& address_line_1,
const string16& address_line_2,
const string16& locality_name,
const string16& administrative_area_name,
const string16& postal_code_number,
const string16& phone_number,
const std::string& object_id)
: country_name_code_(country_name_code),
recipient_name_(recipient_name),
address_line_1_(address_line_1),
address_line_2_(address_line_2),
locality_name_(locality_name),
administrative_area_name_(administrative_area_name),
postal_code_number_(postal_code_number),
phone_number_(phone_number),
object_id_(object_id) {}
Address::~Address() {}
// static
scoped_ptr<Address> Address::CreateAddressWithID(
const base::DictionaryValue& dictionary) {
std::string object_id;
if (!dictionary.GetString("id", &object_id)) {
DLOG(ERROR) << "Response from Google Wallet missing object id";
return scoped_ptr<Address>();
}
return scoped_ptr<Address>(CreateAddressInternal(dictionary, object_id));
}
// static
scoped_ptr<Address> Address::CreateAddress(
const base::DictionaryValue& dictionary) {
std::string object_id;
dictionary.GetString("id", &object_id);
return scoped_ptr<Address>(CreateAddressInternal(dictionary, object_id));
}
// static
scoped_ptr<Address> Address::CreateDisplayAddress(
const base::DictionaryValue& dictionary) {
std::string country_code;
if (!dictionary.GetString("country_code", &country_code)) {
DLOG(ERROR) << "Reponse from Google Wallet missing country code";
return scoped_ptr<Address>();
}
string16 name;
if (!dictionary.GetString("name", &name)) {
DLOG(ERROR) << "Reponse from Google Wallet missing name";
return scoped_ptr<Address>();
}
string16 postal_code;
if (!dictionary.GetString("postal_code", &postal_code)) {
DLOG(ERROR) << "Reponse from Google Wallet missing postal code";
return scoped_ptr<Address>();
}
string16 address1;
if (!dictionary.GetString("address1", &address1))
DVLOG(1) << "Reponse from Google Wallet missing address1";
string16 address2;
if (!dictionary.GetString("address2", &address2))
DVLOG(1) << "Reponse from Google Wallet missing address2";
string16 city;
if (!dictionary.GetString("city", &city))
DVLOG(1) << "Reponse from Google Wallet missing city";
string16 state;
if (!dictionary.GetString("state", &state))
DVLOG(1) << "Reponse from Google Wallet missing state";
string16 phone_number;
if (!dictionary.GetString("phone_number", &phone_number))
DVLOG(1) << "Reponse from Google Wallet missing phone number";
return scoped_ptr<Address>(new Address(country_code,
name,
address1,
address2,
city,
state,
postal_code,
phone_number,
std::string()));
}
scoped_ptr<base::DictionaryValue> Address::ToDictionaryWithID() const {
scoped_ptr<base::DictionaryValue> dict(new base::DictionaryValue());
if (!object_id_.empty())
dict->SetString("id", object_id_);
dict->SetString("phone_number", phone_number_);
dict->Set("postal_address", ToDictionaryWithoutID().release());
return dict.Pass();
}
scoped_ptr<base::DictionaryValue> Address::ToDictionaryWithoutID() const {
scoped_ptr<base::DictionaryValue> dict(new base::DictionaryValue());
scoped_ptr<base::ListValue> address_lines(new base::ListValue());
address_lines->AppendString(address_line_1_);
if (!address_line_2_.empty())
address_lines->AppendString(address_line_2_);
dict->Set("address_line", address_lines.release());
dict->SetString("country_name_code", country_name_code_);
dict->SetString("recipient_name", recipient_name_);
dict->SetString("locality_name", locality_name_);
dict->SetString("administrative_area_name",
administrative_area_name_);
dict->SetString("postal_code_number", postal_code_number_);
return dict.Pass();
}
string16 Address::DisplayName() const {
#if defined(OS_ANDROID)
// TODO(aruslan): improve this stub implementation.
return recipient_name();
#else
// TODO(estade): improve this stub implementation + l10n.
return recipient_name() + ASCIIToUTF16(", ") + address_line_1();
#endif
}
string16 Address::DisplayNameDetail() const {
#if defined(OS_ANDROID)
// TODO(aruslan): improve this stub implementation.
return address_line_1();
#else
return string16();
#endif
}
string16 Address::GetInfo(AutofillFieldType type,
const std::string& app_locale) const {
switch (type) {
case NAME_FULL:
return recipient_name();
case ADDRESS_HOME_LINE1:
return address_line_1();
case ADDRESS_HOME_LINE2:
return address_line_2();
case ADDRESS_HOME_CITY:
return locality_name();
case ADDRESS_HOME_STATE:
return administrative_area_name();
case ADDRESS_HOME_ZIP:
return postal_code_number();
case ADDRESS_HOME_COUNTRY: {
AutofillCountry country(country_name_code(), app_locale);
return country.name();
}
case PHONE_HOME_WHOLE_NUMBER:
return phone_number();
// TODO(estade): implement more.
default:
NOTREACHED();
return string16();
}
}
bool Address::operator==(const Address& other) const {
return country_name_code_ == other.country_name_code_ &&
recipient_name_ == other.recipient_name_ &&
address_line_1_ == other.address_line_1_ &&
address_line_2_ == other.address_line_2_ &&
locality_name_ == other.locality_name_ &&
administrative_area_name_ == other.administrative_area_name_ &&
postal_code_number_ == other.postal_code_number_ &&
phone_number_ == other.phone_number_ &&
object_id_ == other.object_id_;
}
bool Address::operator!=(const Address& other) const {
return !(*this == other);
}
} // namespace wallet
} // namespace autofill
|