blob: 598c40b4eb6dc4cbfba5433018c229cfb1d7ac9f [file] [log] [blame]
// Copyright 2014 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_BROWSER_UI_AUTOFILL_CHROME_AUTOFILL_CLIENT_H_
#define CHROME_BROWSER_UI_AUTOFILL_CHROME_AUTOFILL_CLIENT_H_
#include <memory>
#include <string>
#include <vector>
#include "base/functional/callback.h"
#include "base/i18n/rtl.h"
#include "base/memory/raw_ptr.h"
#include "base/memory/weak_ptr.h"
#include "base/scoped_observation.h"
#include "build/build_config.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/ui/hats/hats_service_desktop.h"
#include "components/autofill/content/browser/content_autofill_client.h"
#include "components/autofill/core/browser/autofill_driver.h"
#include "components/autofill/core/browser/autofill_plus_address_delegate.h"
#include "components/autofill/core/browser/country_type.h"
#include "components/autofill/core/browser/crowdsourcing/autofill_crowdsourcing_manager.h"
#include "components/autofill/core/browser/logging/log_manager.h"
#include "components/autofill/core/browser/payments/iban_access_manager.h"
#include "components/autofill/core/browser/payments/legal_message_line.h"
#include "components/autofill/core/browser/ui/payments/autofill_error_dialog_controller_impl.h"
#include "components/autofill/core/browser/ui/payments/autofill_progress_dialog_controller_impl.h"
#include "components/autofill/core/browser/ui/payments/card_unmask_authentication_selection_dialog_controller_impl.h"
#include "components/autofill/core/browser/ui/payments/card_unmask_prompt_controller_impl.h"
#include "components/autofill/core/browser/ui/payments/card_unmask_prompt_options.h"
#include "components/autofill/core/browser/ui/popup_item_ids.h"
#include "components/signin/public/identity_manager/account_info.h"
#include "content/public/browser/visibility.h"
#include "content/public/browser/web_contents_observer.h"
#if BUILDFLAG(IS_ANDROID)
#include "chrome/browser/touch_to_fill/autofill/android/touch_to_fill_credit_card_controller.h"
#include "chrome/browser/ui/android/autofill/save_update_address_profile_flow_manager.h"
#include "components/autofill/core/browser/ui/fast_checkout_client.h"
#include "components/autofill/core/browser/ui/payments/card_expiration_date_fix_flow_controller_impl.h"
#include "components/autofill/core/browser/ui/payments/card_name_fix_flow_controller_impl.h"
#else
#include "chrome/browser/ui/autofill/payments/manage_migration_ui_controller.h"
#include "chrome/browser/ui/autofill/payments/save_card_bubble_controller.h"
#endif // BUILDFLAG(IS_ANDROID)
namespace autofill {
struct AutofillErrorDialogContext;
class AutofillOptimizationGuide;
class AutofillPopupControllerImpl;
#if BUILDFLAG(IS_ANDROID)
class AutofillSaveCardBottomSheetBridge;
class AutofillSnackbarControllerImpl;
class AutofillCvcSaveMessageDelegate;
#endif // BUILDFLAG(IS_ANDROID)
class CardUnmaskOtpInputDialogControllerImpl;
struct OfferNotificationOptions;
struct VirtualCardEnrollmentFields;
class VirtualCardEnrollmentManager;
struct VirtualCardManualFallbackBubbleOptions;
namespace payments {
class PaymentsAutofillClient;
class MandatoryReauthManager;
} // namespace payments
// Chrome implementation of AutofillClient.
//
// ChromeAutofillClient is instantiated once per WebContents, and usages of
// main frame refer to the primary main frame because WebContents only has a
// primary main frame.
//
// Production code should not depend on ChromeAutofillClient but only on
// ContentAutofillClient. This ensures that tests can inject different
// implementations of ContentAutofillClient without causing invalid casts to
// ChromeAutofillClient.
class ChromeAutofillClient : public ContentAutofillClient,
public content::WebContentsObserver
{
public:
// Creates a new ChromeAutofillClient for the given `web_contents` if no
// ContentAutofillClient is associated with the `web_contents` yet. Otherwise,
// it's a no-op.
static void CreateForWebContents(content::WebContents* web_contents);
// Only tests that require ChromeAutofillClient's `*ForTesting()` functions
// may use this function.
//
// Generally, code should use ContentAutofillClient::FromWebContents() if
// possible. This is because many tests inject clients that do not inherit
// from ChromeAutofillClient.
static ChromeAutofillClient* FromWebContentsForTesting(
content::WebContents* web_contents) {
return static_cast<ChromeAutofillClient*>(FromWebContents(web_contents));
}
ChromeAutofillClient(const ChromeAutofillClient&) = delete;
ChromeAutofillClient& operator=(const ChromeAutofillClient&) = delete;
~ChromeAutofillClient() override;
// AutofillClient:
version_info::Channel GetChannel() const override;
bool IsOffTheRecord() override;
scoped_refptr<network::SharedURLLoaderFactory> GetURLLoaderFactory() override;
AutofillCrowdsourcingManager* GetCrowdsourcingManager() override;
AutofillOptimizationGuide* GetAutofillOptimizationGuide() const override;
AutofillMlPredictionModelHandler* GetAutofillMlPredictionModelHandler()
override;
PersonalDataManager* GetPersonalDataManager() override;
AutocompleteHistoryManager* GetAutocompleteHistoryManager() override;
IbanManager* GetIbanManager() override;
IbanAccessManager* GetIbanAccessManager() override;
AutofillComposeDelegate* GetComposeDelegate() override;
AutofillPlusAddressDelegate* GetPlusAddressDelegate() override;
void OfferPlusAddressCreation(const url::Origin& main_frame_origin,
PlusAddressCallback callback) override;
MerchantPromoCodeManager* GetMerchantPromoCodeManager() override;
CreditCardCvcAuthenticator* GetCvcAuthenticator() override;
CreditCardOtpAuthenticator* GetOtpAuthenticator() override;
CreditCardRiskBasedAuthenticator* GetRiskBasedAuthenticator() override;
PrefService* GetPrefs() override;
const PrefService* GetPrefs() const override;
syncer::SyncService* GetSyncService() override;
signin::IdentityManager* GetIdentityManager() override;
FormDataImporter* GetFormDataImporter() override;
payments::PaymentsAutofillClient* GetPaymentsAutofillClient() override;
payments::PaymentsNetworkInterface* GetPaymentsNetworkInterface() override;
payments::PaymentsWindowManager* GetPaymentsWindowManager() override;
StrikeDatabase* GetStrikeDatabase() override;
ukm::UkmRecorder* GetUkmRecorder() override;
ukm::SourceId GetUkmSourceId() override;
AddressNormalizer* GetAddressNormalizer() override;
AutofillOfferManager* GetAutofillOfferManager() override;
const GURL& GetLastCommittedPrimaryMainFrameURL() const override;
url::Origin GetLastCommittedPrimaryMainFrameOrigin() const override;
security_state::SecurityLevel GetSecurityLevelForUmaHistograms() override;
const translate::LanguageState* GetLanguageState() override;
translate::TranslateDriver* GetTranslateDriver() override;
GeoIpCountryCode GetVariationConfigCountryCode() const override;
profile_metrics::BrowserProfileType GetProfileType() const override;
FastCheckoutClient* GetFastCheckoutClient() override;
std::unique_ptr<webauthn::InternalAuthenticator>
CreateCreditCardInternalAuthenticator(AutofillDriver* driver) override;
void ShowAutofillSettings(FillingProduct main_filling_product) override;
void ShowCardUnmaskOtpInputDialog(
const CardUnmaskChallengeOption& challenge_option,
base::WeakPtr<OtpUnmaskDelegate> delegate) override;
void OnUnmaskOtpVerificationResult(OtpUnmaskResult unmask_result) override;
void ShowUnmaskPrompt(
const CreditCard& card,
const CardUnmaskPromptOptions& card_unmask_prompt_options,
base::WeakPtr<CardUnmaskDelegate> delegate) override;
void OnUnmaskVerificationResult(PaymentsRpcResult result) override;
void ShowUnmaskAuthenticatorSelectionDialog(
const std::vector<CardUnmaskChallengeOption>& challenge_options,
base::OnceCallback<void(const std::string&)>
confirm_unmask_challenge_option_callback,
base::OnceClosure cancel_unmasking_closure) override;
void DismissUnmaskAuthenticatorSelectionDialog(bool server_success) override;
VirtualCardEnrollmentManager* GetVirtualCardEnrollmentManager() override;
void ShowVirtualCardEnrollDialog(
const VirtualCardEnrollmentFields& virtual_card_enrollment_fields,
base::OnceClosure accept_virtual_card_callback,
base::OnceClosure decline_virtual_card_callback) override;
payments::MandatoryReauthManager* GetOrCreatePaymentsMandatoryReauthManager()
override;
void ShowMandatoryReauthOptInPrompt(
base::OnceClosure accept_mandatory_reauth_callback,
base::OnceClosure cancel_mandatory_reauth_callback,
base::RepeatingClosure close_mandatory_reauth_callback) override;
void ShowMandatoryReauthOptInConfirmation() override;
#if !BUILDFLAG(IS_ANDROID) && !BUILDFLAG(IS_IOS)
void HideVirtualCardEnrollBubbleAndIconIfVisible() override;
#endif
#if !BUILDFLAG(IS_ANDROID)
void ShowWebauthnOfferDialog(
WebauthnDialogCallback offer_dialog_callback) override;
void ShowWebauthnVerifyPendingDialog(
WebauthnDialogCallback verify_pending_dialog_callback) override;
void UpdateWebauthnOfferDialogWithError() override;
bool CloseWebauthnDialog() override;
void OfferVirtualCardOptions(
const std::vector<raw_ptr<CreditCard, VectorExperimental>>& candidates,
base::OnceCallback<void(const std::string&)> callback) override;
#else // !BUILDFLAG(IS_ANDROID)
void ConfirmAccountNameFixFlow(
base::OnceCallback<void(const std::u16string&)> callback) override;
void ConfirmExpirationDateFixFlow(
const CreditCard& card,
base::OnceCallback<void(const std::u16string&, const std::u16string&)>
callback) override;
#endif
void ConfirmSaveCreditCardLocally(
const CreditCard& card,
SaveCreditCardOptions options,
LocalSaveCardPromptCallback callback) override;
void ConfirmSaveCreditCardToCloud(
const CreditCard& card,
const LegalMessageLines& legal_message_lines,
SaveCreditCardOptions options,
UploadSaveCardPromptCallback callback) override;
void ConfirmSaveIbanLocally(const Iban& iban,
bool should_show_prompt,
SaveIbanPromptCallback callback) override;
void ConfirmUploadIbanToCloud(const Iban& iban,
LegalMessageLines legal_message_lines,
bool should_show_prompt,
SaveIbanPromptCallback callback) override;
void ConfirmCreditCardFillAssist(const CreditCard& card,
base::OnceClosure callback) override;
void ShowEditAddressProfileDialog(
const AutofillProfile& profile,
AddressProfileSavePromptCallback on_user_decision_callback) override;
void ShowDeleteAddressProfileDialog(
const AutofillProfile& profile,
AddressProfileDeleteDialogCallback delete_dialog_callback) override;
void ConfirmSaveAddressProfile(
const AutofillProfile& profile,
const AutofillProfile* original_profile,
SaveAddressProfilePromptOptions options,
AddressProfileSavePromptCallback callback) override;
bool HasCreditCardScanFeature() const override;
void ScanCreditCard(CreditCardScanCallback callback) override;
bool ShowTouchToFillCreditCard(
base::WeakPtr<TouchToFillDelegate> delegate,
base::span<const autofill::CreditCard> cards_to_suggest) override;
void HideTouchToFillCreditCard() override;
void ShowAutofillPopup(
const PopupOpenArgs& open_args,
base::WeakPtr<AutofillPopupDelegate> delegate) override;
void UpdateAutofillPopupDataListValues(
base::span<const SelectOption> datalist) override;
std::vector<Suggestion> GetPopupSuggestions() const override;
void PinPopupView() override;
PopupOpenArgs GetReopenPopupArgs(
AutofillSuggestionTriggerSource trigger_source) const override;
std::optional<PopupScreenLocation> GetPopupScreenLocation() const override;
void UpdatePopup(const std::vector<Suggestion>& suggestions,
FillingProduct main_filling_product,
AutofillSuggestionTriggerSource trigger_source) override;
void HideAutofillPopup(PopupHidingReason reason) override;
void UpdateOfferNotification(
const AutofillOfferData* offer,
const OfferNotificationOptions& options) override;
void DismissOfferNotification() override;
void OnVirtualCardDataAvailable(
const VirtualCardManualFallbackBubbleOptions& options) override;
void ShowAutofillErrorDialog(
const AutofillErrorDialogContext& context) override;
void ShowAutofillProgressDialog(
AutofillProgressDialogType autofill_progress_dialog_type,
base::OnceClosure cancel_callback) override;
void TriggerUserPerceptionOfAutofillSurvey(
const std::map<std::string, std::string>& field_filling_stats_data)
override;
void CloseAutofillProgressDialog(
bool show_confirmation_before_closing,
base::OnceClosure no_interactive_authentication_callback) override;
bool IsAutocompleteEnabled() const override;
bool IsPasswordManagerEnabled() override;
void DidFillOrPreviewForm(mojom::ActionPersistence action_persistence,
AutofillTriggerSource trigger_source,
bool is_refill) override;
void DidFillOrPreviewField(const std::u16string& autofilled_value,
const std::u16string& profile_full_name) override;
bool IsContextSecure() const override;
void OpenPromoCodeOfferDetailsURL(const GURL& url) override;
LogManager* GetLogManager() const override;
FormInteractionsFlowId GetCurrentFormInteractionsFlowId() override;
std::unique_ptr<device_reauth::DeviceAuthenticator> GetDeviceAuthenticator()
override;
base::WeakPtr<AutofillPopupControllerImpl> popup_controller_for_testing() {
return popup_controller_;
}
void KeepPopupOpenForTesting() { keep_popup_open_for_testing_ = true; }
std::unique_ptr<CardUnmaskPromptControllerImpl>
SetCardUnmaskControllerForTesting(
std::unique_ptr<CardUnmaskPromptControllerImpl> test_controller) {
return std::exchange(unmask_controller_, std::move(test_controller));
}
AutofillProgressDialogControllerImpl*
AutofillProgressDialogControllerForTesting() {
return autofill_progress_dialog_controller_.get();
}
// ContentAutofillClient:
std::unique_ptr<AutofillManager> CreateManager(
base::PassKey<ContentAutofillDriver> pass_key,
ContentAutofillDriver& driver) override;
void InitAgent(
base::PassKey<ContentAutofillDriverFactory> pass_key,
const mojo::AssociatedRemote<mojom::AutofillAgent>& agent) override;
protected:
explicit ChromeAutofillClient(content::WebContents* web_contents);
#if BUILDFLAG(IS_ANDROID)
void SetAutofillSaveCardBottomSheetBridgeForTesting(
std::unique_ptr<AutofillSaveCardBottomSheetBridge>
autofill_save_card_bottom_sheet_bridge);
#endif
private:
Profile* GetProfile() const;
bool IsMultipleAccountUser();
std::u16string GetAccountHolderName();
std::u16string GetAccountHolderEmail();
bool SupportsConsentlessExecution(const url::Origin& origin);
#if BUILDFLAG(IS_ANDROID)
AutofillSaveCardBottomSheetBridge*
GetOrCreateAutofillSaveCardBottomSheetBridge();
#endif
std::unique_ptr<LogManager> log_manager_;
// These members are initialized lazily in their respective getters.
// Therefore, do not access the members directly.
std::unique_ptr<AutofillCrowdsourcingManager> crowdsourcing_manager_;
std::unique_ptr<payments::PaymentsAutofillClient> payments_autofill_client_;
std::unique_ptr<payments::PaymentsNetworkInterface>
payments_network_interface_;
std::unique_ptr<payments::PaymentsWindowManager> payments_window_manager_;
std::unique_ptr<CreditCardCvcAuthenticator> cvc_authenticator_;
std::unique_ptr<CreditCardOtpAuthenticator> otp_authenticator_;
std::unique_ptr<CreditCardRiskBasedAuthenticator> risk_based_authenticator_;
std::unique_ptr<CardUnmaskAuthenticationSelectionDialogControllerImpl>
card_unmask_authentication_selection_controller_;
std::unique_ptr<FormDataImporter> form_data_importer_;
std::unique_ptr<payments::MandatoryReauthManager>
payments_mandatory_reauth_manager_;
std::unique_ptr<IbanAccessManager> iban_access_manager_;
base::WeakPtr<AutofillPopupControllerImpl> popup_controller_;
FormInteractionsFlowId flow_id_{};
base::Time flow_id_date_;
// If set to true, the popup will stay open regardless of external changes on
// the test machine, that may normally cause the popup to be hidden
bool keep_popup_open_for_testing_ = false;
#if BUILDFLAG(IS_ANDROID)
CardExpirationDateFixFlowControllerImpl
card_expiration_date_fix_flow_controller_;
CardNameFixFlowControllerImpl card_name_fix_flow_controller_;
SaveUpdateAddressProfileFlowManager save_update_address_profile_flow_manager_;
TouchToFillCreditCardController touch_to_fill_credit_card_controller_{this};
std::unique_ptr<AutofillSnackbarControllerImpl>
autofill_snackbar_controller_impl_;
std::unique_ptr<FastCheckoutClient> fast_checkout_client_;
std::unique_ptr<AutofillSaveCardBottomSheetBridge>
autofill_save_card_bottom_sheet_bridge_;
std::unique_ptr<AutofillCvcSaveMessageDelegate>
autofill_cvc_save_message_delegate_;
#endif
std::unique_ptr<CardUnmaskPromptControllerImpl> unmask_controller_;
AutofillErrorDialogControllerImpl autofill_error_dialog_controller_;
std::unique_ptr<AutofillProgressDialogControllerImpl>
autofill_progress_dialog_controller_;
std::unique_ptr<CardUnmaskOtpInputDialogControllerImpl>
card_unmask_otp_input_dialog_controller_;
};
} // namespace autofill
#endif // CHROME_BROWSER_UI_AUTOFILL_CHROME_AUTOFILL_CLIENT_H_