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
|
// Copyright 2016 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/arc/notification/arc_boot_error_notification.h"
#include <memory>
#include <utility>
#include "ash/public/cpp/notification_utils.h"
#include "ash/webui/settings/public/constants/routes.mojom.h"
#include "base/functional/bind.h"
#include "base/memory/scoped_refptr.h"
#include "base/strings/utf_string_conversions.h"
#include "chrome/app/vector_icons/vector_icons.h"
#include "chrome/browser/ash/arc/session/arc_session_manager.h"
#include "chrome/browser/ash/policy/core/browser_policy_connector_ash.h"
#include "chrome/browser/browser_process.h"
#include "chrome/browser/browser_process_platform_part.h"
#include "chrome/browser/notifications/notification_display_service.h"
#include "chrome/browser/notifications/notification_display_service_factory.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/ui/settings_window_manager_chromeos.h"
#include "chrome/common/webui_url_constants.h"
#include "chrome/grit/generated_resources.h"
#include "chromeos/ash/components/demo_mode/utils/demo_session_utils.h"
#include "chromeos/ash/experiences/arc/arc_browser_context_keyed_service_factory_base.h"
#include "components/user_manager/user_manager.h"
#include "content/public/browser/browser_thread.h"
#include "ui/base/l10n/l10n_util.h"
#include "ui/base/resource/resource_bundle.h"
#include "ui/chromeos/resources/grit/ui_chromeos_resources.h"
#include "ui/message_center/public/cpp/notification.h"
#include "ui/message_center/public/cpp/notification_types.h"
#include "ui/message_center/public/cpp/notifier_id.h"
namespace arc {
namespace {
const char kLowDiskSpaceId[] = "arc_low_disk";
const char kNotifierId[] = "arc_boot_error";
void ShowLowDiskSpaceErrorNotification(content::BrowserContext* context) {
// We suppress the low-disk notification when there are multiple users on an
// enterprise managed device. crbug.com/656788.
if (g_browser_process->platform_part()
->browser_policy_connector_ash()
->IsDeviceEnterpriseManaged() &&
user_manager::UserManager::Get()->GetPersistedUsers().size() > 1) {
LOG(WARNING) << "ARC booting is aborted due to low disk space, but the "
<< "notification was suppressed on a managed device.";
return;
}
if (ash::demo_mode::IsDeviceInDemoMode()) {
LOG(WARNING) << "ARC booting is aborted due to low disk space, but the "
<< "notification was suppressed on a demo mode device.";
return;
}
message_center::ButtonInfo storage_settings(
l10n_util::GetStringUTF16(IDS_LOW_DISK_NOTIFICATION_BUTTON));
message_center::RichNotificationData optional_fields;
optional_fields.buttons.push_back(storage_settings);
message_center::NotifierId notifier_id(
message_center::NotifierType::SYSTEM_COMPONENT, kNotifierId,
ash::NotificationCatalogName::kArcBootError);
const AccountId& account_id =
user_manager::UserManager::Get()->GetPrimaryUser()->GetAccountId();
notifier_id.profile_id = account_id.GetUserEmail();
Profile* profile = Profile::FromBrowserContext(context);
message_center::Notification notification = ash::CreateSystemNotification(
message_center::NOTIFICATION_TYPE_SIMPLE, kLowDiskSpaceId,
l10n_util::GetStringUTF16(IDS_ARC_CRITICALLY_LOW_DISK_NOTIFICATION_TITLE),
l10n_util::GetStringUTF16(
IDS_ARC_CRITICALLY_LOW_DISK_NOTIFICATION_MESSAGE),
l10n_util::GetStringUTF16(IDS_ARC_NOTIFICATION_DISPLAY_SOURCE), GURL(),
notifier_id, optional_fields,
base::MakeRefCounted<message_center::HandleNotificationClickDelegate>(
base::BindRepeating(
[](Profile* profile, std::optional<int> button_index) {
if (button_index) {
DCHECK_EQ(0, *button_index);
chrome::SettingsWindowManager::GetInstance()->ShowOSSettings(
profile, chromeos::settings::mojom::kStorageSubpagePath);
}
},
profile)),
kNotificationStorageFullIcon,
message_center::SystemNotificationWarningLevel::CRITICAL_WARNING);
NotificationDisplayServiceFactory::GetForProfile(profile)->Display(
NotificationHandler::Type::TRANSIENT, notification,
/*metadata=*/nullptr);
}
// Singleton factory for ArcBootErrorNotificationFactory.
class ArcBootErrorNotificationFactory
: public internal::ArcBrowserContextKeyedServiceFactoryBase<
ArcBootErrorNotification,
ArcBootErrorNotificationFactory> {
public:
// Factory name used by ArcBrowserContextKeyedServiceFactoryBase.
static constexpr const char* kName = "ArcBootErrorNotificationFactory";
static ArcBootErrorNotificationFactory* GetInstance() {
return base::Singleton<ArcBootErrorNotificationFactory>::get();
}
private:
friend base::DefaultSingletonTraits<ArcBootErrorNotificationFactory>;
ArcBootErrorNotificationFactory() {
DependsOn(NotificationDisplayServiceFactory::GetInstance());
}
~ArcBootErrorNotificationFactory() override = default;
};
} // namespace
// static
ArcBootErrorNotification* ArcBootErrorNotification::GetForBrowserContext(
content::BrowserContext* context) {
return ArcBootErrorNotificationFactory::GetForBrowserContext(context);
}
ArcBootErrorNotification::ArcBootErrorNotification(
content::BrowserContext* context,
ArcBridgeService* bridge_service)
: context_(context) {
ArcSessionManager::Get()->AddObserver(this);
}
ArcBootErrorNotification::~ArcBootErrorNotification() {
ArcSessionManager::Get()->RemoveObserver(this);
}
void ArcBootErrorNotification::OnArcSessionStopped(ArcStopReason reason) {
if (reason == ArcStopReason::LOW_DISK_SPACE)
ShowLowDiskSpaceErrorNotification(context_);
}
// static
void ArcBootErrorNotification::EnsureFactoryBuilt() {
ArcBootErrorNotificationFactory::GetInstance();
}
} // namespace arc
|