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
ash / system / notification_center / ash_message_center_lock_screen_controller.cc [blame]
// Copyright 2018 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/ash_message_center_lock_screen_controller.h"
#include "ash/constants/ash_features.h"
#include "ash/constants/ash_pref_names.h"
#include "ash/constants/notifier_catalogs.h"
#include "ash/login/ui/lock_screen.h"
#include "ash/public/cpp/system/toast_data.h"
#include "ash/session/session_controller_impl.h"
#include "ash/shelf/shelf.h"
#include "ash/shell.h"
#include "ash/strings/grit/ash_strings.h"
#include "ash/system/status_area_widget.h"
#include "ash/system/toast/toast_manager_impl.h"
#include "ash/system/unified/unified_system_tray.h"
#include "base/strings/utf_string_conversions.h"
#include "components/prefs/pref_service.h"
#include "ui/base/l10n/l10n_util.h"
#include "ui/views/widget/widget.h"
namespace ash {
// static private
std::optional<AshMessageCenterLockScreenController::Mode>
AshMessageCenterLockScreenController::overridden_mode_for_testing_;
// static
bool AshMessageCenterLockScreenController::IsEnabled() {
auto mode = GetMode();
bool is_showing = (mode == Mode::SHOW || mode == Mode::HIDE_SENSITIVE);
// If |isAllowed()| is false, must return false;
DCHECK(!is_showing || IsAllowed());
return is_showing;
}
// static
bool AshMessageCenterLockScreenController::IsAllowed() {
return GetMode() != Mode::PROHIBITED;
}
// static, private
AshMessageCenterLockScreenController::Mode
AshMessageCenterLockScreenController::GetMode() {
if (overridden_mode_for_testing_.has_value())
return *overridden_mode_for_testing_;
if (!features::IsLockScreenNotificationsEnabled())
return Mode::PROHIBITED;
// User prefs may be null in some tests.
PrefService* user_prefs =
Shell::Get()->session_controller()->GetLastActiveUserPrefService();
if (!user_prefs)
return Mode::PROHIBITED;
const std::string& mode =
user_prefs->GetString(prefs::kMessageCenterLockScreenMode);
if (mode == prefs::kMessageCenterLockScreenModeShow)
return Mode::SHOW;
if (mode == prefs::kMessageCenterLockScreenModeHideSensitive &&
features::IsLockScreenHideSensitiveNotificationsSupported())
return Mode::HIDE_SENSITIVE;
return Mode::HIDE;
}
// static, only for testing
void AshMessageCenterLockScreenController::OverrideModeForTest(
std::optional<AshMessageCenterLockScreenController::Mode> new_mode) {
overridden_mode_for_testing_ = new_mode;
}
namespace {
const char kToastId[] = "ash-lock-screen-manager";
} // anonymous namespace
AshMessageCenterLockScreenController::AshMessageCenterLockScreenController()
: locked_(Shell::Get()->session_controller()->IsScreenLocked()) {}
AshMessageCenterLockScreenController::~AshMessageCenterLockScreenController() {
// Invokes the cancel task if any.
if (cancel_task_)
std::move(cancel_task_).Run();
}
void AshMessageCenterLockScreenController::DismissLockScreenThenExecute(
base::OnceClosure pending_callback,
base::OnceClosure cancel_callback,
int message_id) {
if (locked_) {
// Invokes the previous cancel task if any.
if (cancel_task_)
std::move(cancel_task_).Run();
// Stores the new pending/cancel tasks.
pending_task_ = std::move(pending_callback);
cancel_task_ = std::move(cancel_callback);
EncourageUserToUnlock(message_id);
} else {
DCHECK(pending_task_.is_null());
DCHECK(cancel_task_.is_null());
if (pending_callback)
std::move(pending_callback).Run();
}
}
bool AshMessageCenterLockScreenController::IsScreenLocked() const {
return locked_;
}
void AshMessageCenterLockScreenController::EncourageUserToUnlock(
int message_id) {
DCHECK(locked_);
DCHECK(LockScreen::Get());
DCHECK(LockScreen::Get()->widget());
auto* unified_system_tray =
Shelf::ForWindow(LockScreen::Get()->widget()->GetNativeWindow())
->GetStatusAreaWidget()
->unified_system_tray();
if (unified_system_tray) {
// Lockscreen notification works only with the unified system tray.
unified_system_tray->CloseBubble();
}
std::u16string message;
if (message_id != -1) {
message = l10n_util::GetStringUTF16(message_id);
} else {
message =
(Shell::Get()->session_controller()->NumberOfLoggedInUsers() == 1 ||
active_account_id_.empty())
? l10n_util::GetStringUTF16(
IDS_ASH_MESSAGE_CENTER_UNLOCK_TO_PERFORM_ACTION)
: l10n_util::GetStringFUTF16(
IDS_ASH_MESSAGE_CENTER_UNLOCK_TO_PERFORM_ACTION_WITH_USER_ID,
base::UTF8ToUTF16(active_account_id_.GetUserEmail()));
}
Shell::Get()->toast_manager()->Show(
ToastData(kToastId, ToastCatalogName::kEncourageUnlock, message,
ToastData::kDefaultToastDuration,
/*visible_on_lock_screen=*/true));
}
void AshMessageCenterLockScreenController::OnLockStateChanged(bool locked) {
if (locked_ == locked)
return;
locked_ = locked;
if (!locked) {
Shell::Get()->toast_manager()->Cancel(kToastId);
// Invokes the pending task and resets the cancel task.
if (pending_task_)
std::move(pending_task_).Run();
std::move(cancel_task_).Reset();
} else {
DCHECK(pending_task_.is_null());
DCHECK(cancel_task_.is_null());
}
}
void AshMessageCenterLockScreenController::OnActiveUserSessionChanged(
const AccountId& account_id) {
if (active_account_id_ == account_id)
return;
active_account_id_ = account_id;
if (locked_) {
// Cancels the current callbacks, if the user switches the active account
// on the lock screen.
DCHECK(Shell::Get());
DCHECK(Shell::Get()->toast_manager());
Shell::Get()->toast_manager()->Cancel(kToastId);
std::move(pending_task_).Reset();
if (cancel_task_)
std::move(cancel_task_).Run();
}
}
} // namespace ash