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
|
// Copyright 2014 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/file_system_provider/notification_manager.h"
#include "ash/constants/notifier_catalogs.h"
#include "base/strings/utf_string_conversions.h"
#include "chrome/browser/extensions/chrome_app_icon_loader.h"
#include "chrome/browser/notifications/notification_display_service.h"
#include "chrome/browser/notifications/notification_display_service_factory.h"
#include "chrome/browser/ui/ash/multi_user/multi_user_util.h"
#include "components/account_id/account_id.h"
#include "ui/base/l10n/l10n_util.h"
#include "ui/chromeos/strings/grit/ui_chromeos_strings.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 ash::file_system_provider {
namespace {
// Extension icon size for the notification.
const int kIconSize = 48;
} // namespace
NotificationManager::NotificationManager(
Profile* profile,
const ProvidedFileSystemInfo& file_system_info)
: profile_(profile),
file_system_info_(file_system_info),
icon_loader_(
new extensions::ChromeAppIconLoader(profile, kIconSize, this)) {
DCHECK_EQ(ProviderId::EXTENSION, file_system_info.provider_id().GetType());
}
NotificationManager::~NotificationManager() {
if (callbacks_.size()) {
NotificationDisplayServiceFactory::GetForProfile(profile_)->Close(
NotificationHandler::Type::TRANSIENT, GetNotificationId());
}
}
void NotificationManager::ShowUnresponsiveNotification(
int id,
NotificationCallback callback) {
callbacks_[id] = std::move(callback);
ShowNotification();
}
void NotificationManager::HideUnresponsiveNotification(int id) {
callbacks_.erase(id);
if (callbacks_.size()) {
ShowNotification();
} else {
NotificationDisplayServiceFactory::GetForProfile(profile_)->Close(
NotificationHandler::Type::TRANSIENT, GetNotificationId());
}
}
void NotificationManager::Click(const std::optional<int>& button_index,
const std::optional<std::u16string>& reply) {
if (!button_index)
return;
OnNotificationResult(ABORT);
}
void NotificationManager::Close(bool by_user) {
OnNotificationResult(CONTINUE);
}
void NotificationManager::OnAppImageUpdated(
const std::string& id,
const gfx::ImageSkia& image,
bool is_placeholder_icon,
const std::optional<gfx::ImageSkia>& badge_image) {
extension_icon_ = ui::ImageModel::FromImageSkia(image);
ShowNotification();
}
std::string NotificationManager::GetNotificationId() {
return file_system_info_.mount_path().value();
}
void NotificationManager::ShowNotification() {
if (extension_icon_.IsEmpty())
icon_loader_->FetchImage(file_system_info_.provider_id().GetExtensionId());
message_center::RichNotificationData rich_notification_data;
rich_notification_data.buttons.emplace_back(l10n_util::GetStringUTF16(
IDS_FILE_SYSTEM_PROVIDER_UNRESPONSIVE_ABORT_BUTTON));
message_center::NotifierId notifier_id(
message_center::NotifierType::SYSTEM_COMPONENT,
"chrome://file_system_provider_notification",
NotificationCatalogName::kFileSystemProvider);
notifier_id.profile_id =
multi_user_util::GetAccountIdFromProfile(profile_).GetUserEmail();
message_center::Notification notification(
message_center::NOTIFICATION_TYPE_SIMPLE, GetNotificationId(),
base::UTF8ToUTF16(file_system_info_.display_name()),
l10n_util::GetStringUTF16(
callbacks_.size() == 1
? IDS_FILE_SYSTEM_PROVIDER_UNRESPONSIVE_WARNING
: IDS_FILE_SYSTEM_PROVIDER_MANY_UNRESPONSIVE_WARNING),
extension_icon_,
std::u16string(), // display_source
GURL(), notifier_id, rich_notification_data,
base::MakeRefCounted<message_center::ThunkNotificationDelegate>(
weak_factory_.GetWeakPtr()));
notification.SetSystemPriority();
NotificationDisplayServiceFactory::GetForProfile(profile_)->Display(
NotificationHandler::Type::TRANSIENT, notification, /*metadata=*/nullptr);
}
void NotificationManager::OnNotificationResult(NotificationResult result) {
CallbackMap::iterator it = callbacks_.begin();
while (it != callbacks_.end()) {
CallbackMap::iterator current_it = it++;
NotificationCallback callback = std::move(current_it->second);
callbacks_.erase(current_it);
std::move(callback).Run(result);
}
}
} // namespace ash::file_system_provider
|