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
ash / system / notification_center / message_center_controller.cc [blame]
// Copyright 2017 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "ash/system/notification_center/message_center_controller.h"
#include <memory>
#include <utility>
#include "ash/constants/ash_features.h"
#include "ash/constants/ash_pref_names.h"
#include "ash/constants/ash_switches.h"
#include "ash/public/cpp/message_center/arc_notification_manager_base.h"
#include "ash/session/session_controller_impl.h"
#include "ash/shell.h"
#include "ash/strings/grit/ash_strings.h"
#include "ash/system/notification_center/arc_notification_manager_delegate_impl.h"
#include "ash/system/notification_center/ash_message_center_lock_screen_controller.h"
#include "ash/system/notification_center/ash_notification_drag_controller.h"
#include "ash/system/notification_center/fullscreen_notification_blocker.h"
#include "ash/system/notification_center/inactive_user_notification_blocker.h"
#include "ash/system/notification_center/session_state_notification_blocker.h"
#include "ash/system/phonehub/phone_hub_notification_controller.h"
#include "base/command_line.h"
#include "components/pref_registry/pref_registry_syncable.h"
#include "components/prefs/pref_registry_simple.h"
#include "components/prefs/pref_service.h"
#include "ui/base/l10n/l10n_util.h"
#include "ui/message_center/message_center.h"
#include "ui/message_center/popup_timers_controller.h"
#include "ui/message_center/public/cpp/message_center_constants.h"
#include "ui/message_center/public/cpp/notification.h"
#include "ui/message_center/public/cpp/notification_delegate.h"
#include "ui/message_center/public/cpp/notifier_id.h"
using message_center::MessageCenter;
using message_center::NotifierId;
namespace ash {
// static
void MessageCenterController::RegisterProfilePrefs(
PrefRegistrySimple* registry) {
registry->RegisterStringPref(
prefs::kMessageCenterLockScreenMode,
prefs::kMessageCenterLockScreenModeHide,
user_prefs::PrefRegistrySyncable::SYNCABLE_OS_PREF);
registry->RegisterBooleanPref(
prefs::kAppNotificationBadgingEnabled, true,
user_prefs::PrefRegistrySyncable::SYNCABLE_OS_PREF);
}
namespace {
bool DisableShortNotificationsForAccessibility(PrefService* pref_service) {
DCHECK(pref_service);
return (
pref_service->GetBoolean(prefs::kAccessibilityAutoclickEnabled) ||
pref_service->GetBoolean(prefs::kAccessibilityScreenMagnifierEnabled) ||
pref_service->GetBoolean(prefs::kAccessibilitySelectToSpeakEnabled) ||
pref_service->GetBoolean(prefs::kAccessibilitySpokenFeedbackEnabled) ||
pref_service->GetBoolean(prefs::kDockedMagnifierEnabled));
}
// A notification blocker that unconditionally blocks toasts. Implements
// --suppress-message-center-notifications.
class PopupNotificationBlocker : public message_center::NotificationBlocker {
public:
explicit PopupNotificationBlocker(MessageCenter* message_center)
: NotificationBlocker(message_center) {}
PopupNotificationBlocker(const PopupNotificationBlocker&) = delete;
PopupNotificationBlocker& operator=(const PopupNotificationBlocker&) = delete;
~PopupNotificationBlocker() override = default;
bool ShouldShowNotificationAsPopup(
const message_center::Notification& notification) const override {
return false;
}
};
} // namespace
MessageCenterController::MessageCenterController() {
message_center::MessageCenter::Initialize(
std::make_unique<AshMessageCenterLockScreenController>());
fullscreen_notification_blocker_ =
std::make_unique<FullscreenNotificationBlocker>(MessageCenter::Get());
fullscreen_notification_blocker_->Init();
inactive_user_notification_blocker_ =
std::make_unique<InactiveUserNotificationBlocker>(MessageCenter::Get());
inactive_user_notification_blocker_->Init();
session_state_notification_blocker_ =
std::make_unique<SessionStateNotificationBlocker>(MessageCenter::Get());
session_state_notification_blocker_->Init();
Shell::Get()->session_controller()->AddObserver(this);
if (base::CommandLine::ForCurrentProcess()->HasSwitch(
switches::kSuppressMessageCenterPopups)) {
all_popup_blocker_ =
std::make_unique<PopupNotificationBlocker>(MessageCenter::Get());
all_popup_blocker_->Init();
}
if (features::IsPhoneHubEnabled()) {
phone_hub_notification_controller_ =
std::make_unique<PhoneHubNotificationController>();
}
// When adding other notification blockers, ensure that they are initialized
// before the shell's `SnoopingProtectionController`. The notification blocker
// that it adds during its construction must be the last blocker, since it
// observes the states of all the others.
DCHECK(!Shell::Get()->snooping_protection_controller());
// Set the system notification source display name ("ChromeOS" or
// "ChromiumOS").
message_center::MessageCenter::Get()->SetSystemNotificationAppName(
l10n_util::GetStringUTF16(IDS_ASH_MESSAGE_CENTER_SYSTEM_APP_NAME));
if (features::IsNotificationImageDragEnabled()) {
drag_controller_ = std::make_unique<AshNotificationDragController>();
}
}
MessageCenterController::~MessageCenterController() {
for (auto& observer : observers_) {
observer.OnArcNotificationInitializerDestroyed(this);
}
// These members all depend on the MessageCenter instance, so must be
// destroyed first.
all_popup_blocker_.reset();
session_state_notification_blocker_.reset();
inactive_user_notification_blocker_.reset();
fullscreen_notification_blocker_.reset();
arc_notification_manager_.reset();
Shell::Get()->session_controller()->RemoveObserver(this);
message_center::MessageCenter::Shutdown();
}
void MessageCenterController::SetArcNotificationManagerInstance(
std::unique_ptr<ArcNotificationManagerBase> manager_instance) {
CHECK(!arc_notification_manager_);
arc_notification_manager_ = std::move(manager_instance);
arc_notification_manager_->Init(
std::make_unique<ArcNotificationManagerDelegateImpl>(),
Shell::Get()
->session_controller()
->GetPrimaryUserSession()
->user_info.account_id,
message_center::MessageCenter::Get());
for (auto& observer : observers_) {
observer.OnSetArcNotificationsInstance(arc_notification_manager_.get());
}
}
ArcNotificationManagerBase*
MessageCenterController::GetArcNotificationManagerInstance() {
return arc_notification_manager_.get();
}
void MessageCenterController::AddObserver(Observer* observer) {
observers_.AddObserver(observer);
}
void MessageCenterController::RemoveObserver(Observer* observer) {
observers_.RemoveObserver(observer);
}
void MessageCenterController::OnActiveUserPrefServiceChanged(
PrefService* prefs) {
if (DisableShortNotificationsForAccessibility(prefs)) {
return;
}
message_center::PopupTimersController::SetNotificationTimeouts(
message_center::kAutocloseShortDelaySeconds,
message_center::kAutocloseCrosHighPriorityDelaySeconds);
}
} // namespace ash