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
|
// Copyright 2021 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/password_manager/android/password_store_bridge.h"
#include <jni.h>
#include <algorithm>
#include <memory>
#include <vector>
#include "base/android/jni_android.h"
#include "base/android/jni_string.h"
#include "base/functional/callback_helpers.h"
#include "base/location.h"
#include "chrome/browser/profiles/profile.h"
#include "components/password_manager/core/browser/form_parsing/form_data_parser.h"
#include "url/android/gurl_android.h"
// Must come after all headers that specialize FromJniType() / ToJniType().
#include "chrome/browser/password_manager/android/jni_headers/PasswordStoreBridge_jni.h"
#include "chrome/browser/password_manager/android/jni_headers/PasswordStoreCredential_jni.h"
namespace {
using password_manager::PasswordForm;
using Store = password_manager::PasswordForm::Store;
using std::ranges::count_if;
PasswordForm ConvertJavaObjectToPasswordForm(
JNIEnv* env,
const base::android::JavaParamRef<jobject>& credential) {
PasswordForm form;
form.url = url::GURLAndroid::ToNativeGURL(
env, Java_PasswordStoreCredential_getUrl(env, credential));
form.signon_realm = password_manager::GetSignonRealm(form.url);
form.username_value = base::android::ConvertJavaStringToUTF16(
env, Java_PasswordStoreCredential_getUsername(env, credential));
form.password_value = base::android::ConvertJavaStringToUTF16(
env, Java_PasswordStoreCredential_getPassword(env, credential));
return form;
}
// IN-TEST
PasswordForm Blocklist(JNIEnv* env, std::string url) {
PasswordForm form;
form.url = GURL(url);
form.signon_realm = password_manager::GetSignonRealm(form.url);
form.blocked_by_user = true;
return form;
}
} // namespace
// static
static jlong JNI_PasswordStoreBridge_Init(
JNIEnv* env,
const base::android::JavaParamRef<jobject>& java_bridge,
Profile* profile) {
return reinterpret_cast<intptr_t>(
new PasswordStoreBridge(java_bridge, profile));
}
PasswordStoreBridge::PasswordStoreBridge(
const base::android::JavaParamRef<jobject>& java_bridge,
Profile* profile)
: java_bridge_(java_bridge),
profile_(profile),
profile_store_(ProfilePasswordStoreFactory::GetForProfile(
profile,
ServiceAccessType::EXPLICIT_ACCESS)),
account_store_(AccountPasswordStoreFactory::GetForProfile(
profile,
ServiceAccessType::EXPLICIT_ACCESS)),
saved_passwords_presenter_(
AffiliationServiceFactory::GetForProfile(profile),
profile_store_,
account_store_) {
saved_passwords_presenter_.Init();
observed_saved_password_presenter_.Observe(&saved_passwords_presenter_);
}
PasswordStoreBridge::~PasswordStoreBridge() = default;
void PasswordStoreBridge::InsertPasswordCredentialInProfileStoreForTesting(
JNIEnv* env,
const base::android::JavaParamRef<jobject>& credential) {
profile_store_->AddLogin(ConvertJavaObjectToPasswordForm(env, credential));
}
void PasswordStoreBridge::InsertPasswordCredentialInAccountStoreForTesting(
JNIEnv* env,
const base::android::JavaParamRef<jobject>& credential) {
CHECK(account_store_);
account_store_->AddLogin(ConvertJavaObjectToPasswordForm(env, credential));
}
void PasswordStoreBridge::BlocklistForTesting(
JNIEnv* env,
const base::android::JavaParamRef<jstring>& jurl) {
profile_store_->AddLogin(
Blocklist(env, base::android::ConvertJavaStringToUTF8(env, jurl)));
}
bool PasswordStoreBridge::EditPassword(
JNIEnv* env,
const base::android::JavaParamRef<jobject>& credential,
const base::android::JavaParamRef<jstring>& new_password) {
password_manager::CredentialUIEntry original_credential(
ConvertJavaObjectToPasswordForm(env, credential));
password_manager::CredentialUIEntry updated_credential = original_credential;
updated_credential.password =
base::android::ConvertJavaStringToUTF16(env, new_password);
return saved_passwords_presenter_.EditSavedCredentials(original_credential,
updated_credential) ==
password_manager::SavedPasswordsPresenter::EditResult::kSuccess;
}
jint PasswordStoreBridge::GetPasswordStoreCredentialsCountForAllStores(
JNIEnv* env) const {
return static_cast<int>(
saved_passwords_presenter_.GetSavedPasswords().size());
}
jint PasswordStoreBridge::GetPasswordStoreCredentialsCountForAccountStore(
JNIEnv* env) const {
auto in_account_store = [](const auto& credential) {
return credential.stored_in.contains(Store::kAccountStore);
};
return count_if(saved_passwords_presenter_.GetSavedPasswords(),
in_account_store);
}
jint PasswordStoreBridge::GetPasswordStoreCredentialsCountForProfileStore(
JNIEnv* env) const {
auto in_account_store = [](const auto& credential) {
return credential.stored_in.contains(Store::kProfileStore);
};
return count_if(saved_passwords_presenter_.GetSavedPasswords(),
in_account_store);
}
void PasswordStoreBridge::GetAllCredentials(
JNIEnv* env,
const base::android::JavaParamRef<jobjectArray>& java_credentials) const {
const auto credentials = saved_passwords_presenter_.GetSavedPasswords();
for (size_t i = 0; i < credentials.size(); ++i) {
const auto& credential = credentials[i];
Java_PasswordStoreBridge_insertCredential(
env, java_credentials, i,
url::GURLAndroid::FromNativeGURL(env, credential.GetURL()),
base::android::ConvertUTF16ToJavaString(env, credential.username),
base::android::ConvertUTF16ToJavaString(env, credential.password));
}
}
void PasswordStoreBridge::ClearAllPasswords(JNIEnv* env) {
profile_store_->RemoveLoginsCreatedBetween(FROM_HERE, base::Time(),
base::Time::Max());
if (account_store_) {
account_store_->RemoveLoginsCreatedBetween(FROM_HERE, base::Time(),
base::Time::Max());
}
}
void PasswordStoreBridge::ClearAllPasswordsFromProfileStore(JNIEnv* env) {
profile_store_->RemoveLoginsCreatedBetween(FROM_HERE, base::Time(),
base::Time::Max());
}
void PasswordStoreBridge::Destroy(JNIEnv* env) {
delete this;
}
void PasswordStoreBridge::OnSavedPasswordsChanged(
const password_manager::PasswordStoreChangeList& changes) {
JNIEnv* env = base::android::AttachCurrentThread();
// Notifies java counter side that a new set of credentials is available.
Java_PasswordStoreBridge_passwordListAvailable(
env, java_bridge_,
static_cast<int>(
saved_passwords_presenter_.GetSavedCredentials().size()));
}
void PasswordStoreBridge::OnEdited(
const password_manager::CredentialUIEntry& credential) {
JNIEnv* env = base::android::AttachCurrentThread();
// Notifies java counter side that a credential has been edited.
Java_PasswordStoreBridge_onEditCredential(
env, java_bridge_,
Java_PasswordStoreBridge_createPasswordStoreCredential(
env, url::GURLAndroid::FromNativeGURL(env, credential.GetURL()),
base::android::ConvertUTF16ToJavaString(env, credential.username),
base::android::ConvertUTF16ToJavaString(env, credential.password)));
}
|