1 // Copyright 2012 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.
5 #include "content/renderer/web_ui_extension.h"
7 #include "base/memory/scoped_ptr.h"
8 #include "base/values.h"
9 #include "content/common/view_messages.h"
10 #include "content/public/common/bindings_policy.h"
11 #include "content/public/common/url_constants.h"
12 #include "content/public/renderer/render_thread.h"
13 #include "content/public/renderer/render_view.h"
14 #include "content/public/renderer/v8_value_converter.h"
15 #include "content/renderer/web_ui_extension_data.h"
16 #include "googleurl/src/gurl.h"
17 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDocument.h"
18 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFrame.h"
19 #include "third_party/WebKit/Source/WebKit/chromium/public/WebView.h"
20 #include "v8/include/v8.h"
24 static const char* const kWebUIExtensionName
= "v8/WebUI";
26 // Javascript that gets executed when the extension loads into all frames.
27 // Exposes two methods:
28 // - chrome.send: Used to send messages to the browser. Requires the message
29 // name as the first argument and can have an optional second argument that
30 // should be an array.
31 // - chrome.getVariableValue: Returns value for the input variable name if such
32 // a value was set by the browser. Else will return an empty string.
33 static const char* const kWebUIExtensionJS
=
37 "chrome.send = function(name, data) {"
38 " native function Send();"
41 "chrome.getVariableValue = function(name) {"
42 " native function GetVariableValue();"
43 " return GetVariableValue(name);"
46 class WebUIExtensionWrapper
: public v8::Extension
{
48 WebUIExtensionWrapper();
49 virtual ~WebUIExtensionWrapper();
51 virtual v8::Handle
<v8::FunctionTemplate
> GetNativeFunction(
52 v8::Handle
<v8::String
> name
) OVERRIDE
;
53 static v8::Handle
<v8::Value
> Send(const v8::Arguments
& args
);
54 static v8::Handle
<v8::Value
> GetVariableValue(const v8::Arguments
& args
);
57 static bool ShouldRespondToRequest(WebKit::WebFrame
** frame_ptr
,
58 RenderView
** render_view_ptr
);
60 DISALLOW_COPY_AND_ASSIGN(WebUIExtensionWrapper
);
63 WebUIExtensionWrapper::WebUIExtensionWrapper()
64 : v8::Extension(kWebUIExtensionName
, kWebUIExtensionJS
) {}
66 WebUIExtensionWrapper::~WebUIExtensionWrapper() {}
68 v8::Handle
<v8::FunctionTemplate
> WebUIExtensionWrapper::GetNativeFunction(
69 v8::Handle
<v8::String
> name
) {
70 if (name
->Equals(v8::String::New("Send")))
71 return v8::FunctionTemplate::New(Send
);
72 if (name
->Equals(v8::String::New("GetVariableValue")))
73 return v8::FunctionTemplate::New(GetVariableValue
);
74 return v8::Handle
<v8::FunctionTemplate
>();
78 bool WebUIExtensionWrapper::ShouldRespondToRequest(
79 WebKit::WebFrame
** frame_ptr
,
80 RenderView
** render_view_ptr
) {
81 WebKit::WebFrame
* frame
= WebKit::WebFrame::frameForCurrentContext();
82 if (!frame
|| !frame
->view())
85 RenderView
* render_view
= RenderView::FromWebView(frame
->view());
89 GURL frame_url
= frame
->document().url();
92 (render_view
->GetEnabledBindings() & BINDINGS_POLICY_WEB_UI
) &&
93 (frame_url
.SchemeIs(chrome::kChromeUIScheme
) ||
94 frame_url
.SchemeIs(chrome::kDataScheme
));
100 *render_view_ptr
= render_view
;
105 v8::Handle
<v8::Value
> WebUIExtensionWrapper::Send(const v8::Arguments
& args
) {
106 WebKit::WebFrame
* frame
;
107 RenderView
* render_view
;
108 if (!ShouldRespondToRequest(&frame
, &render_view
))
109 return v8::Undefined();
111 // We expect at least two parameters - a string message identifier, and
112 // an object parameter. The object param can be undefined.
113 if (args
.Length() != 2 || !args
[0]->IsString())
114 return v8::Undefined();
116 const std::string message
= *v8::String::Utf8Value(args
[0]->ToString());
118 // If they've provided an optional message parameter, convert that into a
119 // Value to send to the browser process.
120 scoped_ptr
<ListValue
> content
;
121 if (args
[1]->IsUndefined()) {
122 content
.reset(new ListValue());
124 if (!args
[1]->IsObject())
125 return v8::Undefined();
127 scoped_ptr
<V8ValueConverter
> converter(V8ValueConverter::create());
129 base::Value
* value
= converter
->FromV8Value(
130 args
[1], frame
->mainWorldScriptContext());
131 base::ListValue
* list
= NULL
;
132 value
->GetAsList(&list
);
137 // Send the message up to the browser.
138 render_view
->Send(new ViewHostMsg_WebUISend(render_view
->GetRoutingID(),
139 frame
->document().url(),
142 return v8::Undefined();
146 v8::Handle
<v8::Value
> WebUIExtensionWrapper::GetVariableValue(
147 const v8::Arguments
& args
) {
148 WebKit::WebFrame
* frame
;
149 RenderView
* render_view
;
150 if (!ShouldRespondToRequest(&frame
, &render_view
))
151 return v8::Undefined();
153 if (!args
.Length() || !args
[0]->IsString())
154 return v8::Undefined();
156 std::string key
= *v8::String::Utf8Value(args
[0]->ToString());
157 std::string value
= WebUIExtensionData::Get(render_view
)->GetValue(key
);
158 return v8::String::New(value
.c_str(), value
.length());
162 v8::Extension
* WebUIExtension::Get() {
163 return new WebUIExtensionWrapper();
166 } // namespace content