| // Copyright 2013 The Chromium Authors |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| |
| #import "components/autofill/ios/browser/autofill_agent.h" |
| |
| #import <UIKit/UIKit.h> |
| |
| #import <memory> |
| #import <string> |
| #import <utility> |
| |
| #import "base/apple/foundation_util.h" |
| #import "base/format_macros.h" |
| #import "base/json/json_reader.h" |
| #import "base/json/json_writer.h" |
| #import "base/memory/weak_ptr.h" |
| #import "base/metrics/field_trial.h" |
| #import "base/metrics/histogram_macros.h" |
| #import "base/strings/string_number_conversions.h" |
| #import "base/strings/sys_string_conversions.h" |
| #import "base/strings/utf_string_conversions.h" |
| #import "base/time/time.h" |
| #import "base/types/cxx23_to_underlying.h" |
| #import "base/uuid.h" |
| #import "base/values.h" |
| #import "components/autofill/core/browser/autofill_field.h" |
| #import "components/autofill/core/browser/browser_autofill_manager.h" |
| #import "components/autofill/core/browser/data_model/autofill_profile.h" |
| #import "components/autofill/core/browser/data_model/credit_card.h" |
| #import "components/autofill/core/browser/metrics/autofill_metrics.h" |
| #import "components/autofill/core/browser/ui/popup_item_ids.h" |
| #import "components/autofill/core/browser/ui/popup_types.h" |
| #import "components/autofill/core/browser/ui/suggestion.h" |
| #import "components/autofill/core/common/autofill_constants.h" |
| #import "components/autofill/core/common/autofill_features.h" |
| #import "components/autofill/core/common/autofill_prefs.h" |
| #import "components/autofill/core/common/autofill_tick_clock.h" |
| #import "components/autofill/core/common/autofill_util.h" |
| #import "components/autofill/core/common/field_data_manager.h" |
| #import "components/autofill/core/common/form_data.h" |
| #import "components/autofill/core/common/form_data_predictions.h" |
| #import "components/autofill/core/common/form_field_data.h" |
| #import "components/autofill/ios/browser/autofill_driver_ios.h" |
| #import "components/autofill/ios/browser/autofill_java_script_feature.h" |
| #import "components/autofill/ios/browser/autofill_util.h" |
| #import "components/autofill/ios/browser/form_suggestion.h" |
| #import "components/autofill/ios/browser/form_suggestion_provider.h" |
| #import "components/autofill/ios/form_util/form_activity_observer_bridge.h" |
| #import "components/autofill/ios/form_util/form_activity_params.h" |
| #import "components/autofill/ios/form_util/form_handlers_java_script_feature.h" |
| #import "components/autofill/ios/form_util/unique_id_data_tab_helper.h" |
| #import "components/prefs/ios/pref_observer_bridge.h" |
| #import "components/prefs/pref_change_registrar.h" |
| #import "components/prefs/pref_service.h" |
| #import "components/ukm/ios/ukm_url_recorder.h" |
| #import "ios/web/common/url_scheme_util.h" |
| #import "ios/web/public/js_messaging/web_frame.h" |
| #import "ios/web/public/js_messaging/web_frames_manager.h" |
| #import "ios/web/public/js_messaging/web_frames_manager_observer_bridge.h" |
| #import "ios/web/public/navigation/navigation_context.h" |
| #import "ios/web/public/web_state.h" |
| #import "ios/web/public/web_state_observer_bridge.h" |
| #import "services/metrics/public/cpp/ukm_builders.h" |
| #import "ui/base/resource/resource_bundle.h" |
| #import "ui/gfx/geometry/rect.h" |
| #import "url/gurl.h" |
| |
| using autofill::AutofillJavaScriptFeature; |
| using autofill::FieldDataManager; |
| using autofill::FieldRendererId; |
| using autofill::FormGlobalId; |
| using autofill::FormHandlersJavaScriptFeature; |
| using autofill::FormRendererId; |
| using autofill::FieldPropertiesFlags::kAutofilledOnUserTrigger; |
| using base::NumberToString; |
| using base::SysNSStringToUTF16; |
| using base::SysNSStringToUTF8; |
| using base::SysUTF16ToNSString; |
| using base::SysUTF8ToNSString; |
| |
| namespace { |
| |
| using FormDataVector = std::vector<autofill::FormData>; |
| |
| // The type of the completion handler block for |
| // |fetchFormsWithName:minimumRequiredFieldsCount:completionHandler| |
| typedef void (^FetchFormsCompletionHandler)(BOOL, const FormDataVector&); |
| |
| // Gets the field specified by |fieldIdentifier| from |form|, if focusable. Also |
| // modifies the field's value for the select elements. |
| void GetFormField(autofill::FormFieldData* field, |
| const autofill::FormData& form, |
| FieldRendererId fieldIdentifier) { |
| for (const auto& currentField : form.fields) { |
| if (currentField.unique_renderer_id == fieldIdentifier && |
| currentField.is_focusable) { |
| *field = currentField; |
| break; |
| } |
| } |
| if (field->SameFieldAs(autofill::FormFieldData())) |
| return; |
| |
| // Hack to get suggestions from select input elements. |
| if (field->IsSelectElement()) { |
| // Any value set will cause the BrowserAutofillManager to filter suggestions |
| // (only show suggestions that begin the same as the current value) with the |
| // effect that one only suggestion would be returned; the value itself. |
| field->value = std::u16string(); |
| } |
| } |
| |
| // Delay for setting an utterance to be queued, it is required to ensure that |
| // standard announcements have already been started and thus would not interrupt |
| // the enqueued utterance. |
| constexpr base::TimeDelta kA11yAnnouncementQueueDelay = base::Seconds(1); |
| |
| } // namespace |
| |
| @interface AutofillAgent () <CRWWebStateObserver, |
| CRWWebFramesManagerObserver, |
| FormActivityObserver, |
| PrefObserverDelegate> { |
| // The WebState this instance is observing. Will be null after |
| // -webStateDestroyed: has been called. |
| web::WebState* _webState; |
| |
| // Bridge to observe the web state from Objective-C. |
| std::unique_ptr<web::WebStateObserverBridge> _webStateObserverBridge; |
| |
| // Bridge to observe the web frames manager from Objective-C. |
| std::unique_ptr<web::WebFramesManagerObserverBridge> |
| _webFramesManagerObserverBridge; |
| |
| // The pref service for which this agent was created. |
| PrefService* _prefService; |
| |
| // The unique renderer ID of the most recent autocomplete field; |
| // tracks the currently-focused form element in order to force filling of |
| // the currently selected form element, even if it's non-empty. |
| FieldRendererId _pendingAutocompleteFieldID; |
| |
| // Suggestions state: |
| // The most recent form suggestions. |
| NSArray* _mostRecentSuggestions; |
| |
| // The completion to inform FormSuggestionController that a user selection |
| // has been handled. |
| SuggestionHandledCompletion _suggestionHandledCompletion; |
| |
| // The completion to inform FormSuggestionController that suggestions are |
| // available for a given form and field. |
| SuggestionsAvailableCompletion _suggestionsAvailableCompletion; |
| |
| // The text entered by the user into the active field. |
| NSString* _typedValue; |
| |
| // Popup delegate for the most recent suggestions. |
| // The reference is weak because a weak pointer is sent to our |
| // BrowserAutofillManagerDelegate. |
| base::WeakPtr<autofill::AutofillPopupDelegate> _popupDelegate; |
| |
| // The autofill data that needs to be send when the |webState_| is shown. |
| // The pair contains the frame ID and the base::Value::Dict to send. |
| // If the value is nullopt, no data needs to be sent. |
| absl::optional<std::pair<std::string, base::Value::Dict>> _pendingFormData; |
| |
| // Bridge to listen to pref changes. |
| std::unique_ptr<PrefObserverBridge> _prefObserverBridge; |
| // Registrar for pref changes notifications. |
| PrefChangeRegistrar _prefChangeRegistrar; |
| |
| // Bridge to observe form activity in |webState_|. |
| std::unique_ptr<autofill::FormActivityObserverBridge> |
| _formActivityObserverBridge; |
| |
| scoped_refptr<FieldDataManager> _fieldDataManager; |
| |
| // ID of the last Autofill query made. Used to discard outdated suggestions. |
| autofill::FieldGlobalId _lastQueriedFieldID; |
| } |
| |
| @end |
| |
| @implementation AutofillAgent |
| |
| - (instancetype)initWithPrefService:(PrefService*)prefService |
| webState:(web::WebState*)webState { |
| DCHECK(prefService); |
| DCHECK(webState); |
| self = [super init]; |
| if (self) { |
| _webState = webState; |
| _webStateObserverBridge = |
| std::make_unique<web::WebStateObserverBridge>(self); |
| _webState->AddObserver(_webStateObserverBridge.get()); |
| _webFramesManagerObserverBridge = |
| std::make_unique<web::WebFramesManagerObserverBridge>(self); |
| web::WebFramesManager* framesManager = |
| AutofillJavaScriptFeature::GetInstance()->GetWebFramesManager( |
| _webState); |
| framesManager->AddObserver(_webFramesManagerObserverBridge.get()); |
| _formActivityObserverBridge = |
| std::make_unique<autofill::FormActivityObserverBridge>(_webState, self); |
| _prefService = prefService; |
| _prefObserverBridge = std::make_unique<PrefObserverBridge>(self); |
| _prefChangeRegistrar.Init(prefService); |
| _prefObserverBridge->ObserveChangesForPreference( |
| autofill::prefs::kAutofillCreditCardEnabled, &_prefChangeRegistrar); |
| _prefObserverBridge->ObserveChangesForPreference( |
| autofill::prefs::kAutofillProfileEnabled, &_prefChangeRegistrar); |
| |
| UniqueIDDataTabHelper* uniqueIDDataTabHelper = |
| UniqueIDDataTabHelper::FromWebState(_webState); |
| _fieldDataManager = uniqueIDDataTabHelper->GetFieldDataManager(); |
| } |
| return self; |
| } |
| |
| - (void)dealloc { |
| if (_webState) { |
| [self webStateDestroyed:_webState]; |
| } |
| } |
| |
| #pragma mark - Private methods |
| |
| // Returns the autofill manager associated with a web::WebState instance. |
| // Returns nullptr if there is no autofill manager associated anymore, this can |
| // happen when |close| has been called on the |webState|. Also returns nullptr |
| // if -webStateDestroyed: has been called. |
| - (autofill::BrowserAutofillManager*) |
| autofillManagerFromWebState:(web::WebState*)webState |
| webFrame:(web::WebFrame*)webFrame { |
| if (!webState || !_webStateObserverBridge) |
| return nullptr; |
| return autofill::AutofillDriverIOS::FromWebStateAndWebFrame(webState, |
| webFrame) |
| ->autofill_manager(); |
| } |
| |
| // Notifies the autofill manager when forms are detected on a page. |
| - (void)notifyBrowserAutofillManager: |
| (autofill::BrowserAutofillManager*)autofillManager |
| ofFormsSeen:(const FormDataVector&)updated_forms { |
| DCHECK(autofillManager); |
| DCHECK(!updated_forms.empty()); |
| // TODO(crbug.com/1215337): Notify |autofillManager| about deleted fields. |
| std::vector<FormGlobalId> removed_forms; |
| autofillManager->OnFormsSeen(/*updated_forms=*/updated_forms, |
| /*removed_forms=*/removed_forms); |
| } |
| |
| // Notifies the autofill manager when forms are submitted. |
| - (void)notifyBrowserAutofillManager: |
| (autofill::BrowserAutofillManager*)autofillManager |
| ofFormsSubmitted:(const FormDataVector&)forms |
| userInitiated:(BOOL)userInitiated { |
| DCHECK(autofillManager); |
| // Exactly one form should be extracted. |
| DCHECK_EQ(1U, forms.size()); |
| autofill::FormData form = forms[0]; |
| autofillManager->OnFormSubmitted( |
| form, false, autofill::mojom::SubmissionSource::FORM_SUBMISSION); |
| } |
| |
| // Invokes the form extraction script in |frame| and loads the output into the |
| // format expected by the BrowserAutofillManager. |
| // If |filtered| is NO, all forms are extracted. |
| // If |filtered| is YES, |
| // - if |formName| is non-empty, only a form of that name is extracted. |
| // - if |formName| is empty, unowned fields are extracted. |
| // Only forms with at least |requiredFieldsCount| fields are extracted. |
| // Calls |completionHandler| with a success BOOL of YES and the form data that |
| // was extracted. |
| // Calls |completionHandler| with NO if the forms could not be extracted. |
| // |completionHandler| cannot be nil. |
| - (void)fetchFormsFiltered:(BOOL)filtered |
| withName:(const std::u16string&)formName |
| minimumRequiredFieldsCount:(NSUInteger)requiredFieldsCount |
| inFrame:(web::WebFrame*)frame |
| completionHandler:(FetchFormsCompletionHandler)completionHandler { |
| DCHECK(completionHandler); |
| |
| // Necessary so the values can be used inside a block. |
| std::u16string formNameCopy = formName; |
| GURL pageURL = _webState->GetLastCommittedURL(); |
| GURL frameOrigin = |
| frame ? frame->GetSecurityOrigin() : pageURL.DeprecatedGetOriginAsURL(); |
| scoped_refptr<autofill::FieldDataManager> fieldDataManager = |
| _fieldDataManager; |
| AutofillJavaScriptFeature::GetInstance()->FetchForms( |
| frame, requiredFieldsCount, base::BindOnce(^(NSString* formJSON) { |
| std::vector<autofill::FormData> formData; |
| bool success = autofill::ExtractFormsData( |
| formJSON, filtered, formNameCopy, pageURL, frameOrigin, |
| *fieldDataManager, &formData); |
| completionHandler(success, formData); |
| })); |
| } |
| |
| - (void)onSuggestionsReady:(NSArray<FormSuggestion*>*)suggestions |
| popupDelegate: |
| (const base::WeakPtr<autofill::AutofillPopupDelegate>&) |
| delegate { |
| _popupDelegate = delegate; |
| _mostRecentSuggestions = suggestions; |
| if (_suggestionsAvailableCompletion) |
| _suggestionsAvailableCompletion([_mostRecentSuggestions count] > 0); |
| _suggestionsAvailableCompletion = nil; |
| } |
| |
| #pragma mark - FormSuggestionProvider |
| |
| // Sends a request to BrowserAutofillManager to retrieve suggestions for the |
| // specified form and field. |
| - (void)queryAutofillForForm:(const autofill::FormData&)form |
| fieldIdentifier:(FieldRendererId)fieldIdentifier |
| type:(NSString*)type |
| typedValue:(NSString*)typedValue |
| frameID:(NSString*)frameID |
| webState:(web::WebState*)webState |
| completionHandler:(SuggestionsAvailableCompletion)completion { |
| web::WebFramesManager* frames_manager = |
| AutofillJavaScriptFeature::GetInstance()->GetWebFramesManager(webState); |
| web::WebFrame* frame = |
| frames_manager->GetFrameWithId(SysNSStringToUTF8(frameID)); |
| autofill::BrowserAutofillManager* autofillManager = |
| [self autofillManagerFromWebState:webState webFrame:frame]; |
| if (!autofillManager) { |
| completion(NO); |
| return; |
| } |
| |
| // Find the right field. |
| autofill::FormFieldData field; |
| GetFormField(&field, form, fieldIdentifier); |
| |
| // Save the completion and go look for suggestions. |
| _suggestionsAvailableCompletion = [completion copy]; |
| _typedValue = [typedValue copy]; |
| |
| // Query the BrowserAutofillManager for suggestions. Results will arrive in |
| // -showAutofillPopup:popupDelegate:. |
| _lastQueriedFieldID = field.global_id(); |
| // TODO(crbug.com/1448447): Distinguish between different trigger sources. |
| autofillManager->OnAskForValuesToFill( |
| form, field, gfx::RectF(), |
| autofill::AutofillSuggestionTriggerSource::kiOS); |
| } |
| |
| - (void)checkIfSuggestionsAvailableForForm: |
| (FormSuggestionProviderQuery*)formQuery |
| hasUserGesture:(BOOL)hasUserGesture |
| webState:(web::WebState*)webState |
| completionHandler: |
| (SuggestionsAvailableCompletion)completion { |
| DCHECK_EQ(_webState, webState); |
| |
| if (![self isAutofillEnabled]) { |
| completion(NO); |
| return; |
| } |
| |
| // Check for suggestions if the form activity is initiated by the user. |
| if (!hasUserGesture) { |
| completion(NO); |
| return; |
| } |
| |
| web::WebFramesManager* frames_manager = |
| AutofillJavaScriptFeature::GetInstance()->GetWebFramesManager(_webState); |
| web::WebFrame* frame = |
| frames_manager->GetFrameWithId(SysNSStringToUTF8(formQuery.frameID)); |
| if (!frame) { |
| completion(NO); |
| return; |
| } |
| |
| // Once the active form and field are extracted, send a query to the |
| // BrowserAutofillManager for suggestions. |
| __weak AutofillAgent* weakSelf = self; |
| id completionHandler = ^(BOOL success, const FormDataVector& forms) { |
| if (success && forms.size() == 1) { |
| [weakSelf queryAutofillForForm:forms[0] |
| fieldIdentifier:formQuery.uniqueFieldID |
| type:formQuery.type |
| typedValue:formQuery.typedValue |
| frameID:formQuery.frameID |
| webState:webState |
| completionHandler:completion]; |
| } |
| }; |
| |
| // Re-extract the active form and field only. All forms with at least one |
| // input element are considered because key/value suggestions are offered |
| // even on short forms. |
| [self fetchFormsFiltered:YES |
| withName:SysNSStringToUTF16(formQuery.formName) |
| minimumRequiredFieldsCount:1 |
| inFrame:frame |
| completionHandler:completionHandler]; |
| } |
| |
| - (void)retrieveSuggestionsForForm:(FormSuggestionProviderQuery*)formQuery |
| webState:(web::WebState*)webState |
| completionHandler:(SuggestionsReadyCompletion)completion { |
| DCHECK(_mostRecentSuggestions) << "Requestor should have called " |
| << "|checkIfSuggestionsAvailableForForm:" |
| "webState:completionHandler:|."; |
| completion(_mostRecentSuggestions, self); |
| } |
| |
| - (void)updateFieldManagerForClearedIDs:(NSString*)jsonString { |
| std::vector<FieldRendererId> clearingResults; |
| if (autofill::ExtractIDs(jsonString, &clearingResults)) { |
| for (auto uniqueID : clearingResults) { |
| _fieldDataManager->UpdateFieldDataMap(uniqueID, std::u16string(), |
| kAutofilledOnUserTrigger); |
| } |
| } |
| } |
| |
| - (void)didSelectSuggestion:(FormSuggestion*)suggestion |
| form:(NSString*)formName |
| uniqueFormID:(FormRendererId)uniqueFormID |
| fieldIdentifier:(NSString*)fieldIdentifier |
| uniqueFieldID:(FieldRendererId)uniqueFieldID |
| frameID:(NSString*)frameID |
| completionHandler:(SuggestionHandledCompletion)completion { |
| [[UIDevice currentDevice] playInputClick]; |
| DCHECK(completion); |
| _suggestionHandledCompletion = [completion copy]; |
| |
| if (suggestion.acceptanceA11yAnnouncement != nil) { |
| __weak AutofillAgent* weakSelf = self; |
| // The announcement is done asyncronously with certain delay to make sure |
| // it is not interrupted by (almost) immediate standard announcements. |
| dispatch_after( |
| dispatch_time(DISPATCH_TIME_NOW, |
| kA11yAnnouncementQueueDelay.InNanoseconds()), |
| dispatch_get_main_queue(), ^{ |
| AutofillAgent* strongSelf = weakSelf; |
| if (!strongSelf) |
| return; |
| |
| // Queueing flag allows to preserve standard announcements, they |
| // are conveyed first and then announce this message. |
| // This is a tradeoff as there is no control over the standard |
| // utterances (they are interrupting) and it is not desirable |
| // to interrupt them. Hence acceptance announcement is done after |
| // standard ones (which takes seconds). |
| NSAttributedString* message = [[NSAttributedString alloc] |
| initWithString:suggestion.acceptanceA11yAnnouncement |
| attributes:@{ |
| UIAccessibilitySpeechAttributeQueueAnnouncement : @YES |
| }]; |
| UIAccessibilityPostNotification( |
| UIAccessibilityAnnouncementNotification, message); |
| }); |
| } |
| |
| if (suggestion.popupItemId == autofill::PopupItemId::kAddressEntry || |
| suggestion.popupItemId == autofill::PopupItemId::kCreditCardEntry) { |
| _pendingAutocompleteFieldID = uniqueFieldID; |
| if (_popupDelegate) { |
| // TODO(966411): Replace 0 with the index of the selected suggestion. |
| autofill::Suggestion autofill_suggestion; |
| autofill_suggestion.main_text.value = |
| SysNSStringToUTF16(suggestion.value); |
| autofill_suggestion.popup_item_id = suggestion.popupItemId; |
| if (!suggestion.backendIdentifier.length) { |
| autofill_suggestion.payload = autofill::Suggestion::BackendId(); |
| } else { |
| autofill_suggestion.payload = autofill::Suggestion::BackendId( |
| SysNSStringToUTF8(suggestion.backendIdentifier)); |
| } |
| |
| // On iOS, only a single trigger source exists. See crbug.com/1448447. |
| _popupDelegate->DidAcceptSuggestion( |
| autofill_suggestion, 0, |
| autofill::AutofillSuggestionTriggerSource::kiOS); |
| } |
| return; |
| } |
| |
| web::WebFramesManager* frames_manager = |
| AutofillJavaScriptFeature::GetInstance()->GetWebFramesManager(_webState); |
| web::WebFrame* frame = |
| frames_manager->GetFrameWithId(SysNSStringToUTF8(frameID)); |
| if (!frame) { |
| // The frame no longer exists, so the field can not be filled. |
| if (_suggestionHandledCompletion) { |
| SuggestionHandledCompletion suggestionHandledCompletionCopy = |
| [_suggestionHandledCompletion copy]; |
| _suggestionHandledCompletion = nil; |
| suggestionHandledCompletionCopy(); |
| } |
| return; |
| } |
| |
| if (suggestion.popupItemId == autofill::PopupItemId::kAutocompleteEntry) { |
| // FormSuggestion is a simple, single value that can be filled out now. |
| [self fillField:SysNSStringToUTF8(fieldIdentifier) |
| uniqueFieldID:uniqueFieldID |
| formName:SysNSStringToUTF8(formName) |
| value:SysNSStringToUTF16(suggestion.value) |
| inFrame:frame]; |
| } else if (suggestion.popupItemId == autofill::PopupItemId::kClearForm) { |
| __weak AutofillAgent* weakSelf = self; |
| SuggestionHandledCompletion suggestionHandledCompletionCopy = |
| [_suggestionHandledCompletion copy]; |
| _suggestionHandledCompletion = nil; |
| AutofillJavaScriptFeature::GetInstance()->ClearAutofilledFieldsForForm( |
| frame, uniqueFormID, uniqueFieldID, |
| base::BindOnce(^(NSString* jsonString) { |
| AutofillAgent* strongSelf = weakSelf; |
| if (!strongSelf) { |
| return; |
| } |
| [strongSelf updateFieldManagerForClearedIDs:jsonString]; |
| suggestionHandledCompletionCopy(); |
| })); |
| |
| } else if (suggestion.popupItemId == |
| autofill::PopupItemId::kShowAccountCards) { |
| autofill::BrowserAutofillManager* autofillManager = |
| [self autofillManagerFromWebState:_webState webFrame:frame]; |
| if (autofillManager) { |
| autofillManager->OnUserAcceptedCardsFromAccountOption(); |
| } |
| } else { |
| NOTREACHED() << "unknown identifier " |
| << base::to_underlying(suggestion.popupItemId); |
| } |
| } |
| |
| - (SuggestionProviderType)type { |
| return SuggestionProviderTypeAutofill; |
| } |
| |
| - (autofill::PopupType)suggestionType { |
| return _popupDelegate ? _popupDelegate->GetPopupType() |
| : autofill::PopupType::kUnspecified; |
| } |
| |
| #pragma mark - AutofillDriverIOSBridge |
| |
| - (void)fillFormData:(const autofill::FormData&)form |
| inFrame:(web::WebFrame*)frame { |
| base::Value::Dict autofillData; |
| autofillData.Set("formName", base::Value(base::UTF16ToUTF8(form.name))); |
| autofillData.Set( |
| "formRendererID", |
| base::Value(static_cast<int>(form.unique_renderer_id.value()))); |
| |
| base::Value::Dict fieldsData; |
| for (const auto& field : form.fields) { |
| // Skip empty fields and those that are not autofilled. |
| if (field.value.empty() || !field.is_autofilled) |
| continue; |
| |
| base::Value::Dict fieldData; |
| fieldData.Set("value", field.value); |
| fieldData.Set("section", field.section.ToString()); |
| fieldsData.Set(NumberToString(field.unique_renderer_id.value()), |
| std::move(fieldData)); |
| } |
| autofillData.Set("fields", std::move(fieldsData)); |
| |
| // Store the form data when WebState is not visible, to send it as soon as it |
| // becomes visible again, e.g., when the CVC unmask prompt is showing. |
| if (!_webState->IsVisible()) { |
| _pendingFormData = std::make_pair(frame ? frame->GetFrameId() : "", |
| std::move(autofillData)); |
| } else { |
| [self sendData:std::move(autofillData) toFrame:frame]; |
| } |
| |
| autofill::BrowserAutofillManager* autofillManager = |
| [self autofillManagerFromWebState:_webState webFrame:frame]; |
| if (autofillManager) |
| autofillManager->OnDidFillAutofillFormData( |
| form, autofill::AutofillTickClock::NowTicks()); |
| } |
| |
| - (void)handleParsedForms:(const std::vector<autofill::FormStructure*>&)forms |
| inFrame:(web::WebFrame*)frame { |
| } |
| |
| - (void)fillFormDataPredictions: |
| (const std::vector<autofill::FormDataPredictions>&)forms |
| inFrame:(web::WebFrame*)frame { |
| if (!base::FeatureList::IsEnabled( |
| autofill::features::test::kAutofillShowTypePredictions)) { |
| return; |
| } |
| |
| base::Value::Dict predictionData; |
| for (const auto& form : forms) { |
| base::Value::Dict fieldData; |
| DCHECK(form.fields.size() == form.data.fields.size()); |
| for (size_t i = 0; i < form.fields.size(); i++) { |
| fieldData.Set( |
| NumberToString(form.data.fields[i].unique_renderer_id.value()), |
| base::Value(form.fields[i].overall_type)); |
| } |
| predictionData.Set(base::UTF16ToUTF8(form.data.name), std::move(fieldData)); |
| } |
| AutofillJavaScriptFeature::GetInstance()->FillPredictionData( |
| frame, std::move(predictionData)); |
| } |
| |
| #pragma mark - AutofillClientIOSBridge |
| |
| - (void)showAutofillPopup: |
| (const std::vector<autofill::Suggestion>&)popup_suggestions |
| popupDelegate: |
| (const base::WeakPtr<autofill::AutofillPopupDelegate>&) |
| delegate { |
| // Convert the suggestions into an NSArray for the keyboard. |
| NSMutableArray<FormSuggestion*>* suggestions = [[NSMutableArray alloc] init]; |
| for (auto popup_suggestion : popup_suggestions) { |
| // In the Chromium implementation the identifiers represent rows on the |
| // drop down of options. These include elements that aren't relevant to us |
| // such as separators ... see blink::WebAutofillClient::MenuItemIDSeparator |
| // for example. We can't include that enum because it's from WebKit, but |
| // fortunately almost all the entries we are interested in (profile or |
| // autofill entries) are zero or positive. Negative entries we are |
| // interested in is autofill::PopupItemId::kClearForm, used to show the |
| // "clear form" button. |
| NSString* value = nil; |
| NSString* displayDescription = nil; |
| UIImage* icon = nil; |
| if (popup_suggestion.popup_item_id == |
| autofill::PopupItemId::kAutocompleteEntry || |
| popup_suggestion.popup_item_id == |
| autofill::PopupItemId::kAddressEntry || |
| popup_suggestion.popup_item_id == |
| autofill::PopupItemId::kCreditCardEntry) { |
| // Filter out any key/value suggestions if the user hasn't typed yet. |
| if (popup_suggestion.popup_item_id == |
| autofill::PopupItemId::kAutocompleteEntry && |
| [_typedValue length] == 0) { |
| continue; |
| } |
| // Value will contain the text to be filled in the selected element while |
| // displayDescription will contain a summary of the data to be filled in |
| // the other elements. |
| value = SysUTF16ToNSString(popup_suggestion.main_text.value); |
| if (!popup_suggestion.labels.empty()) { |
| DCHECK_EQ(popup_suggestion.labels.size(), 1U); |
| DCHECK_EQ(popup_suggestion.labels[0].size(), 1U); |
| displayDescription = |
| SysUTF16ToNSString(popup_suggestion.labels[0][0].value); |
| } |
| |
| // Only show icon for credit card suggestions. |
| if (delegate && |
| delegate->GetPopupType() == autofill::PopupType::kCreditCards) { |
| // If available, the custom icon for the card is preferred over the |
| // generic network icon. The network icon may also be missing, in |
| // which case we do not set an icon at all. |
| if (!popup_suggestion.custom_icon.IsEmpty()) { |
| icon = popup_suggestion.custom_icon.ToUIImage(); |
| |
| // On iOS, the keyboard accessory wants smaller icons than the default |
| // 40x24 size, so we resize them to 32x20, if the provided icon is |
| // larger than that. |
| constexpr CGFloat kSuggestionIconWidth = 32; |
| if (icon && (icon.size.width > kSuggestionIconWidth)) { |
| // For a simple image resize, we can keep the same underlying image |
| // and only adjust the ratio. |
| CGFloat ratio = icon.size.width / kSuggestionIconWidth; |
| icon = [UIImage imageWithCGImage:[icon CGImage] |
| scale:icon.scale * ratio |
| orientation:icon.imageOrientation]; |
| } |
| } else if (!popup_suggestion.icon.empty()) { |
| const int resourceID = |
| autofill::CreditCard::IconResourceId(popup_suggestion.icon); |
| icon = ui::ResourceBundle::GetSharedInstance() |
| .GetNativeImageNamed(resourceID) |
| .ToUIImage(); |
| } |
| } |
| } else if (popup_suggestion.popup_item_id == |
| autofill::PopupItemId::kClearForm) { |
| // Show the "clear form" button. |
| value = SysUTF16ToNSString(popup_suggestion.main_text.value); |
| } else if (popup_suggestion.popup_item_id == |
| autofill::PopupItemId::kShowAccountCards) { |
| // Show opt-in for showing cards from account. |
| value = SysUTF16ToNSString(popup_suggestion.main_text.value); |
| } |
| |
| if (!value) |
| continue; |
| |
| NSString* acceptanceA11yAnnouncement = |
| popup_suggestion.acceptance_a11y_announcement.has_value() |
| ? SysUTF16ToNSString(*popup_suggestion.acceptance_a11y_announcement) |
| : nil; |
| |
| FormSuggestion* suggestion = [FormSuggestion |
| suggestionWithValue:value |
| displayDescription:displayDescription |
| icon:icon |
| popupItemId:popup_suggestion.popup_item_id |
| backendIdentifier: |
| SysUTF8ToNSString( |
| popup_suggestion |
| .GetPayload<autofill::Suggestion::BackendId>() |
| .value()) |
| requiresReauth:NO |
| acceptanceA11yAnnouncement:acceptanceA11yAnnouncement]; |
| |
| if (!popup_suggestion.feature_for_iph.empty()) { |
| suggestion.featureForIPH = |
| base::SysUTF8ToNSString(popup_suggestion.feature_for_iph); |
| } |
| |
| // Put "clear form" entry at the front of the suggestions. |
| if (popup_suggestion.popup_item_id == autofill::PopupItemId::kClearForm) { |
| [suggestions insertObject:suggestion atIndex:0]; |
| } else { |
| [suggestions addObject:suggestion]; |
| } |
| } |
| |
| [self onSuggestionsReady:suggestions popupDelegate:delegate]; |
| |
| if (delegate) |
| delegate->OnPopupShown(); |
| } |
| |
| - (void)hideAutofillPopup { |
| [self onSuggestionsReady:@[] |
| popupDelegate:base::WeakPtr<autofill::AutofillPopupDelegate>()]; |
| } |
| |
| - (bool)isLastQueriedField:(autofill::FieldGlobalId)fieldID { |
| return fieldID == _lastQueriedFieldID; |
| } |
| |
| #pragma mark - CRWWebStateObserver |
| |
| - (void)webStateWasShown:(web::WebState*)webState { |
| DCHECK_EQ(_webState, webState); |
| if (!_pendingFormData.has_value()) { |
| return; |
| } |
| |
| std::pair<std::string, base::Value::Dict> pendingFormData = |
| std::move(_pendingFormData).value(); |
| _pendingFormData = absl::nullopt; |
| |
| // The frameID cannot be empty. |
| DCHECK(!pendingFormData.first.empty()); |
| web::WebFramesManager* frames_manager = |
| AutofillJavaScriptFeature::GetInstance()->GetWebFramesManager(_webState); |
| web::WebFrame* frame = frames_manager->GetFrameWithId(pendingFormData.first); |
| [self sendData:std::move(pendingFormData.second) toFrame:frame]; |
| } |
| |
| - (void)webState:(web::WebState*)webState didLoadPageWithSuccess:(BOOL)success { |
| DCHECK_EQ(_webState, webState); |
| if (![self isAutofillEnabled]) |
| return; |
| |
| [self processPage:webState]; |
| } |
| |
| - (void)webStateDestroyed:(web::WebState*)webState { |
| DCHECK_EQ(_webState, webState); |
| if (_webState) { |
| _formActivityObserverBridge.reset(); |
| _webState->RemoveObserver(_webStateObserverBridge.get()); |
| _webStateObserverBridge.reset(); |
| web::WebFramesManager* framesManager = |
| AutofillJavaScriptFeature::GetInstance()->GetWebFramesManager( |
| _webState); |
| framesManager->RemoveObserver(_webFramesManagerObserverBridge.get()); |
| _webFramesManagerObserverBridge.reset(); |
| _webState = nullptr; |
| } |
| // Do not wait for deallocation. Remove all observers here. |
| _prefChangeRegistrar.RemoveAll(); |
| } |
| |
| #pragma mark - CRWWebFramesManagerObserver |
| |
| - (void)webFramesManager:(web::WebFramesManager*)webFramesManager |
| frameBecameAvailable:(web::WebFrame*)webFrame { |
| DCHECK(_webState); |
| DCHECK(webFrame); |
| if (![self isAutofillEnabled] || _webState->IsLoading()) { |
| return; |
| } |
| if (webFrame->IsMainFrame()) { |
| [self processPage:_webState]; |
| return; |
| } |
| // Check that the main frame has already been processed. |
| if (!webFramesManager->GetMainWebFrame()) { |
| return; |
| } |
| if (!autofill::AutofillDriverIOS::FromWebStateAndWebFrame( |
| _webState, webFramesManager->GetMainWebFrame()) |
| ->is_processed()) { |
| return; |
| } |
| [self processFrame:webFrame inWebState:_webState]; |
| } |
| |
| #pragma mark - Private methods |
| |
| - (void)processPage:(web::WebState*)webState { |
| web::WebFramesManager* frames_manager = |
| AutofillJavaScriptFeature::GetInstance()->GetWebFramesManager(webState); |
| if (!frames_manager->GetMainWebFrame()) { |
| return; |
| } |
| [self processFrame:frames_manager->GetMainWebFrame() inWebState:webState]; |
| for (auto* frame : frames_manager->GetAllWebFrames()) { |
| if (frame->IsMainFrame()) { |
| continue; |
| } |
| [self processFrame:frame inWebState:webState]; |
| } |
| } |
| |
| - (void)processFrame:(web::WebFrame*)frame inWebState:(web::WebState*)webState { |
| if (!frame) { |
| return; |
| } |
| |
| autofill::AutofillDriverIOS* driver = |
| autofill::AutofillDriverIOS::FromWebStateAndWebFrame(webState, frame); |
| // This process is only done once. |
| if (driver->is_processed()) |
| return; |
| driver->set_processed(true); |
| AutofillJavaScriptFeature::GetInstance()->AddJSDelayInFrame(frame); |
| |
| if (frame->IsMainFrame()) { |
| _popupDelegate.reset(); |
| _suggestionsAvailableCompletion = nil; |
| _suggestionHandledCompletion = nil; |
| _mostRecentSuggestions = nil; |
| _typedValue = nil; |
| } |
| |
| FormHandlersJavaScriptFeature* formHandlerFeature = |
| FormHandlersJavaScriptFeature::GetInstance(); |
| |
| // Use a delay of 200ms when tracking form mutations to reduce the |
| // communication overhead (as mutations are likely to come in batch). |
| constexpr int kMutationTrackingEnabledDelayInMs = 200; |
| formHandlerFeature->TrackFormMutations(frame, |
| kMutationTrackingEnabledDelayInMs); |
| |
| formHandlerFeature->ToggleTrackingUserEditedFields( |
| frame, |
| /*track_user_edited_fields=*/true); |
| |
| [self scanFormsInWebState:webState inFrame:frame]; |
| } |
| |
| - (void)scanFormsInWebState:(web::WebState*)webState |
| inFrame:(web::WebFrame*)webFrame { |
| __weak AutofillAgent* weakSelf = self; |
| id completionHandler = ^(BOOL success, const FormDataVector& forms) { |
| AutofillAgent* strongSelf = weakSelf; |
| if (!strongSelf || !success) |
| return; |
| autofill::BrowserAutofillManager* autofillManager = |
| [strongSelf autofillManagerFromWebState:webState webFrame:webFrame]; |
| if (!autofillManager || forms.empty()) |
| return; |
| [strongSelf notifyBrowserAutofillManager:autofillManager ofFormsSeen:forms]; |
| }; |
| // The document has now been fully loaded. Scan for forms to be extracted. |
| size_t min_required_fields = |
| MIN(autofill::kMinRequiredFieldsForUpload, |
| MIN(autofill::kMinRequiredFieldsForHeuristics, |
| autofill::kMinRequiredFieldsForQuery)); |
| [self fetchFormsFiltered:NO |
| withName:std::u16string() |
| minimumRequiredFieldsCount:min_required_fields |
| inFrame:webFrame |
| completionHandler:completionHandler]; |
| } |
| |
| #pragma mark - |
| #pragma mark FormActivityObserver |
| |
| - (void)webState:(web::WebState*)webState |
| didRegisterFormActivity:(const autofill::FormActivityParams&)params |
| inFrame:(web::WebFrame*)frame { |
| DCHECK_EQ(_webState, webState); |
| if (![self isAutofillEnabled]) |
| return; |
| |
| if (!frame) { |
| return; |
| } |
| |
| // Return early if the page is not processed yet. |
| DCHECK(autofill::AutofillDriverIOS::FromWebStateAndWebFrame(webState, frame)); |
| if (!autofill::AutofillDriverIOS::FromWebStateAndWebFrame(webState, frame) |
| ->is_processed()) |
| return; |
| |
| // Return early if |params| is not complete. |
| if (params.input_missing) |
| return; |
| |
| // If the event is a form_changed, then the event concerns the whole page and |
| // not a particular form. The whole document's forms need to be extracted to |
| // find the new forms. |
| if (params.type == "form_changed") { |
| [self scanFormsInWebState:webState inFrame:frame]; |
| return; |
| } |
| |
| // We are only interested in 'input' events in order to notify the autofill |
| // manager for metrics purposes. |
| if (params.type != "input" || |
| (params.field_type != "text" && params.field_type != "password")) { |
| return; |
| } |
| |
| // The completion block is executed asynchronously, thus it cannot refer |
| // directly to `params.field_identifier` (as params is passed by reference |
| // and may have been destroyed by the point the block is executed) nor to |
| // web::WebFrame* (as it can be deallocated before the block execution). |
| // |
| // Copy the `field_identifier` to a local variable that can be captured |
| // and save the frame identifier that will be used to get the WebFrame in |
| // -onFormsFetched:formsData:webFrameId:fieldIdentifier. |
| __weak AutofillAgent* weakSelf = self; |
| __block const std::string webFrameId = frame->GetFrameId(); |
| __block FieldRendererId fieldIdentifier = params.unique_field_id; |
| auto completionHandler = ^(BOOL success, const FormDataVector& forms) { |
| [weakSelf onFormsFetched:success |
| formsData:forms |
| webFrameId:webFrameId |
| fieldIdentifier:fieldIdentifier]; |
| }; |
| |
| // Extract the active form and field only. There is no minimum field |
| // requirement because key/value suggestions are offered even on short forms. |
| [self fetchFormsFiltered:YES |
| withName:base::UTF8ToUTF16(params.form_name) |
| minimumRequiredFieldsCount:1 |
| inFrame:frame |
| completionHandler:completionHandler]; |
| } |
| |
| - (void)webState:(web::WebState*)webState |
| didSubmitDocumentWithFormNamed:(const std::string&)formName |
| withData:(const std::string&)formData |
| hasUserGesture:(BOOL)hasUserGesture |
| inFrame:(web::WebFrame*)frame { |
| if (![self isAutofillEnabled]) |
| return; |
| if (!frame) { |
| return; |
| } |
| FormDataVector forms; |
| |
| bool success = autofill::ExtractFormsData( |
| base::SysUTF8ToNSString(formData), true, base::UTF8ToUTF16(formName), |
| webState->GetLastCommittedURL(), frame->GetSecurityOrigin(), |
| *_fieldDataManager, &forms); |
| |
| autofill::BrowserAutofillManager* autofillManager = |
| [self autofillManagerFromWebState:webState webFrame:frame]; |
| if (!autofillManager || !success || forms.empty()) |
| return; |
| DCHECK(forms.size() <= 1) << "Only one form should be extracted."; |
| [self notifyBrowserAutofillManager:autofillManager |
| ofFormsSubmitted:forms |
| userInitiated:hasUserGesture]; |
| } |
| |
| #pragma mark - PrefObserverDelegate |
| |
| - (void)onPreferenceChanged:(const std::string&)preferenceName { |
| // Processing the page can be needed here if Autofill is enabled in settings |
| // when the page is already loaded. |
| if ([self isAutofillEnabled]) |
| [self processPage:_webState]; |
| } |
| |
| #pragma mark - Private methods |
| |
| // Returns whether Autofill is enabled by checking if Autofill is turned on and |
| // if the current URL has a web scheme and the page content is HTML. |
| - (BOOL)isAutofillEnabled { |
| if (!autofill::prefs::IsAutofillProfileEnabled(_prefService) && |
| !autofill::prefs::IsAutofillCreditCardEnabled(_prefService)) { |
| return NO; |
| } |
| |
| // Only web URLs are supported by Autofill. |
| return web::UrlHasWebScheme(_webState->GetLastCommittedURL()) && |
| _webState->ContentIsHTML(); |
| } |
| |
| // Complete a field identified with |fieldIdentifier| on the form named |
| // |formName| in |frame| using |value| then move the cursor. |
| // TODO(crbug.com/661621): |dataString| ends up at fillFormField() in |
| // autofill_controller.js. fillFormField() expects an AutofillFormFieldData |
| // object, which |dataString| is not because 'form' is not a specified member of |
| // AutofillFormFieldData. fillFormField() also expects members 'max_length' and |
| // 'is_checked' to exist. |
| - (void)fillField:(const std::string&)fieldIdentifier |
| uniqueFieldID:(FieldRendererId)uniqueFieldID |
| formName:(const std::string&)formName |
| value:(const std::u16string)value |
| inFrame:(web::WebFrame*)frame { |
| base::Value::Dict data; |
| data.Set("unique_renderer_id", static_cast<int>(uniqueFieldID.value())); |
| data.Set("identifier", fieldIdentifier); |
| data.Set("form", formName); |
| data.Set("value", value); |
| |
| DCHECK(_suggestionHandledCompletion); |
| __weak AutofillAgent* weakSelf = self; |
| SuggestionHandledCompletion suggestionHandledCompletionCopy = |
| [_suggestionHandledCompletion copy]; |
| _suggestionHandledCompletion = nil; |
| AutofillJavaScriptFeature::GetInstance()->FillActiveFormField( |
| frame, std::move(data), base::BindOnce(^(BOOL success) { |
| AutofillAgent* strongSelf = weakSelf; |
| if (!strongSelf) |
| return; |
| if (success) { |
| strongSelf->_fieldDataManager->UpdateFieldDataMap( |
| uniqueFieldID, value, kAutofilledOnUserTrigger); |
| } |
| suggestionHandledCompletionCopy(); |
| })); |
| } |
| |
| - (void)updateFieldManagerWithFillingResults:(NSString*)jsonString { |
| std::map<uint32_t, std::u16string> fillingResults; |
| if (autofill::ExtractFillingResults(jsonString, &fillingResults)) { |
| for (auto& fillData : fillingResults) { |
| _fieldDataManager->UpdateFieldDataMap(FieldRendererId(fillData.first), |
| fillData.second, |
| kAutofilledOnUserTrigger); |
| } |
| } |
| // TODO(crbug/1131038): Remove once the experiment is over. |
| UMA_HISTOGRAM_BOOLEAN("Autofill.FormFillSuccessIOS", !fillingResults.empty()); |
| |
| ukm::SourceId source_id = ukm::GetSourceIdForWebStateDocument(_webState); |
| ukm::builders::Autofill_FormFillSuccessIOS(source_id) |
| .SetFormFillSuccess(!fillingResults.empty()) |
| .Record(ukm::UkmRecorder::Get()); |
| } |
| |
| // Sends the the |data| to |frame| to actually fill the data. |
| - (void)sendData:(base::Value::Dict)data toFrame:(web::WebFrame*)frame { |
| DCHECK(_webState->IsVisible()); |
| __weak AutofillAgent* weakSelf = self; |
| SuggestionHandledCompletion suggestionHandledCompletionCopy = |
| [_suggestionHandledCompletion copy]; |
| _suggestionHandledCompletion = nil; |
| AutofillJavaScriptFeature::GetInstance()->FillForm( |
| frame, std::move(data), _pendingAutocompleteFieldID, |
| base::BindOnce(^(NSString* jsonString) { |
| AutofillAgent* strongSelf = weakSelf; |
| if (!strongSelf) |
| return; |
| [strongSelf updateFieldManagerWithFillingResults:jsonString]; |
| // It is possible that the fill was not initiated by selecting |
| // a suggestion in this case the callback is nil. |
| if (suggestionHandledCompletionCopy) |
| suggestionHandledCompletionCopy(); |
| })); |
| } |
| |
| // Helper method used to implement the aynchronous completion block of |
| // -webState:didRegisterFormActivity:inFrame:. Due to the asynchronous |
| // invocation, WebState* and WebFrame* may both have been destroyed, so |
| // the method needs to check for those edge cases. |
| - (void)onFormsFetched:(BOOL)success |
| formsData:(const FormDataVector&)forms |
| webFrameId:(const std::string&)webFrameId |
| fieldIdentifier:(FieldRendererId)fieldIdentifier { |
| if (!success || forms.size() != 1) |
| return; |
| |
| if (!_webState) |
| return; |
| |
| web::WebFramesManager* frames_manager = |
| AutofillJavaScriptFeature::GetInstance()->GetWebFramesManager(_webState); |
| |
| DCHECK(frames_manager); |
| web::WebFrame* webFrame = frames_manager->GetFrameWithId(webFrameId); |
| if (!webFrame) |
| return; |
| |
| autofill::BrowserAutofillManager* autofillManager = |
| [self autofillManagerFromWebState:_webState webFrame:webFrame]; |
| if (!autofillManager) |
| return; |
| |
| autofill::FormFieldData field; |
| GetFormField(&field, forms[0], fieldIdentifier); |
| autofillManager->OnTextFieldDidChange( |
| forms[0], field, gfx::RectF(), autofill::AutofillTickClock::NowTicks()); |
| } |
| |
| @end |