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

Side by Side Diff: content/browser/notifications/notification_event_dispatcher_impl.cc

Issue 728763003: Introduce a //content/ API for dispatching notificationclick events. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years 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
(Empty)
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
3 // found in the LICENSE file.
4
5 #include "content/browser/notifications/notification_event_dispatcher_impl.h"
6
7 #include "base/callback.h"
8 #include "content/browser/service_worker/service_worker_context_wrapper.h"
9 #include "content/browser/service_worker/service_worker_registration.h"
10 #include "content/browser/service_worker/service_worker_storage.h"
11 #include "content/public/browser/browser_context.h"
12 #include "content/public/browser/browser_thread.h"
13 #include "content/public/browser/storage_partition.h"
14 #include "content/public/common/show_desktop_notification_params.h"
15
16 namespace content {
17 namespace {
18
19 using NotificationClickDispatchCompleteCallback =
20 NotificationEventDispatcher::NotificationClickDispatchCompleteCallback;
21
22 // To be called when the notificationclick event has finished executing. Will
23 // post a task to call |dispatch_complete_callback| on the UI thread.
24 void NotificationClickEventFinished(
25 const NotificationClickDispatchCompleteCallback& dispatch_complete_callback,
26 const scoped_refptr<ServiceWorkerRegistration>& service_worker_registration,
27 ServiceWorkerStatusCode service_worker_status) {
28 DCHECK_CURRENTLY_ON(BrowserThread::IO);
29
30 PersistentNotificationStatus status = PERSISTENT_NOTIFICATION_STATUS_SUCCESS;
31 switch (service_worker_status) {
32 case SERVICE_WORKER_OK:
33 // Success status was initialized above.
34 break;
35 case SERVICE_WORKER_ERROR_EVENT_WAITUNTIL_REJECTED:
36 status = PERSISTENT_NOTIFICATION_STATUS_EVENT_WAITUNTIL_REJECTED;
37 break;
38 case SERVICE_WORKER_ERROR_FAILED:
39 case SERVICE_WORKER_ERROR_ABORT:
40 case SERVICE_WORKER_ERROR_START_WORKER_FAILED:
41 case SERVICE_WORKER_ERROR_PROCESS_NOT_FOUND:
42 case SERVICE_WORKER_ERROR_NOT_FOUND:
43 case SERVICE_WORKER_ERROR_EXISTS:
44 case SERVICE_WORKER_ERROR_INSTALL_WORKER_FAILED:
45 case SERVICE_WORKER_ERROR_ACTIVATE_WORKER_FAILED:
46 case SERVICE_WORKER_ERROR_IPC_FAILED:
47 case SERVICE_WORKER_ERROR_NETWORK:
48 case SERVICE_WORKER_ERROR_SECURITY:
49 status = PERSISTENT_NOTIFICATION_STATUS_SERVICE_WORKER_ERROR;
50 break;
51 }
52
53 BrowserThread::PostTask(BrowserThread::UI,
54 FROM_HERE,
55 base::Bind(dispatch_complete_callback, status));
56 }
57
58 // Dispatches the notificationclick on |service_worker_registration| if the
59 // registration was available. Must be called on the IO thread.
60 void DispatchNotificationClickEventOnRegistration(
61 const std::string& notification_id,
62 const ShowDesktopNotificationHostMsgParams& notification_data,
63 const NotificationClickDispatchCompleteCallback& dispatch_complete_callback,
64 ServiceWorkerStatusCode service_worker_status,
65 const scoped_refptr<ServiceWorkerRegistration>&
66 service_worker_registration) {
67 DCHECK_CURRENTLY_ON(BrowserThread::IO);
68 if (service_worker_status == SERVICE_WORKER_OK) {
69 base::Callback<void(ServiceWorkerStatusCode)> dispatch_event_callback =
70 base::Bind(&NotificationClickEventFinished,
71 dispatch_complete_callback,
72 service_worker_registration);
73 service_worker_registration->active_version()
74 ->DispatchNotificationClickEvent(dispatch_event_callback,
75 notification_id,
76 notification_data);
77 return;
78 }
79
80 PersistentNotificationStatus status = PERSISTENT_NOTIFICATION_STATUS_SUCCESS;
81 switch (service_worker_status) {
82 case SERVICE_WORKER_ERROR_NOT_FOUND:
83 status = PERSISTENT_NOTIFICATION_STATUS_NO_SERVICE_WORKER;
84 break;
85 case SERVICE_WORKER_ERROR_FAILED:
86 case SERVICE_WORKER_ERROR_ABORT:
87 case SERVICE_WORKER_ERROR_START_WORKER_FAILED:
88 case SERVICE_WORKER_ERROR_PROCESS_NOT_FOUND:
89 case SERVICE_WORKER_ERROR_EXISTS:
90 case SERVICE_WORKER_ERROR_INSTALL_WORKER_FAILED:
91 case SERVICE_WORKER_ERROR_ACTIVATE_WORKER_FAILED:
92 case SERVICE_WORKER_ERROR_IPC_FAILED:
93 case SERVICE_WORKER_ERROR_NETWORK:
94 case SERVICE_WORKER_ERROR_SECURITY:
95 case SERVICE_WORKER_ERROR_EVENT_WAITUNTIL_REJECTED:
96 status = PERSISTENT_NOTIFICATION_STATUS_SERVICE_WORKER_ERROR;
97 break;
98 case SERVICE_WORKER_OK:
99 NOTREACHED();
100 break;
101 }
102
103 BrowserThread::PostTask(BrowserThread::UI,
104 FROM_HERE,
105 base::Bind(dispatch_complete_callback, status));
106 }
107
108 // Finds the ServiceWorkerRegistration associated with the |origin| and
109 // |service_worker_registration_id|. Must be called on the IO thread.
110 void FindServiceWorkerRegistration(
111 const GURL& origin,
112 int64 service_worker_registration_id,
113 const std::string& notification_id,
114 const ShowDesktopNotificationHostMsgParams& notification_data,
115 const NotificationClickDispatchCompleteCallback& dispatch_complete_callback,
116 scoped_refptr<ServiceWorkerContextWrapper> service_worker_context) {
117 DCHECK_CURRENTLY_ON(BrowserThread::IO);
118 service_worker_context->context()->storage()->FindRegistrationForId(
119 service_worker_registration_id,
120 origin,
121 base::Bind(&DispatchNotificationClickEventOnRegistration,
122 notification_id,
123 notification_data,
124 dispatch_complete_callback));
125 }
126
127 } // namespace
128
129 // static
130 NotificationEventDispatcher* NotificationEventDispatcher::GetInstance() {
131 return NotificationEventDispatcherImpl::GetInstance();
132 }
133
134 NotificationEventDispatcherImpl*
135 NotificationEventDispatcherImpl::GetInstance() {
136 DCHECK_CURRENTLY_ON(BrowserThread::UI);
137 return Singleton<NotificationEventDispatcherImpl>::get();
138 }
139
140 NotificationEventDispatcherImpl::NotificationEventDispatcherImpl() {}
141
142 NotificationEventDispatcherImpl::~NotificationEventDispatcherImpl() {}
143
144 void NotificationEventDispatcherImpl::DispatchNotificationClickEvent(
145 BrowserContext* browser_context,
146 const GURL& origin,
147 int64 service_worker_registration_id,
148 const std::string& notification_id,
149 const ShowDesktopNotificationHostMsgParams& notification_data,
150 const NotificationClickDispatchCompleteCallback&
151 dispatch_complete_callback) {
152 DCHECK_CURRENTLY_ON(BrowserThread::UI);
153
154 StoragePartition* partition =
155 BrowserContext::GetStoragePartitionForSite(browser_context, origin);
156 scoped_refptr<ServiceWorkerContextWrapper> service_worker_context =
157 static_cast<ServiceWorkerContextWrapper*>(
158 partition->GetServiceWorkerContext());
159 BrowserThread::PostTask(
160 BrowserThread::IO,
161 FROM_HERE,
162 base::Bind(&FindServiceWorkerRegistration,
163 origin,
164 service_worker_registration_id,
165 notification_id,
166 notification_data,
167 dispatch_complete_callback,
168 service_worker_context));
169 }
170
171 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698