Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(766)

Side by Side Diff: chrome/browser/push_messaging/push_messaging_service_impl.cc

Issue 955673004: Move gcm-independent parts of push messaging out of gcm namespace and directory (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: test++ Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/browser/services/gcm/push_messaging_service_impl.h" 5 #include "chrome/browser/push_messaging/push_messaging_service_impl.h"
6 6
7 #include <bitset> 7 #include <bitset>
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/bind.h" 10 #include "base/bind.h"
11 #include "base/command_line.h" 11 #include "base/command_line.h"
12 #include "base/logging.h" 12 #include "base/logging.h"
13 #include "base/metrics/histogram.h" 13 #include "base/metrics/histogram.h"
14 #include "base/prefs/pref_service.h" 14 #include "base/prefs/pref_service.h"
15 #include "base/strings/string_util.h" 15 #include "base/strings/string_util.h"
16 #include "base/strings/utf_string_conversions.h" 16 #include "base/strings/utf_string_conversions.h"
17 #include "chrome/browser/browser_process.h" 17 #include "chrome/browser/browser_process.h"
18 #include "chrome/browser/notifications/notification_ui_manager.h" 18 #include "chrome/browser/notifications/notification_ui_manager.h"
19 #include "chrome/browser/notifications/platform_notification_service_impl.h" 19 #include "chrome/browser/notifications/platform_notification_service_impl.h"
20 #include "chrome/browser/profiles/profile.h" 20 #include "chrome/browser/profiles/profile.h"
21 #include "chrome/browser/push_messaging/push_messaging_application_id.h"
22 #include "chrome/browser/push_messaging/push_messaging_constants.h"
23 #include "chrome/browser/push_messaging/push_messaging_permission_context.h"
24 #include "chrome/browser/push_messaging/push_messaging_permission_context_factor y.h"
25 #include "chrome/browser/push_messaging/push_messaging_service_factory.h"
21 #include "chrome/browser/services/gcm/gcm_profile_service.h" 26 #include "chrome/browser/services/gcm/gcm_profile_service.h"
22 #include "chrome/browser/services/gcm/gcm_profile_service_factory.h" 27 #include "chrome/browser/services/gcm/gcm_profile_service_factory.h"
23 #include "chrome/browser/services/gcm/push_messaging_application_id.h"
24 #include "chrome/browser/services/gcm/push_messaging_constants.h"
25 #include "chrome/browser/services/gcm/push_messaging_permission_context.h"
26 #include "chrome/browser/services/gcm/push_messaging_permission_context_factory. h"
27 #include "chrome/common/chrome_switches.h" 28 #include "chrome/common/chrome_switches.h"
28 #include "chrome/common/pref_names.h" 29 #include "chrome/common/pref_names.h"
29 #include "chrome/grit/generated_resources.h" 30 #include "chrome/grit/generated_resources.h"
30 #include "components/content_settings/core/browser/host_content_settings_map.h" 31 #include "components/content_settings/core/browser/host_content_settings_map.h"
31 #include "components/content_settings/core/common/permission_request_id.h" 32 #include "components/content_settings/core/common/permission_request_id.h"
32 #include "components/gcm_driver/gcm_driver.h" 33 #include "components/gcm_driver/gcm_driver.h"
33 #include "components/pref_registry/pref_registry_syncable.h" 34 #include "components/pref_registry/pref_registry_syncable.h"
34 #include "content/public/browser/browser_context.h" 35 #include "content/public/browser/browser_context.h"
35 #include "content/public/browser/browser_thread.h" 36 #include "content/public/browser/browser_thread.h"
36 #include "content/public/browser/render_frame_host.h" 37 #include "content/public/browser/render_frame_host.h"
37 #include "content/public/browser/service_worker_context.h" 38 #include "content/public/browser/service_worker_context.h"
38 #include "content/public/browser/storage_partition.h" 39 #include "content/public/browser/storage_partition.h"
39 #include "content/public/browser/web_contents.h" 40 #include "content/public/browser/web_contents.h"
40 #include "content/public/common/child_process_host.h" 41 #include "content/public/common/child_process_host.h"
41 #include "content/public/common/content_switches.h" 42 #include "content/public/common/content_switches.h"
42 #include "content/public/common/platform_notification_data.h" 43 #include "content/public/common/platform_notification_data.h"
43 #include "content/public/common/push_messaging_status.h" 44 #include "content/public/common/push_messaging_status.h"
44 #include "third_party/skia/include/core/SkBitmap.h" 45 #include "third_party/skia/include/core/SkBitmap.h"
45 #include "ui/base/l10n/l10n_util.h" 46 #include "ui/base/l10n/l10n_util.h"
46 47
47 #if defined(OS_ANDROID) 48 #if defined(OS_ANDROID)
48 #include "chrome/browser/ui/android/tab_model/tab_model.h" 49 #include "chrome/browser/ui/android/tab_model/tab_model.h"
49 #include "chrome/browser/ui/android/tab_model/tab_model_list.h" 50 #include "chrome/browser/ui/android/tab_model/tab_model_list.h"
50 #else 51 #else
51 #include "chrome/browser/ui/browser.h" 52 #include "chrome/browser/ui/browser.h"
52 #include "chrome/browser/ui/browser_iterator.h" 53 #include "chrome/browser/ui/browser_iterator.h"
53 #include "chrome/browser/ui/tabs/tab_strip_model.h" 54 #include "chrome/browser/ui/tabs/tab_strip_model.h"
54 #endif 55 #endif
55 56
56 namespace gcm {
57
58 namespace { 57 namespace {
59 const int kMaxRegistrations = 1000000; 58 const int kMaxRegistrations = 1000000;
60 59
61 void RecordDeliveryStatus(content::PushDeliveryStatus status) { 60 void RecordDeliveryStatus(content::PushDeliveryStatus status) {
62 UMA_HISTOGRAM_ENUMERATION("PushMessaging.DeliveryStatus", 61 UMA_HISTOGRAM_ENUMERATION("PushMessaging.DeliveryStatus",
63 status, 62 status,
64 content::PUSH_DELIVERY_STATUS_LAST + 1); 63 content::PUSH_DELIVERY_STATUS_LAST + 1);
65 } 64 }
66 65
67 void RecordUserVisibleStatus(content::PushUserVisibleStatus status) { 66 void RecordUserVisibleStatus(content::PushUserVisibleStatus status) {
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
105 // TODO(johnme): If push becomes enabled in incognito (and this still uses a 104 // TODO(johnme): If push becomes enabled in incognito (and this still uses a
106 // pref), be careful that this pref is read from the right profile, as prefs 105 // pref), be careful that this pref is read from the right profile, as prefs
107 // defined in a regular profile are visible in the corresponding incognito 106 // defined in a regular profile are visible in the corresponding incognito
108 // profile unless overridden. 107 // profile unless overridden.
109 // TODO(johnme): Make sure this pref doesn't get out of sync after crashes. 108 // TODO(johnme): Make sure this pref doesn't get out of sync after crashes.
110 int count = profile->GetPrefs()->GetInteger( 109 int count = profile->GetPrefs()->GetInteger(
111 prefs::kPushMessagingRegistrationCount); 110 prefs::kPushMessagingRegistrationCount);
112 if (count <= 0) 111 if (count <= 0)
113 return; 112 return;
114 113
115 // Create the GCMProfileService, and hence instantiate this class.
116 GCMProfileService* gcm_service =
117 GCMProfileServiceFactory::GetForProfile(profile);
118 PushMessagingServiceImpl* push_service = 114 PushMessagingServiceImpl* push_service =
119 static_cast<PushMessagingServiceImpl*>( 115 static_cast<PushMessagingServiceImpl*>(
120 gcm_service->push_messaging_service()); 116 PushMessagingServiceFactory::GetForProfile(profile));
Peter Beverloo 2015/03/03 23:04:56 PushMessagingServiceFactory::GetForProfile() retur
kbalazs 2015/03/03 23:57:26 I was doing that before but I changed my mind, but
121
122 push_service->IncreasePushRegistrationCount(count, false /* is_pending */); 117 push_service->IncreasePushRegistrationCount(count, false /* is_pending */);
123 } 118 }
124 119
125 PushMessagingServiceImpl::PushMessagingServiceImpl( 120 PushMessagingServiceImpl::PushMessagingServiceImpl(Profile* profile)
126 GCMProfileService* gcm_profile_service, 121 : profile_(profile),
127 Profile* profile)
128 : gcm_profile_service_(gcm_profile_service),
129 profile_(profile),
130 push_registration_count_(0), 122 push_registration_count_(0),
131 pending_push_registration_count_(0), 123 pending_push_registration_count_(0),
132 weak_factory_(this) { 124 weak_factory_(this) {
133 // In some tests, we might end up with |profile_| being null at this point. 125 // In some tests, we might end up with |profile_| being null at this point.
134 // When that is the case |profile_| will be set in SetProfileForTesting(), at 126 // When that is the case |profile_| will be set in SetProfileForTesting(), at
135 // which point the service will start to observe HostContentSettingsMap. 127 // which point the service will start to observe HostContentSettingsMap.
136 if (profile_) 128 if (profile_)
137 profile_->GetHostContentSettingsMap()->AddObserver(this); 129 profile_->GetHostContentSettingsMap()->AddObserver(this);
138 } 130 }
139 131
140 PushMessagingServiceImpl::~PushMessagingServiceImpl() { 132 PushMessagingServiceImpl::~PushMessagingServiceImpl() {
141 // TODO(johnme): If it's possible for this to be destroyed before GCMDriver,
142 // then we should call RemoveAppHandler.
143 profile_->GetHostContentSettingsMap()->RemoveObserver(this); 133 profile_->GetHostContentSettingsMap()->RemoveObserver(this);
144 } 134 }
145 135
146 void PushMessagingServiceImpl::IncreasePushRegistrationCount(int add, 136 void PushMessagingServiceImpl::IncreasePushRegistrationCount(int add,
147 bool is_pending) { 137 bool is_pending) {
148 DCHECK(add > 0); 138 DCHECK(add > 0);
149 if (push_registration_count_ + pending_push_registration_count_ == 0) { 139 if (push_registration_count_ + pending_push_registration_count_ == 0) {
150 gcm_profile_service_->driver()->AddAppHandler( 140 GetGCMDriver()->AddAppHandler(kPushMessagingApplicationIdPrefix, this);
151 kPushMessagingApplicationIdPrefix, this);
152 } 141 }
153 if (is_pending) { 142 if (is_pending) {
154 pending_push_registration_count_ += add; 143 pending_push_registration_count_ += add;
155 } else { 144 } else {
156 push_registration_count_ += add; 145 push_registration_count_ += add;
157 profile_->GetPrefs()->SetInteger(prefs::kPushMessagingRegistrationCount, 146 profile_->GetPrefs()->SetInteger(prefs::kPushMessagingRegistrationCount,
158 push_registration_count_); 147 push_registration_count_);
159 } 148 }
160 } 149 }
161 150
162 void PushMessagingServiceImpl::DecreasePushRegistrationCount(int subtract, 151 void PushMessagingServiceImpl::DecreasePushRegistrationCount(int subtract,
163 bool was_pending) { 152 bool was_pending) {
164 DCHECK(subtract > 0); 153 DCHECK(subtract > 0);
165 if (was_pending) { 154 if (was_pending) {
166 pending_push_registration_count_ -= subtract; 155 pending_push_registration_count_ -= subtract;
167 DCHECK(pending_push_registration_count_ >= 0); 156 DCHECK(pending_push_registration_count_ >= 0);
168 } else { 157 } else {
169 push_registration_count_ -= subtract; 158 push_registration_count_ -= subtract;
170 DCHECK(push_registration_count_ >= 0); 159 DCHECK(push_registration_count_ >= 0);
171 profile_->GetPrefs()->SetInteger(prefs::kPushMessagingRegistrationCount, 160 profile_->GetPrefs()->SetInteger(prefs::kPushMessagingRegistrationCount,
172 push_registration_count_); 161 push_registration_count_);
173 } 162 }
174 if (push_registration_count_ + pending_push_registration_count_ == 0) { 163 if (push_registration_count_ + pending_push_registration_count_ == 0) {
175 gcm_profile_service_->driver()->RemoveAppHandler( 164 GetGCMDriver()->RemoveAppHandler(kPushMessagingApplicationIdPrefix);
176 kPushMessagingApplicationIdPrefix);
177 } 165 }
178 } 166 }
179 167
180 bool PushMessagingServiceImpl::CanHandle(const std::string& app_id) const { 168 bool PushMessagingServiceImpl::CanHandle(const std::string& app_id) const {
181 return PushMessagingApplicationId::Get(profile_, app_id).IsValid(); 169 return PushMessagingApplicationId::Get(profile_, app_id).IsValid();
182 } 170 }
183 171
184 void PushMessagingServiceImpl::ShutdownHandler() { 172 void PushMessagingServiceImpl::ShutdownHandler() {
185 // TODO(johnme): Do any necessary cleanup. 173 // Shutdown() should come before and it removes us from the list of app
174 // handlers of gcm::GCMDriver so this shouldn't ever been called.
175 NOTREACHED();
186 } 176 }
187 177
188 // OnMessage methods ----------------------------------------------------------- 178 // OnMessage methods -----------------------------------------------------------
189 179
190 void PushMessagingServiceImpl::OnMessage( 180 void PushMessagingServiceImpl::OnMessage(
191 const std::string& app_id, 181 const std::string& app_id,
192 const GCMClient::IncomingMessage& message) { 182 const gcm::GCMClient::IncomingMessage& message) {
193 PushMessagingApplicationId application_id = 183 PushMessagingApplicationId application_id =
194 PushMessagingApplicationId::Get(profile_, app_id); 184 PushMessagingApplicationId::Get(profile_, app_id);
195 // Drop message and unregister if app id was unknown (maybe recently deleted). 185 // Drop message and unregister if app id was unknown (maybe recently deleted).
196 if (!application_id.IsValid()) { 186 if (!application_id.IsValid()) {
197 DeliverMessageCallback(app_id, GURL::EmptyGURL(), -1, message, 187 DeliverMessageCallback(app_id, GURL::EmptyGURL(), -1, message,
198 content::PUSH_DELIVERY_STATUS_UNKNOWN_APP_ID); 188 content::PUSH_DELIVERY_STATUS_UNKNOWN_APP_ID);
199 return; 189 return;
200 } 190 }
201 // Drop message and unregister if |origin| has lost push permission. 191 // Drop message and unregister if |origin| has lost push permission.
202 if (!HasPermission(application_id.origin())) { 192 if (!HasPermission(application_id.origin())) {
(...skipping 16 matching lines...) Expand all
219 // "data": "BAZ", 209 // "data": "BAZ",
220 // }, 210 // },
221 // "delay_while_idle": true, 211 // "delay_while_idle": true,
222 // } 212 // }
223 // TODO(johnme): Make sure this is clearly documented for developers. 213 // TODO(johnme): Make sure this is clearly documented for developers.
224 std::string data; 214 std::string data;
225 // TODO(peter): Message payloads are disabled pending mandatory encryption. 215 // TODO(peter): Message payloads are disabled pending mandatory encryption.
226 // https://crbug.com/449184 216 // https://crbug.com/449184
227 if (base::CommandLine::ForCurrentProcess()->HasSwitch( 217 if (base::CommandLine::ForCurrentProcess()->HasSwitch(
228 switches::kEnablePushMessagePayload)) { 218 switches::kEnablePushMessagePayload)) {
229 GCMClient::MessageData::const_iterator it = message.data.find("data"); 219 gcm::GCMClient::MessageData::const_iterator it = message.data.find("data");
230 if (it != message.data.end()) 220 if (it != message.data.end())
231 data = it->second; 221 data = it->second;
232 } 222 }
233 223
234 content::BrowserContext::DeliverPushMessage( 224 content::BrowserContext::DeliverPushMessage(
235 profile_, 225 profile_,
236 application_id.origin(), 226 application_id.origin(),
237 application_id.service_worker_registration_id(), 227 application_id.service_worker_registration_id(),
238 data, 228 data,
239 base::Bind(&PushMessagingServiceImpl::DeliverMessageCallback, 229 base::Bind(&PushMessagingServiceImpl::DeliverMessageCallback,
240 weak_factory_.GetWeakPtr(), 230 weak_factory_.GetWeakPtr(),
241 application_id.app_id_guid(), application_id.origin(), 231 application_id.app_id_guid(), application_id.origin(),
242 application_id.service_worker_registration_id(), message)); 232 application_id.service_worker_registration_id(), message));
243 } 233 }
244 234
245 void PushMessagingServiceImpl::DeliverMessageCallback( 235 void PushMessagingServiceImpl::DeliverMessageCallback(
246 const std::string& app_id_guid, 236 const std::string& app_id_guid,
247 const GURL& requesting_origin, 237 const GURL& requesting_origin,
248 int64 service_worker_registration_id, 238 int64 service_worker_registration_id,
249 const GCMClient::IncomingMessage& message, 239 const gcm::GCMClient::IncomingMessage& message,
250 content::PushDeliveryStatus status) { 240 content::PushDeliveryStatus status) {
251 // TODO(mvanouwerkerk): Show a warning in the developer console of the 241 // TODO(mvanouwerkerk): Show a warning in the developer console of the
252 // Service Worker corresponding to app_id (and/or on an internals page). 242 // Service Worker corresponding to app_id (and/or on an internals page).
253 // TODO(mvanouwerkerk): Is there a way to recover from failure? 243 // TODO(mvanouwerkerk): Is there a way to recover from failure?
254 switch (status) { 244 switch (status) {
255 // Call RequireUserVisibleUX if the message was delivered to the Service 245 // Call RequireUserVisibleUX if the message was delivered to the Service
256 // Worker JS, even if the website's event handler failed (to prevent sites 246 // Worker JS, even if the website's event handler failed (to prevent sites
257 // deliberately failing in order to avoid having to show notifications). 247 // deliberately failing in order to avoid having to show notifications).
258 case content::PUSH_DELIVERY_STATUS_SUCCESS: 248 case content::PUSH_DELIVERY_STATUS_SUCCESS:
259 case content::PUSH_DELIVERY_STATUS_EVENT_WAITUNTIL_REJECTED: 249 case content::PUSH_DELIVERY_STATUS_EVENT_WAITUNTIL_REJECTED:
(...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after
417 PlatformNotificationServiceImpl::GetInstance(); 407 PlatformNotificationServiceImpl::GetInstance();
418 notification_service->DisplayPersistentNotification( 408 notification_service->DisplayPersistentNotification(
419 profile_, 409 profile_,
420 service_worker_registration_id, 410 service_worker_registration_id,
421 requesting_origin, 411 requesting_origin,
422 SkBitmap() /* icon */, 412 SkBitmap() /* icon */,
423 notification_data); 413 notification_data);
424 } 414 }
425 } 415 }
426 416
427 // Other GCMAppHandler methods ------------------------------------------------- 417 // Other gcm::GCMAppHandler methods -------------------------------------------
428 418
429 void PushMessagingServiceImpl::OnMessagesDeleted(const std::string& app_id) { 419 void PushMessagingServiceImpl::OnMessagesDeleted(const std::string& app_id) {
430 // TODO(mvanouwerkerk): Fire push error event on the Service Worker 420 // TODO(mvanouwerkerk): Fire push error event on the Service Worker
431 // corresponding to app_id. 421 // corresponding to app_id.
432 } 422 }
433 423
434 void PushMessagingServiceImpl::OnSendError( 424 void PushMessagingServiceImpl::OnSendError(
435 const std::string& app_id, 425 const std::string& app_id,
436 const GCMClient::SendErrorDetails& send_error_details) { 426 const gcm::GCMClient::SendErrorDetails& send_error_details) {
437 NOTREACHED() << "The Push API shouldn't have sent messages upstream"; 427 NOTREACHED() << "The Push API shouldn't have sent messages upstream";
438 } 428 }
439 429
440 void PushMessagingServiceImpl::OnSendAcknowledged( 430 void PushMessagingServiceImpl::OnSendAcknowledged(
441 const std::string& app_id, 431 const std::string& app_id,
442 const std::string& message_id) { 432 const std::string& message_id) {
443 NOTREACHED() << "The Push API shouldn't have sent messages upstream"; 433 NOTREACHED() << "The Push API shouldn't have sent messages upstream";
444 } 434 }
445 435
446 // GetPushEndpoint method ------------------------------------------------------ 436 // GetPushEndpoint method ------------------------------------------------------
447 437
448 GURL PushMessagingServiceImpl::GetPushEndpoint() { 438 GURL PushMessagingServiceImpl::GetPushEndpoint() {
449 return GURL(std::string(kPushMessagingEndpoint)); 439 return GURL(std::string(kPushMessagingEndpoint));
450 } 440 }
451 441
452 // Register and GetPermissionStatus methods ------------------------------------ 442 // Register and GetPermissionStatus methods ------------------------------------
453 443
454 void PushMessagingServiceImpl::RegisterFromDocument( 444 void PushMessagingServiceImpl::RegisterFromDocument(
455 const GURL& requesting_origin, 445 const GURL& requesting_origin,
456 int64 service_worker_registration_id, 446 int64 service_worker_registration_id,
457 const std::string& sender_id, 447 const std::string& sender_id,
458 int renderer_id, 448 int renderer_id,
459 int render_frame_id, 449 int render_frame_id,
460 bool user_visible_only, 450 bool user_visible_only,
461 const content::PushMessagingService::RegisterCallback& callback) { 451 const content::PushMessagingService::RegisterCallback& callback) {
462 if (!gcm_profile_service_->driver()) {
463 NOTREACHED() << "There is no GCMDriver. Has GCMProfileService shut down?";
464 return;
465 }
466
467 PushMessagingApplicationId application_id = 452 PushMessagingApplicationId application_id =
468 PushMessagingApplicationId::Generate(requesting_origin, 453 PushMessagingApplicationId::Generate(requesting_origin,
469 service_worker_registration_id); 454 service_worker_registration_id);
470 DCHECK(application_id.IsValid()); 455 DCHECK(application_id.IsValid());
471 456
472 if (push_registration_count_ + pending_push_registration_count_ 457 if (push_registration_count_ + pending_push_registration_count_
473 >= kMaxRegistrations) { 458 >= kMaxRegistrations) {
474 RegisterEnd(callback, 459 RegisterEnd(callback,
475 std::string(), 460 std::string(),
476 content::PUSH_REGISTRATION_STATUS_LIMIT_REACHED); 461 content::PUSH_REGISTRATION_STATUS_LIMIT_REACHED);
(...skipping 10 matching lines...) Expand all
487 if (!web_contents) 472 if (!web_contents)
488 return; 473 return;
489 474
490 // TODO(miguelg) need to send this over IPC when bubble support is 475 // TODO(miguelg) need to send this over IPC when bubble support is
491 // implemented. 476 // implemented.
492 int bridge_id = -1; 477 int bridge_id = -1;
493 478
494 const PermissionRequestID id( 479 const PermissionRequestID id(
495 renderer_id, web_contents->GetRoutingID(), bridge_id, GURL()); 480 renderer_id, web_contents->GetRoutingID(), bridge_id, GURL());
496 481
497 gcm::PushMessagingPermissionContext* permission_context = 482 PushMessagingPermissionContext* permission_context =
498 gcm::PushMessagingPermissionContextFactory::GetForProfile(profile_); 483 PushMessagingPermissionContextFactory::GetForProfile(profile_);
499 484
500 if (permission_context == NULL || !user_visible_only) { 485 if (permission_context == NULL || !user_visible_only) {
501 RegisterEnd(callback, 486 RegisterEnd(callback,
502 std::string(), 487 std::string(),
503 content::PUSH_REGISTRATION_STATUS_PERMISSION_DENIED); 488 content::PUSH_REGISTRATION_STATUS_PERMISSION_DENIED);
504 return; 489 return;
505 } 490 }
506 491
507 // TODO(miguelg): Consider the value of |user_visible_only| when making 492 // TODO(miguelg): Consider the value of |user_visible_only| when making
508 // the permission request. 493 // the permission request.
509 // TODO(mlamouri): Move requesting Push permission over to using Mojo, and 494 // TODO(mlamouri): Move requesting Push permission over to using Mojo, and
510 // re-introduce the ability of |user_gesture| when bubbles require this. 495 // re-introduce the ability of |user_gesture| when bubbles require this.
511 // https://crbug.com/423770. 496 // https://crbug.com/423770.
512 permission_context->RequestPermission( 497 permission_context->RequestPermission(
513 web_contents, id, requesting_origin, true /* user_gesture */, 498 web_contents, id, requesting_origin, true /* user_gesture */,
514 base::Bind(&PushMessagingServiceImpl::DidRequestPermission, 499 base::Bind(&PushMessagingServiceImpl::DidRequestPermission,
515 weak_factory_.GetWeakPtr(), application_id, sender_id, 500 weak_factory_.GetWeakPtr(), application_id, sender_id,
516 callback)); 501 callback));
517 } 502 }
518 503
519 void PushMessagingServiceImpl::RegisterFromWorker( 504 void PushMessagingServiceImpl::RegisterFromWorker(
520 const GURL& requesting_origin, 505 const GURL& requesting_origin,
521 int64 service_worker_registration_id, 506 int64 service_worker_registration_id,
522 const std::string& sender_id, 507 const std::string& sender_id,
523 const content::PushMessagingService::RegisterCallback& register_callback) { 508 const content::PushMessagingService::RegisterCallback& register_callback) {
524 if (!gcm_profile_service_->driver()) {
525 NOTREACHED() << "There is no GCMDriver. Has GCMProfileService shut down?";
526 return;
527 }
528
529 PushMessagingApplicationId application_id = 509 PushMessagingApplicationId application_id =
530 PushMessagingApplicationId::Generate(requesting_origin, 510 PushMessagingApplicationId::Generate(requesting_origin,
531 service_worker_registration_id); 511 service_worker_registration_id);
532 DCHECK(application_id.IsValid()); 512 DCHECK(application_id.IsValid());
533 513
534 if (profile_->GetPrefs()->GetInteger( 514 if (profile_->GetPrefs()->GetInteger(
535 prefs::kPushMessagingRegistrationCount) >= kMaxRegistrations) { 515 prefs::kPushMessagingRegistrationCount) >= kMaxRegistrations) {
536 RegisterEnd(register_callback, std::string(), 516 RegisterEnd(register_callback, std::string(),
537 content::PUSH_REGISTRATION_STATUS_LIMIT_REACHED); 517 content::PUSH_REGISTRATION_STATUS_LIMIT_REACHED);
538 return; 518 return;
539 } 519 }
540 520
541 GURL embedding_origin = requesting_origin; 521 GURL embedding_origin = requesting_origin;
542 blink::WebPushPermissionStatus permission_status = 522 blink::WebPushPermissionStatus permission_status =
543 PushMessagingServiceImpl::GetPermissionStatus(requesting_origin, 523 PushMessagingServiceImpl::GetPermissionStatus(requesting_origin,
544 embedding_origin); 524 embedding_origin);
545 if (permission_status != blink::WebPushPermissionStatusGranted) { 525 if (permission_status != blink::WebPushPermissionStatusGranted) {
546 RegisterEnd(register_callback, std::string(), 526 RegisterEnd(register_callback, std::string(),
547 content::PUSH_REGISTRATION_STATUS_PERMISSION_DENIED); 527 content::PUSH_REGISTRATION_STATUS_PERMISSION_DENIED);
548 return; 528 return;
549 } 529 }
550 530
551 IncreasePushRegistrationCount(1, true /* is_pending */); 531 IncreasePushRegistrationCount(1, true /* is_pending */);
552 std::vector<std::string> sender_ids(1, sender_id); 532 std::vector<std::string> sender_ids(1, sender_id);
553 gcm_profile_service_->driver()->Register( 533 GetGCMDriver()->Register(
554 application_id.app_id_guid(), sender_ids, 534 application_id.app_id_guid(), sender_ids,
555 base::Bind(&PushMessagingServiceImpl::DidRegister, 535 base::Bind(&PushMessagingServiceImpl::DidRegister,
556 weak_factory_.GetWeakPtr(), 536 weak_factory_.GetWeakPtr(),
557 application_id, register_callback)); 537 application_id, register_callback));
558 } 538 }
559 539
560 blink::WebPushPermissionStatus PushMessagingServiceImpl::GetPermissionStatus( 540 blink::WebPushPermissionStatus PushMessagingServiceImpl::GetPermissionStatus(
561 const GURL& requesting_origin, 541 const GURL& requesting_origin,
562 const GURL& embedding_origin) { 542 const GURL& embedding_origin) {
563 PushMessagingPermissionContext* permission_context = 543 PushMessagingPermissionContext* permission_context =
564 PushMessagingPermissionContextFactory::GetForProfile(profile_); 544 PushMessagingPermissionContextFactory::GetForProfile(profile_);
565 return ToPushPermission(permission_context->GetPermissionStatus( 545 return ToPushPermission(permission_context->GetPermissionStatus(
566 requesting_origin, embedding_origin)); 546 requesting_origin, embedding_origin));
567 } 547 }
568 548
569 void PushMessagingServiceImpl::RegisterEnd( 549 void PushMessagingServiceImpl::RegisterEnd(
570 const content::PushMessagingService::RegisterCallback& callback, 550 const content::PushMessagingService::RegisterCallback& callback,
571 const std::string& registration_id, 551 const std::string& registration_id,
572 content::PushRegistrationStatus status) { 552 content::PushRegistrationStatus status) {
573 callback.Run(registration_id, status); 553 callback.Run(registration_id, status);
574 } 554 }
575 555
576 void PushMessagingServiceImpl::DidRegister( 556 void PushMessagingServiceImpl::DidRegister(
577 const PushMessagingApplicationId& application_id, 557 const PushMessagingApplicationId& application_id,
578 const content::PushMessagingService::RegisterCallback& callback, 558 const content::PushMessagingService::RegisterCallback& callback,
579 const std::string& registration_id, 559 const std::string& registration_id,
580 GCMClient::Result result) { 560 gcm::GCMClient::Result result) {
581 content::PushRegistrationStatus status = 561 content::PushRegistrationStatus status =
582 content::PUSH_REGISTRATION_STATUS_SERVICE_ERROR; 562 content::PUSH_REGISTRATION_STATUS_SERVICE_ERROR;
583 switch (result) { 563 switch (result) {
584 case GCMClient::SUCCESS: 564 case gcm::GCMClient::SUCCESS:
585 status = content::PUSH_REGISTRATION_STATUS_SUCCESS_FROM_PUSH_SERVICE; 565 status = content::PUSH_REGISTRATION_STATUS_SUCCESS_FROM_PUSH_SERVICE;
586 application_id.PersistToDisk(profile_); 566 application_id.PersistToDisk(profile_);
587 IncreasePushRegistrationCount(1, false /* is_pending */); 567 IncreasePushRegistrationCount(1, false /* is_pending */);
588 break; 568 break;
589 case GCMClient::INVALID_PARAMETER: 569 case gcm::GCMClient::INVALID_PARAMETER:
590 case GCMClient::GCM_DISABLED: 570 case gcm::GCMClient::GCM_DISABLED:
591 case GCMClient::ASYNC_OPERATION_PENDING: 571 case gcm::GCMClient::ASYNC_OPERATION_PENDING:
592 case GCMClient::SERVER_ERROR: 572 case gcm::GCMClient::SERVER_ERROR:
593 case GCMClient::UNKNOWN_ERROR: 573 case gcm::GCMClient::UNKNOWN_ERROR:
594 status = content::PUSH_REGISTRATION_STATUS_SERVICE_ERROR; 574 status = content::PUSH_REGISTRATION_STATUS_SERVICE_ERROR;
595 break; 575 break;
596 case GCMClient::NETWORK_ERROR: 576 case gcm::GCMClient::NETWORK_ERROR:
597 case GCMClient::TTL_EXCEEDED: 577 case gcm::GCMClient::TTL_EXCEEDED:
598 status = content::PUSH_REGISTRATION_STATUS_NETWORK_ERROR; 578 status = content::PUSH_REGISTRATION_STATUS_NETWORK_ERROR;
599 break; 579 break;
600 } 580 }
601 RegisterEnd(callback, registration_id, status); 581 RegisterEnd(callback, registration_id, status);
602 DecreasePushRegistrationCount(1, true /* was_pending */); 582 DecreasePushRegistrationCount(1, true /* was_pending */);
603 } 583 }
604 584
605 void PushMessagingServiceImpl::DidRequestPermission( 585 void PushMessagingServiceImpl::DidRequestPermission(
606 const PushMessagingApplicationId& application_id, 586 const PushMessagingApplicationId& application_id,
607 const std::string& sender_id, 587 const std::string& sender_id,
608 const content::PushMessagingService::RegisterCallback& register_callback, 588 const content::PushMessagingService::RegisterCallback& register_callback,
609 ContentSetting content_setting) { 589 ContentSetting content_setting) {
610 if (content_setting != CONTENT_SETTING_ALLOW) { 590 if (content_setting != CONTENT_SETTING_ALLOW) {
611 RegisterEnd(register_callback, 591 RegisterEnd(register_callback,
612 std::string(), 592 std::string(),
613 content::PUSH_REGISTRATION_STATUS_PERMISSION_DENIED); 593 content::PUSH_REGISTRATION_STATUS_PERMISSION_DENIED);
614 return; 594 return;
615 } 595 }
616 596
617 // The GCMDriver could be NULL if GCMProfileService has been shut down.
618 if (!gcm_profile_service_->driver())
619 return;
620
621 IncreasePushRegistrationCount(1, true /* is_pending */); 597 IncreasePushRegistrationCount(1, true /* is_pending */);
622 std::vector<std::string> sender_ids(1, sender_id); 598 std::vector<std::string> sender_ids(1, sender_id);
623 gcm_profile_service_->driver()->Register( 599 GetGCMDriver()->Register(
624 application_id.app_id_guid(), 600 application_id.app_id_guid(),
625 sender_ids, 601 sender_ids,
626 base::Bind(&PushMessagingServiceImpl::DidRegister, 602 base::Bind(&PushMessagingServiceImpl::DidRegister,
627 weak_factory_.GetWeakPtr(), 603 weak_factory_.GetWeakPtr(),
628 application_id, register_callback)); 604 application_id, register_callback));
629 } 605 }
630 606
631 // Unregister methods ---------------------------------------------------------- 607 // Unregister methods ----------------------------------------------------------
632 608
633 void PushMessagingServiceImpl::Unregister( 609 void PushMessagingServiceImpl::Unregister(
634 const GURL& requesting_origin, 610 const GURL& requesting_origin,
635 int64 service_worker_registration_id, 611 int64 service_worker_registration_id,
636 const std::string& sender_id, 612 const std::string& sender_id,
637 bool retry_on_failure, 613 bool retry_on_failure,
638 const content::PushMessagingService::UnregisterCallback& callback) { 614 const content::PushMessagingService::UnregisterCallback& callback) {
639 DCHECK(gcm_profile_service_->driver());
640
641 PushMessagingApplicationId application_id = PushMessagingApplicationId::Get( 615 PushMessagingApplicationId application_id = PushMessagingApplicationId::Get(
642 profile_, requesting_origin, service_worker_registration_id); 616 profile_, requesting_origin, service_worker_registration_id);
643 if (!application_id.IsValid()) { 617 if (!application_id.IsValid()) {
644 if (!callback.is_null()) { 618 if (!callback.is_null()) {
645 callback.Run( 619 callback.Run(
646 content::PUSH_UNREGISTRATION_STATUS_SUCCESS_WAS_NOT_REGISTERED); 620 content::PUSH_UNREGISTRATION_STATUS_SUCCESS_WAS_NOT_REGISTERED);
647 } 621 }
648 return; 622 return;
649 } 623 }
650 624
651 Unregister(application_id.app_id_guid(), sender_id, retry_on_failure, 625 Unregister(application_id.app_id_guid(), sender_id, retry_on_failure,
652 callback); 626 callback);
653 } 627 }
654 628
655 void PushMessagingServiceImpl::Unregister( 629 void PushMessagingServiceImpl::Unregister(
656 const std::string& app_id_guid, 630 const std::string& app_id_guid,
657 const std::string& sender_id, 631 const std::string& sender_id,
658 bool retry_on_failure, 632 bool retry_on_failure,
659 const content::PushMessagingService::UnregisterCallback& callback) { 633 const content::PushMessagingService::UnregisterCallback& callback) {
660 DCHECK(gcm_profile_service_->driver());
661
662 if (retry_on_failure) { 634 if (retry_on_failure) {
663 // Delete the mapping for this app id, to guarantee that no messages get 635 // Delete the mapping for this app id, to guarantee that no messages get
664 // delivered in future (even if unregistration fails). 636 // delivered in future (even if unregistration fails).
665 // TODO(johnme): Instead of deleting these app ids, store them elsewhere, 637 // TODO(johnme): Instead of deleting these app ids, store them elsewhere,
666 // and retry unregistration if it fails due to network errors. 638 // and retry unregistration if it fails due to network errors.
667 PushMessagingApplicationId application_id = 639 PushMessagingApplicationId application_id =
668 PushMessagingApplicationId::Get(profile_, app_id_guid); 640 PushMessagingApplicationId::Get(profile_, app_id_guid);
669 if (application_id.IsValid()) 641 if (application_id.IsValid())
670 application_id.DeleteFromDisk(profile_); 642 application_id.DeleteFromDisk(profile_);
671 } 643 }
672 644
673 const auto& unregister_callback = 645 const auto& unregister_callback =
674 base::Bind(&PushMessagingServiceImpl::DidUnregister, 646 base::Bind(&PushMessagingServiceImpl::DidUnregister,
675 weak_factory_.GetWeakPtr(), 647 weak_factory_.GetWeakPtr(),
676 app_id_guid, retry_on_failure, callback); 648 app_id_guid, retry_on_failure, callback);
677 #if defined(OS_ANDROID) 649 #if defined(OS_ANDROID)
678 // On Android the backend is different, and requires the original sender_id. 650 // On Android the backend is different, and requires the original sender_id.
679 gcm_profile_service_->driver()->UnregisterWithSenderId(app_id_guid, sender_id, 651 GetGCMDriver()->UnregisterWithSenderId(app_id_guid, sender_id,
680 unregister_callback); 652 unregister_callback);
681 #else 653 #else
682 gcm_profile_service_->driver()->Unregister(app_id_guid, unregister_callback); 654 GetGCMDriver()->Unregister(app_id_guid, unregister_callback);
683 #endif 655 #endif
684 } 656 }
685 657
686 void PushMessagingServiceImpl::DidUnregister( 658 void PushMessagingServiceImpl::DidUnregister(
687 const std::string& app_id_guid, 659 const std::string& app_id_guid,
688 bool retry_on_failure, 660 bool retry_on_failure,
689 const content::PushMessagingService::UnregisterCallback& callback, 661 const content::PushMessagingService::UnregisterCallback& callback,
690 GCMClient::Result result) { 662 gcm::GCMClient::Result result) {
691 if (result == GCMClient::SUCCESS) { 663 if (result == gcm::GCMClient::SUCCESS) {
692 PushMessagingApplicationId application_id = 664 PushMessagingApplicationId application_id =
693 PushMessagingApplicationId::Get(profile_, app_id_guid); 665 PushMessagingApplicationId::Get(profile_, app_id_guid);
694 if (!application_id.IsValid()) { 666 if (!application_id.IsValid()) {
695 if (!callback.is_null()) { 667 if (!callback.is_null()) {
696 callback.Run( 668 callback.Run(
697 content::PUSH_UNREGISTRATION_STATUS_SUCCESS_WAS_NOT_REGISTERED); 669 content::PUSH_UNREGISTRATION_STATUS_SUCCESS_WAS_NOT_REGISTERED);
698 } 670 }
699 return; 671 return;
700 } 672 }
701 673
702 application_id.DeleteFromDisk(profile_); 674 application_id.DeleteFromDisk(profile_);
703 DecreasePushRegistrationCount(1, false /* was_pending */); 675 DecreasePushRegistrationCount(1, false /* was_pending */);
704 } 676 }
705 677
706 // Internal calls pass a null callback. 678 // Internal calls pass a null callback.
707 if (!callback.is_null()) { 679 if (!callback.is_null()) {
708 switch (result) { 680 switch (result) {
709 case GCMClient::SUCCESS: 681 case gcm::GCMClient::SUCCESS:
710 callback.Run(content::PUSH_UNREGISTRATION_STATUS_SUCCESS_UNREGISTERED); 682 callback.Run(content::PUSH_UNREGISTRATION_STATUS_SUCCESS_UNREGISTERED);
711 break; 683 break;
712 case GCMClient::INVALID_PARAMETER: 684 case gcm::GCMClient::INVALID_PARAMETER:
713 case GCMClient::GCM_DISABLED: 685 case gcm::GCMClient::GCM_DISABLED:
714 case GCMClient::ASYNC_OPERATION_PENDING: 686 case gcm::GCMClient::ASYNC_OPERATION_PENDING:
715 case GCMClient::SERVER_ERROR: 687 case gcm::GCMClient::SERVER_ERROR:
716 case GCMClient::UNKNOWN_ERROR: 688 case gcm::GCMClient::UNKNOWN_ERROR:
717 callback.Run(content::PUSH_UNREGISTRATION_STATUS_SERVICE_ERROR); 689 callback.Run(content::PUSH_UNREGISTRATION_STATUS_SERVICE_ERROR);
718 break; 690 break;
719 case GCMClient::NETWORK_ERROR: 691 case gcm::GCMClient::NETWORK_ERROR:
720 case GCMClient::TTL_EXCEEDED: 692 case gcm::GCMClient::TTL_EXCEEDED:
721 callback.Run( 693 callback.Run(
722 retry_on_failure 694 retry_on_failure
723 ? content:: 695 ? content::
724 PUSH_UNREGISTRATION_STATUS_PENDING_WILL_RETRY_NETWORK_ERROR 696 PUSH_UNREGISTRATION_STATUS_PENDING_WILL_RETRY_NETWORK_ERROR
725 : content::PUSH_UNREGISTRATION_STATUS_NETWORK_ERROR); 697 : content::PUSH_UNREGISTRATION_STATUS_NETWORK_ERROR);
726 break; 698 break;
727 } 699 }
728 } 700 }
729 } 701 }
730 702
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
765 const std::string& sender_id, bool success, bool not_found) { 737 const std::string& sender_id, bool success, bool not_found) {
766 // Unregister the PushMessagingApplicationId with the push service. 738 // Unregister the PushMessagingApplicationId with the push service.
767 Unregister(id.app_id_guid(), sender_id, true /* retry_on_failure */, 739 Unregister(id.app_id_guid(), sender_id, true /* retry_on_failure */,
768 UnregisterCallback()); 740 UnregisterCallback());
769 741
770 // Clear the associated service worker push registration id. 742 // Clear the associated service worker push registration id.
771 PushMessagingService::ClearPushRegistrationID( 743 PushMessagingService::ClearPushRegistrationID(
772 profile_, id.origin(), id.service_worker_registration_id()); 744 profile_, id.origin(), id.service_worker_registration_id());
773 } 745 }
774 746
747 // KeyedService methods -------------------------------------------------------
748
749 void PushMessagingServiceImpl::Shutdown() {
750 GetGCMDriver()->RemoveAppHandler(kPushMessagingApplicationIdPrefix);
751 }
752
775 // Helper methods -------------------------------------------------------------- 753 // Helper methods --------------------------------------------------------------
776 754
777 bool PushMessagingServiceImpl::HasPermission(const GURL& origin) { 755 bool PushMessagingServiceImpl::HasPermission(const GURL& origin) {
778 gcm::PushMessagingPermissionContext* permission_context = 756 PushMessagingPermissionContext* permission_context =
779 gcm::PushMessagingPermissionContextFactory::GetForProfile(profile_); 757 PushMessagingPermissionContextFactory::GetForProfile(profile_);
780 DCHECK(permission_context); 758 DCHECK(permission_context);
781 759
782 return permission_context->GetPermissionStatus(origin, origin) == 760 return permission_context->GetPermissionStatus(origin, origin) ==
783 CONTENT_SETTING_ALLOW; 761 CONTENT_SETTING_ALLOW;
784 } 762 }
785 763
786 void PushMessagingServiceImpl::SetProfileForTesting(Profile* profile) { 764 gcm::GCMDriver* PushMessagingServiceImpl::GetGCMDriver() const {
787 profile_ = profile; 765 gcm::GCMProfileService* gcm_profile_service =
788 profile_->GetHostContentSettingsMap()->AddObserver(this); 766 gcm::GCMProfileServiceFactory::GetForProfile(profile_);
767 CHECK(gcm_profile_service);
768 CHECK(gcm_profile_service->driver());
769 return gcm_profile_service->driver();
789 } 770 }
790
791 } // namespace gcm
OLDNEW
« no previous file with comments | « chrome/browser/push_messaging/push_messaging_service_impl.h ('k') | chrome/browser/services/gcm/OWNERS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698