1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280
|
// Copyright 2015 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.
#include "chrome/browser/extensions/api/passwords_private/passwords_private_api.h"
#include <memory>
#include "base/bind.h"
#include "base/bind_helpers.h"
#include "base/location.h"
#include "base/metrics/histogram_macros.h"
#include "base/threading/thread_task_runner_handle.h"
#include "base/values.h"
#include "chrome/browser/extensions/api/passwords_private/passwords_private_delegate_factory.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/sync/profile_sync_service_factory.h"
#include "chrome/common/extensions/api/passwords_private.h"
#include "components/browser_sync/profile_sync_service.h"
#include "components/password_manager/core/browser/manage_passwords_referrer.h"
#include "components/password_manager/core/browser/password_manager_util.h"
#include "content/public/browser/web_contents.h"
#include "extensions/browser/extension_function_registry.h"
namespace extensions {
////////////////////////////////////////////////////////////////////////////////
// PasswordsPrivateRecordPasswordsPageAccessInSettingsFunction
PasswordsPrivateRecordPasswordsPageAccessInSettingsFunction::
~PasswordsPrivateRecordPasswordsPageAccessInSettingsFunction() {}
ExtensionFunction::ResponseAction
PasswordsPrivateRecordPasswordsPageAccessInSettingsFunction::Run() {
UMA_HISTOGRAM_ENUMERATION(
"PasswordManager.ManagePasswordsReferrer",
password_manager::ManagePasswordsReferrer::kChromeSettings);
if (password_manager_util::IsSyncingWithNormalEncryption(
ProfileSyncServiceFactory::GetForProfile(
Profile::FromBrowserContext(browser_context())))) {
// We record this second histogram to better understand the impact of the
// Google Password Manager experiment for signed in and syncing users.
UMA_HISTOGRAM_ENUMERATION(
"PasswordManager.ManagePasswordsReferrerSignedInAndSyncing",
password_manager::ManagePasswordsReferrer::kChromeSettings);
}
return RespondNow(NoArguments());
}
////////////////////////////////////////////////////////////////////////////////
// PasswordsPrivateRemoveSavedPasswordFunction
PasswordsPrivateRemoveSavedPasswordFunction::
~PasswordsPrivateRemoveSavedPasswordFunction() {}
ExtensionFunction::ResponseAction
PasswordsPrivateRemoveSavedPasswordFunction::Run() {
std::unique_ptr<api::passwords_private::RemoveSavedPassword::Params>
parameters =
api::passwords_private::RemoveSavedPassword::Params::Create(*args_);
EXTENSION_FUNCTION_VALIDATE(parameters.get());
PasswordsPrivateDelegate* delegate =
PasswordsPrivateDelegateFactory::GetForBrowserContext(browser_context(),
true /* create */);
delegate->RemoveSavedPassword(parameters->id);
return RespondNow(NoArguments());
}
////////////////////////////////////////////////////////////////////////////////
// PasswordsPrivateRemovePasswordExceptionFunction
PasswordsPrivateRemovePasswordExceptionFunction::
~PasswordsPrivateRemovePasswordExceptionFunction() {}
ExtensionFunction::ResponseAction
PasswordsPrivateRemovePasswordExceptionFunction::Run() {
std::unique_ptr<api::passwords_private::RemovePasswordException::Params>
parameters =
api::passwords_private::RemovePasswordException::Params::Create(
*args_);
EXTENSION_FUNCTION_VALIDATE(parameters.get());
PasswordsPrivateDelegate* delegate =
PasswordsPrivateDelegateFactory::GetForBrowserContext(browser_context(),
true /* create */);
delegate->RemovePasswordException(parameters->id);
return RespondNow(NoArguments());
}
////////////////////////////////////////////////////////////////////////////////
// PasswordsPrivateUndoRemoveSavedPasswordOrExceptionFunction
PasswordsPrivateUndoRemoveSavedPasswordOrExceptionFunction::
~PasswordsPrivateUndoRemoveSavedPasswordOrExceptionFunction() {}
ExtensionFunction::ResponseAction
PasswordsPrivateUndoRemoveSavedPasswordOrExceptionFunction::Run() {
PasswordsPrivateDelegate* delegate =
PasswordsPrivateDelegateFactory::GetForBrowserContext(browser_context(),
true /* create */);
delegate->UndoRemoveSavedPasswordOrException();
return RespondNow(NoArguments());
}
////////////////////////////////////////////////////////////////////////////////
// PasswordsPrivateRequestPlaintextPasswordFunction
PasswordsPrivateRequestPlaintextPasswordFunction::
~PasswordsPrivateRequestPlaintextPasswordFunction() {}
ExtensionFunction::ResponseAction
PasswordsPrivateRequestPlaintextPasswordFunction::Run() {
std::unique_ptr<api::passwords_private::RequestPlaintextPassword::Params>
parameters =
api::passwords_private::RequestPlaintextPassword::Params::Create(
*args_);
EXTENSION_FUNCTION_VALIDATE(parameters.get());
PasswordsPrivateDelegate* delegate =
PasswordsPrivateDelegateFactory::GetForBrowserContext(browser_context(),
true /* create */);
delegate->RequestShowPassword(
parameters->id,
base::BindOnce(
&PasswordsPrivateRequestPlaintextPasswordFunction::GotPassword, this),
GetSenderWebContents());
// GotPassword() might respond before we reach this point.
return did_respond() ? AlreadyResponded() : RespondLater();
}
void PasswordsPrivateRequestPlaintextPasswordFunction::GotPassword(
base::Optional<base::string16> password) {
if (password)
Respond(OneArgument(std::make_unique<base::Value>(std::move(*password))));
else
Respond(NoArguments());
}
////////////////////////////////////////////////////////////////////////////////
// PasswordsPrivateGetSavedPasswordListFunction
PasswordsPrivateGetSavedPasswordListFunction::
~PasswordsPrivateGetSavedPasswordListFunction() {}
ExtensionFunction::ResponseAction
PasswordsPrivateGetSavedPasswordListFunction::Run() {
// GetList() can immediately call GotList() (which would Respond() before
// RespondLater()). So we post a task to preserve order.
base::ThreadTaskRunnerHandle::Get()->PostTask(
FROM_HERE,
base::BindOnce(&PasswordsPrivateGetSavedPasswordListFunction::GetList,
this));
return RespondLater();
}
void PasswordsPrivateGetSavedPasswordListFunction::GetList() {
PasswordsPrivateDelegate* delegate =
PasswordsPrivateDelegateFactory::GetForBrowserContext(browser_context(),
true /* create */);
delegate->GetSavedPasswordsList(
base::Bind(&PasswordsPrivateGetSavedPasswordListFunction::GotList, this));
}
void PasswordsPrivateGetSavedPasswordListFunction::GotList(
const PasswordsPrivateDelegate::UiEntries& list) {
Respond(ArgumentList(
api::passwords_private::GetSavedPasswordList::Results::Create(list)));
}
////////////////////////////////////////////////////////////////////////////////
// PasswordsPrivateGetPasswordExceptionListFunction
PasswordsPrivateGetPasswordExceptionListFunction::
~PasswordsPrivateGetPasswordExceptionListFunction() {}
ExtensionFunction::ResponseAction
PasswordsPrivateGetPasswordExceptionListFunction::Run() {
// GetList() can immediately call GotList() (which would Respond() before
// RespondLater()). So we post a task to preserve order.
base::ThreadTaskRunnerHandle::Get()->PostTask(
FROM_HERE,
base::BindOnce(&PasswordsPrivateGetPasswordExceptionListFunction::GetList,
this));
return RespondLater();
}
void PasswordsPrivateGetPasswordExceptionListFunction::GetList() {
PasswordsPrivateDelegate* delegate =
PasswordsPrivateDelegateFactory::GetForBrowserContext(browser_context(),
true /* create */);
delegate->GetPasswordExceptionsList(base::Bind(
&PasswordsPrivateGetPasswordExceptionListFunction::GotList, this));
}
void PasswordsPrivateGetPasswordExceptionListFunction::GotList(
const PasswordsPrivateDelegate::ExceptionEntries& entries) {
Respond(ArgumentList(
api::passwords_private::GetPasswordExceptionList::Results::Create(
entries)));
}
////////////////////////////////////////////////////////////////////////////////
// PasswordsPrivateImportPasswordsFunction
PasswordsPrivateImportPasswordsFunction::
~PasswordsPrivateImportPasswordsFunction() {}
ExtensionFunction::ResponseAction
PasswordsPrivateImportPasswordsFunction::Run() {
PasswordsPrivateDelegate* delegate =
PasswordsPrivateDelegateFactory::GetForBrowserContext(browser_context(),
true /* create */);
delegate->ImportPasswords(GetSenderWebContents());
return RespondNow(NoArguments());
}
////////////////////////////////////////////////////////////////////////////////
// PasswordsPrivateExportPasswordsFunction
PasswordsPrivateExportPasswordsFunction::
~PasswordsPrivateExportPasswordsFunction() {}
ExtensionFunction::ResponseAction
PasswordsPrivateExportPasswordsFunction::Run() {
PasswordsPrivateDelegate* delegate =
PasswordsPrivateDelegateFactory::GetForBrowserContext(browser_context(),
true /* create */);
delegate->ExportPasswords(
base::BindOnce(
&PasswordsPrivateExportPasswordsFunction::ExportRequestCompleted,
this),
GetSenderWebContents());
return RespondLater();
}
void PasswordsPrivateExportPasswordsFunction::ExportRequestCompleted(
const std::string& error) {
if (error.empty())
Respond(NoArguments());
else
Error(error);
}
////////////////////////////////////////////////////////////////////////////////
// PasswordsPrivateCancelExportPasswordsFunction
PasswordsPrivateCancelExportPasswordsFunction::
~PasswordsPrivateCancelExportPasswordsFunction() {}
ExtensionFunction::ResponseAction
PasswordsPrivateCancelExportPasswordsFunction::Run() {
PasswordsPrivateDelegate* delegate =
PasswordsPrivateDelegateFactory::GetForBrowserContext(browser_context(),
true /* create */);
delegate->CancelExportPasswords();
return RespondNow(NoArguments());
}
////////////////////////////////////////////////////////////////////////////////
// PasswordsPrivateRequestExportProgressStatusFunction
PasswordsPrivateRequestExportProgressStatusFunction::
~PasswordsPrivateRequestExportProgressStatusFunction() {}
ExtensionFunction::ResponseAction
PasswordsPrivateRequestExportProgressStatusFunction::Run() {
PasswordsPrivateDelegate* delegate =
PasswordsPrivateDelegateFactory::GetForBrowserContext(browser_context(),
true /* create */);
return RespondNow(OneArgument(std::make_unique<base::Value>(
ToString(delegate->GetExportProgressStatus()))));
}
} // namespace extensions
|