blob: d4cc94fb5e21df1a3d5f58a0c4810715659accab [file] [log] [blame]
// 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/string_util.h"
#include "base/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/extension_system.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/ui/browser_finder.h"
#include "chrome/common/extensions/extension_switch_utils.h"
#include "content/public/browser/web_contents.h"
#include "content/public/browser/web_contents_view.h"
#include "content/public/browser/web_ui.h"
#include "grit/generated_resources.h"
#include "net/base/net_util.h"
#include "ui/base/l10n/l10n_util.h"
#include "webkit/glue/webdropdata.h"
InstallExtensionHandler::InstallExtensionHandler() {
}
InstallExtensionHandler::~InstallExtensionHandler() {
}
void InstallExtensionHandler::GetLocalizedValues(
DictionaryValue* localized_strings) {
DCHECK(localized_strings);
localized_strings->SetString(
"extensionSettingsInstallDropTarget",
l10n_util::GetStringUTF16(IDS_EXTENSIONS_INSTALL_DROP_TARGET));
localized_strings->SetBoolean(
"offStoreInstallEnabled",
extensions::switch_utils::IsEasyOffStoreInstallEnabled());
}
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)));
}
void InstallExtensionHandler::HandleStartDragMessage(const ListValue* args) {
WebDropData* drop_data = web_ui()->GetWebContents()->GetView()->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;
}
file_to_install_ = FilePath::FromWStringHack(
UTF16ToWide(drop_data->filenames.front().path));
}
void InstallExtensionHandler::HandleStopDragMessage(const ListValue* args) {
file_to_install_.clear();
}
void InstallExtensionHandler::HandleInstallMessage(const ListValue* args) {
if (file_to_install_.empty()) {
LOG(ERROR) << "No file captured to install.";
return;
}
Browser* browser = browser::FindBrowserWithWebContents(
web_ui()->GetWebContents());
Profile* profile = browser->profile();
scoped_refptr<extensions::CrxInstaller> crx_installer(
extensions::CrxInstaller::Create(
extensions::ExtensionSystem::Get(profile)->extension_service(),
chrome::CreateExtensionInstallPromptWithBrowser(browser)));
crx_installer->set_error_on_unsupported_requirements(true);
crx_installer->set_off_store_install_allow_reason(
extensions::CrxInstaller::OffStoreInstallAllowedFromSettingsPage);
const bool kCaseSensitive = false;
// Have to use EndsWith() because FilePath::Extension() would return ".js" for
// "foo.user.js".
if (EndsWith(file_to_install_.BaseName().value(),
FILE_PATH_LITERAL(".user.js"),
kCaseSensitive)) {
crx_installer->InstallUserScript(
file_to_install_,
net::FilePathToFileURL(file_to_install_));
} else if (EndsWith(file_to_install_.BaseName().value(),
FILE_PATH_LITERAL(".crx"),
kCaseSensitive)) {
crx_installer->InstallCrx(file_to_install_);
} else {
CHECK(false);
}
file_to_install_.clear();
}