blob: a17168f3c1760fa697277ca9b17c71ef93c5e610 [file] [log] [blame]
[email protected]e7e83472012-04-05 02:56:261// 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.
4
[email protected]e4b2fa32013-03-09 22:56:565#include "components/autofill/browser/password_autofill_manager.h"
[email protected]edf48d42013-03-07 05:44:436#include "components/autofill/common/autofill_messages.h"
[email protected]e7e83472012-04-05 02:56:267#include "content/public/browser/render_view_host.h"
8#include "content/public/browser/web_contents.h"
9#include "ui/base/keycodes/keyboard_codes.h"
10
11////////////////////////////////////////////////////////////////////////////////
12// PasswordAutofillManager, public:
13
14PasswordAutofillManager::PasswordAutofillManager(
15 content::WebContents* web_contents) : web_contents_(web_contents) {
16}
17
18PasswordAutofillManager::~PasswordAutofillManager() {
19}
20
21bool PasswordAutofillManager::DidAcceptAutofillSuggestion(
[email protected]1ecbe862012-10-05 01:29:1422 const FormFieldData& field,
[email protected]d5ca8fb2013-04-11 17:54:3123 const base::string16& value) {
[email protected]1ecbe862012-10-05 01:29:1424 PasswordFormFillData password;
[email protected]e7e83472012-04-05 02:56:2625 if (!FindLoginInfo(field, &password))
26 return false;
27
28 if (WillFillUserNameAndPassword(value, password)) {
29 if (web_contents_) {
30 content::RenderViewHost* render_view_host =
31 web_contents_->GetRenderViewHost();
32 render_view_host->Send(new AutofillMsg_AcceptPasswordAutofillSuggestion(
33 render_view_host->GetRoutingID(),
34 value));
35 }
36 return true;
37 }
38
39 return false;
40}
41
[email protected]e7e83472012-04-05 02:56:2642void PasswordAutofillManager::AddPasswordFormMapping(
[email protected]1ecbe862012-10-05 01:29:1443 const FormFieldData& username_element,
44 const PasswordFormFillData& password) {
[email protected]e7e83472012-04-05 02:56:2645 login_to_password_info_[username_element] = password;
46}
47
48void PasswordAutofillManager::Reset() {
49 login_to_password_info_.clear();
50}
51
52////////////////////////////////////////////////////////////////////////////////
53// PasswordAutofillManager, private:
54
55bool PasswordAutofillManager::WillFillUserNameAndPassword(
[email protected]d5ca8fb2013-04-11 17:54:3156 const base::string16& current_username,
[email protected]1ecbe862012-10-05 01:29:1457 const PasswordFormFillData& fill_data) {
[email protected]e7e83472012-04-05 02:56:2658 // Look for any suitable matches to current field text.
59 if (fill_data.basic_data.fields[0].value == current_username) {
60 return true;
61 } else {
62 // Scan additional logins for a match.
[email protected]1ecbe862012-10-05 01:29:1463 PasswordFormFillData::LoginCollection::const_iterator iter;
[email protected]e7e83472012-04-05 02:56:2664 for (iter = fill_data.additional_logins.begin();
65 iter != fill_data.additional_logins.end(); ++iter) {
66 if (iter->first == current_username)
67 return true;
68 }
69 }
70
71 return false;
72}
73
74bool PasswordAutofillManager::FindLoginInfo(
[email protected]1ecbe862012-10-05 01:29:1475 const FormFieldData& field,
76 PasswordFormFillData* found_password) {
[email protected]e7e83472012-04-05 02:56:2677 LoginToPasswordInfoMap::iterator iter = login_to_password_info_.find(field);
78 if (iter == login_to_password_info_.end())
79 return false;
80
81 *found_password = iter->second;
82 return true;
83}