blob: 3bb63dbd3401d16eee7a566b28be23284d066269 [file] [log] [blame]
// Copyright (c) 2013 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/app_launcher_page_ui.h"
#include <memory>
#include <string>
#include "base/memory/ref_counted_memory.h"
#include "base/metrics/histogram_macros.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/ui/webui/app_launcher_login_handler.h"
#include "chrome/browser/ui/webui/metrics_handler.h"
#include "chrome/browser/ui/webui/ntp/app_icon_webui_handler.h"
#include "chrome/browser/ui/webui/ntp/app_launcher_handler.h"
#include "chrome/browser/ui/webui/ntp/app_resource_cache_factory.h"
#include "chrome/browser/ui/webui/ntp/core_app_launcher_handler.h"
#include "chrome/browser/ui/webui/ntp/ntp_resource_cache.h"
#include "chrome/browser/ui/webui/theme_handler.h"
#include "chrome/common/url_constants.h"
#include "chrome/grit/generated_resources.h"
#include "chrome/grit/theme_resources.h"
#include "content/public/browser/browser_thread.h"
#include "content/public/browser/render_frame_host.h"
#include "content/public/browser/render_process_host.h"
#include "content/public/browser/web_contents.h"
#include "content/public/browser/web_ui.h"
#include "extensions/browser/extension_system.h"
#include "ui/base/l10n/l10n_util.h"
#include "ui/base/resource/resource_bundle.h"
using content::BrowserThread;
///////////////////////////////////////////////////////////////////////////////
// AppLauncherPageUI
AppLauncherPageUI::AppLauncherPageUI(content::WebUI* web_ui)
: content::WebUIController(web_ui) {
web_ui->OverrideTitle(l10n_util::GetStringUTF16(IDS_APP_LAUNCHER_TAB_TITLE));
if (!GetProfile()->IsOffTheRecord()) {
extensions::ExtensionService* service =
extensions::ExtensionSystem::Get(GetProfile())->extension_service();
// We should not be launched without an ExtensionService.
DCHECK(service);
web_ui->AddMessageHandler(std::make_unique<AppLauncherHandler>(service));
web_ui->AddMessageHandler(std::make_unique<CoreAppLauncherHandler>());
web_ui->AddMessageHandler(std::make_unique<AppIconWebUIHandler>());
web_ui->AddMessageHandler(std::make_unique<MetricsHandler>());
}
// The theme handler can require some CPU, so do it after hooking up the most
// visited handler. This allows the DB query for the new tab thumbs to happen
// earlier.
web_ui->AddMessageHandler(std::make_unique<ThemeHandler>());
content::URLDataSource::Add(
GetProfile(),
std::make_unique<HTMLSource>(GetProfile()->GetOriginalProfile()));
}
AppLauncherPageUI::~AppLauncherPageUI() {
}
// static
base::RefCountedMemory* AppLauncherPageUI::GetFaviconResourceBytes(
ui::ScaleFactor scale_factor) {
return ui::ResourceBundle::GetSharedInstance().
LoadDataResourceBytesForScale(IDR_BOOKMARK_BAR_APPS_SHORTCUT,
scale_factor);
}
bool AppLauncherPageUI::OverrideHandleWebUIMessage(
const GURL& source_url,
const std::string& message,
const base::ListValue& args) {
if (message == "getApps" &&
AppLauncherLoginHandler::ShouldShow(GetProfile())) {
web_ui()->AddMessageHandler(std::make_unique<AppLauncherLoginHandler>());
}
return false;
}
Profile* AppLauncherPageUI::GetProfile() const {
return Profile::FromWebUI(web_ui());
}
///////////////////////////////////////////////////////////////////////////////
// HTMLSource
AppLauncherPageUI::HTMLSource::HTMLSource(Profile* profile)
: profile_(profile) {
}
std::string AppLauncherPageUI::HTMLSource::GetSource() const {
return chrome::kChromeUIAppLauncherPageHost;
}
void AppLauncherPageUI::HTMLSource::StartDataRequest(
const std::string& path,
const content::ResourceRequestInfo::WebContentsGetter& wc_getter,
const content::URLDataSource::GotDataCallback& callback) {
DCHECK_CURRENTLY_ON(BrowserThread::UI);
NTPResourceCache* resource = AppResourceCacheFactory::GetForProfile(profile_);
content::WebContents* web_contents = wc_getter.Run();
content::RenderProcessHost* render_host =
web_contents ? web_contents->GetMainFrame()->GetProcess() : nullptr;
NTPResourceCache::WindowType win_type = NTPResourceCache::GetWindowType(
profile_, render_host);
scoped_refptr<base::RefCountedMemory> html_bytes(
resource->GetNewTabHTML(win_type));
callback.Run(html_bytes.get());
}
std::string AppLauncherPageUI::HTMLSource::GetMimeType(
const std::string& resource) const {
return "text/html";
}
bool AppLauncherPageUI::HTMLSource::ShouldReplaceExistingSource() const {
return false;
}
bool AppLauncherPageUI::HTMLSource::AllowCaching() const {
// Should not be cached to reflect dynamically-generated contents that may
// depend on user profiles.
return false;
}
std::string AppLauncherPageUI::HTMLSource::GetContentSecurityPolicyScriptSrc()
const {
// 'unsafe-inline' is added to script-src.
return "script-src chrome://resources 'self' 'unsafe-eval' 'unsafe-inline';";
}
std::string AppLauncherPageUI::HTMLSource::GetContentSecurityPolicyStyleSrc()
const {
return "style-src 'self' chrome://resources chrome://theme 'unsafe-inline';";
}
std::string AppLauncherPageUI::HTMLSource::GetContentSecurityPolicyImgSrc()
const {
return "img-src chrome://extension-icon chrome://theme chrome://resources "
"data:;";
}
AppLauncherPageUI::HTMLSource::~HTMLSource() {}