1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
|
// Copyright (c) 2010 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/dom_ui/plugins_ui.h"
#include <algorithm>
#include <string>
#include <vector>
#include "app/l10n_util.h"
#include "app/resource_bundle.h"
#include "base/message_loop.h"
#include "base/path_service.h"
#include "base/singleton.h"
#include "base/utf_string_conversions.h"
#include "base/values.h"
#include "chrome/browser/browser.h"
#include "chrome/browser/browser_thread.h"
#include "chrome/browser/browser_window.h"
#include "chrome/browser/dom_ui/chrome_url_data_manager.h"
#include "chrome/browser/plugin_updater.h"
#include "chrome/browser/prefs/pref_service.h"
#include "chrome/browser/profile.h"
#include "chrome/browser/tab_contents/tab_contents.h"
#include "chrome/common/chrome_paths.h"
#include "chrome/common/jstemplate_builder.h"
#include "chrome/common/notification_service.h"
#include "chrome/common/pepper_plugin_registry.h"
#include "chrome/common/pref_names.h"
#include "chrome/common/url_constants.h"
#include "grit/browser_resources.h"
#include "grit/generated_resources.h"
#include "grit/theme_resources.h"
#include "webkit/glue/plugins/plugin_list.h"
namespace {
///////////////////////////////////////////////////////////////////////////////
//
// PluginsHTMLSource
//
///////////////////////////////////////////////////////////////////////////////
class PluginsUIHTMLSource : public ChromeURLDataManager::DataSource {
public:
PluginsUIHTMLSource()
: DataSource(chrome::kChromeUIPluginsHost, MessageLoop::current()) {}
// Called when the network layer has requested a resource underneath
// the path we registered.
virtual void StartDataRequest(const std::string& path,
bool is_off_the_record,
int request_id);
virtual std::string GetMimeType(const std::string&) const {
return "text/html";
}
private:
~PluginsUIHTMLSource() {}
DISALLOW_COPY_AND_ASSIGN(PluginsUIHTMLSource);
};
void PluginsUIHTMLSource::StartDataRequest(const std::string& path,
bool is_off_the_record,
int request_id) {
// Strings used in the JsTemplate file.
DictionaryValue localized_strings;
localized_strings.SetString("pluginsTitle",
l10n_util::GetStringUTF16(IDS_PLUGINS_TITLE));
localized_strings.SetString("pluginsDetailsModeLink",
l10n_util::GetStringUTF16(IDS_PLUGINS_DETAILS_MODE_LINK));
localized_strings.SetString("pluginsNoneInstalled",
l10n_util::GetStringUTF16(IDS_PLUGINS_NONE_INSTALLED));
localized_strings.SetString("pluginDisabled",
l10n_util::GetStringUTF16(IDS_PLUGINS_DISABLED_PLUGIN));
localized_strings.SetString("pluginDisabledByPolicy",
l10n_util::GetStringUTF16(IDS_PLUGINS_DISABLED_BY_POLICY_PLUGIN));
localized_strings.SetString("pluginCannotBeEnabledDueToPolicy",
l10n_util::GetStringUTF16(IDS_PLUGINS_CANNOT_ENABLE_DUE_TO_POLICY));
localized_strings.SetString("pluginDownload",
l10n_util::GetStringUTF16(IDS_PLUGINS_DOWNLOAD));
localized_strings.SetString("pluginName",
l10n_util::GetStringUTF16(IDS_PLUGINS_NAME));
localized_strings.SetString("pluginPriority",
l10n_util::GetStringUTF16(IDS_PLUGINS_PRIORITY));
localized_strings.SetString("pluginVersion",
l10n_util::GetStringUTF16(IDS_PLUGINS_VERSION));
localized_strings.SetString("pluginDescription",
l10n_util::GetStringUTF16(IDS_PLUGINS_DESCRIPTION));
localized_strings.SetString("pluginPath",
l10n_util::GetStringUTF16(IDS_PLUGINS_PATH));
localized_strings.SetString("pluginMimeTypes",
l10n_util::GetStringUTF16(IDS_PLUGINS_MIME_TYPES));
localized_strings.SetString("pluginMimeTypesMimeType",
l10n_util::GetStringUTF16(IDS_PLUGINS_MIME_TYPES_MIME_TYPE));
localized_strings.SetString("pluginMimeTypesDescription",
l10n_util::GetStringUTF16(IDS_PLUGINS_MIME_TYPES_DESCRIPTION));
localized_strings.SetString("pluginMimeTypesFileExtensions",
l10n_util::GetStringUTF16(IDS_PLUGINS_MIME_TYPES_FILE_EXTENSIONS));
localized_strings.SetString("disable",
l10n_util::GetStringUTF16(IDS_PLUGINS_DISABLE));
localized_strings.SetString("enable",
l10n_util::GetStringUTF16(IDS_PLUGINS_ENABLE));
ChromeURLDataManager::DataSource::SetFontAndTextDirection(&localized_strings);
static const base::StringPiece plugins_html(
ResourceBundle::GetSharedInstance().GetRawDataResource(IDR_PLUGINS_HTML));
std::string full_html(plugins_html.data(), plugins_html.size());
jstemplate_builder::AppendJsonHtml(&localized_strings, &full_html);
jstemplate_builder::AppendI18nTemplateSourceHtml(&full_html);
jstemplate_builder::AppendI18nTemplateProcessHtml(&full_html);
jstemplate_builder::AppendJsTemplateSourceHtml(&full_html);
scoped_refptr<RefCountedBytes> html_bytes(new RefCountedBytes);
html_bytes->data.resize(full_html.size());
std::copy(full_html.begin(), full_html.end(), html_bytes->data.begin());
SendResponse(request_id, html_bytes);
}
////////////////////////////////////////////////////////////////////////////////
//
// PluginsDOMHandler
//
////////////////////////////////////////////////////////////////////////////////
// The handler for Javascript messages for the chrome://plugins/ page.
// TODO(viettrungluu): Make plugin list updates notify, and then observe
// changes; maybe replumb plugin list through plugin service?
// <http://crbug.com/39101>
class PluginsDOMHandler : public DOMMessageHandler,
public NotificationObserver {
public:
explicit PluginsDOMHandler();
virtual ~PluginsDOMHandler() {}
// DOMMessageHandler implementation.
virtual void RegisterMessages();
// Callback for the "requestPluginsData" message.
void HandleRequestPluginsData(const ListValue* args);
// Callback for the "enablePlugin" message.
void HandleEnablePluginMessage(const ListValue* args);
// Callback for the "showTermsOfService" message. This really just opens a new
// window with about:terms. Flash can't link directly to about:terms due to
// the security model.
void HandleShowTermsOfServiceMessage(const ListValue* args);
// NotificationObserver method overrides
void Observe(NotificationType type,
const NotificationSource& source,
const NotificationDetails& details);
private:
// This extra wrapper is used to ensure we don't leak the ListValue* pointer
// if the PluginsDOMHandler object goes away before the task on the UI thread
// to give it the plugin list runs.
struct ListWrapper {
ListValue* list;
};
// Loads the plugins on the FILE thread.
static void LoadPluginsOnFileThread(ListWrapper* wrapper, Task* task);
// Used in conjunction with ListWrapper to avoid any memory leaks.
static void EnsureListDeleted(ListWrapper* wrapper);
// Call this to start getting the plugins on the UI thread.
void LoadPlugins();
// Called on the UI thread when the plugin information is ready.
void PluginsLoaded(ListWrapper* wrapper);
NotificationRegistrar registrar_;
ScopedRunnableMethodFactory<PluginsDOMHandler> get_plugins_factory_;
DISALLOW_COPY_AND_ASSIGN(PluginsDOMHandler);
};
PluginsDOMHandler::PluginsDOMHandler()
: ALLOW_THIS_IN_INITIALIZER_LIST(get_plugins_factory_(this)) {
registrar_.Add(this,
NotificationType::PLUGIN_ENABLE_STATUS_CHANGED,
NotificationService::AllSources());
}
void PluginsDOMHandler::RegisterMessages() {
dom_ui_->RegisterMessageCallback("requestPluginsData",
NewCallback(this, &PluginsDOMHandler::HandleRequestPluginsData));
dom_ui_->RegisterMessageCallback("enablePlugin",
NewCallback(this, &PluginsDOMHandler::HandleEnablePluginMessage));
dom_ui_->RegisterMessageCallback("showTermsOfService",
NewCallback(this, &PluginsDOMHandler::HandleShowTermsOfServiceMessage));
}
void PluginsDOMHandler::HandleRequestPluginsData(const ListValue* args) {
LoadPlugins();
}
void PluginsDOMHandler::HandleEnablePluginMessage(const ListValue* args) {
// Be robust in accepting badness since plug-ins display HTML (hence
// JavaScript).
if (args->GetSize() != 3)
return;
std::string enable_str;
std::string is_group_str;
if (!args->GetString(1, &enable_str) || !args->GetString(2, &is_group_str))
return;
bool enable = enable_str == "true";
PluginUpdater* plugin_updater = PluginUpdater::GetPluginUpdater();
if (is_group_str == "true") {
string16 group_name;
if (!args->GetString(0, &group_name))
return;
plugin_updater->EnablePluginGroup(enable, group_name);
if (enable) {
// See http://crbug.com/50105 for background.
string16 reader8 = ASCIIToUTF16(PluginGroup::kAdobeReader8GroupName);
string16 reader9 = ASCIIToUTF16(PluginGroup::kAdobeReader9GroupName);
string16 internalpdf = ASCIIToUTF16(PepperPluginRegistry::kPDFPluginName);
if (group_name == reader8 || group_name == reader9) {
plugin_updater->EnablePluginGroup(false, internalpdf);
} else if (group_name == internalpdf) {
plugin_updater->EnablePluginGroup(false, reader8);
plugin_updater->EnablePluginGroup(false, reader9);
}
}
} else {
FilePath::StringType file_path;
if (!args->GetString(0, &file_path))
return;
plugin_updater->EnablePluginFile(enable, file_path);
}
// TODO(viettrungluu): We might also want to ensure that the plugins
// list is always written to prefs even when the user hasn't disabled a
// plugin. <http://crbug.com/39101>
plugin_updater->UpdatePreferences(dom_ui_->GetProfile(), 0);
}
void PluginsDOMHandler::HandleShowTermsOfServiceMessage(const ListValue* args) {
// Show it in a new browser window....
Browser* browser = Browser::Create(dom_ui_->GetProfile());
browser->OpenURL(GURL(chrome::kAboutTermsURL),
GURL(), NEW_FOREGROUND_TAB, PageTransition::LINK);
browser->window()->Show();
}
void PluginsDOMHandler::Observe(NotificationType type,
const NotificationSource& source,
const NotificationDetails& details) {
DCHECK_EQ(NotificationType::PLUGIN_ENABLE_STATUS_CHANGED, type.value);
LoadPlugins();
}
void PluginsDOMHandler::LoadPluginsOnFileThread(ListWrapper* wrapper,
Task* task) {
wrapper->list = PluginUpdater::GetPluginUpdater()->GetPluginGroupsData();
BrowserThread::PostTask(BrowserThread::UI, FROM_HERE, task);
BrowserThread::PostTask(
BrowserThread::UI,
FROM_HERE,
NewRunnableFunction(&PluginsDOMHandler::EnsureListDeleted, wrapper));
}
void PluginsDOMHandler::EnsureListDeleted(ListWrapper* wrapper) {
delete wrapper->list;
delete wrapper;
}
void PluginsDOMHandler::LoadPlugins() {
if (!get_plugins_factory_.empty())
return;
ListWrapper* wrapper = new ListWrapper;
wrapper->list = NULL;
Task* task = get_plugins_factory_.NewRunnableMethod(
&PluginsDOMHandler::PluginsLoaded, wrapper);
BrowserThread::PostTask(
BrowserThread::FILE,
FROM_HERE,
NewRunnableFunction(
&PluginsDOMHandler::LoadPluginsOnFileThread, wrapper, task));
}
void PluginsDOMHandler::PluginsLoaded(ListWrapper* wrapper) {
DictionaryValue results;
results.Set("plugins", wrapper->list);
wrapper->list = NULL; // So it doesn't get deleted.
dom_ui_->CallJavascriptFunction(L"returnPluginsData", results);
}
} // namespace
///////////////////////////////////////////////////////////////////////////////
//
// PluginsUI
//
///////////////////////////////////////////////////////////////////////////////
PluginsUI::PluginsUI(TabContents* contents) : DOMUI(contents) {
AddMessageHandler((new PluginsDOMHandler())->Attach(this));
PluginsUIHTMLSource* html_source = new PluginsUIHTMLSource();
// Set up the chrome://plugins/ source.
BrowserThread::PostTask(
BrowserThread::IO, FROM_HERE,
NewRunnableMethod(Singleton<ChromeURLDataManager>::get(),
&ChromeURLDataManager::AddDataSource,
make_scoped_refptr(html_source)));
}
// static
RefCountedMemory* PluginsUI::GetFaviconResourceBytes() {
return ResourceBundle::GetSharedInstance().
LoadDataResourceBytes(IDR_PLUGIN);
}
// static
void PluginsUI::RegisterUserPrefs(PrefService* prefs) {
FilePath internal_dir;
PathService::Get(chrome::DIR_INTERNAL_PLUGINS, &internal_dir);
prefs->RegisterFilePathPref(prefs::kPluginsLastInternalDirectory,
internal_dir);
prefs->RegisterListPref(prefs::kPluginsPluginsBlacklist);
prefs->RegisterListPref(prefs::kPluginsPluginsList);
prefs->RegisterBooleanPref(prefs::kPluginsEnabledInternalPDF, false);
}
|