1 // Copyright 2013 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.
5 #include "chrome/browser/ui/autofill/account_chooser_model.h"
8 #include "base/prefs/pref_service.h"
9 #include "base/strings/string_number_conversions.h"
10 #include "base/strings/stringprintf.h"
11 #include "base/strings/utf_string_conversions.h"
12 #include "base/time/time.h"
13 #include "chrome/browser/profiles/profile.h"
14 #include "chrome/common/pref_names.h"
15 #include "components/autofill/core/browser/autofill_metrics.h"
16 #include "grit/generated_resources.h"
17 #include "grit/theme_resources.h"
18 #include "ui/base/l10n/l10n_util.h"
19 #include "ui/base/resource/resource_bundle.h"
23 const int AccountChooserModel::kWalletAddAccountId
= 0;
24 const int AccountChooserModel::kAutofillItemId
= 1;
25 const int AccountChooserModel::kWalletAccountsStartId
= 2;
27 AccountChooserModelDelegate::~AccountChooserModelDelegate() {}
29 AccountChooserModel::AccountChooserModel(
30 AccountChooserModelDelegate
* delegate
,
33 const AutofillMetrics
& metric_logger
)
34 : ui::SimpleMenuModel(this),
36 checked_item_(kWalletAccountsStartId
),
37 had_wallet_error_(false),
38 metric_logger_(metric_logger
) {
39 if (profile
->GetPrefs()->GetBoolean(
40 ::prefs::kAutofillDialogPayWithoutWallet
) ||
41 profile
->IsOffTheRecord() ||
43 checked_item_
= kAutofillItemId
;
46 ReconstructMenuItems();
49 AccountChooserModel::~AccountChooserModel() {}
51 void AccountChooserModel::MenuWillShow() {
52 ui::SimpleMenuModel::MenuWillShow();
55 void AccountChooserModel::SelectWalletAccount(size_t user_index
) {
56 DCHECK(user_index
== 0U || user_index
< wallet_accounts_
.size());
57 checked_item_
= kWalletAccountsStartId
+ user_index
;
60 void AccountChooserModel::SelectUseAutofill() {
61 checked_item_
= kAutofillItemId
;
64 bool AccountChooserModel::HasAccountsToChoose() const {
65 return !wallet_accounts_
.empty();
68 void AccountChooserModel::SetWalletAccounts(
69 const std::vector
<std::string
>& accounts
,
70 size_t active_index
) {
71 wallet_accounts_
= accounts
;
72 SelectWalletAccount(active_index
);
74 ReconstructMenuItems();
75 delegate_
->UpdateAccountChooserView();
78 void AccountChooserModel::ClearWalletAccounts() {
79 wallet_accounts_
.clear();
80 if (WalletIsSelected())
81 checked_item_
= kWalletAccountsStartId
;
83 ReconstructMenuItems();
84 delegate_
->UpdateAccountChooserView();
87 base::string16
AccountChooserModel::GetActiveWalletAccountName() const {
88 if (wallet_accounts_
.empty())
89 return base::string16();
91 return base::UTF8ToUTF16(wallet_accounts_
[GetActiveWalletAccountIndex()]);
94 size_t AccountChooserModel::GetActiveWalletAccountIndex() const {
95 if (!WalletIsSelected())
98 return checked_item_
- kWalletAccountsStartId
;
101 bool AccountChooserModel::IsCommandIdChecked(int command_id
) const {
102 return command_id
== checked_item_
;
105 bool AccountChooserModel::IsCommandIdEnabled(int command_id
) const {
106 // Currently, _any_ (non-sign-in) error disables _all_ Wallet accounts.
107 if (command_id
!= kAutofillItemId
&& had_wallet_error_
)
113 bool AccountChooserModel::GetAcceleratorForCommandId(
115 ui::Accelerator
* accelerator
) {
119 void AccountChooserModel::ExecuteCommand(int command_id
, int event_flags
) {
120 if (checked_item_
== command_id
)
124 AutofillMetrics::DialogUiEvent chooser_event
;
125 if (command_id
== kAutofillItemId
) {
127 AutofillMetrics::DIALOG_UI_ACCOUNT_CHOOSER_SWITCHED_TO_AUTOFILL
;
128 } else if (command_id
== kWalletAddAccountId
) {
130 AutofillMetrics::DIALOG_UI_ACCOUNT_CHOOSER_TRIED_TO_ADD_ACCOUNT
;
131 } else if (checked_item_
== kAutofillItemId
) {
133 AutofillMetrics::DIALOG_UI_ACCOUNT_CHOOSER_SWITCHED_TO_WALLET
;
136 AutofillMetrics::DIALOG_UI_ACCOUNT_CHOOSER_SWITCHED_WALLET_ACCOUNT
;
138 metric_logger_
.LogDialogUiEvent(chooser_event
);
140 if (command_id
== kWalletAddAccountId
) {
141 delegate_
->AddAccount();
145 checked_item_
= command_id
;
146 ReconstructMenuItems();
147 delegate_
->AccountChoiceChanged();
150 void AccountChooserModel::MenuWillShow(ui::SimpleMenuModel
* source
) {
151 delegate_
->AccountChooserWillShow();
154 void AccountChooserModel::SetHadWalletError() {
155 // Any non-sign-in error disables all Wallet accounts.
156 had_wallet_error_
= true;
157 ClearWalletAccounts();
158 ExecuteCommand(kAutofillItemId
, 0);
161 void AccountChooserModel::SetHadWalletSigninError() {
162 ClearWalletAccounts();
163 ExecuteCommand(kAutofillItemId
, 0);
166 bool AccountChooserModel::WalletIsSelected() const {
167 return checked_item_
!= kAutofillItemId
;
170 void AccountChooserModel::ReconstructMenuItems() {
173 if (!wallet_accounts_
.empty()) {
174 for (size_t i
= 0; i
< wallet_accounts_
.size(); ++i
) {
175 int item_id
= kWalletAccountsStartId
+ i
;
176 AddCheckItem(item_id
, base::UTF8ToUTF16(wallet_accounts_
[i
]));
178 } else if (checked_item_
== kWalletAccountsStartId
) {
179 // A selected active Wallet account without account names means
180 // that the sign-in attempt is in progress.
181 AddCheckItem(kWalletAccountsStartId
,
182 l10n_util::GetStringUTF16(IDS_AUTOFILL_DIALOG_GOOGLE_WALLET
));
185 AddCheckItemWithStringId(kWalletAddAccountId
,
186 IDS_AUTOFILL_DIALOG_ADD_ACCOUNT
);
187 AddCheckItemWithStringId(kAutofillItemId
,
188 IDS_AUTOFILL_DIALOG_PAY_WITHOUT_WALLET
);
191 } // namespace autofill