2013-09-03 18:43:31 +02:00
|
|
|
// Copyright (c) 2013 The Chromium Embedded Framework 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 "libcef/browser/request_context_impl.h"
|
2015-02-14 00:17:08 +01:00
|
|
|
#include "libcef/browser/browser_context_impl.h"
|
2013-09-03 18:43:31 +02:00
|
|
|
#include "libcef/browser/browser_context_proxy.h"
|
|
|
|
#include "libcef/browser/content_browser_client.h"
|
|
|
|
#include "libcef/browser/context.h"
|
2015-03-02 21:25:14 +01:00
|
|
|
#include "libcef/browser/cookie_manager_impl.h"
|
2013-09-03 18:43:31 +02:00
|
|
|
#include "libcef/browser/thread_util.h"
|
2015-10-03 01:03:16 +02:00
|
|
|
#include "libcef/common/values_impl.h"
|
2015-09-25 13:59:30 +02:00
|
|
|
|
2013-09-03 18:43:31 +02:00
|
|
|
#include "base/atomic_sequence_num.h"
|
|
|
|
#include "base/logging.h"
|
2015-10-03 01:03:16 +02:00
|
|
|
#include "base/strings/stringprintf.h"
|
2016-02-05 01:49:19 +01:00
|
|
|
#include "components/prefs/pref_service.h"
|
2015-09-25 13:59:30 +02:00
|
|
|
#include "content/public/browser/plugin_service.h"
|
2016-02-23 20:29:18 +01:00
|
|
|
#include "content/public/browser/ssl_host_state_delegate.h"
|
|
|
|
#include "net/http/http_cache.h"
|
|
|
|
#include "net/http/http_transaction_factory.h"
|
2013-09-03 18:43:31 +02:00
|
|
|
|
2015-03-02 21:25:14 +01:00
|
|
|
using content::BrowserThread;
|
|
|
|
|
2013-09-03 18:43:31 +02:00
|
|
|
namespace {
|
|
|
|
|
|
|
|
base::StaticAtomicSequenceNumber g_next_id;
|
|
|
|
|
2015-10-03 01:03:16 +02:00
|
|
|
const char* GetTypeString(base::Value::Type type) {
|
|
|
|
switch (type) {
|
2017-01-23 18:36:54 +01:00
|
|
|
case base::Value::Type::NONE:
|
2015-10-03 01:03:16 +02:00
|
|
|
return "NULL";
|
2017-01-23 18:36:54 +01:00
|
|
|
case base::Value::Type::BOOLEAN:
|
2015-10-03 01:03:16 +02:00
|
|
|
return "BOOLEAN";
|
2017-01-23 18:36:54 +01:00
|
|
|
case base::Value::Type::INTEGER:
|
2015-10-03 01:03:16 +02:00
|
|
|
return "INTEGER";
|
2017-01-23 18:36:54 +01:00
|
|
|
case base::Value::Type::DOUBLE:
|
2015-10-03 01:03:16 +02:00
|
|
|
return "DOUBLE";
|
2017-01-23 18:36:54 +01:00
|
|
|
case base::Value::Type::STRING:
|
2015-10-03 01:03:16 +02:00
|
|
|
return "STRING";
|
2017-01-23 18:36:54 +01:00
|
|
|
case base::Value::Type::BINARY:
|
2015-10-03 01:03:16 +02:00
|
|
|
return "BINARY";
|
2017-01-23 18:36:54 +01:00
|
|
|
case base::Value::Type::DICTIONARY:
|
2015-10-03 01:03:16 +02:00
|
|
|
return "DICTIONARY";
|
2017-01-23 18:36:54 +01:00
|
|
|
case base::Value::Type::LIST:
|
2015-10-03 01:03:16 +02:00
|
|
|
return "LIST";
|
|
|
|
}
|
|
|
|
|
|
|
|
NOTREACHED();
|
|
|
|
return "UNKNOWN";
|
|
|
|
}
|
|
|
|
|
2016-02-24 00:27:05 +01:00
|
|
|
// Helper for HostResolver::Resolve.
|
|
|
|
struct ResolveHostHelper {
|
|
|
|
explicit ResolveHostHelper(CefRefPtr<CefResolveCallback> callback)
|
|
|
|
: callback_(callback) {
|
|
|
|
}
|
|
|
|
|
|
|
|
void OnResolveCompleted(int result) {
|
|
|
|
std::vector<CefString> resolved_ips;
|
|
|
|
|
|
|
|
net::AddressList::const_iterator iter = address_list_.begin();
|
|
|
|
for (; iter != address_list_.end(); ++iter)
|
|
|
|
resolved_ips.push_back(iter->ToStringWithoutPort());
|
|
|
|
|
|
|
|
CEF_POST_TASK(CEF_UIT,
|
2017-02-14 23:27:19 +01:00
|
|
|
base::Bind(&CefResolveCallback::OnResolveCompleted, callback_,
|
2016-02-24 00:27:05 +01:00
|
|
|
static_cast<cef_errorcode_t>(result), resolved_ips));
|
|
|
|
|
|
|
|
delete this;
|
|
|
|
}
|
|
|
|
|
|
|
|
CefRefPtr<CefResolveCallback> callback_;
|
|
|
|
net::AddressList address_list_;
|
2016-08-31 13:25:56 +02:00
|
|
|
std::unique_ptr<net::HostResolver::Request> request_;
|
2016-02-24 00:27:05 +01:00
|
|
|
};
|
|
|
|
|
2013-09-03 18:43:31 +02:00
|
|
|
} // namespace
|
|
|
|
|
|
|
|
|
2015-03-02 21:25:14 +01:00
|
|
|
// CefBrowserContext
|
|
|
|
|
|
|
|
// static
|
2013-09-03 18:43:31 +02:00
|
|
|
CefRefPtr<CefRequestContext> CefRequestContext::GetGlobalContext() {
|
|
|
|
// Verify that the context is in a valid state.
|
|
|
|
if (!CONTEXT_STATE_VALID()) {
|
|
|
|
NOTREACHED() << "context not valid";
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2017-02-14 23:27:19 +01:00
|
|
|
CefRequestContextImpl::Config config;
|
|
|
|
config.is_global = true;
|
|
|
|
return new CefRequestContextImpl(config);
|
2013-09-03 18:43:31 +02:00
|
|
|
}
|
|
|
|
|
2015-03-02 21:25:14 +01:00
|
|
|
// static
|
2013-09-03 18:43:31 +02:00
|
|
|
CefRefPtr<CefRequestContext> CefRequestContext::CreateContext(
|
2015-03-02 21:25:14 +01:00
|
|
|
const CefRequestContextSettings& settings,
|
|
|
|
CefRefPtr<CefRequestContextHandler> handler) {
|
2013-09-03 18:43:31 +02:00
|
|
|
// Verify that the context is in a valid state.
|
|
|
|
if (!CONTEXT_STATE_VALID()) {
|
|
|
|
NOTREACHED() << "context not valid";
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2017-02-14 23:27:19 +01:00
|
|
|
CefRequestContextImpl::Config config;
|
|
|
|
config.settings = settings;
|
|
|
|
config.handler = handler;
|
|
|
|
config.unique_id = g_next_id.GetNext();
|
|
|
|
return new CefRequestContextImpl(config);
|
2013-09-03 18:43:31 +02:00
|
|
|
}
|
|
|
|
|
2015-03-02 21:25:14 +01:00
|
|
|
// static
|
|
|
|
CefRefPtr<CefRequestContext> CefRequestContext::CreateContext(
|
|
|
|
CefRefPtr<CefRequestContext> other,
|
|
|
|
CefRefPtr<CefRequestContextHandler> handler) {
|
|
|
|
// Verify that the context is in a valid state.
|
|
|
|
if (!CONTEXT_STATE_VALID()) {
|
|
|
|
NOTREACHED() << "context not valid";
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!other.get())
|
|
|
|
return NULL;
|
|
|
|
|
2017-02-14 23:27:19 +01:00
|
|
|
CefRequestContextImpl::Config config;
|
|
|
|
config.other = static_cast<CefRequestContextImpl*>(other.get());
|
|
|
|
config.handler = handler;
|
|
|
|
config.unique_id = g_next_id.GetNext();
|
|
|
|
return new CefRequestContextImpl(config);
|
2015-03-02 21:25:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-02-14 23:27:19 +01:00
|
|
|
// CefRequestContextImpl
|
2013-09-03 18:43:31 +02:00
|
|
|
|
2015-03-02 21:25:14 +01:00
|
|
|
CefRequestContextImpl::~CefRequestContextImpl() {
|
2017-02-14 23:27:19 +01:00
|
|
|
// Delete the proxy first because it also references |browser_context_impl_|.
|
|
|
|
if (browser_context_proxy_)
|
|
|
|
browser_context_proxy_.reset(nullptr);
|
|
|
|
|
|
|
|
if (browser_context_impl_) {
|
|
|
|
// May result in |browser_context_impl_| being deleted if it's not the
|
|
|
|
// global context and no other CefRequestContextImpl are referencing it.
|
|
|
|
browser_context_impl_->RemoveRequestContext();
|
|
|
|
}
|
2013-09-03 18:43:31 +02:00
|
|
|
}
|
|
|
|
|
2015-03-02 21:25:14 +01:00
|
|
|
// static
|
2017-02-14 23:27:19 +01:00
|
|
|
CefRefPtr<CefRequestContextImpl>
|
|
|
|
CefRequestContextImpl::GetOrCreateForRequestContext(
|
2015-03-02 21:25:14 +01:00
|
|
|
CefRefPtr<CefRequestContext> request_context) {
|
|
|
|
if (request_context.get()) {
|
|
|
|
// Use the context from the provided CefRequestContext.
|
|
|
|
return static_cast<CefRequestContextImpl*>(request_context.get());
|
|
|
|
}
|
|
|
|
|
|
|
|
// Use the global context.
|
2017-02-14 23:27:19 +01:00
|
|
|
CefRequestContextImpl::Config config;
|
|
|
|
config.is_global = true;
|
|
|
|
return new CefRequestContextImpl(config);
|
2013-09-03 18:43:31 +02:00
|
|
|
}
|
|
|
|
|
2015-03-02 21:25:14 +01:00
|
|
|
// static
|
2017-02-14 23:27:19 +01:00
|
|
|
CefRefPtr<CefRequestContextImpl> CefRequestContextImpl::CreateForBrowserContext(
|
|
|
|
CefBrowserContext* browser_context) {
|
|
|
|
DCHECK(browser_context);
|
|
|
|
CefRequestContextImpl::Config config;
|
|
|
|
config.handler = browser_context->GetHandler();
|
|
|
|
CefRefPtr<CefRequestContextImpl> impl = new CefRequestContextImpl(config);
|
|
|
|
// Force immediate initialization because it's not safe to keep a raw pointer
|
|
|
|
// to |browser_context|.
|
|
|
|
impl->Initialize(browser_context);
|
|
|
|
return impl;
|
|
|
|
}
|
|
|
|
|
|
|
|
CefBrowserContext* CefRequestContextImpl::GetBrowserContext() {
|
|
|
|
EnsureBrowserContext();
|
|
|
|
return browser_context();
|
2013-09-03 18:43:31 +02:00
|
|
|
}
|
|
|
|
|
2015-03-02 21:25:14 +01:00
|
|
|
void CefRequestContextImpl::GetBrowserContext(
|
|
|
|
scoped_refptr<base::SingleThreadTaskRunner> task_runner,
|
|
|
|
const BrowserContextCallback& callback) {
|
|
|
|
if (!task_runner.get())
|
|
|
|
task_runner = base::MessageLoop::current()->task_runner();
|
|
|
|
GetBrowserContextOnUIThread(task_runner, callback);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CefRequestContextImpl::GetRequestContextImpl(
|
|
|
|
scoped_refptr<base::SingleThreadTaskRunner> task_runner,
|
|
|
|
const RequestContextCallback& callback) {
|
|
|
|
if (!task_runner.get())
|
|
|
|
task_runner = base::MessageLoop::current()->task_runner();
|
|
|
|
if (request_context_impl_) {
|
|
|
|
// The browser context already exists.
|
2017-02-14 23:27:19 +01:00
|
|
|
DCHECK(browser_context());
|
|
|
|
GetRequestContextImplOnIOThread(task_runner, callback, browser_context());
|
2015-03-02 21:25:14 +01:00
|
|
|
} else {
|
|
|
|
// Need to initialize the browser context first.
|
|
|
|
GetBrowserContextOnUIThread(
|
2016-07-21 23:21:32 +02:00
|
|
|
BrowserThread::GetTaskRunnerForThread(BrowserThread::IO),
|
2015-03-02 21:25:14 +01:00
|
|
|
base::Bind(&CefRequestContextImpl::GetRequestContextImplOnIOThread,
|
|
|
|
this, task_runner, callback));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-03 18:43:31 +02:00
|
|
|
bool CefRequestContextImpl::IsSame(CefRefPtr<CefRequestContext> other) {
|
2015-03-02 21:25:14 +01:00
|
|
|
CefRequestContextImpl* other_impl =
|
2013-09-03 18:43:31 +02:00
|
|
|
static_cast<CefRequestContextImpl*>(other.get());
|
2015-03-02 21:25:14 +01:00
|
|
|
if (!other_impl)
|
2013-09-03 18:43:31 +02:00
|
|
|
return false;
|
|
|
|
|
2017-02-14 23:27:19 +01:00
|
|
|
// Compare whether both are the global context.
|
|
|
|
if (config_.is_global && other_impl->config_.is_global)
|
|
|
|
return true;
|
|
|
|
|
2015-03-02 21:25:14 +01:00
|
|
|
// Compare CefBrowserContext pointers if one has been associated.
|
2017-02-14 23:27:19 +01:00
|
|
|
if (browser_context() && other_impl->browser_context()) {
|
|
|
|
if (browser_context()->is_proxy() &&
|
|
|
|
other_impl->browser_context()->is_proxy()) {
|
|
|
|
CefBrowserContextProxy* proxy =
|
|
|
|
static_cast<CefBrowserContextProxy*>(browser_context());
|
|
|
|
CefBrowserContextProxy* other_proxy =
|
|
|
|
static_cast<CefBrowserContextProxy*>(other_impl->browser_context());
|
|
|
|
return (proxy->parent() == other_proxy->parent() &&
|
|
|
|
proxy->GetHandler() == other_proxy->GetHandler());
|
|
|
|
}
|
|
|
|
return (browser_context() == other_impl->browser_context());
|
|
|
|
} else if (browser_context() || other_impl->browser_context()) {
|
2013-09-03 18:43:31 +02:00
|
|
|
return false;
|
2017-02-14 23:27:19 +01:00
|
|
|
}
|
2013-09-03 18:43:31 +02:00
|
|
|
|
|
|
|
// Otherwise compare unique IDs.
|
2017-02-14 23:27:19 +01:00
|
|
|
return (config_.unique_id == other_impl->config_.unique_id);
|
2015-03-02 21:25:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
bool CefRequestContextImpl::IsSharingWith(CefRefPtr<CefRequestContext> other) {
|
|
|
|
CefRequestContextImpl* other_impl =
|
|
|
|
static_cast<CefRequestContextImpl*>(other.get());
|
|
|
|
if (!other_impl)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if (IsSame(other))
|
|
|
|
return true;
|
|
|
|
|
2017-02-14 23:27:19 +01:00
|
|
|
CefRefPtr<CefRequestContext> pending_other = config_.other;
|
2015-03-02 21:25:14 +01:00
|
|
|
if (pending_other.get()) {
|
|
|
|
// This object is not initialized but we know what context this object will
|
|
|
|
// share with. Compare to that other context instead.
|
|
|
|
return pending_other->IsSharingWith(other);
|
|
|
|
}
|
|
|
|
|
2017-02-14 23:27:19 +01:00
|
|
|
pending_other = other_impl->config_.other;
|
2015-03-02 21:25:14 +01:00
|
|
|
if (pending_other.get()) {
|
|
|
|
// The other object is not initialized but we know what context that object
|
|
|
|
// will share with. Compare to that other context instead.
|
|
|
|
return pending_other->IsSharingWith(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (request_context_impl_ && other_impl->request_context_impl_) {
|
|
|
|
// Both objects are initialized. Compare the request context objects.
|
|
|
|
return (request_context_impl_ == other_impl->request_context_impl_);
|
|
|
|
}
|
|
|
|
|
|
|
|
// This or the other object is not initialized. Compare the cache path values.
|
|
|
|
// If both are non-empty and the same then they'll share the same storage.
|
2017-02-14 23:27:19 +01:00
|
|
|
if (config_.settings.cache_path.length > 0 &&
|
|
|
|
other_impl->config_.settings.cache_path.length > 0) {
|
|
|
|
return (base::FilePath(CefString(&config_.settings.cache_path)) ==
|
|
|
|
base::FilePath(
|
|
|
|
CefString(&other_impl->config_.settings.cache_path)));
|
2015-03-02 21:25:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
2013-09-03 18:43:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
bool CefRequestContextImpl::IsGlobal() {
|
2017-02-14 23:27:19 +01:00
|
|
|
return config_.is_global;
|
2013-09-03 18:43:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
CefRefPtr<CefRequestContextHandler> CefRequestContextImpl::GetHandler() {
|
2017-02-14 23:27:19 +01:00
|
|
|
return config_.handler;
|
2013-09-03 18:43:31 +02:00
|
|
|
}
|
2015-03-02 21:25:14 +01:00
|
|
|
|
|
|
|
CefString CefRequestContextImpl::GetCachePath() {
|
2017-02-14 23:27:19 +01:00
|
|
|
return CefString(&config_.settings.cache_path);
|
2015-03-02 21:25:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
CefRefPtr<CefCookieManager> CefRequestContextImpl::GetDefaultCookieManager(
|
|
|
|
CefRefPtr<CefCompletionCallback> callback) {
|
|
|
|
CefRefPtr<CefCookieManagerImpl> cookie_manager = new CefCookieManagerImpl();
|
|
|
|
cookie_manager->Initialize(this, CefString(), false, callback);
|
|
|
|
return cookie_manager.get();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CefRequestContextImpl::RegisterSchemeHandlerFactory(
|
|
|
|
const CefString& scheme_name,
|
|
|
|
const CefString& domain_name,
|
|
|
|
CefRefPtr<CefSchemeHandlerFactory> factory) {
|
|
|
|
GetRequestContextImpl(
|
2016-07-21 23:21:32 +02:00
|
|
|
BrowserThread::GetTaskRunnerForThread(BrowserThread::IO),
|
2015-03-02 21:25:14 +01:00
|
|
|
base::Bind(&CefRequestContextImpl::RegisterSchemeHandlerFactoryInternal,
|
|
|
|
this, scheme_name, domain_name, factory));
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CefRequestContextImpl::ClearSchemeHandlerFactories() {
|
|
|
|
GetRequestContextImpl(
|
2016-07-21 23:21:32 +02:00
|
|
|
BrowserThread::GetTaskRunnerForThread(BrowserThread::IO),
|
2015-03-02 21:25:14 +01:00
|
|
|
base::Bind(&CefRequestContextImpl::ClearSchemeHandlerFactoriesInternal,
|
|
|
|
this));
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-09-25 13:59:30 +02:00
|
|
|
void CefRequestContextImpl::PurgePluginListCache(bool reload_pages) {
|
|
|
|
GetBrowserContext(
|
2016-07-21 23:21:32 +02:00
|
|
|
BrowserThread::GetTaskRunnerForThread(BrowserThread::UI),
|
2015-09-25 13:59:30 +02:00
|
|
|
base::Bind(&CefRequestContextImpl::PurgePluginListCacheInternal,
|
|
|
|
this, reload_pages));
|
|
|
|
}
|
|
|
|
|
2015-10-03 01:03:16 +02:00
|
|
|
bool CefRequestContextImpl::HasPreference(const CefString& name) {
|
|
|
|
// Verify that this method is being called on the UI thread.
|
|
|
|
if (!CEF_CURRENTLY_ON_UIT()) {
|
|
|
|
NOTREACHED() << "called on invalid thread";
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Make sure the browser context exists.
|
|
|
|
EnsureBrowserContext();
|
|
|
|
|
2017-02-14 23:27:19 +01:00
|
|
|
PrefService* pref_service = browser_context()->GetPrefs();
|
2015-10-03 01:03:16 +02:00
|
|
|
return (pref_service->FindPreference(name) != NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
CefRefPtr<CefValue> CefRequestContextImpl::GetPreference(
|
|
|
|
const CefString& name) {
|
|
|
|
// Verify that this method is being called on the UI thread.
|
|
|
|
if (!CEF_CURRENTLY_ON_UIT()) {
|
|
|
|
NOTREACHED() << "called on invalid thread";
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Make sure the browser context exists.
|
|
|
|
EnsureBrowserContext();
|
|
|
|
|
2017-02-14 23:27:19 +01:00
|
|
|
PrefService* pref_service = browser_context()->GetPrefs();
|
2015-10-03 01:03:16 +02:00
|
|
|
const PrefService::Preference* pref = pref_service->FindPreference(name);
|
|
|
|
if (!pref)
|
|
|
|
return NULL;
|
|
|
|
return new CefValueImpl(pref->GetValue()->DeepCopy());
|
|
|
|
}
|
|
|
|
|
|
|
|
CefRefPtr<CefDictionaryValue> CefRequestContextImpl::GetAllPreferences(
|
|
|
|
bool include_defaults) {
|
|
|
|
// Verify that this method is being called on the UI thread.
|
|
|
|
if (!CEF_CURRENTLY_ON_UIT()) {
|
|
|
|
NOTREACHED() << "called on invalid thread";
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Make sure the browser context exists.
|
|
|
|
EnsureBrowserContext();
|
|
|
|
|
2017-02-14 23:27:19 +01:00
|
|
|
PrefService* pref_service = browser_context()->GetPrefs();
|
2015-10-03 01:03:16 +02:00
|
|
|
|
2016-04-27 22:38:52 +02:00
|
|
|
std::unique_ptr<base::DictionaryValue> values;
|
2015-10-03 01:03:16 +02:00
|
|
|
if (include_defaults)
|
|
|
|
values = pref_service->GetPreferenceValues();
|
|
|
|
else
|
|
|
|
values = pref_service->GetPreferenceValuesOmitDefaults();
|
|
|
|
|
|
|
|
// CefDictionaryValueImpl takes ownership of |values|.
|
|
|
|
return new CefDictionaryValueImpl(values.release(), true, false);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CefRequestContextImpl::CanSetPreference(const CefString& name) {
|
|
|
|
// Verify that this method is being called on the UI thread.
|
|
|
|
if (!CEF_CURRENTLY_ON_UIT()) {
|
|
|
|
NOTREACHED() << "called on invalid thread";
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Make sure the browser context exists.
|
|
|
|
EnsureBrowserContext();
|
|
|
|
|
2017-02-14 23:27:19 +01:00
|
|
|
PrefService* pref_service = browser_context()->GetPrefs();
|
2015-10-03 01:03:16 +02:00
|
|
|
const PrefService::Preference* pref = pref_service->FindPreference(name);
|
|
|
|
return (pref && pref->IsUserModifiable());
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CefRequestContextImpl::SetPreference(const CefString& name,
|
|
|
|
CefRefPtr<CefValue> value,
|
|
|
|
CefString& error) {
|
|
|
|
// Verify that this method is being called on the UI thread.
|
|
|
|
if (!CEF_CURRENTLY_ON_UIT()) {
|
|
|
|
NOTREACHED() << "called on invalid thread";
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Make sure the browser context exists.
|
|
|
|
EnsureBrowserContext();
|
|
|
|
|
2017-02-14 23:27:19 +01:00
|
|
|
PrefService* pref_service = browser_context()->GetPrefs();
|
2015-10-03 01:03:16 +02:00
|
|
|
|
|
|
|
// The below validation logic should match PrefService::SetUserPrefValue.
|
|
|
|
|
|
|
|
const PrefService::Preference* pref = pref_service->FindPreference(name);
|
|
|
|
if (!pref) {
|
|
|
|
error = "Trying to modify an unregistered preference";
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!pref->IsUserModifiable()) {
|
|
|
|
error = "Trying to modify a preference that is not user modifiable";
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!value.get()) {
|
|
|
|
// Reset the preference to its default value.
|
|
|
|
pref_service->ClearPref(name);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!value->IsValid()) {
|
|
|
|
error = "A valid value is required";
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
CefValueImpl* impl = static_cast<CefValueImpl*>(value.get());
|
|
|
|
|
|
|
|
CefValueImpl::ScopedLockedValue scoped_locked_value(impl);
|
|
|
|
base::Value* impl_value = impl->GetValueUnsafe();
|
|
|
|
|
|
|
|
if (pref->GetType() != impl_value->GetType()) {
|
|
|
|
error = base::StringPrintf(
|
|
|
|
"Trying to set a preference of type %s to value of type %s",
|
|
|
|
GetTypeString(pref->GetType()), GetTypeString(impl_value->GetType()));
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// PrefService will make a DeepCopy of |impl_value|.
|
|
|
|
pref_service->Set(name, *impl_value);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2016-02-23 20:29:18 +01:00
|
|
|
void CefRequestContextImpl::ClearCertificateExceptions(
|
|
|
|
CefRefPtr<CefCompletionCallback> callback) {
|
|
|
|
GetBrowserContext(
|
2016-07-21 23:21:32 +02:00
|
|
|
BrowserThread::GetTaskRunnerForThread(BrowserThread::UI),
|
2016-02-23 20:29:18 +01:00
|
|
|
base::Bind(&CefRequestContextImpl::ClearCertificateExceptionsInternal,
|
|
|
|
this, callback));
|
|
|
|
}
|
|
|
|
|
|
|
|
void CefRequestContextImpl::CloseAllConnections(
|
|
|
|
CefRefPtr<CefCompletionCallback> callback) {
|
|
|
|
GetRequestContextImpl(
|
2016-07-21 23:21:32 +02:00
|
|
|
BrowserThread::GetTaskRunnerForThread(BrowserThread::IO),
|
2016-02-23 20:29:18 +01:00
|
|
|
base::Bind(&CefRequestContextImpl::CloseAllConnectionsInternal, this,
|
|
|
|
callback));
|
|
|
|
}
|
|
|
|
|
2016-02-24 00:27:05 +01:00
|
|
|
void CefRequestContextImpl::ResolveHost(
|
|
|
|
const CefString& origin,
|
|
|
|
CefRefPtr<CefResolveCallback> callback) {
|
|
|
|
GetRequestContextImpl(
|
2016-07-21 23:21:32 +02:00
|
|
|
BrowserThread::GetTaskRunnerForThread(BrowserThread::IO),
|
2016-02-24 00:27:05 +01:00
|
|
|
base::Bind(&CefRequestContextImpl::ResolveHostInternal, this, origin,
|
|
|
|
callback));
|
|
|
|
}
|
|
|
|
|
|
|
|
cef_errorcode_t CefRequestContextImpl::ResolveHostCached(
|
|
|
|
const CefString& origin,
|
|
|
|
std::vector<CefString>& resolved_ips) {
|
|
|
|
resolved_ips.clear();
|
|
|
|
|
|
|
|
if (!CEF_CURRENTLY_ON_IOT()) {
|
|
|
|
NOTREACHED() << "called on invalid thread";
|
|
|
|
return ERR_FAILED;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!request_context_impl_)
|
|
|
|
return ERR_FAILED;
|
|
|
|
|
|
|
|
int retval = ERR_FAILED;
|
|
|
|
|
|
|
|
net::HostResolver* host_resolver = request_context_impl_->GetHostResolver();
|
|
|
|
if (host_resolver) {
|
|
|
|
net::HostResolver::RequestInfo request_info(
|
|
|
|
net::HostPortPair::FromURL(GURL(origin.ToString())));
|
|
|
|
net::AddressList address_list;
|
|
|
|
retval = host_resolver->ResolveFromCache(request_info, &address_list,
|
2016-10-21 21:52:29 +02:00
|
|
|
net::NetLogWithSource());
|
2016-02-24 00:27:05 +01:00
|
|
|
if (retval == net::OK) {
|
|
|
|
net::AddressList::const_iterator iter = address_list.begin();
|
|
|
|
for (; iter != address_list.end(); ++iter)
|
|
|
|
resolved_ips.push_back(iter->ToString());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return static_cast<cef_errorcode_t>(retval);
|
|
|
|
}
|
|
|
|
|
2015-03-02 21:25:14 +01:00
|
|
|
CefRequestContextImpl::CefRequestContextImpl(
|
2017-02-14 23:27:19 +01:00
|
|
|
const CefRequestContextImpl::Config& config)
|
|
|
|
: config_(config) {
|
2015-03-02 21:25:14 +01:00
|
|
|
}
|
|
|
|
|
2017-02-14 23:27:19 +01:00
|
|
|
void CefRequestContextImpl::Initialize() {
|
|
|
|
CefBrowserContext* other_browser_context = nullptr;
|
|
|
|
if (config_.is_global)
|
|
|
|
other_browser_context = CefContentBrowserClient::Get()->browser_context();
|
|
|
|
else if (config_.other.get())
|
|
|
|
other_browser_context = config_.other->GetBrowserContext();
|
|
|
|
|
|
|
|
Initialize(other_browser_context);
|
|
|
|
|
|
|
|
if (config_.other.get()) {
|
|
|
|
// Clear the reference to |other_| after setting |request_context_impl_|.
|
|
|
|
// This is the reverse order of checks in IsSharedWith().
|
|
|
|
config_.other = NULL;
|
|
|
|
}
|
2015-03-02 21:25:14 +01:00
|
|
|
}
|
|
|
|
|
2017-02-14 23:27:19 +01:00
|
|
|
void CefRequestContextImpl::Initialize(
|
|
|
|
CefBrowserContext* other_browser_context) {
|
|
|
|
CEF_REQUIRE_UIT();
|
|
|
|
|
|
|
|
DCHECK(!browser_context_impl_);
|
|
|
|
DCHECK(!request_context_impl_);
|
|
|
|
|
|
|
|
if (other_browser_context) {
|
|
|
|
// Share storage with |other_browser_context|.
|
|
|
|
browser_context_impl_ = CefBrowserContextImpl::GetForContext(
|
|
|
|
other_browser_context);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!browser_context_impl_) {
|
|
|
|
const base::FilePath& cache_path =
|
|
|
|
base::FilePath(CefString(&config_.settings.cache_path));
|
|
|
|
if (!cache_path.empty()) {
|
|
|
|
// Check if a CefBrowserContextImpl is already globally registered for
|
|
|
|
// the specified cache path. If so then use it.
|
|
|
|
browser_context_impl_ =
|
|
|
|
CefBrowserContextImpl::GetForCachePath(cache_path);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!browser_context_impl_) {
|
|
|
|
// Create a new CefBrowserContextImpl instance. If the cache path is non-
|
|
|
|
// empty then this new instance will become the globally registered
|
|
|
|
// CefBrowserContextImpl for that path. Otherwise, this new instance will
|
|
|
|
// be a completely isolated "incongento mode" context.
|
|
|
|
browser_context_impl_ = new CefBrowserContextImpl(config_.settings);
|
|
|
|
browser_context_impl_->Initialize();
|
|
|
|
}
|
|
|
|
|
|
|
|
// We'll disassociate from |browser_context_impl_| on destruction.
|
|
|
|
browser_context_impl_->AddRequestContext();
|
|
|
|
|
|
|
|
// Force our settings to match |browser_context_impl_|.
|
|
|
|
config_.settings = browser_context_impl_->GetSettings();
|
|
|
|
|
|
|
|
if (config_.handler.get()) {
|
|
|
|
// Use a proxy that will execute handler callbacks where appropriate and
|
|
|
|
// otherwise forward all requests to |browser_context_impl_|.
|
|
|
|
browser_context_proxy_.reset(
|
|
|
|
new CefBrowserContextProxy(config_.handler, browser_context_impl_));
|
|
|
|
browser_context_proxy_->Initialize();
|
|
|
|
DCHECK(!config_.is_global);
|
|
|
|
} else {
|
|
|
|
config_.is_global = (browser_context_impl_ ==
|
|
|
|
CefContentBrowserClient::Get()->browser_context());
|
|
|
|
}
|
|
|
|
|
|
|
|
request_context_impl_ = browser_context_impl_->request_context().get();
|
|
|
|
DCHECK(request_context_impl_);
|
|
|
|
|
|
|
|
if (config_.handler.get()) {
|
|
|
|
// Keep the handler alive until the associated request context is
|
|
|
|
// destroyed.
|
|
|
|
request_context_impl_->AddHandler(config_.handler);
|
|
|
|
}
|
2015-03-02 21:25:14 +01:00
|
|
|
}
|
|
|
|
|
2015-10-03 01:03:16 +02:00
|
|
|
void CefRequestContextImpl::EnsureBrowserContext() {
|
2017-02-14 23:27:19 +01:00
|
|
|
if (!browser_context())
|
|
|
|
Initialize();
|
|
|
|
DCHECK(browser_context());
|
2015-10-03 01:03:16 +02:00
|
|
|
DCHECK(request_context_impl_);
|
|
|
|
}
|
|
|
|
|
2015-03-02 21:25:14 +01:00
|
|
|
void CefRequestContextImpl::GetBrowserContextOnUIThread(
|
|
|
|
scoped_refptr<base::SingleThreadTaskRunner> task_runner,
|
|
|
|
const BrowserContextCallback& callback) {
|
|
|
|
if (!CEF_CURRENTLY_ON_UIT()) {
|
|
|
|
CEF_POST_TASK(CEF_UIT,
|
|
|
|
base::Bind(&CefRequestContextImpl::GetBrowserContextOnUIThread,
|
|
|
|
this, task_runner, callback));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Make sure the browser context exists.
|
2015-10-03 01:03:16 +02:00
|
|
|
EnsureBrowserContext();
|
2015-03-02 21:25:14 +01:00
|
|
|
|
|
|
|
if (task_runner->BelongsToCurrentThread()) {
|
|
|
|
// Execute the callback immediately.
|
2017-02-14 23:27:19 +01:00
|
|
|
callback.Run(browser_context());
|
2015-03-02 21:25:14 +01:00
|
|
|
} else {
|
|
|
|
// Execute the callback on the target thread.
|
2017-02-14 23:27:19 +01:00
|
|
|
task_runner->PostTask(FROM_HERE, base::Bind(callback, browser_context()));
|
2015-03-02 21:25:14 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void CefRequestContextImpl::GetRequestContextImplOnIOThread(
|
|
|
|
scoped_refptr<base::SingleThreadTaskRunner> task_runner,
|
|
|
|
const RequestContextCallback& callback,
|
2017-02-14 23:27:19 +01:00
|
|
|
CefBrowserContext* browser_context) {
|
2015-03-02 21:25:14 +01:00
|
|
|
if (!CEF_CURRENTLY_ON_IOT()) {
|
|
|
|
CEF_POST_TASK(CEF_IOT,
|
|
|
|
base::Bind(&CefRequestContextImpl::GetRequestContextImplOnIOThread,
|
|
|
|
this, task_runner, callback, browser_context));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
DCHECK(request_context_impl_);
|
|
|
|
|
|
|
|
// Make sure the request context exists.
|
|
|
|
request_context_impl_->GetURLRequestContext();
|
|
|
|
|
|
|
|
if (task_runner->BelongsToCurrentThread()) {
|
|
|
|
// Execute the callback immediately.
|
|
|
|
callback.Run(request_context_impl_);
|
|
|
|
} else {
|
|
|
|
// Execute the callback on the target thread.
|
|
|
|
task_runner->PostTask(FROM_HERE,
|
|
|
|
base::Bind(callback, make_scoped_refptr(request_context_impl_)));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void CefRequestContextImpl::RegisterSchemeHandlerFactoryInternal(
|
|
|
|
const CefString& scheme_name,
|
|
|
|
const CefString& domain_name,
|
|
|
|
CefRefPtr<CefSchemeHandlerFactory> factory,
|
|
|
|
scoped_refptr<CefURLRequestContextGetterImpl> request_context) {
|
|
|
|
CEF_REQUIRE_IOT();
|
|
|
|
request_context->request_manager()->AddFactory(scheme_name, domain_name,
|
|
|
|
factory);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CefRequestContextImpl::ClearSchemeHandlerFactoriesInternal(
|
|
|
|
scoped_refptr<CefURLRequestContextGetterImpl> request_context) {
|
|
|
|
CEF_REQUIRE_IOT();
|
|
|
|
request_context->request_manager()->ClearFactories();
|
|
|
|
}
|
2015-09-25 13:59:30 +02:00
|
|
|
|
|
|
|
void CefRequestContextImpl::PurgePluginListCacheInternal(
|
|
|
|
bool reload_pages,
|
2017-02-14 23:27:19 +01:00
|
|
|
CefBrowserContext* browser_context) {
|
2015-09-25 13:59:30 +02:00
|
|
|
CEF_REQUIRE_UIT();
|
2016-10-17 20:14:44 +02:00
|
|
|
browser_context->OnPurgePluginListCache();
|
2015-09-25 13:59:30 +02:00
|
|
|
content::PluginService::GetInstance()->PurgePluginListCache(
|
2017-02-14 23:27:19 +01:00
|
|
|
browser_context, false);
|
2015-09-25 13:59:30 +02:00
|
|
|
}
|
2016-02-23 20:29:18 +01:00
|
|
|
|
|
|
|
void CefRequestContextImpl::ClearCertificateExceptionsInternal(
|
|
|
|
CefRefPtr<CefCompletionCallback> callback,
|
2017-02-14 23:27:19 +01:00
|
|
|
CefBrowserContext* browser_context) {
|
2016-02-23 20:29:18 +01:00
|
|
|
CEF_REQUIRE_UIT();
|
|
|
|
|
|
|
|
content::SSLHostStateDelegate* ssl_delegate =
|
|
|
|
browser_context->GetSSLHostStateDelegate();
|
|
|
|
if (ssl_delegate)
|
2016-10-17 20:14:44 +02:00
|
|
|
ssl_delegate->Clear(base::Callback<bool(const std::string&)>());
|
2016-02-23 20:29:18 +01:00
|
|
|
|
|
|
|
if (callback) {
|
|
|
|
CEF_POST_TASK(CEF_UIT,
|
2017-02-14 23:27:19 +01:00
|
|
|
base::Bind(&CefCompletionCallback::OnComplete, callback));
|
2016-02-23 20:29:18 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void CefRequestContextImpl::CloseAllConnectionsInternal(
|
|
|
|
CefRefPtr<CefCompletionCallback> callback,
|
|
|
|
scoped_refptr<CefURLRequestContextGetterImpl> request_context) {
|
|
|
|
CEF_REQUIRE_IOT();
|
|
|
|
|
|
|
|
net::URLRequestContext* url_context = request_context->GetURLRequestContext();
|
|
|
|
if (url_context) {
|
|
|
|
net::HttpTransactionFactory* http_factory =
|
|
|
|
url_context->http_transaction_factory();
|
|
|
|
if (http_factory) {
|
|
|
|
net::HttpCache* cache = http_factory->GetCache();
|
|
|
|
if (cache)
|
|
|
|
cache->CloseAllConnections();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (callback) {
|
|
|
|
CEF_POST_TASK(CEF_UIT,
|
2017-02-14 23:27:19 +01:00
|
|
|
base::Bind(&CefCompletionCallback::OnComplete, callback));
|
2016-02-23 20:29:18 +01:00
|
|
|
}
|
|
|
|
}
|
2016-02-24 00:27:05 +01:00
|
|
|
|
|
|
|
void CefRequestContextImpl::ResolveHostInternal(
|
|
|
|
const CefString& origin,
|
|
|
|
CefRefPtr<CefResolveCallback> callback,
|
|
|
|
scoped_refptr<CefURLRequestContextGetterImpl> request_context) {
|
|
|
|
CEF_REQUIRE_IOT();
|
|
|
|
|
|
|
|
int retval = ERR_FAILED;
|
|
|
|
|
|
|
|
// |helper| will be deleted in ResolveHostHelper::OnResolveCompleted().
|
|
|
|
ResolveHostHelper* helper = new ResolveHostHelper(callback);
|
|
|
|
|
|
|
|
net::HostResolver* host_resolver = request_context->GetHostResolver();
|
|
|
|
if (host_resolver) {
|
|
|
|
net::HostResolver::RequestInfo request_info(
|
|
|
|
net::HostPortPair::FromURL(GURL(origin.ToString())));
|
|
|
|
retval = host_resolver->Resolve(
|
|
|
|
request_info, net::DEFAULT_PRIORITY,
|
|
|
|
&helper->address_list_,
|
|
|
|
base::Bind(&ResolveHostHelper::OnResolveCompleted,
|
|
|
|
base::Unretained(helper)),
|
2016-10-21 21:52:29 +02:00
|
|
|
&helper->request_, net::NetLogWithSource());
|
2016-02-24 00:27:05 +01:00
|
|
|
if (retval == net::ERR_IO_PENDING) {
|
|
|
|
// The result will be delivered asynchronously via the callback.
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
helper->OnResolveCompleted(retval);
|
|
|
|
}
|
2017-02-14 23:27:19 +01:00
|
|
|
|
|
|
|
CefBrowserContext* CefRequestContextImpl::browser_context() const {
|
|
|
|
if (browser_context_proxy_)
|
|
|
|
return browser_context_proxy_.get();
|
|
|
|
return browser_context_impl_;
|
|
|
|
}
|
|
|
|
|