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
|
// Copyright 2023 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/ash/input_method/editor_consent_store.h"
#include "ash/constants/ash_pref_names.h"
#include "base/types/cxx23_to_underlying.h"
#include "chrome/browser/ash/input_method/editor_metrics_enums.h"
#include "chrome/browser/ash/input_method/editor_metrics_recorder.h"
#include "chromeos/ash/components/editor_menu/public/cpp/editor_consent_status.h"
namespace ash::input_method {
EditorConsentStore::EditorConsentStore(PrefService* pref_service,
EditorMetricsRecorder* metrics_recorder)
: pref_service_(pref_service), metrics_recorder_(metrics_recorder) {
InitializePrefChangeRegistrar(pref_service);
}
EditorConsentStore::~EditorConsentStore() = default;
chromeos::editor_menu::EditorConsentStatus
EditorConsentStore::GetConsentStatus() const {
return chromeos::editor_menu::GetConsentStatusFromInteger(
pref_service_->GetInteger(prefs::kOrcaConsentStatus));
}
void EditorConsentStore::SetConsentStatus(
chromeos::editor_menu::EditorConsentStatus consent_status) {
pref_service_->SetInteger(prefs::kOrcaConsentStatus,
base::to_underlying(consent_status));
}
void EditorConsentStore::ProcessConsentAction(ConsentAction consent_action) {
if (consent_action == ConsentAction::kApprove) {
SetConsentStatus(chromeos::editor_menu::EditorConsentStatus::kApproved);
metrics_recorder_->LogEditorState(EditorStates::kApproveConsent);
return;
}
if (consent_action == ConsentAction::kDecline) {
SetConsentStatus(chromeos::editor_menu::EditorConsentStatus::kDeclined);
OverrideUserPref(/*new_pref_value=*/false);
metrics_recorder_->LogEditorState(EditorStates::kDeclineConsent);
}
}
void EditorConsentStore::ProcessPromoCardAction(
PromoCardAction promo_card_action) {
if (promo_card_action == PromoCardAction::kDecline) {
OverrideUserPref(/*new_pref_value=*/false);
}
}
void EditorConsentStore::OnUserPrefChanged() {
chromeos::editor_menu::EditorConsentStatus current_consent_status =
GetConsentStatus();
// If the user has previously (implicitly) declined the consent status and
// now switches the toggle on, then reset the consent status.
if (pref_service_->GetBoolean(ash::prefs::kOrcaEnabled) &&
current_consent_status ==
chromeos::editor_menu::EditorConsentStatus::kDeclined) {
SetConsentStatus(chromeos::editor_menu::EditorConsentStatus::kUnset);
}
}
void EditorConsentStore::OverrideUserPref(bool new_pref_value) {
pref_service_->SetBoolean(prefs::kOrcaEnabled, new_pref_value);
}
void EditorConsentStore::InitializePrefChangeRegistrar(
PrefService* pref_service) {
pref_change_registrar_ = std::make_unique<PrefChangeRegistrar>();
pref_change_registrar_->Init(pref_service);
pref_change_registrar_->Add(
ash::prefs::kOrcaEnabled,
base::BindRepeating(&EditorConsentStore::OnUserPrefChanged,
weak_ptr_factory_.GetWeakPtr()));
}
void EditorConsentStore::SetPrefService(PrefService* pref_service) {
pref_service_ = pref_service;
pref_change_registrar_.reset();
InitializePrefChangeRegistrar(pref_service_);
}
} // namespace ash::input_method
|