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
|
// Copyright (c) 2012 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/ui/webui/extensions/install_extension_handler.h"
#include "base/bind.h"
#include "base/strings/string_util.h"
#include "base/strings/utf_string_conversions.h"
#include "chrome/browser/extensions/crx_installer.h"
#include "chrome/browser/extensions/extension_install_prompt.h"
#include "chrome/browser/extensions/extension_service.h"
#include "chrome/browser/extensions/unpacked_installer.h"
#include "chrome/browser/extensions/zipfile_installer.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/grit/generated_resources.h"
#include "content/public/browser/web_contents.h"
#include "content/public/browser/web_ui.h"
#include "content/public/browser/web_ui_data_source.h"
#include "content/public/common/drop_data.h"
#include "extensions/browser/extension_system.h"
#include "extensions/common/feature_switch.h"
#include "net/base/filename_util.h"
#include "ui/base/l10n/l10n_util.h"
namespace extensions {
InstallExtensionHandler::InstallExtensionHandler() {
}
InstallExtensionHandler::~InstallExtensionHandler() {
}
void InstallExtensionHandler::GetLocalizedValues(
content::WebUIDataSource* source) {
source->AddString(
"extensionSettingsInstallDropTarget",
l10n_util::GetStringUTF16(IDS_EXTENSIONS_INSTALL_DROP_TARGET));
source->AddBoolean(
"offStoreInstallEnabled",
FeatureSwitch::easy_off_store_install()->IsEnabled());
}
void InstallExtensionHandler::RegisterMessages() {
web_ui()->RegisterMessageCallback(
"startDrag",
base::Bind(&InstallExtensionHandler::HandleStartDragMessage,
base::Unretained(this)));
web_ui()->RegisterMessageCallback(
"stopDrag",
base::Bind(&InstallExtensionHandler::HandleStopDragMessage,
base::Unretained(this)));
web_ui()->RegisterMessageCallback(
"installDroppedFile",
base::Bind(&InstallExtensionHandler::HandleInstallMessage,
base::Unretained(this)));
web_ui()->RegisterMessageCallback(
"installDroppedDirectory",
base::Bind(&InstallExtensionHandler::HandleInstallDirectoryMessage,
base::Unretained(this)));
}
void InstallExtensionHandler::HandleStartDragMessage(
const base::ListValue* args) {
content::DropData* drop_data =
web_ui()->GetWebContents()->GetDropData();
if (!drop_data) {
DLOG(ERROR) << "No current drop data.";
return;
}
if (drop_data->filenames.empty()) {
DLOG(ERROR) << "Current drop data contains no files.";
return;
}
const ui::FileInfo& file_info = drop_data->filenames.front();
file_to_install_ = file_info.path;
// Use the display name if provided, for checking file names
// (.path is likely a random hash value in that case).
// TODO(dcheng): It would be nice to make this a FilePath too.
file_display_name_ = file_info.display_name.empty()
? file_info.path.AsUTF16Unsafe()
: file_info.display_name.AsUTF16Unsafe();
}
void InstallExtensionHandler::HandleStopDragMessage(
const base::ListValue* args) {
file_to_install_.clear();
file_display_name_.clear();
}
void InstallExtensionHandler::HandleInstallMessage(
const base::ListValue* args) {
if (file_to_install_.empty()) {
LOG(ERROR) << "No file captured to install.";
return;
}
Profile* profile = Profile::FromBrowserContext(
web_ui()->GetWebContents()->GetBrowserContext());
const bool kCaseSensitive = false;
if (EndsWith(
file_display_name_, base::ASCIIToUTF16(".zip"), kCaseSensitive)) {
ZipFileInstaller::Create(ExtensionSystem::Get(profile)->extension_service())
->LoadFromZipFile(file_to_install_);
} else {
scoped_ptr<ExtensionInstallPrompt> prompt(
new ExtensionInstallPrompt(web_ui()->GetWebContents()));
scoped_refptr<CrxInstaller> crx_installer(CrxInstaller::Create(
ExtensionSystem::Get(profile)->extension_service(), prompt.Pass()));
crx_installer->set_error_on_unsupported_requirements(true);
crx_installer->set_off_store_install_allow_reason(
CrxInstaller::OffStoreInstallAllowedFromSettingsPage);
crx_installer->set_install_immediately(true);
if (EndsWith(file_display_name_,
base::ASCIIToUTF16(".user.js"),
kCaseSensitive)) {
crx_installer->InstallUserScript(
file_to_install_, net::FilePathToFileURL(file_to_install_));
} else if (EndsWith(file_display_name_,
base::ASCIIToUTF16(".crx"),
kCaseSensitive)) {
crx_installer->InstallCrx(file_to_install_);
} else {
CHECK(false);
}
}
file_to_install_.clear();
file_display_name_.clear();
}
void InstallExtensionHandler::HandleInstallDirectoryMessage(
const base::ListValue* args) {
Profile* profile = Profile::FromBrowserContext(
web_ui()->GetWebContents()->GetBrowserContext());
UnpackedInstaller::Create(
ExtensionSystem::Get(profile)->
extension_service())->Load(file_to_install_);
}
} // namespace extensions
|