blob: 84d5a7235d8f927dae737e8e644cf5cd1f6be14d [file] [log] [blame]
// Copyright 2013 The Chromium Authors. All rights reserved.
// 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/js_autofill_manager.h"
#include "base/format_macros.h"
#include "base/json/string_escape.h"
#include "base/logging.h"
@implementation JsAutofillManager
- (void)fetchFormsWithMinimumRequiredFieldsCount:(NSUInteger)requiredFieldsCount
completionHandler:
(void (^)(NSString*))completionHandler {
DCHECK(completionHandler);
NSString* extractFormsJS = [NSString
stringWithFormat:@"__gCrWeb.autofill.extractForms(%" PRIuNS ");",
requiredFieldsCount];
[self evaluate:extractFormsJS
stringResultHandler:^(NSString* result, NSError*) {
completionHandler(result);
}];
}
#pragma mark -
#pragma mark ProtectedMethods
- (NSString*)scriptPath {
return @"autofill_controller";
}
- (NSString*)presenceBeacon {
return @"__gCrWeb.autofill";
}
- (void)storeActiveElement {
NSString* js = @"__gCrWeb.autofill.storeActiveElement()";
[self evaluate:js stringResultHandler:nil];
}
- (void)clearActiveElement {
NSString* js = @"__gCrWeb.autofill.clearActiveElement()";
[self evaluate:js stringResultHandler:nil];
}
- (void)fillActiveFormField:(NSString*)dataString
completionHandler:(ProceduralBlock)completionHandler {
web::JavaScriptCompletion resultHandler = ^void(NSString*, NSError*) {
completionHandler();
};
NSString* js =
[NSString stringWithFormat:@"__gCrWeb.autofill.fillActiveFormField(%@);",
dataString];
[self evaluate:js stringResultHandler:resultHandler];
}
- (void)fillForm:(NSString*)dataString
forceFillFieldName:(NSString*)forceFillFieldName
completionHandler:(ProceduralBlock)completionHandler {
DCHECK(completionHandler);
std::string fieldName =
forceFillFieldName
? base::GetQuotedJSONString([forceFillFieldName UTF8String])
: "null";
NSString* fillFormJS =
[NSString stringWithFormat:@"__gCrWeb.autofill.fillForm(%@, %s);",
dataString, fieldName.c_str()];
id stringResultHandler = ^(NSString*, NSError*) {
completionHandler();
};
return [self evaluate:fillFormJS stringResultHandler:stringResultHandler];
}
- (void)clearAutofilledFieldsForFormNamed:(NSString*)formName
completionHandler:(ProceduralBlock)completionHandler {
DCHECK(completionHandler);
web::JavaScriptCompletion resultHandler = ^void(NSString*, NSError*) {
completionHandler();
};
NSString* js =
[NSString stringWithFormat:
@"__gCrWeb.autofill.clearAutofilledFields(%s);",
base::GetQuotedJSONString([formName UTF8String]).c_str()];
[self evaluate:js stringResultHandler:resultHandler];
}
- (void)fillPredictionData:(NSString*)dataString {
[self deferredEvaluate:
[NSString
stringWithFormat:@"__gCrWeb.autofill.fillPredictionData(%@);",
dataString]];
}
@end