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 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526
|
// Copyright (c) 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 "chrome/browser/notifications/message_center_settings_controller.h"
#include <algorithm>
#include "base/command_line.h"
#include "base/i18n/string_compare.h"
#include "base/message_loop/message_loop_proxy.h"
#include "base/strings/utf_string_conversions.h"
#include "base/task/cancelable_task_tracker.h"
#include "chrome/browser/browser_process.h"
#include "chrome/browser/chrome_notification_types.h"
#include "chrome/browser/extensions/app_icon_loader_impl.h"
#include "chrome/browser/favicon/favicon_service.h"
#include "chrome/browser/favicon/favicon_service_factory.h"
#include "chrome/browser/notifications/desktop_notification_profile_util.h"
#include "chrome/browser/notifications/desktop_notification_service.h"
#include "chrome/browser/notifications/desktop_notification_service_factory.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/profiles/profile_info_cache.h"
#include "chrome/browser/profiles/profile_manager.h"
#include "chrome/common/extensions/api/notifications.h"
#include "chrome/common/extensions/extension_constants.h"
#include "components/content_settings/core/browser/host_content_settings_map.h"
#include "components/favicon_base/favicon_types.h"
#include "components/history/core/browser/history_types.h"
#include "content/public/browser/notification_service.h"
#include "content/public/browser/notification_source.h"
#include "extensions/browser/event_router.h"
#include "extensions/browser/extension_registry.h"
#include "extensions/common/constants.h"
#include "extensions/common/extension.h"
#include "extensions/common/permissions/permissions_data.h"
#include "grit/theme_resources.h"
#include "ui/base/l10n/l10n_util.h"
#include "ui/base/resource/resource_bundle.h"
#include "ui/gfx/image/image.h"
#include "ui/message_center/message_center_style.h"
#include "ui/strings/grit/ui_strings.h"
#if defined(OS_CHROMEOS)
#include "ash/system/system_notifier.h"
#include "chrome/browser/chromeos/profiles/profile_helper.h"
#endif
using message_center::Notifier;
using message_center::NotifierId;
namespace message_center {
class ProfileNotifierGroup : public message_center::NotifierGroup {
public:
ProfileNotifierGroup(const gfx::Image& icon,
const base::string16& display_name,
const base::string16& login_info,
size_t index,
const base::FilePath& profile_path);
ProfileNotifierGroup(const gfx::Image& icon,
const base::string16& display_name,
const base::string16& login_info,
size_t index,
Profile* profile);
virtual ~ProfileNotifierGroup() {}
Profile* profile() const { return profile_; }
private:
Profile* profile_;
};
ProfileNotifierGroup::ProfileNotifierGroup(const gfx::Image& icon,
const base::string16& display_name,
const base::string16& login_info,
size_t index,
const base::FilePath& profile_path)
: message_center::NotifierGroup(icon, display_name, login_info, index),
profile_(NULL) {
// Try to get the profile
profile_ =
g_browser_process->profile_manager()->GetProfileByPath(profile_path);
}
ProfileNotifierGroup::ProfileNotifierGroup(const gfx::Image& icon,
const base::string16& display_name,
const base::string16& login_info,
size_t index,
Profile* profile)
: message_center::NotifierGroup(icon, display_name, login_info, index),
profile_(profile) {
}
} // namespace message_center
namespace {
class NotifierComparator {
public:
explicit NotifierComparator(icu::Collator* collator) : collator_(collator) {}
bool operator() (Notifier* n1, Notifier* n2) {
return base::i18n::CompareString16WithCollator(
collator_, n1->name, n2->name) == UCOL_LESS;
}
private:
icu::Collator* collator_;
};
bool SimpleCompareNotifiers(Notifier* n1, Notifier* n2) {
return n1->name < n2->name;
}
} // namespace
MessageCenterSettingsController::MessageCenterSettingsController(
ProfileInfoCache* profile_info_cache)
: current_notifier_group_(0),
profile_info_cache_(profile_info_cache),
weak_factory_(this) {
DCHECK(profile_info_cache_);
// The following events all represent changes that may need to be reflected in
// the profile selector context menu, so listen for them all. We'll just
// rebuild the list when we get any of them.
registrar_.Add(this,
chrome::NOTIFICATION_PROFILE_CREATED,
content::NotificationService::AllBrowserContextsAndSources());
registrar_.Add(this,
chrome::NOTIFICATION_PROFILE_ADDED,
content::NotificationService::AllBrowserContextsAndSources());
registrar_.Add(this,
chrome::NOTIFICATION_PROFILE_DESTROYED,
content::NotificationService::AllBrowserContextsAndSources());
registrar_.Add(this,
chrome::NOTIFICATION_PROFILE_CACHED_INFO_CHANGED,
content::NotificationService::AllBrowserContextsAndSources());
RebuildNotifierGroups();
#if defined(OS_CHROMEOS)
// UserManager may not exist in some tests.
if (user_manager::UserManager::IsInitialized())
user_manager::UserManager::Get()->AddSessionStateObserver(this);
#endif
}
MessageCenterSettingsController::~MessageCenterSettingsController() {
#if defined(OS_CHROMEOS)
// UserManager may not exist in some tests.
if (user_manager::UserManager::IsInitialized())
user_manager::UserManager::Get()->RemoveSessionStateObserver(this);
#endif
}
void MessageCenterSettingsController::AddObserver(
message_center::NotifierSettingsObserver* observer) {
observers_.AddObserver(observer);
}
void MessageCenterSettingsController::RemoveObserver(
message_center::NotifierSettingsObserver* observer) {
observers_.RemoveObserver(observer);
}
size_t MessageCenterSettingsController::GetNotifierGroupCount() const {
return notifier_groups_.size();
}
const message_center::NotifierGroup&
MessageCenterSettingsController::GetNotifierGroupAt(size_t index) const {
DCHECK_LT(index, notifier_groups_.size());
return *(notifier_groups_[index]);
}
bool MessageCenterSettingsController::IsNotifierGroupActiveAt(
size_t index) const {
return current_notifier_group_ == index;
}
const message_center::NotifierGroup&
MessageCenterSettingsController::GetActiveNotifierGroup() const {
DCHECK_LT(current_notifier_group_, notifier_groups_.size());
return *(notifier_groups_[current_notifier_group_]);
}
void MessageCenterSettingsController::SwitchToNotifierGroup(size_t index) {
DCHECK_LT(index, notifier_groups_.size());
if (current_notifier_group_ == index)
return;
current_notifier_group_ = index;
FOR_EACH_OBSERVER(message_center::NotifierSettingsObserver,
observers_,
NotifierGroupChanged());
}
void MessageCenterSettingsController::GetNotifierList(
std::vector<Notifier*>* notifiers) {
DCHECK(notifiers);
if (notifier_groups_.size() <= current_notifier_group_)
return;
// Temporarily use the last used profile to prevent chrome from crashing when
// the default profile is not loaded.
Profile* profile = notifier_groups_[current_notifier_group_]->profile();
DesktopNotificationService* notification_service =
DesktopNotificationServiceFactory::GetForProfile(profile);
UErrorCode error = U_ZERO_ERROR;
scoped_ptr<icu::Collator> collator(icu::Collator::createInstance(error));
scoped_ptr<NotifierComparator> comparator;
if (!U_FAILURE(error))
comparator.reset(new NotifierComparator(collator.get()));
const extensions::ExtensionSet& extension_set =
extensions::ExtensionRegistry::Get(profile)->enabled_extensions();
// The extension icon size has to be 32x32 at least to load bigger icons if
// the icon doesn't exist for the specified size, and in that case it falls
// back to the default icon. The fetched icon will be resized in the settings
// dialog. See chrome/browser/extensions/extension_icon_image.cc and
// crbug.com/222931
app_icon_loader_.reset(new extensions::AppIconLoaderImpl(
profile, extension_misc::EXTENSION_ICON_SMALL, this));
for (extensions::ExtensionSet::const_iterator iter = extension_set.begin();
iter != extension_set.end();
++iter) {
const extensions::Extension* extension = iter->get();
if (!extension->permissions_data()->HasAPIPermission(
extensions::APIPermission::kNotifications)) {
continue;
}
NotifierId notifier_id(NotifierId::APPLICATION, extension->id());
notifiers->push_back(new Notifier(
notifier_id,
base::UTF8ToUTF16(extension->name()),
notification_service->IsNotifierEnabled(notifier_id)));
app_icon_loader_->FetchImage(extension->id());
}
int app_count = notifiers->size();
ContentSettingsForOneType settings;
DesktopNotificationProfileUtil::GetNotificationsSettings(profile, &settings);
FaviconService* favicon_service =
FaviconServiceFactory::GetForProfile(profile, Profile::EXPLICIT_ACCESS);
favicon_tracker_.reset(new base::CancelableTaskTracker());
patterns_.clear();
for (ContentSettingsForOneType::const_iterator iter = settings.begin();
iter != settings.end(); ++iter) {
if (iter->primary_pattern == ContentSettingsPattern::Wildcard() &&
iter->secondary_pattern == ContentSettingsPattern::Wildcard() &&
iter->source != "preference") {
continue;
}
std::string url_pattern = iter->primary_pattern.ToString();
base::string16 name = base::UTF8ToUTF16(url_pattern);
GURL url(url_pattern);
NotifierId notifier_id(url);
notifiers->push_back(new Notifier(
notifier_id,
name,
notification_service->IsNotifierEnabled(notifier_id)));
patterns_[name] = iter->primary_pattern;
// Note that favicon service obtains the favicon from history. This means
// that it will fail to obtain the image if there are no history data for
// that URL.
favicon_service->GetFaviconImageForPageURL(
url,
base::Bind(&MessageCenterSettingsController::OnFaviconLoaded,
base::Unretained(this),
url),
favicon_tracker_.get());
}
// Screenshot notification feature is only for ChromeOS. See crbug.com/238358
#if defined(OS_CHROMEOS)
const base::string16 screenshot_name =
l10n_util::GetStringUTF16(IDS_MESSAGE_CENTER_NOTIFIER_SCREENSHOT_NAME);
NotifierId screenshot_notifier_id(
NotifierId::SYSTEM_COMPONENT, ash::system_notifier::kNotifierScreenshot);
Notifier* const screenshot_notifier = new Notifier(
screenshot_notifier_id,
screenshot_name,
notification_service->IsNotifierEnabled(screenshot_notifier_id));
screenshot_notifier->icon =
ui::ResourceBundle::GetSharedInstance().GetImageNamed(
IDR_SCREENSHOT_NOTIFICATION_ICON);
notifiers->push_back(screenshot_notifier);
#endif
if (comparator) {
std::sort(notifiers->begin() + app_count, notifiers->end(), *comparator);
} else {
std::sort(notifiers->begin() + app_count, notifiers->end(),
SimpleCompareNotifiers);
}
}
void MessageCenterSettingsController::SetNotifierEnabled(
const Notifier& notifier,
bool enabled) {
DCHECK_LT(current_notifier_group_, notifier_groups_.size());
Profile* profile = notifier_groups_[current_notifier_group_]->profile();
DesktopNotificationService* notification_service =
DesktopNotificationServiceFactory::GetForProfile(profile);
if (notifier.notifier_id.type == NotifierId::WEB_PAGE) {
// WEB_PAGE notifier cannot handle in DesktopNotificationService
// since it has the exact URL pattern.
// TODO(mukai): fix this.
ContentSetting default_setting =
profile->GetHostContentSettingsMap()->GetDefaultContentSetting(
CONTENT_SETTINGS_TYPE_NOTIFICATIONS, NULL);
DCHECK(default_setting == CONTENT_SETTING_ALLOW ||
default_setting == CONTENT_SETTING_BLOCK ||
default_setting == CONTENT_SETTING_ASK);
if ((enabled && default_setting != CONTENT_SETTING_ALLOW) ||
(!enabled && default_setting == CONTENT_SETTING_ALLOW)) {
if (notifier.notifier_id.url.is_valid()) {
if (enabled)
DesktopNotificationProfileUtil::GrantPermission(
profile, notifier.notifier_id.url);
else
DesktopNotificationProfileUtil::DenyPermission(
profile, notifier.notifier_id.url);
} else {
LOG(ERROR) << "Invalid url pattern: "
<< notifier.notifier_id.url.spec();
}
} else {
std::map<base::string16, ContentSettingsPattern>::const_iterator iter =
patterns_.find(notifier.name);
if (iter != patterns_.end()) {
DesktopNotificationProfileUtil::ClearSetting(profile, iter->second);
} else {
LOG(ERROR) << "Invalid url pattern: "
<< notifier.notifier_id.url.spec();
}
}
} else {
notification_service->SetNotifierEnabled(notifier.notifier_id, enabled);
}
FOR_EACH_OBSERVER(message_center::NotifierSettingsObserver,
observers_,
NotifierEnabledChanged(notifier.notifier_id, enabled));
}
void MessageCenterSettingsController::OnNotifierSettingsClosing() {
DCHECK(favicon_tracker_.get());
favicon_tracker_->TryCancelAll();
patterns_.clear();
}
bool MessageCenterSettingsController::NotifierHasAdvancedSettings(
const NotifierId& notifier_id) const {
// TODO(dewittj): Refactor this so that notifiers have a delegate that can
// handle this in a more appropriate location.
if (notifier_id.type != NotifierId::APPLICATION)
return false;
const std::string& extension_id = notifier_id.id;
if (notifier_groups_.size() < current_notifier_group_)
return false;
Profile* profile = notifier_groups_[current_notifier_group_]->profile();
extensions::EventRouter* event_router = extensions::EventRouter::Get(profile);
return event_router->ExtensionHasEventListener(
extension_id, extensions::api::notifications::OnShowSettings::kEventName);
}
void MessageCenterSettingsController::OnNotifierAdvancedSettingsRequested(
const NotifierId& notifier_id,
const std::string* notification_id) {
// TODO(dewittj): Refactor this so that notifiers have a delegate that can
// handle this in a more appropriate location.
if (notifier_id.type != NotifierId::APPLICATION)
return;
const std::string& extension_id = notifier_id.id;
if (notifier_groups_.size() < current_notifier_group_)
return;
Profile* profile = notifier_groups_[current_notifier_group_]->profile();
extensions::EventRouter* event_router = extensions::EventRouter::Get(profile);
scoped_ptr<base::ListValue> args(new base::ListValue());
scoped_ptr<extensions::Event> event(new extensions::Event(
extensions::api::notifications::OnShowSettings::kEventName, args.Pass()));
event_router->DispatchEventToExtension(extension_id, event.Pass());
}
void MessageCenterSettingsController::OnFaviconLoaded(
const GURL& url,
const favicon_base::FaviconImageResult& favicon_result) {
FOR_EACH_OBSERVER(message_center::NotifierSettingsObserver,
observers_,
UpdateIconImage(NotifierId(url), favicon_result.image));
}
#if defined(OS_CHROMEOS)
void MessageCenterSettingsController::ActiveUserChanged(
const user_manager::User* active_user) {
RebuildNotifierGroups();
}
#endif
void MessageCenterSettingsController::SetAppImage(const std::string& id,
const gfx::ImageSkia& image) {
FOR_EACH_OBSERVER(message_center::NotifierSettingsObserver,
observers_,
UpdateIconImage(NotifierId(NotifierId::APPLICATION, id),
gfx::Image(image)));
}
void MessageCenterSettingsController::Observe(
int type,
const content::NotificationSource& source,
const content::NotificationDetails& details) {
// GetOffTheRecordProfile() may create a new off-the-record profile, but that
// doesn't need to rebuild the groups.
if (type == chrome::NOTIFICATION_PROFILE_CREATED &&
content::Source<Profile>(source).ptr()->IsOffTheRecord()) {
return;
}
RebuildNotifierGroups();
FOR_EACH_OBSERVER(message_center::NotifierSettingsObserver,
observers_,
NotifierGroupChanged());
}
#if defined(OS_CHROMEOS)
void MessageCenterSettingsController::CreateNotifierGroupForGuestLogin() {
// Already created.
if (!notifier_groups_.empty())
return;
user_manager::UserManager* user_manager = user_manager::UserManager::Get();
// |notifier_groups_| can be empty in login screen too.
if (!user_manager->IsLoggedInAsGuest())
return;
user_manager::User* user = user_manager->GetActiveUser();
Profile* profile =
chromeos::ProfileHelper::Get()->GetProfileByUserUnsafe(user);
DCHECK(profile);
notifier_groups_.push_back(
new message_center::ProfileNotifierGroup(gfx::Image(user->GetImage()),
user->GetDisplayName(),
user->GetDisplayName(),
0,
profile));
FOR_EACH_OBSERVER(message_center::NotifierSettingsObserver,
observers_,
NotifierGroupChanged());
}
#endif
void MessageCenterSettingsController::RebuildNotifierGroups() {
notifier_groups_.clear();
current_notifier_group_ = 0;
const size_t count = profile_info_cache_->GetNumberOfProfiles();
for (size_t i = 0; i < count; ++i) {
scoped_ptr<message_center::ProfileNotifierGroup> group(
new message_center::ProfileNotifierGroup(
profile_info_cache_->GetAvatarIconOfProfileAtIndex(i),
profile_info_cache_->GetNameOfProfileAtIndex(i),
profile_info_cache_->GetUserNameOfProfileAtIndex(i),
i,
profile_info_cache_->GetPathOfProfileAtIndex(i)));
if (group->profile() == NULL)
continue;
#if defined(OS_CHROMEOS)
// Allows the active user only.
// UserManager may not exist in some tests.
if (user_manager::UserManager::IsInitialized()) {
user_manager::UserManager* user_manager =
user_manager::UserManager::Get();
if (chromeos::ProfileHelper::Get()->GetUserByProfile(group->profile()) !=
user_manager->GetActiveUser()) {
continue;
}
}
// In ChromeOS, the login screen first creates a dummy profile which is not
// actually used, and then the real profile for the user is created when
// login (or turns into kiosk mode). This profile should be skipped.
if (chromeos::ProfileHelper::IsSigninProfile(group->profile()))
continue;
#endif
notifier_groups_.push_back(group.release());
}
#if defined(OS_CHROMEOS)
// ChromeOS guest login cannot get the profile from the for-loop above, so
// get the group here.
if (notifier_groups_.empty() && user_manager::UserManager::IsInitialized() &&
user_manager::UserManager::Get()->IsLoggedInAsGuest()) {
// Do not invoke CreateNotifierGroupForGuestLogin() directly. In some tests,
// this method may be called before the primary profile is created, which
// means ProfileHelper::Get()->GetProfileByUser() will create a new primary
// profile. But creating a primary profile causes an Observe() before
// registering it as the primary one, which causes this method which causes
// another creating a primary profile, and causes an infinite loop.
// Thus, it would be better to delay creating group for guest login.
base::MessageLoopProxy::current()->PostTask(
FROM_HERE,
base::Bind(
&MessageCenterSettingsController::CreateNotifierGroupForGuestLogin,
weak_factory_.GetWeakPtr()));
}
#endif
}
|