OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #include "chrome/browser/autofill/autofill_profile.h" |
| 6 |
| 7 #include <vector> |
| 8 |
| 9 #include "base/stl_util-inl.h" |
| 10 #include "base/string_util.h" |
| 11 #include "chrome/browser/autofill/address.h" |
| 12 #include "chrome/browser/autofill/autofill_manager.h" |
| 13 #include "chrome/browser/autofill/billing_address.h" |
| 14 #include "chrome/browser/autofill/contact_info.h" |
| 15 #include "chrome/browser/autofill/fax_number.h" |
| 16 #include "chrome/browser/autofill/home_address.h" |
| 17 #include "chrome/browser/autofill/home_phone_number.h" |
| 18 |
| 19 AutoFillProfile::AutoFillProfile(const string16& label, int unique_id) |
| 20 : label_(label), |
| 21 unique_id_(unique_id), |
| 22 use_billing_address_(true) { |
| 23 personal_info_[AutoFillType::CONTACT_INFO] = new ContactInfo(); |
| 24 personal_info_[AutoFillType::PHONE_HOME] = new HomePhoneNumber(); |
| 25 personal_info_[AutoFillType::PHONE_FAX] = new FaxNumber(); |
| 26 personal_info_[AutoFillType::ADDRESS_HOME] = new HomeAddress(); |
| 27 personal_info_[AutoFillType::ADDRESS_BILLING] = new BillingAddress(); |
| 28 } |
| 29 |
| 30 AutoFillProfile::~AutoFillProfile() { |
| 31 STLDeleteContainerPairSecondPointers(personal_info_.begin(), |
| 32 personal_info_.end()); |
| 33 } |
| 34 |
| 35 void AutoFillProfile::GetPossibleFieldTypes( |
| 36 const string16& text, |
| 37 FieldTypeSet* possible_types) const { |
| 38 FormGroupMap::const_iterator iter; |
| 39 for (iter = personal_info_.begin(); iter != personal_info_.end(); ++iter) { |
| 40 FormGroup* data = iter->second; |
| 41 DCHECK(data != NULL); |
| 42 if (data != NULL) |
| 43 data->GetPossibleFieldTypes(text, possible_types); |
| 44 } |
| 45 } |
| 46 |
| 47 string16 AutoFillProfile::GetFieldText(const AutoFillType& type) const { |
| 48 FormGroupMap::const_iterator iter = personal_info_.find(type.group()); |
| 49 if (iter == personal_info_.end() || iter->second == NULL) |
| 50 return string16(); |
| 51 |
| 52 return iter->second->GetFieldText(type); |
| 53 } |
| 54 |
| 55 void AutoFillProfile::FindInfoMatches( |
| 56 const AutoFillType& type, |
| 57 const string16& info, |
| 58 std::vector<string16>* matched_text) const { |
| 59 if (matched_text == NULL) { |
| 60 DLOG(ERROR) << "NULL matched text passed in"; |
| 61 return; |
| 62 } |
| 63 |
| 64 string16 clean_info = StringToLowerASCII(CollapseWhitespace(info, false)); |
| 65 |
| 66 // If the field_type is unknown, then match against all field types. |
| 67 if (type.field_type() == UNKNOWN_TYPE) { |
| 68 FormGroupMap::const_iterator iter; |
| 69 for (iter = personal_info_.begin(); iter != personal_info_.end(); ++iter) { |
| 70 iter->second->FindInfoMatches(type, clean_info, matched_text); |
| 71 } |
| 72 } else { |
| 73 FormGroupMap::const_iterator iter = personal_info_.find(type.group()); |
| 74 DCHECK(iter != personal_info_.end() && iter->second != NULL); |
| 75 if (iter != personal_info_.end() && iter->second != NULL) |
| 76 iter->second->FindInfoMatches(type, clean_info, matched_text); |
| 77 } |
| 78 } |
| 79 |
| 80 void AutoFillProfile::SetInfo(const AutoFillType& type, const string16& value) { |
| 81 FormGroupMap::const_iterator iter = personal_info_.find(type.group()); |
| 82 if (iter == personal_info_.end() || iter->second == NULL) |
| 83 return; |
| 84 |
| 85 iter->second->SetInfo(type, CollapseWhitespace(value, false)); |
| 86 } |
| 87 |
| 88 FormGroup* AutoFillProfile::Clone() const { |
| 89 AutoFillProfile* profile = new AutoFillProfile(); |
| 90 profile->label_ = label_; |
| 91 profile->unique_id_ = unique_id(); |
| 92 profile->use_billing_address_ = use_billing_address_; |
| 93 |
| 94 FormGroupMap::const_iterator iter; |
| 95 for (iter = personal_info_.begin(); iter != personal_info_.end(); ++iter) { |
| 96 profile->personal_info_[iter->first] = iter->second->Clone(); |
| 97 } |
| 98 |
| 99 return profile; |
| 100 } |
| 101 |
| 102 void AutoFillProfile::set_use_billing_address(bool use) { |
| 103 if (use_billing_address_ == use) |
| 104 return; |
| 105 |
| 106 Address* billing_address = GetBillingAddress(); |
| 107 |
| 108 if (use) { |
| 109 // If we were using the home address as a billing address then the home |
| 110 // address information should be cleared out of the billing address object. |
| 111 billing_address->Clear(); |
| 112 } else { |
| 113 // If we no longer want to use an alternate billing address then clone the |
| 114 // home address information for our billing address. |
| 115 Address* home_address = GetHomeAddress(); |
| 116 billing_address->Clone(*home_address); |
| 117 } |
| 118 |
| 119 use_billing_address_ = use; |
| 120 } |
| 121 |
| 122 Address* AutoFillProfile::GetBillingAddress() { |
| 123 return static_cast<Address*>(personal_info_[AutoFillType::ADDRESS_BILLING]); |
| 124 } |
| 125 |
| 126 Address* AutoFillProfile::GetHomeAddress() { |
| 127 return static_cast<Address*>(personal_info_[AutoFillType::ADDRESS_HOME]); |
| 128 } |
OLD | NEW |