OLD | NEW |
---|---|
(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 |done_callback| on the UI thread. | |
Michael van Ouwerkerk
2014/12/08 15:13:42
s/|done_callback|/|callback|/
Peter Beverloo
2014/12/08 17:27:08
Done.
| |
24 void NotificationClickEventFinished( | |
25 const NotificationClickDispatchCompleteCallback& 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(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 DispatchNotificationClickEvent( | |
61 const std::string& notification_id, | |
62 const ShowDesktopNotificationHostMsgParams& notification_data, | |
63 const NotificationClickDispatchCompleteCallback& 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 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(callback, status)); | |
Michael van Ouwerkerk
2014/12/08 15:13:42
Nit: there are multiple callbacks in this function
Peter Beverloo
2014/12/08 17:27:07
Done.
| |
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& 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(&DispatchNotificationClickEvent, | |
122 notification_id, | |
123 notification_data, | |
124 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( | |
Michael van Ouwerkerk
2014/12/08 15:13:42
Nit: this has the same name as a function in an an
Peter Beverloo
2014/12/08 17:27:07
Done.
| |
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& callback) { | |
151 DCHECK_CURRENTLY_ON(BrowserThread::UI); | |
152 | |
153 StoragePartition* partition = | |
154 BrowserContext::GetStoragePartitionForSite(browser_context, origin); | |
155 scoped_refptr<ServiceWorkerContextWrapper> service_worker_context = | |
156 static_cast<ServiceWorkerContextWrapper*>( | |
157 partition->GetServiceWorkerContext()); | |
158 BrowserThread::PostTask( | |
159 BrowserThread::IO, | |
160 FROM_HERE, | |
161 base::Bind(&FindServiceWorkerRegistration, | |
162 origin, | |
163 service_worker_registration_id, | |
164 notification_id, | |
165 notification_data, | |
166 callback, | |
167 service_worker_context)); | |
168 } | |
169 | |
170 } // namespace content | |
OLD | NEW |