OLD | NEW |
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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/renderer/notification_provider.h" | 5 #include "chrome/renderer/notification_provider.h" |
6 | 6 |
7 #include "base/string_util.h" | 7 #include "base/string_util.h" |
8 #include "base/task.h" | 8 #include "base/task.h" |
9 #include "chrome/common/render_messages.h" | 9 #include "chrome/common/render_messages.h" |
10 #include "chrome/common/render_messages_params.h" | 10 #include "chrome/common/render_messages_params.h" |
11 #include "chrome/common/url_constants.h" | 11 #include "chrome/common/url_constants.h" |
12 #include "chrome/renderer/render_thread.h" | 12 #include "chrome/renderer/render_thread.h" |
13 #include "chrome/renderer/render_view.h" | |
14 #include "third_party/WebKit/WebKit/chromium/public/WebDocument.h" | 13 #include "third_party/WebKit/WebKit/chromium/public/WebDocument.h" |
15 #include "third_party/WebKit/WebKit/chromium/public/WebFrame.h" | 14 #include "third_party/WebKit/WebKit/chromium/public/WebFrame.h" |
16 #include "third_party/WebKit/WebKit/chromium/public/WebNotificationPermissionCal
lback.h" | 15 #include "third_party/WebKit/WebKit/chromium/public/WebNotificationPermissionCal
lback.h" |
17 #include "third_party/WebKit/WebKit/chromium/public/WebURL.h" | 16 #include "third_party/WebKit/WebKit/chromium/public/WebURL.h" |
18 #include "third_party/WebKit/WebKit/chromium/public/WebView.h" | 17 #include "third_party/WebKit/WebKit/chromium/public/WebView.h" |
19 | 18 |
20 using WebKit::WebDocument; | 19 using WebKit::WebDocument; |
21 using WebKit::WebNotification; | 20 using WebKit::WebNotification; |
22 using WebKit::WebNotificationPresenter; | 21 using WebKit::WebNotificationPresenter; |
23 using WebKit::WebNotificationPermissionCallback; | 22 using WebKit::WebNotificationPermissionCallback; |
24 using WebKit::WebSecurityOrigin; | 23 using WebKit::WebSecurityOrigin; |
25 using WebKit::WebString; | 24 using WebKit::WebString; |
26 using WebKit::WebURL; | 25 using WebKit::WebURL; |
27 | 26 |
28 NotificationProvider::NotificationProvider(RenderView* view) | 27 NotificationProvider::NotificationProvider(RenderView* render_view) |
29 : view_(view) { | 28 : RenderView::Observer(render_view) { |
30 } | 29 } |
31 | 30 |
32 NotificationProvider::~NotificationProvider() { | 31 NotificationProvider::~NotificationProvider() { |
33 manager_.DetachAll(); | 32 manager_.DetachAll(); |
34 } | 33 } |
35 | 34 |
36 bool NotificationProvider::show(const WebNotification& notification) { | 35 bool NotificationProvider::show(const WebNotification& notification) { |
37 int notification_id = manager_.RegisterNotification(notification); | 36 int notification_id = manager_.RegisterNotification(notification); |
38 if (notification.isHTML()) | 37 if (notification.isHTML()) |
39 return ShowHTML(notification, notification_id); | 38 return ShowHTML(notification, notification_id); |
40 else | 39 else |
41 return ShowText(notification, notification_id); | 40 return ShowText(notification, notification_id); |
42 } | 41 } |
43 | 42 |
44 void NotificationProvider::cancel(const WebNotification& notification) { | 43 void NotificationProvider::cancel(const WebNotification& notification) { |
45 int id; | 44 int id; |
46 bool id_found = manager_.GetId(notification, id); | 45 bool id_found = manager_.GetId(notification, id); |
47 // Won't be found if the notification has already been closed by the user. | 46 // Won't be found if the notification has already been closed by the user. |
48 if (id_found) | 47 if (id_found) |
49 Send(new ViewHostMsg_CancelDesktopNotification(view_->routing_id(), id)); | 48 Send(new ViewHostMsg_CancelDesktopNotification(routing_id(), id)); |
50 } | 49 } |
51 | 50 |
52 void NotificationProvider::objectDestroyed( | 51 void NotificationProvider::objectDestroyed( |
53 const WebNotification& notification) { | 52 const WebNotification& notification) { |
54 int id; | 53 int id; |
55 bool id_found = manager_.GetId(notification, id); | 54 bool id_found = manager_.GetId(notification, id); |
56 // Won't be found if the notification has already been closed by the user. | 55 // Won't be found if the notification has already been closed by the user. |
57 if (id_found) | 56 if (id_found) |
58 manager_.UnregisterNotification(id); | 57 manager_.UnregisterNotification(id); |
59 } | 58 } |
60 | 59 |
61 WebNotificationPresenter::Permission NotificationProvider::checkPermission( | 60 WebNotificationPresenter::Permission NotificationProvider::checkPermission( |
62 const WebURL& url) { | 61 const WebURL& url) { |
63 int permission; | 62 int permission; |
64 Send(new ViewHostMsg_CheckNotificationPermission( | 63 Send(new ViewHostMsg_CheckNotificationPermission( |
65 view_->routing_id(), | 64 routing_id(), |
66 url, | 65 url, |
67 &permission)); | 66 &permission)); |
68 return static_cast<WebNotificationPresenter::Permission>(permission); | 67 return static_cast<WebNotificationPresenter::Permission>(permission); |
69 } | 68 } |
70 | 69 |
71 void NotificationProvider::requestPermission( | 70 void NotificationProvider::requestPermission( |
72 const WebSecurityOrigin& origin, | 71 const WebSecurityOrigin& origin, |
73 WebNotificationPermissionCallback* callback) { | 72 WebNotificationPermissionCallback* callback) { |
74 // We only request permission in response to a user gesture. | 73 // We only request permission in response to a user gesture. |
75 if (!view_->webview()->mainFrame()->isProcessingUserGesture()) | 74 if (!render_view()->webview()->mainFrame()->isProcessingUserGesture()) |
76 return; | 75 return; |
77 | 76 |
78 int id = manager_.RegisterPermissionRequest(callback); | 77 int id = manager_.RegisterPermissionRequest(callback); |
79 | 78 |
80 Send(new ViewHostMsg_RequestNotificationPermission(view_->routing_id(), | 79 Send(new ViewHostMsg_RequestNotificationPermission(routing_id(), |
81 GURL(origin.toString()), | 80 GURL(origin.toString()), |
82 id)); | 81 id)); |
83 } | 82 } |
84 | 83 |
85 bool NotificationProvider::OnMessageReceived(const IPC::Message& message) { | 84 bool NotificationProvider::OnMessageReceived(const IPC::Message& message) { |
86 bool handled = true; | 85 bool handled = true; |
87 IPC_BEGIN_MESSAGE_MAP(NotificationProvider, message) | 86 IPC_BEGIN_MESSAGE_MAP(NotificationProvider, message) |
88 IPC_MESSAGE_HANDLER(ViewMsg_PostDisplayToNotificationObject, OnDisplay); | 87 IPC_MESSAGE_HANDLER(ViewMsg_PostDisplayToNotificationObject, OnDisplay); |
89 IPC_MESSAGE_HANDLER(ViewMsg_PostErrorToNotificationObject, OnError); | 88 IPC_MESSAGE_HANDLER(ViewMsg_PostErrorToNotificationObject, OnError); |
90 IPC_MESSAGE_HANDLER(ViewMsg_PostCloseToNotificationObject, OnClose); | 89 IPC_MESSAGE_HANDLER(ViewMsg_PostCloseToNotificationObject, OnClose); |
91 IPC_MESSAGE_HANDLER(ViewMsg_PostClickToNotificationObject, OnClick); | 90 IPC_MESSAGE_HANDLER(ViewMsg_PostClickToNotificationObject, OnClick); |
92 IPC_MESSAGE_HANDLER(ViewMsg_PermissionRequestDone, | 91 IPC_MESSAGE_HANDLER(ViewMsg_PermissionRequestDone, |
93 OnPermissionRequestComplete); | 92 OnPermissionRequestComplete); |
94 IPC_MESSAGE_UNHANDLED(handled = false) | 93 IPC_MESSAGE_UNHANDLED(handled = false) |
95 IPC_END_MESSAGE_MAP() | 94 IPC_END_MESSAGE_MAP() |
| 95 |
| 96 if (message.type() == ViewMsg_Navigate::ID) |
| 97 OnNavigate(); // Don't want to swallow the message. |
| 98 |
96 return handled; | 99 return handled; |
97 } | 100 } |
98 | 101 |
99 void NotificationProvider::OnNavigate() { | |
100 manager_.Clear(); | |
101 } | |
102 | |
103 bool NotificationProvider::ShowHTML(const WebNotification& notification, | 102 bool NotificationProvider::ShowHTML(const WebNotification& notification, |
104 int id) { | 103 int id) { |
105 // Disallow HTML notifications from unwanted schemes. javascript: | 104 // Disallow HTML notifications from unwanted schemes. javascript: |
106 // in particular allows unwanted cross-domain access. | 105 // in particular allows unwanted cross-domain access. |
107 GURL url = notification.url(); | 106 GURL url = notification.url(); |
108 if (!url.SchemeIs(chrome::kHttpScheme) && | 107 if (!url.SchemeIs(chrome::kHttpScheme) && |
109 !url.SchemeIs(chrome::kHttpsScheme) && | 108 !url.SchemeIs(chrome::kHttpsScheme) && |
110 !url.SchemeIs(chrome::kExtensionScheme) && | 109 !url.SchemeIs(chrome::kExtensionScheme) && |
111 !url.SchemeIs(chrome::kDataScheme)) | 110 !url.SchemeIs(chrome::kDataScheme)) |
112 return false; | 111 return false; |
113 | 112 |
114 DCHECK(notification.isHTML()); | 113 DCHECK(notification.isHTML()); |
115 ViewHostMsg_ShowNotification_Params params; | 114 ViewHostMsg_ShowNotification_Params params; |
116 params.origin = GURL(view_->webview()->mainFrame()->url()).GetOrigin(); | 115 params.origin = |
| 116 GURL(render_view()->webview()->mainFrame()->url()).GetOrigin(); |
117 params.is_html = true; | 117 params.is_html = true; |
118 params.contents_url = notification.url(); | 118 params.contents_url = notification.url(); |
119 params.notification_id = id; | 119 params.notification_id = id; |
120 params.replace_id = notification.replaceId(); | 120 params.replace_id = notification.replaceId(); |
121 return Send(new ViewHostMsg_ShowDesktopNotification(view_->routing_id(), | 121 return Send(new ViewHostMsg_ShowDesktopNotification(routing_id(), params)); |
122 params)); | |
123 } | 122 } |
124 | 123 |
125 bool NotificationProvider::ShowText(const WebNotification& notification, | 124 bool NotificationProvider::ShowText(const WebNotification& notification, |
126 int id) { | 125 int id) { |
127 DCHECK(!notification.isHTML()); | 126 DCHECK(!notification.isHTML()); |
128 ViewHostMsg_ShowNotification_Params params; | 127 ViewHostMsg_ShowNotification_Params params; |
129 params.is_html = false; | 128 params.is_html = false; |
130 params.origin = GURL(view_->webview()->mainFrame()->url()).GetOrigin(); | 129 params.origin = GURL( |
| 130 render_view()->webview()->mainFrame()->url()).GetOrigin(); |
131 params.icon_url = notification.iconURL(); | 131 params.icon_url = notification.iconURL(); |
132 params.title = notification.title(); | 132 params.title = notification.title(); |
133 params.body = notification.body(); | 133 params.body = notification.body(); |
134 params.direction = notification.direction(); | 134 params.direction = notification.direction(); |
135 params.notification_id = id; | 135 params.notification_id = id; |
136 params.replace_id = notification.replaceId(); | 136 params.replace_id = notification.replaceId(); |
137 | 137 |
138 return Send(new ViewHostMsg_ShowDesktopNotification(view_->routing_id(), | 138 return Send(new ViewHostMsg_ShowDesktopNotification(routing_id(), params)); |
139 params)); | |
140 } | 139 } |
141 | 140 |
142 void NotificationProvider::OnDisplay(int id) { | 141 void NotificationProvider::OnDisplay(int id) { |
143 WebNotification notification; | 142 WebNotification notification; |
144 bool found = manager_.GetNotification(id, ¬ification); | 143 bool found = manager_.GetNotification(id, ¬ification); |
145 // |found| may be false if the WebNotification went out of scope in | 144 // |found| may be false if the WebNotification went out of scope in |
146 // the page before it was actually displayed to the user. | 145 // the page before it was actually displayed to the user. |
147 if (found) | 146 if (found) |
148 notification.dispatchDisplayEvent(); | 147 notification.dispatchDisplayEvent(); |
149 } | 148 } |
(...skipping 27 matching lines...) Expand all Loading... |
177 notification.dispatchClickEvent(); | 176 notification.dispatchClickEvent(); |
178 } | 177 } |
179 | 178 |
180 void NotificationProvider::OnPermissionRequestComplete(int id) { | 179 void NotificationProvider::OnPermissionRequestComplete(int id) { |
181 WebNotificationPermissionCallback* callback = manager_.GetCallback(id); | 180 WebNotificationPermissionCallback* callback = manager_.GetCallback(id); |
182 DCHECK(callback); | 181 DCHECK(callback); |
183 callback->permissionRequestComplete(); | 182 callback->permissionRequestComplete(); |
184 manager_.OnPermissionRequestComplete(id); | 183 manager_.OnPermissionRequestComplete(id); |
185 } | 184 } |
186 | 185 |
187 bool NotificationProvider::Send(IPC::Message* message) { | 186 void NotificationProvider::OnNavigate() { |
188 return RenderThread::current()->Send(message); | 187 manager_.Clear(); |
189 } | 188 } |
OLD | NEW |