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

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: remove redundant cast 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 PushMessagingServiceFactory::GetForProfile(profile);
120 gcm_service->push_messaging_service());
121
122 push_service->IncreasePushRegistrationCount(count, false /* is_pending */); 116 push_service->IncreasePushRegistrationCount(count, false /* is_pending */);
123 } 117 }
124 118
125 PushMessagingServiceImpl::PushMessagingServiceImpl( 119 PushMessagingServiceImpl::PushMessagingServiceImpl(Profile* profile)
126 GCMProfileService* gcm_profile_service, 120 : profile_(profile),
127 Profile* profile)
128 : gcm_profile_service_(gcm_profile_service),
129 profile_(profile),
130 push_registration_count_(0), 121 push_registration_count_(0),
131 pending_push_registration_count_(0), 122 pending_push_registration_count_(0),
132 weak_factory_(this) { 123 weak_factory_(this) {
133 // In some tests, we might end up with |profile_| being null at this point. 124 // 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 125 // When that is the case |profile_| will be set in SetProfileForTesting(), at
135 // which point the service will start to observe HostContentSettingsMap. 126 // which point the service will start to observe HostContentSettingsMap.
136 if (profile_) 127 if (profile_)
137 profile_->GetHostContentSettingsMap()->AddObserver(this); 128 profile_->GetHostContentSettingsMap()->AddObserver(this);
138 } 129 }
139 130
140 PushMessagingServiceImpl::~PushMessagingServiceImpl() { 131 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); 132 profile_->GetHostContentSettingsMap()->RemoveObserver(this);
144 } 133 }
145 134
146 void PushMessagingServiceImpl::IncreasePushRegistrationCount(int add, 135 void PushMessagingServiceImpl::IncreasePushRegistrationCount(int add,
147 bool is_pending) { 136 bool is_pending) {
148 DCHECK(add > 0); 137 DCHECK(add > 0);
149 if (push_registration_count_ + pending_push_registration_count_ == 0) { 138 if (push_registration_count_ + pending_push_registration_count_ == 0) {
150 gcm_profile_service_->driver()->AddAppHandler( 139 GetGCMDriver()->AddAppHandler(kPushMessagingApplicationIdPrefix, this);
151 kPushMessagingApplicationIdPrefix, this);
152 } 140 }
153 if (is_pending) { 141 if (is_pending) {
154 pending_push_registration_count_ += add; 142 pending_push_registration_count_ += add;
155 } else { 143 } else {
156 push_registration_count_ += add; 144 push_registration_count_ += add;
157 profile_->GetPrefs()->SetInteger(prefs::kPushMessagingRegistrationCount, 145 profile_->GetPrefs()->SetInteger(prefs::kPushMessagingRegistrationCount,
158 push_registration_count_); 146 push_registration_count_);
159 } 147 }
160 } 148 }
161 149
162 void PushMessagingServiceImpl::DecreasePushRegistrationCount(int subtract, 150 void PushMessagingServiceImpl::DecreasePushRegistrationCount(int subtract,
163 bool was_pending) { 151 bool was_pending) {
164 DCHECK(subtract > 0); 152 DCHECK(subtract > 0);
165 if (was_pending) { 153 if (was_pending) {
166 pending_push_registration_count_ -= subtract; 154 pending_push_registration_count_ -= subtract;
167 DCHECK(pending_push_registration_count_ >= 0); 155 DCHECK(pending_push_registration_count_ >= 0);
168 } else { 156 } else {
169 push_registration_count_ -= subtract; 157 push_registration_count_ -= subtract;
170 DCHECK(push_registration_count_ >= 0); 158 DCHECK(push_registration_count_ >= 0);
171 profile_->GetPrefs()->SetInteger(prefs::kPushMessagingRegistrationCount, 159 profile_->GetPrefs()->SetInteger(prefs::kPushMessagingRegistrationCount,
172 push_registration_count_); 160 push_registration_count_);
173 } 161 }
174 if (push_registration_count_ + pending_push_registration_count_ == 0) { 162 if (push_registration_count_ + pending_push_registration_count_ == 0) {
175 gcm_profile_service_->driver()->RemoveAppHandler( 163 GetGCMDriver()->RemoveAppHandler(kPushMessagingApplicationIdPrefix);
176 kPushMessagingApplicationIdPrefix);
177 } 164 }
178 } 165 }
179 166
180 bool PushMessagingServiceImpl::CanHandle(const std::string& app_id) const { 167 bool PushMessagingServiceImpl::CanHandle(const std::string& app_id) const {
181 return PushMessagingApplicationId::Get(profile_, app_id).IsValid(); 168 return PushMessagingApplicationId::Get(profile_, app_id).IsValid();
182 } 169 }
183 170
184 void PushMessagingServiceImpl::ShutdownHandler() { 171 void PushMessagingServiceImpl::ShutdownHandler() {
185 // TODO(johnme): Do any necessary cleanup. 172 // Shutdown() should come before and it removes us from the list of app
173 // handlers of gcm::GCMDriver so this shouldn't ever been called.
174 NOTREACHED();
186 } 175 }
187 176
188 // OnMessage methods ----------------------------------------------------------- 177 // OnMessage methods -----------------------------------------------------------
189 178
190 void PushMessagingServiceImpl::OnMessage( 179 void PushMessagingServiceImpl::OnMessage(
191 const std::string& app_id, 180 const std::string& app_id,
192 const GCMClient::IncomingMessage& message) { 181 const gcm::GCMClient::IncomingMessage& message) {
193 PushMessagingApplicationId application_id = 182 PushMessagingApplicationId application_id =
194 PushMessagingApplicationId::Get(profile_, app_id); 183 PushMessagingApplicationId::Get(profile_, app_id);
195 // Drop message and unregister if app id was unknown (maybe recently deleted). 184 // Drop message and unregister if app id was unknown (maybe recently deleted).
196 if (!application_id.IsValid()) { 185 if (!application_id.IsValid()) {
197 DeliverMessageCallback(app_id, GURL::EmptyGURL(), -1, message, 186 DeliverMessageCallback(app_id, GURL::EmptyGURL(), -1, message,
198 content::PUSH_DELIVERY_STATUS_UNKNOWN_APP_ID); 187 content::PUSH_DELIVERY_STATUS_UNKNOWN_APP_ID);
199 return; 188 return;
200 } 189 }
201 // Drop message and unregister if |origin| has lost push permission. 190 // Drop message and unregister if |origin| has lost push permission.
202 if (!HasPermission(application_id.origin())) { 191 if (!HasPermission(application_id.origin())) {
(...skipping 16 matching lines...) Expand all
219 // "data": "BAZ", 208 // "data": "BAZ",
220 // }, 209 // },
221 // "delay_while_idle": true, 210 // "delay_while_idle": true,
222 // } 211 // }
223 // TODO(johnme): Make sure this is clearly documented for developers. 212 // TODO(johnme): Make sure this is clearly documented for developers.
224 std::string data; 213 std::string data;
225 // TODO(peter): Message payloads are disabled pending mandatory encryption. 214 // TODO(peter): Message payloads are disabled pending mandatory encryption.
226 // https://crbug.com/449184 215 // https://crbug.com/449184
227 if (base::CommandLine::ForCurrentProcess()->HasSwitch( 216 if (base::CommandLine::ForCurrentProcess()->HasSwitch(
228 switches::kEnablePushMessagePayload)) { 217 switches::kEnablePushMessagePayload)) {
229 GCMClient::MessageData::const_iterator it = message.data.find("data"); 218 gcm::GCMClient::MessageData::const_iterator it = message.data.find("data");
230 if (it != message.data.end()) 219 if (it != message.data.end())
231 data = it->second; 220 data = it->second;
232 } 221 }
233 222
234 content::BrowserContext::DeliverPushMessage( 223 content::BrowserContext::DeliverPushMessage(
235 profile_, 224 profile_,
236 application_id.origin(), 225 application_id.origin(),
237 application_id.service_worker_registration_id(), 226 application_id.service_worker_registration_id(),
238 data, 227 data,
239 base::Bind(&PushMessagingServiceImpl::DeliverMessageCallback, 228 base::Bind(&PushMessagingServiceImpl::DeliverMessageCallback,
240 weak_factory_.GetWeakPtr(), 229 weak_factory_.GetWeakPtr(),
241 application_id.app_id_guid(), application_id.origin(), 230 application_id.app_id_guid(), application_id.origin(),
242 application_id.service_worker_registration_id(), message)); 231 application_id.service_worker_registration_id(), message));
243 } 232 }
244 233
245 void PushMessagingServiceImpl::DeliverMessageCallback( 234 void PushMessagingServiceImpl::DeliverMessageCallback(
246 const std::string& app_id_guid, 235 const std::string& app_id_guid,
247 const GURL& requesting_origin, 236 const GURL& requesting_origin,
248 int64 service_worker_registration_id, 237 int64 service_worker_registration_id,
249 const GCMClient::IncomingMessage& message, 238 const gcm::GCMClient::IncomingMessage& message,
250 content::PushDeliveryStatus status) { 239 content::PushDeliveryStatus status) {
251 // TODO(mvanouwerkerk): Show a warning in the developer console of the 240 // TODO(mvanouwerkerk): Show a warning in the developer console of the
252 // Service Worker corresponding to app_id (and/or on an internals page). 241 // Service Worker corresponding to app_id (and/or on an internals page).
253 // TODO(mvanouwerkerk): Is there a way to recover from failure? 242 // TODO(mvanouwerkerk): Is there a way to recover from failure?
254 switch (status) { 243 switch (status) {
255 // Call RequireUserVisibleUX if the message was delivered to the Service 244 // Call RequireUserVisibleUX if the message was delivered to the Service
256 // Worker JS, even if the website's event handler failed (to prevent sites 245 // Worker JS, even if the website's event handler failed (to prevent sites
257 // deliberately failing in order to avoid having to show notifications). 246 // deliberately failing in order to avoid having to show notifications).
258 case content::PUSH_DELIVERY_STATUS_SUCCESS: 247 case content::PUSH_DELIVERY_STATUS_SUCCESS:
259 case content::PUSH_DELIVERY_STATUS_EVENT_WAITUNTIL_REJECTED: 248 case content::PUSH_DELIVERY_STATUS_EVENT_WAITUNTIL_REJECTED:
(...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after
417 PlatformNotificationServiceImpl::GetInstance(); 406 PlatformNotificationServiceImpl::GetInstance();
418 notification_service->DisplayPersistentNotification( 407 notification_service->DisplayPersistentNotification(
419 profile_, 408 profile_,
420 service_worker_registration_id, 409 service_worker_registration_id,
421 requesting_origin, 410 requesting_origin,
422 SkBitmap() /* icon */, 411 SkBitmap() /* icon */,
423 notification_data); 412 notification_data);
424 } 413 }
425 } 414 }
426 415
427 // Other GCMAppHandler methods ------------------------------------------------- 416 // Other gcm::GCMAppHandler methods -------------------------------------------
428 417
429 void PushMessagingServiceImpl::OnMessagesDeleted(const std::string& app_id) { 418 void PushMessagingServiceImpl::OnMessagesDeleted(const std::string& app_id) {
430 // TODO(mvanouwerkerk): Fire push error event on the Service Worker 419 // TODO(mvanouwerkerk): Fire push error event on the Service Worker
431 // corresponding to app_id. 420 // corresponding to app_id.
432 } 421 }
433 422
434 void PushMessagingServiceImpl::OnSendError( 423 void PushMessagingServiceImpl::OnSendError(
435 const std::string& app_id, 424 const std::string& app_id,
436 const GCMClient::SendErrorDetails& send_error_details) { 425 const gcm::GCMClient::SendErrorDetails& send_error_details) {
437 NOTREACHED() << "The Push API shouldn't have sent messages upstream"; 426 NOTREACHED() << "The Push API shouldn't have sent messages upstream";
438 } 427 }
439 428
440 void PushMessagingServiceImpl::OnSendAcknowledged( 429 void PushMessagingServiceImpl::OnSendAcknowledged(
441 const std::string& app_id, 430 const std::string& app_id,
442 const std::string& message_id) { 431 const std::string& message_id) {
443 NOTREACHED() << "The Push API shouldn't have sent messages upstream"; 432 NOTREACHED() << "The Push API shouldn't have sent messages upstream";
444 } 433 }
445 434
446 // GetPushEndpoint method ------------------------------------------------------ 435 // GetPushEndpoint method ------------------------------------------------------
447 436
448 GURL PushMessagingServiceImpl::GetPushEndpoint() { 437 GURL PushMessagingServiceImpl::GetPushEndpoint() {
449 return GURL(std::string(kPushMessagingEndpoint)); 438 return GURL(std::string(kPushMessagingEndpoint));
450 } 439 }
451 440
452 // Register and GetPermissionStatus methods ------------------------------------ 441 // Register and GetPermissionStatus methods ------------------------------------
453 442
454 void PushMessagingServiceImpl::RegisterFromDocument( 443 void PushMessagingServiceImpl::RegisterFromDocument(
455 const GURL& requesting_origin, 444 const GURL& requesting_origin,
456 int64 service_worker_registration_id, 445 int64 service_worker_registration_id,
457 const std::string& sender_id, 446 const std::string& sender_id,
458 int renderer_id, 447 int renderer_id,
459 int render_frame_id, 448 int render_frame_id,
460 bool user_visible_only, 449 bool user_visible_only,
461 const content::PushMessagingService::RegisterCallback& callback) { 450 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 = 451 PushMessagingApplicationId application_id =
468 PushMessagingApplicationId::Generate(requesting_origin, 452 PushMessagingApplicationId::Generate(requesting_origin,
469 service_worker_registration_id); 453 service_worker_registration_id);
470 DCHECK(application_id.IsValid()); 454 DCHECK(application_id.IsValid());
471 455
472 if (push_registration_count_ + pending_push_registration_count_ 456 if (push_registration_count_ + pending_push_registration_count_
473 >= kMaxRegistrations) { 457 >= kMaxRegistrations) {
474 RegisterEnd(callback, 458 RegisterEnd(callback,
475 std::string(), 459 std::string(),
476 content::PUSH_REGISTRATION_STATUS_LIMIT_REACHED); 460 content::PUSH_REGISTRATION_STATUS_LIMIT_REACHED);
(...skipping 10 matching lines...) Expand all
487 if (!web_contents) 471 if (!web_contents)
488 return; 472 return;
489 473
490 // TODO(miguelg) need to send this over IPC when bubble support is 474 // TODO(miguelg) need to send this over IPC when bubble support is
491 // implemented. 475 // implemented.
492 int bridge_id = -1; 476 int bridge_id = -1;
493 477
494 const PermissionRequestID id( 478 const PermissionRequestID id(
495 renderer_id, web_contents->GetRoutingID(), bridge_id, GURL()); 479 renderer_id, web_contents->GetRoutingID(), bridge_id, GURL());
496 480
497 gcm::PushMessagingPermissionContext* permission_context = 481 PushMessagingPermissionContext* permission_context =
498 gcm::PushMessagingPermissionContextFactory::GetForProfile(profile_); 482 PushMessagingPermissionContextFactory::GetForProfile(profile_);
499 483
500 if (permission_context == NULL || !user_visible_only) { 484 if (permission_context == NULL || !user_visible_only) {
501 RegisterEnd(callback, 485 RegisterEnd(callback,
502 std::string(), 486 std::string(),
503 content::PUSH_REGISTRATION_STATUS_PERMISSION_DENIED); 487 content::PUSH_REGISTRATION_STATUS_PERMISSION_DENIED);
504 return; 488 return;
505 } 489 }
506 490
507 // TODO(miguelg): Consider the value of |user_visible_only| when making 491 // TODO(miguelg): Consider the value of |user_visible_only| when making
508 // the permission request. 492 // the permission request.
509 // TODO(mlamouri): Move requesting Push permission over to using Mojo, and 493 // TODO(mlamouri): Move requesting Push permission over to using Mojo, and
510 // re-introduce the ability of |user_gesture| when bubbles require this. 494 // re-introduce the ability of |user_gesture| when bubbles require this.
511 // https://crbug.com/423770. 495 // https://crbug.com/423770.
512 permission_context->RequestPermission( 496 permission_context->RequestPermission(
513 web_contents, id, requesting_origin, true /* user_gesture */, 497 web_contents, id, requesting_origin, true /* user_gesture */,
514 base::Bind(&PushMessagingServiceImpl::DidRequestPermission, 498 base::Bind(&PushMessagingServiceImpl::DidRequestPermission,
515 weak_factory_.GetWeakPtr(), application_id, sender_id, 499 weak_factory_.GetWeakPtr(), application_id, sender_id,
516 callback)); 500 callback));
517 } 501 }
518 502
519 void PushMessagingServiceImpl::RegisterFromWorker( 503 void PushMessagingServiceImpl::RegisterFromWorker(
520 const GURL& requesting_origin, 504 const GURL& requesting_origin,
521 int64 service_worker_registration_id, 505 int64 service_worker_registration_id,
522 const std::string& sender_id, 506 const std::string& sender_id,
523 const content::PushMessagingService::RegisterCallback& register_callback) { 507 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 = 508 PushMessagingApplicationId application_id =
530 PushMessagingApplicationId::Generate(requesting_origin, 509 PushMessagingApplicationId::Generate(requesting_origin,
531 service_worker_registration_id); 510 service_worker_registration_id);
532 DCHECK(application_id.IsValid()); 511 DCHECK(application_id.IsValid());
533 512
534 if (profile_->GetPrefs()->GetInteger( 513 if (profile_->GetPrefs()->GetInteger(
535 prefs::kPushMessagingRegistrationCount) >= kMaxRegistrations) { 514 prefs::kPushMessagingRegistrationCount) >= kMaxRegistrations) {
536 RegisterEnd(register_callback, std::string(), 515 RegisterEnd(register_callback, std::string(),
537 content::PUSH_REGISTRATION_STATUS_LIMIT_REACHED); 516 content::PUSH_REGISTRATION_STATUS_LIMIT_REACHED);
538 return; 517 return;
539 } 518 }
540 519
541 GURL embedding_origin = requesting_origin; 520 GURL embedding_origin = requesting_origin;
542 blink::WebPushPermissionStatus permission_status = 521 blink::WebPushPermissionStatus permission_status =
543 PushMessagingServiceImpl::GetPermissionStatus(requesting_origin, 522 PushMessagingServiceImpl::GetPermissionStatus(requesting_origin,
544 embedding_origin); 523 embedding_origin);
545 if (permission_status != blink::WebPushPermissionStatusGranted) { 524 if (permission_status != blink::WebPushPermissionStatusGranted) {
546 RegisterEnd(register_callback, std::string(), 525 RegisterEnd(register_callback, std::string(),
547 content::PUSH_REGISTRATION_STATUS_PERMISSION_DENIED); 526 content::PUSH_REGISTRATION_STATUS_PERMISSION_DENIED);
548 return; 527 return;
549 } 528 }
550 529
551 IncreasePushRegistrationCount(1, true /* is_pending */); 530 IncreasePushRegistrationCount(1, true /* is_pending */);
552 std::vector<std::string> sender_ids(1, sender_id); 531 std::vector<std::string> sender_ids(1, sender_id);
553 gcm_profile_service_->driver()->Register( 532 GetGCMDriver()->Register(
554 application_id.app_id_guid(), sender_ids, 533 application_id.app_id_guid(), sender_ids,
555 base::Bind(&PushMessagingServiceImpl::DidRegister, 534 base::Bind(&PushMessagingServiceImpl::DidRegister,
556 weak_factory_.GetWeakPtr(), 535 weak_factory_.GetWeakPtr(),
557 application_id, register_callback)); 536 application_id, register_callback));
558 } 537 }
559 538
560 blink::WebPushPermissionStatus PushMessagingServiceImpl::GetPermissionStatus( 539 blink::WebPushPermissionStatus PushMessagingServiceImpl::GetPermissionStatus(
561 const GURL& requesting_origin, 540 const GURL& requesting_origin,
562 const GURL& embedding_origin) { 541 const GURL& embedding_origin) {
563 PushMessagingPermissionContext* permission_context = 542 PushMessagingPermissionContext* permission_context =
564 PushMessagingPermissionContextFactory::GetForProfile(profile_); 543 PushMessagingPermissionContextFactory::GetForProfile(profile_);
565 return ToPushPermission(permission_context->GetPermissionStatus( 544 return ToPushPermission(permission_context->GetPermissionStatus(
566 requesting_origin, embedding_origin)); 545 requesting_origin, embedding_origin));
567 } 546 }
568 547
569 void PushMessagingServiceImpl::RegisterEnd( 548 void PushMessagingServiceImpl::RegisterEnd(
570 const content::PushMessagingService::RegisterCallback& callback, 549 const content::PushMessagingService::RegisterCallback& callback,
571 const std::string& registration_id, 550 const std::string& registration_id,
572 content::PushRegistrationStatus status) { 551 content::PushRegistrationStatus status) {
573 callback.Run(registration_id, status); 552 callback.Run(registration_id, status);
574 } 553 }
575 554
576 void PushMessagingServiceImpl::DidRegister( 555 void PushMessagingServiceImpl::DidRegister(
577 const PushMessagingApplicationId& application_id, 556 const PushMessagingApplicationId& application_id,
578 const content::PushMessagingService::RegisterCallback& callback, 557 const content::PushMessagingService::RegisterCallback& callback,
579 const std::string& registration_id, 558 const std::string& registration_id,
580 GCMClient::Result result) { 559 gcm::GCMClient::Result result) {
581 content::PushRegistrationStatus status = 560 content::PushRegistrationStatus status =
582 content::PUSH_REGISTRATION_STATUS_SERVICE_ERROR; 561 content::PUSH_REGISTRATION_STATUS_SERVICE_ERROR;
583 switch (result) { 562 switch (result) {
584 case GCMClient::SUCCESS: 563 case gcm::GCMClient::SUCCESS:
585 status = content::PUSH_REGISTRATION_STATUS_SUCCESS_FROM_PUSH_SERVICE; 564 status = content::PUSH_REGISTRATION_STATUS_SUCCESS_FROM_PUSH_SERVICE;
586 application_id.PersistToDisk(profile_); 565 application_id.PersistToDisk(profile_);
587 IncreasePushRegistrationCount(1, false /* is_pending */); 566 IncreasePushRegistrationCount(1, false /* is_pending */);
588 break; 567 break;
589 case GCMClient::INVALID_PARAMETER: 568 case gcm::GCMClient::INVALID_PARAMETER:
590 case GCMClient::GCM_DISABLED: 569 case gcm::GCMClient::GCM_DISABLED:
591 case GCMClient::ASYNC_OPERATION_PENDING: 570 case gcm::GCMClient::ASYNC_OPERATION_PENDING:
592 case GCMClient::SERVER_ERROR: 571 case gcm::GCMClient::SERVER_ERROR:
593 case GCMClient::UNKNOWN_ERROR: 572 case gcm::GCMClient::UNKNOWN_ERROR:
594 status = content::PUSH_REGISTRATION_STATUS_SERVICE_ERROR; 573 status = content::PUSH_REGISTRATION_STATUS_SERVICE_ERROR;
595 break; 574 break;
596 case GCMClient::NETWORK_ERROR: 575 case gcm::GCMClient::NETWORK_ERROR:
597 case GCMClient::TTL_EXCEEDED: 576 case gcm::GCMClient::TTL_EXCEEDED:
598 status = content::PUSH_REGISTRATION_STATUS_NETWORK_ERROR; 577 status = content::PUSH_REGISTRATION_STATUS_NETWORK_ERROR;
599 break; 578 break;
600 } 579 }
601 RegisterEnd(callback, registration_id, status); 580 RegisterEnd(callback, registration_id, status);
602 DecreasePushRegistrationCount(1, true /* was_pending */); 581 DecreasePushRegistrationCount(1, true /* was_pending */);
603 } 582 }
604 583
605 void PushMessagingServiceImpl::DidRequestPermission( 584 void PushMessagingServiceImpl::DidRequestPermission(
606 const PushMessagingApplicationId& application_id, 585 const PushMessagingApplicationId& application_id,
607 const std::string& sender_id, 586 const std::string& sender_id,
608 const content::PushMessagingService::RegisterCallback& register_callback, 587 const content::PushMessagingService::RegisterCallback& register_callback,
609 ContentSetting content_setting) { 588 ContentSetting content_setting) {
610 if (content_setting != CONTENT_SETTING_ALLOW) { 589 if (content_setting != CONTENT_SETTING_ALLOW) {
611 RegisterEnd(register_callback, 590 RegisterEnd(register_callback,
612 std::string(), 591 std::string(),
613 content::PUSH_REGISTRATION_STATUS_PERMISSION_DENIED); 592 content::PUSH_REGISTRATION_STATUS_PERMISSION_DENIED);
614 return; 593 return;
615 } 594 }
616 595
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 */); 596 IncreasePushRegistrationCount(1, true /* is_pending */);
622 std::vector<std::string> sender_ids(1, sender_id); 597 std::vector<std::string> sender_ids(1, sender_id);
623 gcm_profile_service_->driver()->Register( 598 GetGCMDriver()->Register(
624 application_id.app_id_guid(), 599 application_id.app_id_guid(),
625 sender_ids, 600 sender_ids,
626 base::Bind(&PushMessagingServiceImpl::DidRegister, 601 base::Bind(&PushMessagingServiceImpl::DidRegister,
627 weak_factory_.GetWeakPtr(), 602 weak_factory_.GetWeakPtr(),
628 application_id, register_callback)); 603 application_id, register_callback));
629 } 604 }
630 605
631 // Unregister methods ---------------------------------------------------------- 606 // Unregister methods ----------------------------------------------------------
632 607
633 void PushMessagingServiceImpl::Unregister( 608 void PushMessagingServiceImpl::Unregister(
634 const GURL& requesting_origin, 609 const GURL& requesting_origin,
635 int64 service_worker_registration_id, 610 int64 service_worker_registration_id,
636 const std::string& sender_id, 611 const std::string& sender_id,
637 bool retry_on_failure, 612 bool retry_on_failure,
638 const content::PushMessagingService::UnregisterCallback& callback) { 613 const content::PushMessagingService::UnregisterCallback& callback) {
639 DCHECK(gcm_profile_service_->driver());
640
641 PushMessagingApplicationId application_id = PushMessagingApplicationId::Get( 614 PushMessagingApplicationId application_id = PushMessagingApplicationId::Get(
642 profile_, requesting_origin, service_worker_registration_id); 615 profile_, requesting_origin, service_worker_registration_id);
643 if (!application_id.IsValid()) { 616 if (!application_id.IsValid()) {
644 if (!callback.is_null()) { 617 if (!callback.is_null()) {
645 callback.Run( 618 callback.Run(
646 content::PUSH_UNREGISTRATION_STATUS_SUCCESS_WAS_NOT_REGISTERED); 619 content::PUSH_UNREGISTRATION_STATUS_SUCCESS_WAS_NOT_REGISTERED);
647 } 620 }
648 return; 621 return;
649 } 622 }
650 623
651 Unregister(application_id.app_id_guid(), sender_id, retry_on_failure, 624 Unregister(application_id.app_id_guid(), sender_id, retry_on_failure,
652 callback); 625 callback);
653 } 626 }
654 627
655 void PushMessagingServiceImpl::Unregister( 628 void PushMessagingServiceImpl::Unregister(
656 const std::string& app_id_guid, 629 const std::string& app_id_guid,
657 const std::string& sender_id, 630 const std::string& sender_id,
658 bool retry_on_failure, 631 bool retry_on_failure,
659 const content::PushMessagingService::UnregisterCallback& callback) { 632 const content::PushMessagingService::UnregisterCallback& callback) {
660 DCHECK(gcm_profile_service_->driver());
661
662 if (retry_on_failure) { 633 if (retry_on_failure) {
663 // Delete the mapping for this app id, to guarantee that no messages get 634 // Delete the mapping for this app id, to guarantee that no messages get
664 // delivered in future (even if unregistration fails). 635 // delivered in future (even if unregistration fails).
665 // TODO(johnme): Instead of deleting these app ids, store them elsewhere, 636 // TODO(johnme): Instead of deleting these app ids, store them elsewhere,
666 // and retry unregistration if it fails due to network errors. 637 // and retry unregistration if it fails due to network errors.
667 PushMessagingApplicationId application_id = 638 PushMessagingApplicationId application_id =
668 PushMessagingApplicationId::Get(profile_, app_id_guid); 639 PushMessagingApplicationId::Get(profile_, app_id_guid);
669 if (application_id.IsValid()) 640 if (application_id.IsValid())
670 application_id.DeleteFromDisk(profile_); 641 application_id.DeleteFromDisk(profile_);
671 } 642 }
672 643
673 const auto& unregister_callback = 644 const auto& unregister_callback =
674 base::Bind(&PushMessagingServiceImpl::DidUnregister, 645 base::Bind(&PushMessagingServiceImpl::DidUnregister,
675 weak_factory_.GetWeakPtr(), 646 weak_factory_.GetWeakPtr(),
676 app_id_guid, retry_on_failure, callback); 647 app_id_guid, retry_on_failure, callback);
677 #if defined(OS_ANDROID) 648 #if defined(OS_ANDROID)
678 // On Android the backend is different, and requires the original sender_id. 649 // On Android the backend is different, and requires the original sender_id.
679 gcm_profile_service_->driver()->UnregisterWithSenderId(app_id_guid, sender_id, 650 GetGCMDriver()->UnregisterWithSenderId(app_id_guid, sender_id,
680 unregister_callback); 651 unregister_callback);
681 #else 652 #else
682 gcm_profile_service_->driver()->Unregister(app_id_guid, unregister_callback); 653 GetGCMDriver()->Unregister(app_id_guid, unregister_callback);
683 #endif 654 #endif
684 } 655 }
685 656
686 void PushMessagingServiceImpl::DidUnregister( 657 void PushMessagingServiceImpl::DidUnregister(
687 const std::string& app_id_guid, 658 const std::string& app_id_guid,
688 bool retry_on_failure, 659 bool retry_on_failure,
689 const content::PushMessagingService::UnregisterCallback& callback, 660 const content::PushMessagingService::UnregisterCallback& callback,
690 GCMClient::Result result) { 661 gcm::GCMClient::Result result) {
691 if (result == GCMClient::SUCCESS) { 662 if (result == gcm::GCMClient::SUCCESS) {
692 PushMessagingApplicationId application_id = 663 PushMessagingApplicationId application_id =
693 PushMessagingApplicationId::Get(profile_, app_id_guid); 664 PushMessagingApplicationId::Get(profile_, app_id_guid);
694 if (!application_id.IsValid()) { 665 if (!application_id.IsValid()) {
695 if (!callback.is_null()) { 666 if (!callback.is_null()) {
696 callback.Run( 667 callback.Run(
697 content::PUSH_UNREGISTRATION_STATUS_SUCCESS_WAS_NOT_REGISTERED); 668 content::PUSH_UNREGISTRATION_STATUS_SUCCESS_WAS_NOT_REGISTERED);
698 } 669 }
699 return; 670 return;
700 } 671 }
701 672
702 application_id.DeleteFromDisk(profile_); 673 application_id.DeleteFromDisk(profile_);
703 DecreasePushRegistrationCount(1, false /* was_pending */); 674 DecreasePushRegistrationCount(1, false /* was_pending */);
704 } 675 }
705 676
706 // Internal calls pass a null callback. 677 // Internal calls pass a null callback.
707 if (!callback.is_null()) { 678 if (!callback.is_null()) {
708 switch (result) { 679 switch (result) {
709 case GCMClient::SUCCESS: 680 case gcm::GCMClient::SUCCESS:
710 callback.Run(content::PUSH_UNREGISTRATION_STATUS_SUCCESS_UNREGISTERED); 681 callback.Run(content::PUSH_UNREGISTRATION_STATUS_SUCCESS_UNREGISTERED);
711 break; 682 break;
712 case GCMClient::INVALID_PARAMETER: 683 case gcm::GCMClient::INVALID_PARAMETER:
713 case GCMClient::GCM_DISABLED: 684 case gcm::GCMClient::GCM_DISABLED:
714 case GCMClient::ASYNC_OPERATION_PENDING: 685 case gcm::GCMClient::ASYNC_OPERATION_PENDING:
715 case GCMClient::SERVER_ERROR: 686 case gcm::GCMClient::SERVER_ERROR:
716 case GCMClient::UNKNOWN_ERROR: 687 case gcm::GCMClient::UNKNOWN_ERROR:
717 callback.Run(content::PUSH_UNREGISTRATION_STATUS_SERVICE_ERROR); 688 callback.Run(content::PUSH_UNREGISTRATION_STATUS_SERVICE_ERROR);
718 break; 689 break;
719 case GCMClient::NETWORK_ERROR: 690 case gcm::GCMClient::NETWORK_ERROR:
720 case GCMClient::TTL_EXCEEDED: 691 case gcm::GCMClient::TTL_EXCEEDED:
721 callback.Run( 692 callback.Run(
722 retry_on_failure 693 retry_on_failure
723 ? content:: 694 ? content::
724 PUSH_UNREGISTRATION_STATUS_PENDING_WILL_RETRY_NETWORK_ERROR 695 PUSH_UNREGISTRATION_STATUS_PENDING_WILL_RETRY_NETWORK_ERROR
725 : content::PUSH_UNREGISTRATION_STATUS_NETWORK_ERROR); 696 : content::PUSH_UNREGISTRATION_STATUS_NETWORK_ERROR);
726 break; 697 break;
727 } 698 }
728 } 699 }
729 } 700 }
730 701
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
765 const std::string& sender_id, bool success, bool not_found) { 736 const std::string& sender_id, bool success, bool not_found) {
766 // Unregister the PushMessagingApplicationId with the push service. 737 // Unregister the PushMessagingApplicationId with the push service.
767 Unregister(id.app_id_guid(), sender_id, true /* retry_on_failure */, 738 Unregister(id.app_id_guid(), sender_id, true /* retry_on_failure */,
768 UnregisterCallback()); 739 UnregisterCallback());
769 740
770 // Clear the associated service worker push registration id. 741 // Clear the associated service worker push registration id.
771 PushMessagingService::ClearPushRegistrationID( 742 PushMessagingService::ClearPushRegistrationID(
772 profile_, id.origin(), id.service_worker_registration_id()); 743 profile_, id.origin(), id.service_worker_registration_id());
773 } 744 }
774 745
746 // KeyedService methods -------------------------------------------------------
747
748 void PushMessagingServiceImpl::Shutdown() {
749 GetGCMDriver()->RemoveAppHandler(kPushMessagingApplicationIdPrefix);
750 }
751
775 // Helper methods -------------------------------------------------------------- 752 // Helper methods --------------------------------------------------------------
776 753
777 bool PushMessagingServiceImpl::HasPermission(const GURL& origin) { 754 bool PushMessagingServiceImpl::HasPermission(const GURL& origin) {
778 gcm::PushMessagingPermissionContext* permission_context = 755 PushMessagingPermissionContext* permission_context =
779 gcm::PushMessagingPermissionContextFactory::GetForProfile(profile_); 756 PushMessagingPermissionContextFactory::GetForProfile(profile_);
780 DCHECK(permission_context); 757 DCHECK(permission_context);
781 758
782 return permission_context->GetPermissionStatus(origin, origin) == 759 return permission_context->GetPermissionStatus(origin, origin) ==
783 CONTENT_SETTING_ALLOW; 760 CONTENT_SETTING_ALLOW;
784 } 761 }
785 762
786 void PushMessagingServiceImpl::SetProfileForTesting(Profile* profile) { 763 gcm::GCMDriver* PushMessagingServiceImpl::GetGCMDriver() const {
787 profile_ = profile; 764 gcm::GCMProfileService* gcm_profile_service =
788 profile_->GetHostContentSettingsMap()->AddObserver(this); 765 gcm::GCMProfileServiceFactory::GetForProfile(profile_);
766 CHECK(gcm_profile_service);
767 CHECK(gcm_profile_service->driver());
768 return gcm_profile_service->driver();
789 } 769 }
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