| OLD | NEW |
| (Empty) |
| 1 // Copyright 2016 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 | |
| 5 #include "components/arc/user_data/arc_user_data_service.h" | |
| 6 | |
| 7 #include <utility> | |
| 8 | |
| 9 #include "base/command_line.h" | |
| 10 #include "chromeos/chromeos_switches.h" | |
| 11 #include "chromeos/cryptohome/cryptohome_parameters.h" | |
| 12 #include "chromeos/dbus/dbus_thread_manager.h" | |
| 13 #include "chromeos/dbus/session_manager_client.h" | |
| 14 #include "components/prefs/pref_member.h" | |
| 15 #include "components/signin/core/account_id/account_id.h" | |
| 16 #include "components/user_manager/user_manager.h" | |
| 17 | |
| 18 namespace arc { | |
| 19 | |
| 20 ArcUserDataService::ArcUserDataService( | |
| 21 ArcBridgeService* bridge_service, | |
| 22 std::unique_ptr<BooleanPrefMember> arc_enabled_pref, | |
| 23 const AccountId& account_id) | |
| 24 : ArcService(bridge_service), | |
| 25 arc_enabled_pref_(std::move(arc_enabled_pref)), | |
| 26 primary_user_account_id_(account_id), | |
| 27 weak_ptr_factory_(this) { | |
| 28 arc_bridge_service()->AddObserver(this); | |
| 29 pref_change_registrar_.Init(arc_enabled_pref_->prefs()); | |
| 30 pref_change_registrar_.Add( | |
| 31 arc_enabled_pref_->GetPrefName(), | |
| 32 base::Bind(&ArcUserDataService::OnOptInPreferenceChanged, | |
| 33 weak_ptr_factory_.GetWeakPtr())); | |
| 34 ClearIfDisabled(); | |
| 35 } | |
| 36 | |
| 37 ArcUserDataService::~ArcUserDataService() { | |
| 38 DCHECK(thread_checker_.CalledOnValidThread()); | |
| 39 arc_bridge_service()->RemoveObserver(this); | |
| 40 } | |
| 41 | |
| 42 void ArcUserDataService::OnBridgeStopped(ArcBridgeService::StopReason reason) { | |
| 43 DCHECK(thread_checker_.CalledOnValidThread()); | |
| 44 const AccountId& account_id = | |
| 45 user_manager::UserManager::Get()->GetPrimaryUser()->GetAccountId(); | |
| 46 if (account_id != primary_user_account_id_) { | |
| 47 LOG(ERROR) << "User preferences not loaded for " | |
| 48 << primary_user_account_id_.GetUserEmail() | |
| 49 << ", but current primary user is " << account_id.GetUserEmail(); | |
| 50 primary_user_account_id_ = EmptyAccountId(); | |
| 51 return; | |
| 52 } | |
| 53 ClearIfDisabled(); | |
| 54 } | |
| 55 | |
| 56 void ArcUserDataService::ClearIfDisabled() { | |
| 57 DCHECK(thread_checker_.CalledOnValidThread()); | |
| 58 if (!arc_bridge_service()->stopped()) { | |
| 59 LOG(ERROR) << "ARC instance not stopped, user data can't be cleared"; | |
| 60 return; | |
| 61 } | |
| 62 if ((arc_enabled_pref_->GetValue() && !arc_disabled_) || | |
| 63 base::CommandLine::ForCurrentProcess()->HasSwitch( | |
| 64 chromeos::switches::kDisableArcDataWipe)) { | |
| 65 return; | |
| 66 } | |
| 67 arc_disabled_ = false; | |
| 68 const cryptohome::Identification cryptohome_id(primary_user_account_id_); | |
| 69 chromeos::SessionManagerClient* session_manager_client = | |
| 70 chromeos::DBusThreadManager::Get()->GetSessionManagerClient(); | |
| 71 session_manager_client->RemoveArcData(cryptohome_id); | |
| 72 } | |
| 73 | |
| 74 void ArcUserDataService::OnOptInPreferenceChanged() { | |
| 75 if (!arc_enabled_pref_->GetValue()) | |
| 76 arc_disabled_ = true; | |
| 77 } | |
| 78 | |
| 79 } // namespace arc | |
| OLD | NEW |