electron/atom/browser/api/atom_api_cookies.cc

350 lines
11 KiB
C++
Raw Normal View History

2015-06-14 08:19:53 +00:00
// Copyright (c) 2015 GitHub, Inc.
// Use of this source code is governed by the MIT license that can be
// found in the LICENSE file.
#include "atom/browser/api/atom_api_cookies.h"
#include "atom/common/native_mate_converters/gurl_converter.h"
2015-06-14 08:19:53 +00:00
#include "atom/common/native_mate_converters/value_converter.h"
#include "base/bind.h"
2015-06-15 13:18:40 +00:00
#include "base/time/time.h"
#include "content/public/browser/browser_context.h"
2015-06-14 08:19:53 +00:00
#include "content/public/browser/browser_thread.h"
#include "native_mate/callback.h"
#include "native_mate/dictionary.h"
#include "native_mate/object_template_builder.h"
#include "net/cookies/cookie_monster.h"
#include "net/cookies/cookie_store.h"
#include "net/cookies/cookie_util.h"
#include "net/url_request/url_request_context.h"
#include "net/url_request/url_request_context_getter.h"
2015-06-14 08:19:53 +00:00
#include "atom/common/node_includes.h"
2015-06-20 02:41:40 +00:00
using atom::api::Cookies;
2015-06-14 08:19:53 +00:00
using content::BrowserThread;
namespace {
2015-06-20 02:41:40 +00:00
bool GetCookieListFromStore(
net::CookieStore* cookie_store,
2015-06-14 08:19:53 +00:00
const std::string& url,
const net::CookieMonster::GetCookieListCallback& callback) {
DCHECK(cookie_store);
GURL gurl(url);
net::CookieMonster* monster = cookie_store->GetCookieMonster();
// Empty url will match all url cookies.
if (url.empty()) {
monster->GetAllCookiesAsync(callback);
return true;
}
if (!gurl.is_valid())
return false;
monster->GetAllCookiesForURLAsync(gurl, callback);
return true;
}
void RunGetCookiesCallbackOnUIThread(v8::Isolate* isolate,
const std::string& error_message,
2015-06-20 02:41:40 +00:00
const net::CookieList& cookie_list,
const Cookies::CookiesCallback& callback) {
2015-06-15 13:18:40 +00:00
DCHECK_CURRENTLY_ON(BrowserThread::UI);
2015-06-14 08:19:53 +00:00
v8::Locker locker(isolate);
v8::HandleScope handle_scope(isolate);
if (!error_message.empty()) {
v8::Local<v8::Value> error = mate::ConvertToV8(isolate, error_message);
2015-06-14 08:19:53 +00:00
callback.Run(error, v8::Null(isolate));
return;
}
callback.Run(v8::Null(isolate), mate::ConvertToV8(isolate, cookie_list));
2015-06-14 08:19:53 +00:00
}
2015-06-20 02:41:40 +00:00
void RunRemoveCookiesCallbackOnUIThread(
v8::Isolate* isolate,
2015-06-20 02:41:40 +00:00
const std::string& error_message,
const Cookies::CookiesCallback& callback) {
2015-06-15 13:18:40 +00:00
DCHECK_CURRENTLY_ON(BrowserThread::UI);
2015-06-15 07:33:09 +00:00
v8::Locker locker(isolate);
v8::HandleScope handle_scope(isolate);
if (!error_message.empty()) {
v8::Local<v8::Value> error = mate::ConvertToV8(isolate, error_message);
2015-06-15 07:33:09 +00:00
callback.Run(error, v8::Null(isolate));
return;
}
callback.Run(v8::Null(isolate), v8::Null(isolate));
}
void RunSetCookiesCallbackOnUIThread(v8::Isolate* isolate,
const std::string& error_message,
2015-06-20 02:41:40 +00:00
bool set_success,
const Cookies::CookiesCallback& callback) {
2015-06-15 13:18:40 +00:00
DCHECK_CURRENTLY_ON(BrowserThread::UI);
v8::Locker locker(isolate);
v8::HandleScope handle_scope(isolate);
if (!error_message.empty()) {
v8::Local<v8::Value> error = mate::ConvertToV8(isolate, error_message);
2015-06-15 13:18:40 +00:00
callback.Run(error, v8::Null(isolate));
return;
}
2015-06-15 13:51:08 +00:00
if (!set_success) {
v8::Local<v8::Value> error = mate::ConvertToV8(
isolate, "Failed to set cookies");
2015-06-15 13:51:08 +00:00
callback.Run(error, v8::Null(isolate));
}
2015-06-15 13:18:40 +00:00
2015-06-15 13:51:08 +00:00
callback.Run(v8::Null(isolate), v8::Null(isolate));
2015-06-15 13:18:40 +00:00
}
2015-06-14 08:19:53 +00:00
bool MatchesDomain(const base::DictionaryValue* filter,
const std::string& cookie_domain) {
2015-06-14 08:19:53 +00:00
std::string filter_domain;
if (!filter->GetString("domain", &filter_domain))
return true;
// Add a leading '.' character to the filter domain if it doesn't exist.
if (net::cookie_util::DomainIsHostOnly(filter_domain))
filter_domain.insert(0, ".");
std::string sub_domain(cookie_domain);
// Strip any leading '.' character from the input cookie domain.
if (!net::cookie_util::DomainIsHostOnly(sub_domain))
sub_domain = sub_domain.substr(1);
// Now check whether the domain argument is a subdomain of the filter domain.
for (sub_domain.insert(0, ".");
sub_domain.length() >= filter_domain.length();) {
if (sub_domain == filter_domain) {
return true;
}
const size_t next_dot = sub_domain.find('.', 1); // Skip over leading dot.
sub_domain.erase(0, next_dot);
}
return false;
}
bool MatchesCookie(const base::DictionaryValue* filter,
2015-06-20 02:41:40 +00:00
const net::CanonicalCookie& cookie) {
2015-06-14 08:19:53 +00:00
std::string name, domain, path;
bool is_secure, session;
if (filter->GetString("name", &name) && name != cookie.Name())
return false;
if (filter->GetString("path", &path) && path != cookie.Path())
return false;
if (!MatchesDomain(filter, cookie.Domain()))
return false;
if (filter->GetBoolean("secure", &is_secure) &&
is_secure != cookie.IsSecure())
return false;
if (filter->GetBoolean("session", &session) &&
session != cookie.IsPersistent())
return false;
return true;
}
} // namespace
namespace mate {
template<>
struct Converter<net::CanonicalCookie> {
static v8::Local<v8::Value> ToV8(v8::Isolate* isolate,
2015-06-20 02:41:40 +00:00
const net::CanonicalCookie& val) {
2015-06-14 08:19:53 +00:00
mate::Dictionary dict(isolate, v8::Object::New(isolate));
dict.Set("name", val.Name());
dict.Set("value", val.Value());
dict.Set("domain", val.Domain());
2015-06-19 06:18:22 +00:00
dict.Set("host_only", net::cookie_util::DomainIsHostOnly(val.Domain()));
2015-06-14 08:19:53 +00:00
dict.Set("path", val.Path());
dict.Set("secure", val.IsSecure());
dict.Set("http_only", val.IsHttpOnly());
dict.Set("session", val.IsPersistent());
if (!val.IsPersistent())
dict.Set("expirationDate", val.ExpiryDate().ToDoubleT());
return dict.GetHandle();
}
};
2015-06-15 13:21:53 +00:00
} // namespace mate
2015-06-14 08:19:53 +00:00
namespace atom {
namespace api {
2015-06-20 02:41:40 +00:00
Cookies::Cookies(content::BrowserContext* browser_context) :
browser_context_(browser_context) {
2015-06-14 08:19:53 +00:00
}
Cookies::~Cookies() {
}
void Cookies::Get(const base::DictionaryValue& options,
2015-06-15 07:33:09 +00:00
const CookiesCallback& callback) {
scoped_ptr<base::DictionaryValue> filter(
options.DeepCopyWithoutEmptyChildren());
2015-06-14 08:19:53 +00:00
content::BrowserThread::PostTask(BrowserThread::IO, FROM_HERE,
base::Bind(&Cookies::GetCookiesOnIOThread, base::Unretained(this),
Passed(&filter), callback));
2015-06-14 08:19:53 +00:00
}
void Cookies::GetCookiesOnIOThread(scoped_ptr<base::DictionaryValue> filter,
2015-06-15 07:33:09 +00:00
const CookiesCallback& callback) {
2015-06-20 02:41:40 +00:00
net::CookieStore* cookie_store = browser_context_->GetRequestContext()
2015-06-14 08:19:53 +00:00
->GetURLRequestContext()->cookie_store();
std::string url;
filter->GetString("url", &url);
if (!GetCookieListFromStore(cookie_store, url,
base::Bind(&Cookies::OnGetCookies, base::Unretained(this),
Passed(&filter), callback))) {
2015-06-14 08:19:53 +00:00
BrowserThread::PostTask(BrowserThread::UI, FROM_HERE,
base::Bind(&RunGetCookiesCallbackOnUIThread, isolate(),
"Url is not valid", net::CookieList(), callback));
2015-06-14 08:19:53 +00:00
}
}
void Cookies::OnGetCookies(scoped_ptr<base::DictionaryValue> filter,
2015-06-15 07:33:09 +00:00
const CookiesCallback& callback,
2015-06-14 08:19:53 +00:00
const net::CookieList& cookie_list) {
net::CookieList result;
for (const auto& cookie : cookie_list) {
if (MatchesCookie(filter.get(), cookie))
2015-06-14 08:19:53 +00:00
result.push_back(cookie);
}
BrowserThread::PostTask(BrowserThread::UI, FROM_HERE, base::Bind(
&RunGetCookiesCallbackOnUIThread, isolate(), "", result, callback));
2015-06-14 08:19:53 +00:00
}
void Cookies::Remove(const mate::Dictionary& details,
2015-06-15 07:33:09 +00:00
const CookiesCallback& callback) {
GURL url;
std::string name;
2015-06-15 07:33:09 +00:00
std::string error_message;
if (!details.Get("url", &url) || !details.Get("name", &name)) {
2015-06-15 07:33:09 +00:00
error_message = "Details(url, name) of removing cookie are required.";
}
if (error_message.empty() && !url.is_valid()) {
2015-06-15 07:33:09 +00:00
error_message = "Url is not valid.";
}
if (!error_message.empty()) {
RunRemoveCookiesCallbackOnUIThread(isolate(), error_message, callback);
2015-06-15 07:33:09 +00:00
return;
}
content::BrowserThread::PostTask(BrowserThread::IO, FROM_HERE,
base::Bind(&Cookies::RemoveCookiesOnIOThread, base::Unretained(this),
url, name, callback));
2015-06-15 07:33:09 +00:00
}
void Cookies::RemoveCookiesOnIOThread(const GURL& url, const std::string& name,
2015-06-20 02:41:40 +00:00
const CookiesCallback& callback) {
net::CookieStore* cookie_store = browser_context_->GetRequestContext()
2015-06-15 07:33:09 +00:00
->GetURLRequestContext()->cookie_store();
cookie_store->DeleteCookieAsync(url, name,
base::Bind(&Cookies::OnRemoveCookies, base::Unretained(this), callback));
}
void Cookies::OnRemoveCookies(const CookiesCallback& callback) {
BrowserThread::PostTask(BrowserThread::UI, FROM_HERE,
base::Bind(&RunRemoveCookiesCallbackOnUIThread, isolate(), "", callback));
2015-06-15 07:33:09 +00:00
}
2015-06-15 13:18:40 +00:00
void Cookies::Set(const base::DictionaryValue& options,
const CookiesCallback& callback) {
std::string url;
std::string error_message;
if (!options.GetString("url", &url)) {
error_message = "The url field is required.";
}
GURL gurl(url);
if (error_message.empty() && !gurl.is_valid()) {
error_message = "Url is not valid.";
}
if (!error_message.empty()) {
RunSetCookiesCallbackOnUIThread(isolate(), error_message, false, callback);
return;
2015-06-15 13:18:40 +00:00
}
scoped_ptr<base::DictionaryValue> details(
options.DeepCopyWithoutEmptyChildren());
2015-06-15 13:18:40 +00:00
content::BrowserThread::PostTask(BrowserThread::IO, FROM_HERE,
base::Bind(&Cookies::SetCookiesOnIOThread, base::Unretained(this),
Passed(&details), gurl, callback));
2015-06-15 13:18:40 +00:00
}
void Cookies::SetCookiesOnIOThread(scoped_ptr<base::DictionaryValue> details,
2015-06-15 13:18:40 +00:00
const GURL& url,
const CookiesCallback& callback) {
DCHECK_CURRENTLY_ON(BrowserThread::IO);
2015-06-20 02:41:40 +00:00
net::CookieStore* cookie_store = browser_context_->GetRequestContext()
2015-06-15 13:18:40 +00:00
->GetURLRequestContext()->cookie_store();
std::string name, value, domain, path;
bool secure = false;
bool http_only = false;
double expiration_date;
details->GetString("name", &name);
details->GetString("value", &value);
details->GetString("domain", &domain);
details->GetString("path", &path);
details->GetBoolean("secure", &secure);
details->GetBoolean("http_only", &http_only);
base::Time expiration_time;
if (details->GetDouble("expirationDate", &expiration_date)) {
expiration_time = (expiration_date == 0) ?
base::Time::UnixEpoch() :
base::Time::FromDoubleT(expiration_date);
}
cookie_store->GetCookieMonster()->SetCookieWithDetailsAsync(
url,
name,
value,
domain,
path,
expiration_time,
secure,
http_only,
false,
net::COOKIE_PRIORITY_DEFAULT,
base::Bind(&Cookies::OnSetCookies, base::Unretained(this), callback));
2015-06-15 13:18:40 +00:00
}
void Cookies::OnSetCookies(const CookiesCallback& callback,
2015-06-15 13:18:40 +00:00
bool set_success) {
BrowserThread::PostTask(BrowserThread::UI, FROM_HERE,
base::Bind(&RunSetCookiesCallbackOnUIThread, isolate(), "", set_success,
callback));
2015-06-15 13:18:40 +00:00
}
2015-06-14 08:19:53 +00:00
mate::ObjectTemplateBuilder Cookies::GetObjectTemplateBuilder(
v8::Isolate* isolate) {
return mate::ObjectTemplateBuilder(isolate)
2015-06-15 07:33:09 +00:00
.SetMethod("get", &Cookies::Get)
2015-06-15 13:18:40 +00:00
.SetMethod("remove", &Cookies::Remove)
.SetMethod("set", &Cookies::Set);
2015-06-14 08:19:53 +00:00
}
// static
2015-06-20 02:41:40 +00:00
mate::Handle<Cookies> Cookies::Create(
v8::Isolate* isolate,
content::BrowserContext* browser_context) {
2015-06-23 02:18:43 +00:00
return mate::CreateHandle(isolate, new Cookies(browser_context));
2015-06-14 08:19:53 +00:00
}
} // namespace api
} // namespace atom