blob: 8ef1d87b4b49051791ad7cde6db89ceb10692a35 [file] [log] [blame]
// Copyright 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "ash/system/locale/locale_update_controller_impl.h"
#include <memory>
#include <utility>
#include "ash/public/cpp/notification_utils.h"
#include "ash/session/session_controller_impl.h"
#include "ash/shell.h"
#include "ash/strings/grit/ash_strings.h"
#include "ash/system/tray/system_tray_notifier.h"
#include "base/strings/string16.h"
#include "components/session_manager/session_manager_types.h"
#include "components/vector_icons/vector_icons.h"
#include "ui/base/l10n/l10n_util.h"
#include "ui/message_center/message_center.h"
#include "ui/message_center/public/cpp/notification.h"
#include "ui/message_center/public/cpp/notification_delegate.h"
#include "ui/message_center/public/cpp/notification_types.h"
using message_center::Notification;
using session_manager::SessionState;
namespace ash {
namespace {
const char kLocaleChangeNotificationId[] = "chrome://settings/locale";
const char kNotifierLocale[] = "ash.locale";
class LocaleNotificationDelegate : public message_center::NotificationDelegate {
public:
explicit LocaleNotificationDelegate(
base::OnceCallback<void(LocaleNotificationResult)> callback);
protected:
~LocaleNotificationDelegate() override;
// message_center::NotificationDelegate overrides:
void Close(bool by_user) override;
void Click(const base::Optional<int>& button_index,
const base::Optional<base::string16>& reply) override;
private:
base::OnceCallback<void(LocaleNotificationResult)> callback_;
DISALLOW_COPY_AND_ASSIGN(LocaleNotificationDelegate);
};
LocaleNotificationDelegate::LocaleNotificationDelegate(
base::OnceCallback<void(LocaleNotificationResult)> callback)
: callback_(std::move(callback)) {}
LocaleNotificationDelegate::~LocaleNotificationDelegate() {
if (callback_) {
// We're being destroyed but the user didn't click on anything. Run the
// callback so that we don't crash.
std::move(callback_).Run(LocaleNotificationResult::kAccept);
}
}
void LocaleNotificationDelegate::Close(bool by_user) {
if (callback_) {
std::move(callback_).Run(LocaleNotificationResult::kAccept);
}
}
void LocaleNotificationDelegate::Click(
const base::Optional<int>& button_index,
const base::Optional<base::string16>& reply) {
if (!callback_)
return;
std::move(callback_).Run(button_index ? LocaleNotificationResult::kRevert
: LocaleNotificationResult::kAccept);
message_center::MessageCenter::Get()->RemoveNotification(
kLocaleChangeNotificationId, true /* by_user */);
}
} // namespace
LocaleUpdateControllerImpl::LocaleUpdateControllerImpl() = default;
LocaleUpdateControllerImpl::~LocaleUpdateControllerImpl() = default;
void LocaleUpdateControllerImpl::OnLocaleChanged(
const std::string& cur_locale,
const std::string& from_locale,
const std::string& to_locale,
OnLocaleChangedCallback callback) {
base::string16 from =
l10n_util::GetDisplayNameForLocale(from_locale, cur_locale, true);
base::string16 to =
l10n_util::GetDisplayNameForLocale(to_locale, cur_locale, true);
message_center::RichNotificationData optional;
optional.buttons.push_back(
message_center::ButtonInfo(l10n_util::GetStringFUTF16(
IDS_ASH_STATUS_TRAY_LOCALE_REVERT_MESSAGE, from)));
optional.never_timeout = true;
for (auto& observer : observers_)
observer.OnLocaleChanged();
if (Shell::Get()->session_controller()->GetSessionState() ==
SessionState::OOBE) {
std::move(callback).Run(LocaleNotificationResult::kAccept);
return;
}
std::unique_ptr<Notification> notification = CreateSystemNotification(
message_center::NOTIFICATION_TYPE_SIMPLE, kLocaleChangeNotificationId,
l10n_util::GetStringUTF16(IDS_ASH_STATUS_TRAY_LOCALE_CHANGE_TITLE),
l10n_util::GetStringFUTF16(IDS_ASH_STATUS_TRAY_LOCALE_CHANGE_MESSAGE,
from, to),
base::string16() /* display_source */, GURL(),
message_center::NotifierId(message_center::NotifierType::SYSTEM_COMPONENT,
kNotifierLocale),
optional, new LocaleNotificationDelegate(std::move(callback)),
vector_icons::kSettingsIcon,
message_center::SystemNotificationWarningLevel::NORMAL);
message_center::MessageCenter::Get()->AddNotification(
std::move(notification));
}
void LocaleUpdateControllerImpl::AddObserver(LocaleChangeObserver* observer) {
observers_.AddObserver(observer);
}
void LocaleUpdateControllerImpl::RemoveObserver(
LocaleChangeObserver* observer) {
observers_.RemoveObserver(observer);
}
} // namespace ash