1 // Copyright (c) 2012 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 #ifndef CHROME_BROWSER_UI_AUTOFILL_AUTOFILL_DIALOG_CONTROLLER_IMPL_H_
6 #define CHROME_BROWSER_UI_AUTOFILL_AUTOFILL_DIALOG_CONTROLLER_IMPL_H_
11 #include "base/gtest_prod_util.h"
12 #include "base/memory/scoped_ptr.h"
13 #include "base/memory/weak_ptr.h"
14 #include "base/strings/string16.h"
15 #include "base/time/time.h"
16 #include "chrome/browser/ui/autofill/account_chooser_model.h"
17 #include "chrome/browser/ui/autofill/autofill_dialog_controller.h"
18 #include "chrome/browser/ui/autofill/autofill_dialog_models.h"
19 #include "chrome/browser/ui/autofill/autofill_dialog_types.h"
20 #include "chrome/browser/ui/autofill/autofill_dialog_view_delegate.h"
21 #include "chrome/browser/ui/autofill/autofill_popup_controller_impl.h"
22 #include "chrome/browser/ui/autofill/country_combobox_model.h"
23 #include "components/autofill/content/browser/wallet/wallet_client.h"
24 #include "components/autofill/content/browser/wallet/wallet_client_delegate.h"
25 #include "components/autofill/content/browser/wallet/wallet_items.h"
26 #include "components/autofill/content/browser/wallet/wallet_signin_helper_delegate.h"
27 #include "components/autofill/core/browser/autofill_manager_delegate.h"
28 #include "components/autofill/core/browser/autofill_metrics.h"
29 #include "components/autofill/core/browser/autofill_popup_delegate.h"
30 #include "components/autofill/core/browser/field_types.h"
31 #include "components/autofill/core/browser/form_structure.h"
32 #include "components/autofill/core/browser/personal_data_manager.h"
33 #include "components/autofill/core/browser/personal_data_manager_observer.h"
34 #include "content/public/browser/notification_observer.h"
35 #include "content/public/browser/notification_registrar.h"
36 #include "content/public/browser/web_contents_observer.h"
37 #include "content/public/common/ssl_status.h"
38 #include "third_party/libaddressinput/chromium/cpp/include/libaddressinput/address_validator.h"
39 #include "third_party/libaddressinput/chromium/cpp/include/libaddressinput/load_rules_delegate.h"
40 #include "third_party/skia/include/core/SkColor.h"
41 #include "ui/base/models/simple_menu_model.h"
42 #include "ui/base/ui_base_types.h"
43 #include "ui/gfx/animation/animation_delegate.h"
44 #include "ui/gfx/animation/linear_animation.h"
55 class AutofillDataModel
;
56 class AutofillDialogView
;
57 class AutofillPopupControllerImpl
;
58 class DataModelWrapper
;
65 class WalletSigninHelper
;
68 // This class drives the dialog that appears when a site uses the imperative
69 // autocomplete API to fill out a form.
70 class AutofillDialogControllerImpl
71 : public AutofillDialogViewDelegate
,
72 public AutofillDialogController
,
73 public AutofillPopupDelegate
,
74 public content::NotificationObserver
,
75 public content::WebContentsObserver
,
76 public SuggestionsMenuModelDelegate
,
77 public wallet::WalletClientDelegate
,
78 public wallet::WalletSigninHelperDelegate
,
79 public PersonalDataManagerObserver
,
80 public AccountChooserModelDelegate
,
81 public gfx::AnimationDelegate
,
82 public ::i18n::addressinput::LoadRulesDelegate
{
84 virtual ~AutofillDialogControllerImpl();
86 static base::WeakPtr
<AutofillDialogControllerImpl
> Create(
87 content::WebContents
* contents
,
88 const FormData
& form_structure
,
89 const GURL
& source_url
,
90 const AutofillManagerDelegate::ResultCallback
& callback
);
92 // AutofillDialogController implementation.
93 virtual void Show() OVERRIDE
;
94 virtual void Hide() OVERRIDE
;
95 virtual void TabActivated() OVERRIDE
;
97 // AutofillDialogViewDelegate implementation.
98 virtual base::string16
DialogTitle() const OVERRIDE
;
99 virtual base::string16
AccountChooserText() const OVERRIDE
;
100 virtual base::string16
SignInLinkText() const OVERRIDE
;
101 virtual base::string16
SpinnerText() const OVERRIDE
;
102 virtual base::string16
EditSuggestionText() const OVERRIDE
;
103 virtual base::string16
CancelButtonText() const OVERRIDE
;
104 virtual base::string16
ConfirmButtonText() const OVERRIDE
;
105 virtual base::string16
SaveLocallyText() const OVERRIDE
;
106 virtual base::string16
SaveLocallyTooltip() const OVERRIDE
;
107 virtual base::string16
LegalDocumentsText() OVERRIDE
;
108 virtual bool ShouldShowSpinner() const OVERRIDE
;
109 virtual bool ShouldShowAccountChooser() const OVERRIDE
;
110 virtual bool ShouldShowSignInWebView() const OVERRIDE
;
111 virtual GURL
SignInUrl() const OVERRIDE
;
112 virtual bool ShouldOfferToSaveInChrome() const OVERRIDE
;
113 virtual bool ShouldSaveInChrome() const OVERRIDE
;
114 virtual ui::MenuModel
* MenuModelForAccountChooser() OVERRIDE
;
115 virtual gfx::Image
AccountChooserImage() OVERRIDE
;
116 virtual gfx::Image
ButtonStripImage() const OVERRIDE
;
117 virtual int GetDialogButtons() const OVERRIDE
;
118 virtual bool IsDialogButtonEnabled(ui::DialogButton button
) const OVERRIDE
;
119 virtual DialogOverlayState
GetDialogOverlay() OVERRIDE
;
120 virtual const std::vector
<gfx::Range
>& LegalDocumentLinks() OVERRIDE
;
121 virtual bool SectionIsActive(DialogSection section
) const OVERRIDE
;
122 virtual const DetailInputs
& RequestedFieldsForSection(DialogSection section
)
124 virtual ui::ComboboxModel
* ComboboxModelForAutofillType(
125 ServerFieldType type
) OVERRIDE
;
126 virtual ui::MenuModel
* MenuModelForSection(DialogSection section
) OVERRIDE
;
127 virtual base::string16
LabelForSection(DialogSection section
) const OVERRIDE
;
128 virtual SuggestionState
SuggestionStateForSection(
129 DialogSection section
) OVERRIDE
;
130 virtual FieldIconMap
IconsForFields(const FieldValueMap
& user_inputs
)
132 virtual bool FieldControlsIcons(ServerFieldType type
) const OVERRIDE
;
133 virtual base::string16
TooltipForField(ServerFieldType type
) const OVERRIDE
;
134 virtual bool InputIsEditable(const DetailInput
& input
, DialogSection section
)
136 virtual base::string16
InputValidityMessage(DialogSection section
,
137 ServerFieldType type
,
138 const base::string16
& value
) OVERRIDE
;
139 virtual ValidityMessages
InputsAreValid(
140 DialogSection section
, const FieldValueMap
& inputs
) OVERRIDE
;
141 virtual void UserEditedOrActivatedInput(DialogSection section
,
142 ServerFieldType type
,
143 gfx::NativeView parent_view
,
144 const gfx::Rect
& content_bounds
,
145 const base::string16
& field_contents
,
146 bool was_edit
) OVERRIDE
;
147 virtual bool HandleKeyPressEventInInput(
148 const content::NativeWebKeyboardEvent
& event
) OVERRIDE
;
149 virtual void FocusMoved() OVERRIDE
;
150 virtual bool ShouldShowErrorBubble() const OVERRIDE
;
151 virtual void ViewClosed() OVERRIDE
;
152 virtual std::vector
<DialogNotification
> CurrentNotifications() OVERRIDE
;
153 virtual void LinkClicked(const GURL
& url
) OVERRIDE
;
154 virtual void SignInLinkClicked() OVERRIDE
;
155 virtual void NotificationCheckboxStateChanged(DialogNotification::Type type
,
156 bool checked
) OVERRIDE
;
157 virtual void LegalDocumentLinkClicked(const gfx::Range
& range
) OVERRIDE
;
158 virtual bool OnCancel() OVERRIDE
;
159 virtual bool OnAccept() OVERRIDE
;
160 virtual Profile
* profile() OVERRIDE
;
161 virtual content::WebContents
* GetWebContents() OVERRIDE
;
163 // AutofillPopupDelegate implementation.
164 virtual void OnPopupShown() OVERRIDE
;
165 virtual void OnPopupHidden() OVERRIDE
;
166 virtual void DidSelectSuggestion(const base::string16
& value
,
167 int identifier
) OVERRIDE
;
168 virtual void DidAcceptSuggestion(const base::string16
& value
,
169 int identifier
) OVERRIDE
;
170 virtual void RemoveSuggestion(const base::string16
& value
,
171 int identifier
) OVERRIDE
;
172 virtual void ClearPreviewedForm() OVERRIDE
;
174 // content::NotificationObserver implementation.
175 virtual void Observe(int type
,
176 const content::NotificationSource
& source
,
177 const content::NotificationDetails
& details
) OVERRIDE
;
179 // SuggestionsMenuModelDelegate implementation.
180 virtual void SuggestionItemSelected(SuggestionsMenuModel
* model
,
181 size_t index
) OVERRIDE
;
183 // wallet::WalletClientDelegate implementation.
184 virtual const AutofillMetrics
& GetMetricLogger() const OVERRIDE
;
185 virtual std::string
GetRiskData() const OVERRIDE
;
186 virtual std::string
GetWalletCookieValue() const OVERRIDE
;
187 virtual bool IsShippingAddressRequired() const OVERRIDE
;
188 virtual void OnDidAcceptLegalDocuments() OVERRIDE
;
189 virtual void OnDidAuthenticateInstrument(bool success
) OVERRIDE
;
190 virtual void OnDidGetFullWallet(
191 scoped_ptr
<wallet::FullWallet
> full_wallet
) OVERRIDE
;
192 virtual void OnDidGetWalletItems(
193 scoped_ptr
<wallet::WalletItems
> wallet_items
) OVERRIDE
;
194 virtual void OnDidSaveToWallet(
195 const std::string
& instrument_id
,
196 const std::string
& address_id
,
197 const std::vector
<wallet::RequiredAction
>& required_actions
,
198 const std::vector
<wallet::FormFieldError
>& form_field_errors
) OVERRIDE
;
199 virtual void OnWalletError(
200 wallet::WalletClient::ErrorType error_type
) OVERRIDE
;
202 // PersonalDataManagerObserver implementation.
203 virtual void OnPersonalDataChanged() OVERRIDE
;
205 // AccountChooserModelDelegate implementation.
206 virtual void AccountChoiceChanged() OVERRIDE
;
207 virtual void AddAccount() OVERRIDE
;
208 virtual void UpdateAccountChooserView() OVERRIDE
;
210 // wallet::WalletSigninHelperDelegate implementation.
211 virtual void OnPassiveSigninSuccess() OVERRIDE
;
212 virtual void OnPassiveSigninFailure(
213 const GoogleServiceAuthError
& error
) OVERRIDE
;
214 virtual void OnDidFetchWalletCookieValue(
215 const std::string
& cookie_value
) OVERRIDE
;
217 // gfx::AnimationDelegate implementation.
218 virtual void AnimationEnded(const gfx::Animation
* animation
) OVERRIDE
;
219 virtual void AnimationProgressed(const gfx::Animation
* animation
) OVERRIDE
;
221 // ::i18n::addressinput::LoadRulesDelegate implementation.
222 virtual void OnAddressValidationRulesLoaded(const std::string
& country_code
,
223 bool success
) OVERRIDE
;
226 enum DialogSignedInState
{
230 REQUIRES_PASSIVE_SIGN_IN
,
235 // Exposed for testing.
236 AutofillDialogControllerImpl(
237 content::WebContents
* contents
,
238 const FormData
& form_structure
,
239 const GURL
& source_url
,
240 const AutofillManagerDelegate::ResultCallback
& callback
);
242 // Exposed for testing.
243 AutofillDialogView
* view() { return view_
.get(); }
244 virtual AutofillDialogView
* CreateView();
245 ServerFieldType
popup_input_type() const {
246 return popup_input_type_
;
249 // Returns the PersonalDataManager for |profile_|.
250 virtual PersonalDataManager
* GetManager() const;
252 // Returns an address validation helper. May be NULL during tests.
253 virtual ::i18n::addressinput::AddressValidator
* GetValidator();
255 // Returns the WalletClient* this class uses to talk to Online Wallet. Exposed
257 const wallet::WalletClient
* GetWalletClient() const;
258 virtual wallet::WalletClient
* GetWalletClient();
260 // Call to disable communication to Online Wallet for this dialog.
261 // Exposed for testing.
262 void DisableWallet(wallet::WalletClient::ErrorType error_type
);
264 // Returns whether Wallet is the current data source. Exposed for testing.
265 virtual bool IsPayingWithWallet() const;
267 // Asks risk module to asynchronously load fingerprint data. Data will be
268 // returned via |OnDidLoadRiskFingerprintData()|. Exposed for testing.
269 virtual void LoadRiskFingerprintData();
270 virtual void OnDidLoadRiskFingerprintData(
271 scoped_ptr
<risk::Fingerprint
> fingerprint
);
273 // Opens the given URL in a new foreground tab.
274 virtual void OpenTabWithUrl(const GURL
& url
);
276 // The active billing section for the current state of the dialog (e.g. when
277 // paying for wallet, the combined credit card + billing address section).
278 DialogSection
ActiveBillingSection() const;
280 // Whether |section| was sent into edit mode based on existing data. This
281 // happens when a user clicks "Edit" or a suggestion is invalid.
282 virtual bool IsEditingExistingData(DialogSection section
) const;
284 // Whether the user has chosen to enter all new data in |section|. This
285 // happens via choosing "Add a new X..." from a section's suggestion menu.
286 bool IsManuallyEditingSection(DialogSection section
) const;
288 // Should be called on the Wallet sign-in error.
289 virtual void OnWalletSigninError();
291 // Whether submission is currently waiting for |action| to be handled.
292 bool IsSubmitPausedOn(wallet::RequiredAction action
) const;
294 // Shows a new credit card saved bubble and passes ownership of |new_card| and
295 // |billing_profile| to the bubble. Exposed for testing.
296 virtual void ShowNewCreditCardBubble(
297 scoped_ptr
<CreditCard
> new_card
,
298 scoped_ptr
<AutofillProfile
> billing_profile
);
300 // Called when there's nothing left to accept, update, save, or authenticate
301 // in order to fill |form_structure_| and pass data back to the invoking page.
302 void DoFinishSubmit();
304 // Delays enabling submit button for a short period of time. Exposed for
306 virtual void SubmitButtonDelayBegin();
308 // Ends the delay for enabling the submit button. Called only from tests.
309 // Without this method, the tests would have to wait for the delay timer to
310 // finish, which would be flaky.
311 void SubmitButtonDelayEndForTesting();
313 // Resets |last_wallet_items_fetch_timestamp_| for testing.
314 void ClearLastWalletItemsFetchTimestampForTesting();
316 // Allows tests to inspect the state of the account chooser.
317 AccountChooserModel
* AccountChooserModelForTesting();
319 // Returns whether |url| matches the sign in continue URL. If so, also fills
320 // in |user_index| with the index of the user account that just signed in.
321 virtual bool IsSignInContinueUrl(const GURL
& url
, size_t* user_index
) const;
323 // Whether the user is known to be signed in.
324 DialogSignedInState
SignedInState() const;
327 FRIEND_TEST_ALL_PREFIXES(AutofillDialogControllerI18nTest
,
328 CorrectCountryFromInputs
);
330 // Initializes or updates |suggested_cc_| et al.
331 void SuggestionsUpdated();
333 // Starts fetching the wallet items from Online Wallet.
334 void GetWalletItems();
336 // Stop showing sign in flow.
339 // Handles the SignedInState() on Wallet or sign-in state update.
340 // Triggers the user name fetch and passive sign-in.
341 void SignedInStateUpdated();
343 // Refreshes the model on Wallet or sign-in state update.
344 void OnWalletOrSigninUpdate();
346 // Called when a Save or Update call to Wallet has validation errors.
347 void OnWalletFormFieldError(
348 const std::vector
<wallet::FormFieldError
>& form_field_errors
);
350 // Calculates |legal_documents_text_| and |legal_document_link_ranges_|.
351 void ConstructLegalDocumentsText();
353 // Clears previously entered manual input and removes |section| from
354 // |section_editing_state_|. Does not update the view.
355 void ResetSectionInput(DialogSection section
);
357 // Force |section| into edit mode if the current suggestion is invalid.
358 void ShowEditUiIfBadSuggestion(DialogSection section
);
360 // Whether the |value| of |input| should be preserved on account change.
361 bool InputWasEdited(ServerFieldType type
,
362 const base::string16
& value
);
364 // Takes a snapshot of the newly inputted user data in |view_| (if it exists).
365 FieldValueMap
TakeUserInputSnapshot();
367 // Fills the detail inputs from a previously taken user input snapshot. Does
368 // not update the view.
369 void RestoreUserInputFromSnapshot(const FieldValueMap
& snapshot
);
371 // Tells the view to update |section|.
372 void UpdateSection(DialogSection section
);
374 // Tells |view_| to update the validity status of its detail inputs (if
375 // |view_| is non-null). Currently this is used solely for highlighting
376 // invalid suggestions, so if no sections are based on existing data,
377 // |view_->UpdateForErrors()| is not called.
378 void UpdateForErrors();
380 // Renders and returns one frame of the generated card animation.
381 gfx::Image
GetGeneratedCardImage(const base::string16
& card_number
,
382 const base::string16
& name
,
383 const SkColor
& gradient_top
,
384 const SkColor
& gradient_bottom
);
386 // Kicks off |card_scrambling_refresher_|.
387 void StartCardScramblingRefresher();
389 // Changes |scrambled_card_number_| and pushes an update to the view.
390 void RefreshCardScramblingOverlay();
392 // Tells the view to update the overlay.
393 void PushOverlayUpdate();
395 // Creates a DataModelWrapper item for the item that's checked in the
396 // suggestion model for |section|. This may represent Autofill
397 // data or Wallet data, depending on whether Wallet is currently enabled.
398 scoped_ptr
<DataModelWrapper
> CreateWrapper(DialogSection section
);
400 // Helper to return the current Wallet instrument or address. If the dialog
401 // isn't using Wallet or the user is adding a new instrument or address, NULL
403 const wallet::WalletItems::MaskedInstrument
* ActiveInstrument() const;
404 const wallet::Address
* ActiveShippingAddress() const;
406 // Fills in |section|-related fields in |output_| according to the state of
408 void FillOutputForSection(DialogSection section
);
409 // As above, but uses |compare| to determine whether a DetailInput matches
410 // a field. Saves any new Autofill data to the PersonalDataManager.
411 void FillOutputForSectionWithComparator(
412 DialogSection section
,
413 const FormStructure::InputFieldComparator
& compare
);
415 // Returns whether |form_structure|_| has any fields that match the fieldset
416 // represented by |section|.
417 bool FormStructureCaresAboutSection(DialogSection section
) const;
419 // Finds all fields of the given |type| in |form_structure_|, if any, and sets
420 // each field's value to |output|.
421 void SetOutputForFieldsOfType(ServerFieldType type
,
422 const base::string16
& output
);
424 // Gets the value for |type| in |section|, whether it comes from manual user
425 // input or the active suggestion.
426 base::string16
GetValueFromSection(DialogSection section
,
427 ServerFieldType type
);
429 // Returns whether the given section can accept an address with the given
431 bool CanAcceptCountry(DialogSection section
, const std::string
& country_code
);
433 // Whether |profile| should be suggested for |section|.
434 bool ShouldSuggestProfile(DialogSection section
,
435 const AutofillProfile
& profile
);
437 // Gets the SuggestionsMenuModel for |section|.
438 SuggestionsMenuModel
* SuggestionsMenuModelForSection(DialogSection section
);
439 const SuggestionsMenuModel
* SuggestionsMenuModelForSection(
440 DialogSection section
) const;
442 DialogSection
SectionForSuggestionsMenuModel(
443 const SuggestionsMenuModel
& model
);
445 // Gets the CountryComboboxModel for |section|.
446 CountryComboboxModel
* CountryComboboxModelForSection(DialogSection section
);
448 // Clears and builds the inputs in |section| for |country_name|.
449 // When |should_clobber| is false, and the view's country value matches
450 // |country_name|, the inputs won't be rebuilt.
451 bool RebuildInputsForCountry(DialogSection section
,
452 const base::string16
& country_name
,
453 bool should_clobber
);
455 // Suggested text and icons for sections. Suggestion text is used to show an
456 // abridged overview of the currently used suggestion. Extra text is used when
457 // part of a section is suggested but part must be manually input (e.g. during
458 // a CVC challenge or when using Autofill's CC section [never stores CVC]).
459 bool SuggestionTextForSection(DialogSection section
,
460 base::string16
* vertically_compact
,
461 base::string16
* horizontally_compact
);
462 base::string16
RequiredActionTextForSection(DialogSection section
) const;
463 gfx::Image
SuggestionIconForSection(DialogSection section
);
464 base::string16
ExtraSuggestionTextForSection(DialogSection section
) const;
465 gfx::Image
ExtraSuggestionIconForSection(DialogSection section
);
467 // Suggests address completions using the downloaded i18n validation rules.
468 // Stores the suggestions in |i18n_validator_suggestions_|.
469 void GetI18nValidatorSuggestions(DialogSection section
,
470 ServerFieldType type
,
471 std::vector
<base::string16
>* popup_values
,
472 std::vector
<base::string16
>* popup_labels
,
473 std::vector
<base::string16
>* popup_icons
);
475 // Like RequestedFieldsForSection, but returns a pointer.
476 DetailInputs
* MutableRequestedFieldsForSection(DialogSection section
);
478 // Returns a pointer to the language code that should be used for formatting
479 // the address in |section| for display. Returns NULL for a non-address
481 std::string
* MutableAddressLanguageCodeForSection(DialogSection section
);
483 // Returns the language code that should be used for formatting the address in
484 // |section|. Returns an empty string for a non-address |section|.
485 std::string
AddressLanguageCodeForSection(DialogSection section
);
487 // Returns just the |type| attributes of RequestedFieldsForSection(section).
488 std::vector
<ServerFieldType
> RequestedTypesForSection(DialogSection section
)
491 // Returns the country code (e.g. "US") for |section|.
492 std::string
CountryCodeForSection(DialogSection section
);
494 // Hides |popup_controller_|'s popup view, if it exists.
497 // Set whether the currently editing |section| was originally based on
498 // existing Wallet or Autofill data.
499 void SetEditingExistingData(DialogSection section
, bool editing
);
501 // Whether the user has chosen to enter all new data in at least one section.
502 bool IsManuallyEditingAnySection() const;
504 // Returns validity message for a given credit card number.
505 base::string16
CreditCardNumberValidityMessage(
506 const base::string16
& number
) const;
508 // Whether all of the input fields currently showing in the dialog have valid
509 // contents. This validates only by checking "sure" messages, i.e. messages
510 // that would have been displayed to the user during editing, as opposed to
512 bool AllSectionsAreValid();
514 // Whether all of the input fields currently showing in the given |section| of
515 // the dialog have valid contents. This validates only by checking "sure"
516 // messages - see AllSectionsAreValid.
517 bool SectionIsValid(DialogSection section
);
519 // Whether validation rules for |section| are loaded.
520 bool RulesAreLoaded(DialogSection section
);
522 // Whether the currently active credit card expiration date is valid.
523 bool IsCreditCardExpirationValid(const base::string16
& year
,
524 const base::string16
& month
) const;
526 // Returns true if we should reject the given credit card brand. |type| should
527 // be a display string, such as "Visa".
528 bool ShouldDisallowCcType(const base::string16
& type
) const;
530 // Returns true if |profile| has an address we can be sure is invalid.
531 // Profiles with invalid addresses are not suggested in the dropdown menu for
532 // billing and shipping addresses.
533 bool HasInvalidAddress(const AutofillProfile
& profile
);
535 // Returns true if |key| refers to a suggestion, as opposed to some control
537 bool IsASuggestionItemKey(const std::string
& key
) const;
539 // Returns whether Autofill is enabled for |profile_|.
540 bool IsAutofillEnabled() const;
542 // Whether the billing section should be used to fill in the shipping details.
543 bool ShouldUseBillingForShipping();
545 // Whether the user wishes to save information locally to Autofill.
546 bool ShouldSaveDetailsLocally();
548 // Change whether the controller is currently submitting details to Autofill
549 // or Online Wallet (|is_submitting_|) and update the view.
550 void SetIsSubmitting(bool submitting
);
552 // Whether the user has accepted all the current legal documents' terms.
553 bool AreLegalDocumentsCurrent() const;
555 // Accepts any pending legal documents now that the user has pressed Submit.
556 void AcceptLegalTerms();
558 // Start the submit proccess to interact with Online Wallet (might do various
559 // things like accept documents, save details, update details, respond to
560 // required actions, etc.).
561 void SubmitWithWallet();
563 // Creates an instrument based on |views_|' contents.
564 scoped_ptr
<wallet::Instrument
> CreateTransientInstrument();
566 // Creates an address based on the contents of |view_|.
567 scoped_ptr
<wallet::Address
> CreateTransientAddress();
569 // Gets a full wallet from Online Wallet so the user can purchase something.
570 // This information is decoded to reveal a fronting (proxy) card.
571 void GetFullWallet();
573 // Updates the state of the controller and |view_| based on any required
574 // actions returned by Save or Update calls to Wallet.
575 void HandleSaveOrUpdateRequiredActions(
576 const std::vector
<wallet::RequiredAction
>& required_actions
);
578 // Shows a card generation overlay if necessary, then calls DoFinishSubmit.
581 // Writes to prefs the choice of AutofillDataModel for |section|.
582 void PersistAutofillChoice(DialogSection section
,
583 const std::string
& guid
);
585 // Sets the outparams to the default AutofillDataModel for |section| (which is
586 // the first one in the menu that is a suggestion item).
587 void GetDefaultAutofillChoice(DialogSection section
,
590 // Reads from prefs the choice of AutofillDataModel for |section|. Returns
591 // whether there was a setting to read.
592 bool GetAutofillChoice(DialogSection section
,
595 // Logs metrics when the dialog is submitted.
596 void LogOnFinishSubmitMetrics();
598 // Logs metrics when the dialog is canceled.
599 void LogOnCancelMetrics();
601 // Logs metrics when the edit ui is shown for the given |section|.
602 void LogEditUiShownMetric(DialogSection section
);
604 // Logs metrics when a suggestion item from the given |model| is selected.
605 void LogSuggestionItemSelectedMetric(const SuggestionsMenuModel
& model
);
607 // Logs the time elapsed from when the dialog was shown to when the user could
609 void LogDialogLatencyToShow();
611 // Returns the metric corresponding to the user's initial state when
612 // interacting with this dialog.
613 AutofillMetrics::DialogInitialUserStateMetric
GetInitialUserState() const;
615 // Shows an educational bubble if a new credit card was saved or the first few
616 // times an Online Wallet fronting card was generated.
617 void MaybeShowCreditCardBubble();
619 // Called when the delay for enabling the submit button ends.
620 void OnSubmitButtonDelayEnd();
622 // Gets the user's current Wallet cookie (gdToken) from the cookie jar.
623 void FetchWalletCookie();
625 // The |profile| for |contents_|.
626 Profile
* const profile_
;
628 // For logging UMA metrics.
629 const AutofillMetrics metric_logger_
;
630 base::Time dialog_shown_timestamp_
;
631 AutofillMetrics::DialogInitialUserStateMetric initial_user_state_
;
633 FormStructure form_structure_
;
635 // Whether the URL visible to the user when this dialog was requested to be
636 // invoked is the same as |source_url_|.
637 bool invoked_from_same_origin_
;
639 // The URL of the invoking site.
642 // The callback via which we return the collected data.
643 AutofillManagerDelegate::ResultCallback callback_
;
645 // The AccountChooserModel acts as the MenuModel for the account chooser,
646 // and also tracks which data source the dialog is using.
647 scoped_ptr
<AccountChooserModel
> account_chooser_model_
;
649 // The sign-in helper to fetch the user's Wallet cookie and to perform passive
650 // sign-in. The helper is set only during fetch/sign-in, and NULL otherwise.
651 scoped_ptr
<wallet::WalletSigninHelper
> signin_helper_
;
653 // A client to talk to the Online Wallet API.
654 wallet::WalletClient wallet_client_
;
656 // A helper to validate international address input.
657 scoped_ptr
< ::i18n::addressinput::AddressValidator
> validator_
;
659 // True if |this| has ever called GetWalletItems().
660 bool wallet_items_requested_
;
662 // True when the user has clicked the "Use Wallet" link and we're waiting to
663 // figure out whether we need to ask them to actively sign in.
664 bool handling_use_wallet_link_click_
;
666 // True when the current WalletItems has a passive auth action which was
667 // attempted and failed.
668 bool passive_failed_
;
670 // Recently received items retrieved via |wallet_client_|.
671 scoped_ptr
<wallet::WalletItems
> wallet_items_
;
672 scoped_ptr
<wallet::FullWallet
> full_wallet_
;
674 // The default active instrument and shipping address object IDs as of the
675 // last time Wallet items were fetched. These variables are only set
676 // (i.e. non-empty) when the Wallet items are being re-fetched.
677 std::string previous_default_instrument_id_
;
678 std::string previous_default_shipping_address_id_
;
679 // The last active instrument and shipping address object IDs. These
680 // variables are only set (i.e. non-empty) when the Wallet items are being
682 std::string previously_selected_instrument_id_
;
683 std::string previously_selected_shipping_address_id_
;
685 // When the Wallet items were last fetched.
686 base::TimeTicks last_wallet_items_fetch_timestamp_
;
688 // Local machine signals to pass along on each request to trigger (or
689 // discourage) risk challenges; sent if the user is up to date on legal docs.
690 std::string risk_data_
;
692 // The text to display when the user is accepting new terms of service, etc.
693 base::string16 legal_documents_text_
;
694 // The ranges within |legal_documents_text_| to linkify.
695 std::vector
<gfx::Range
> legal_document_link_ranges_
;
697 // The instrument and address IDs from the Online Wallet server to be used
698 // when getting a full wallet.
699 std::string active_instrument_id_
;
700 std::string active_address_id_
;
702 // The fields for billing and shipping which the page has actually requested.
703 DetailInputs requested_cc_fields_
;
704 DetailInputs requested_billing_fields_
;
705 DetailInputs requested_cc_billing_fields_
;
706 DetailInputs requested_shipping_fields_
;
708 // The BCP 47 language codes used for formatting the addresses for display.
709 std::string billing_address_language_code_
;
710 std::string shipping_address_language_code_
;
712 // Models for the credit card expiration inputs.
713 MonthComboboxModel cc_exp_month_combobox_model_
;
714 YearComboboxModel cc_exp_year_combobox_model_
;
716 // Models for country input.
717 scoped_ptr
<CountryComboboxModel
> billing_country_combobox_model_
;
718 scoped_ptr
<CountryComboboxModel
> shipping_country_combobox_model_
;
720 // Models for the suggestion views.
721 SuggestionsMenuModel suggested_cc_
;
722 SuggestionsMenuModel suggested_billing_
;
723 SuggestionsMenuModel suggested_cc_billing_
;
724 SuggestionsMenuModel suggested_shipping_
;
726 // The set of values for cc-type that the site accepts. Empty means all types
728 std::set
<base::string16
> acceptable_cc_types_
;
730 // |DialogSection|s that are in edit mode that are based on existing data.
731 std::set
<DialogSection
> section_editing_state_
;
733 // Sections that need to be validated when their validation rules load.
734 std::set
<DialogSection
> needs_validation_
;
736 // Whether |form_structure_| has asked for any details that would indicate
737 // we should show a shipping section.
738 bool cares_about_shipping_
;
740 // The GUIDs for the currently showing unverified profiles popup.
741 std::vector
<PersonalDataManager::GUIDPair
> popup_guids_
;
743 // The autofill suggestions based on downloaded i18n validation rules.
744 std::vector
< ::i18n::addressinput::AddressData
> i18n_validator_suggestions_
;
746 // The controller for the currently showing popup (which helps users when
747 // they're manually filling the dialog).
748 base::WeakPtr
<AutofillPopupControllerImpl
> popup_controller_
;
750 // The type of the visible Autofill popup input (or UNKNOWN_TYPE if none).
751 ServerFieldType popup_input_type_
;
753 scoped_ptr
<AutofillDialogView
> view_
;
755 // A NotificationRegistrar for tracking the completion of sign-in.
756 content::NotificationRegistrar signin_registrar_
;
758 // Set to true when the user presses the sign in link, until we're ready to
759 // show the normal dialog again. This is used to hide the buttons while
760 // the spinner is showing after an explicit sign in.
761 bool waiting_for_explicit_sign_in_response_
;
763 // Whether a user accepted legal documents while this dialog is running.
764 bool has_accepted_legal_documents_
;
766 // True after the user first accepts the dialog and presses "Submit". May
767 // continue to be true while processing required actions.
770 // True if the last call to |GetFullWallet()| returned a
771 // CHOOSE_ANOTHER_INSTRUMENT_OR_ADDRESS required action, indicating that the
772 // selected instrument or address had become invalid since it was originally
773 // returned in |GetWalletItems()|.
774 bool choose_another_instrument_or_address_
;
776 // Whether or not the server side validation errors returned by Wallet were
778 bool wallet_server_validation_recoverable_
;
780 // Whether |callback_| was Run() with a filled |form_structure_|.
781 bool data_was_passed_back_
;
783 typedef std::map
<ServerFieldType
,
784 std::pair
<base::string16
, base::string16
> > TypeErrorInputMap
;
785 typedef std::map
<DialogSection
, TypeErrorInputMap
> WalletValidationErrors
;
786 // Wallet validation errors. section->type->(error_msg, input_value).
787 WalletValidationErrors wallet_errors_
;
789 // The notification that describes the current wallet error, if any.
790 scoped_ptr
<DialogNotification
> wallet_error_notification_
;
792 // Whether the latency to display to the UI was logged to UMA yet.
793 bool was_ui_latency_logged_
;
795 // The Google Wallet cookie value, set as an authorization header on requests
797 std::string wallet_cookie_value_
;
799 // A map from dialog sections to the GUID of a newly saved Autofill data
800 // models for that section. No entries present that don't have newly saved
802 std::map
<DialogSection
, std::string
> newly_saved_data_model_guids_
;
804 // Populated if the user chose to save a newly inputted credit card. Used to
805 // show a bubble as the dialog closes to confirm a user's new card info was
806 // saved. Never populated while incognito (as nothing's actually saved).
807 scoped_ptr
<CreditCard
> newly_saved_card_
;
809 // The last four digits of the backing card used for the current run of the
810 // dialog. Only applies to Wallet and is populated on submit.
811 base::string16 backing_card_last_four_
;
813 // The timer that delays enabling submit button for a short period of time on
815 base::OneShotTimer
<AutofillDialogControllerImpl
> submit_button_delay_timer_
;
817 // The card scrambling animation displays a random number in place of an
818 // actual credit card number. This is that random number.
819 base::string16 scrambled_card_number_
;
821 // Two timers to deal with the card scrambling animation. The first provides
822 // a one second delay before the numbers start scrambling. The second controls
823 // the rate of refresh for the number scrambling.
824 base::OneShotTimer
<AutofillDialogControllerImpl
> card_scrambling_delay_
;
825 base::RepeatingTimer
<AutofillDialogControllerImpl
> card_scrambling_refresher_
;
827 // An animation which controls the background fade when the card is done
829 gfx::LinearAnimation card_generated_animation_
;
831 // A username string we display in the card scrambling/generated overlay.
832 base::string16 submitted_cardholder_name_
;
834 base::WeakPtrFactory
<AutofillDialogControllerImpl
> weak_ptr_factory_
;
836 DISALLOW_COPY_AND_ASSIGN(AutofillDialogControllerImpl
);
839 } // namespace autofill
841 #endif // CHROME_BROWSER_UI_AUTOFILL_AUTOFILL_DIALOG_CONTROLLER_IMPL_H_