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"
|
|
|
|
|
2018-09-13 00:25:56 +00:00
|
|
|
#include <memory>
|
|
|
|
#include <utility>
|
|
|
|
|
2016-07-04 06:08:55 +00:00
|
|
|
#include "atom/browser/atom_browser_context.h"
|
2018-10-04 18:08:56 +00:00
|
|
|
#include "atom/browser/cookie_change_notifier.h"
|
2015-08-07 10:10:19 +00:00
|
|
|
#include "atom/common/native_mate_converters/callback.h"
|
2015-06-18 10:38:32 +00:00
|
|
|
#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"
|
2019-01-12 01:00:43 +00:00
|
|
|
#include "base/task/post_task.h"
|
2015-06-15 13:18:40 +00:00
|
|
|
#include "base/time/time.h"
|
2015-08-10 07:02:16 +00:00
|
|
|
#include "base/values.h"
|
2015-06-18 10:38:32 +00:00
|
|
|
#include "content/public/browser/browser_context.h"
|
2019-01-12 01:00:43 +00:00
|
|
|
#include "content/public/browser/browser_task_traits.h"
|
2015-06-14 08:19:53 +00:00
|
|
|
#include "content/public/browser/browser_thread.h"
|
|
|
|
#include "native_mate/dictionary.h"
|
|
|
|
#include "native_mate/object_template_builder.h"
|
2018-04-11 09:25:51 +00:00
|
|
|
#include "net/cookies/canonical_cookie.h"
|
2015-06-14 08:19:53 +00:00
|
|
|
#include "net/cookies/cookie_store.h"
|
|
|
|
#include "net/cookies/cookie_util.h"
|
|
|
|
#include "net/url_request/url_request_context.h"
|
2015-06-18 10:38:32 +00:00
|
|
|
#include "net/url_request/url_request_context_getter.h"
|
2015-06-14 08:19:53 +00:00
|
|
|
|
|
|
|
using content::BrowserThread;
|
|
|
|
|
2015-12-12 07:33:51 +00:00
|
|
|
namespace mate {
|
2015-06-14 08:19:53 +00:00
|
|
|
|
2018-04-18 01:55:30 +00:00
|
|
|
template <>
|
2015-12-12 07:33:51 +00:00
|
|
|
struct Converter<atom::api::Cookies::Error> {
|
|
|
|
static v8::Local<v8::Value> ToV8(v8::Isolate* isolate,
|
|
|
|
atom::api::Cookies::Error val) {
|
|
|
|
if (val == atom::api::Cookies::SUCCESS)
|
|
|
|
return v8::Null(isolate);
|
|
|
|
else
|
2016-06-29 01:44:00 +00:00
|
|
|
return v8::Exception::Error(StringToV8(isolate, "Setting cookie failed"));
|
2015-06-14 08:19:53 +00:00
|
|
|
}
|
2015-12-12 07:33:51 +00:00
|
|
|
};
|
2015-06-15 07:33:09 +00:00
|
|
|
|
2018-04-18 01:55:30 +00:00
|
|
|
template <>
|
2015-12-12 07:33:51 +00:00
|
|
|
struct Converter<net::CanonicalCookie> {
|
|
|
|
static v8::Local<v8::Value> ToV8(v8::Isolate* isolate,
|
|
|
|
const net::CanonicalCookie& val) {
|
|
|
|
mate::Dictionary dict(isolate, v8::Object::New(isolate));
|
|
|
|
dict.Set("name", val.Name());
|
|
|
|
dict.Set("value", val.Value());
|
|
|
|
dict.Set("domain", val.Domain());
|
|
|
|
dict.Set("hostOnly", net::cookie_util::DomainIsHostOnly(val.Domain()));
|
|
|
|
dict.Set("path", val.Path());
|
|
|
|
dict.Set("secure", val.IsSecure());
|
|
|
|
dict.Set("httpOnly", val.IsHttpOnly());
|
|
|
|
dict.Set("session", !val.IsPersistent());
|
2016-05-08 05:38:07 +00:00
|
|
|
if (val.IsPersistent())
|
2015-12-12 07:33:51 +00:00
|
|
|
dict.Set("expirationDate", val.ExpiryDate().ToDoubleT());
|
|
|
|
return dict.GetHandle();
|
2015-06-15 07:33:09 +00:00
|
|
|
}
|
2015-12-12 07:33:51 +00:00
|
|
|
};
|
2015-06-15 07:33:09 +00:00
|
|
|
|
2018-04-18 01:55:30 +00:00
|
|
|
template <>
|
2018-10-04 18:08:56 +00:00
|
|
|
struct Converter<network::mojom::CookieChangeCause> {
|
|
|
|
static v8::Local<v8::Value> ToV8(
|
|
|
|
v8::Isolate* isolate,
|
|
|
|
const network::mojom::CookieChangeCause& val) {
|
2016-09-21 23:24:03 +00:00
|
|
|
switch (val) {
|
2018-10-04 18:08:56 +00:00
|
|
|
case network::mojom::CookieChangeCause::INSERTED:
|
|
|
|
case network::mojom::CookieChangeCause::EXPLICIT:
|
2016-09-21 23:24:03 +00:00
|
|
|
return mate::StringToV8(isolate, "explicit");
|
2018-10-04 18:08:56 +00:00
|
|
|
case network::mojom::CookieChangeCause::OVERWRITE:
|
2016-09-21 23:24:03 +00:00
|
|
|
return mate::StringToV8(isolate, "overwrite");
|
2018-10-04 18:08:56 +00:00
|
|
|
case network::mojom::CookieChangeCause::EXPIRED:
|
2016-09-21 23:24:03 +00:00
|
|
|
return mate::StringToV8(isolate, "expired");
|
2018-10-04 18:08:56 +00:00
|
|
|
case network::mojom::CookieChangeCause::EVICTED:
|
2016-09-21 23:24:03 +00:00
|
|
|
return mate::StringToV8(isolate, "evicted");
|
2018-10-04 18:08:56 +00:00
|
|
|
case network::mojom::CookieChangeCause::EXPIRED_OVERWRITE:
|
2016-09-21 23:24:03 +00:00
|
|
|
return mate::StringToV8(isolate, "expired-overwrite");
|
|
|
|
default:
|
|
|
|
return mate::StringToV8(isolate, "unknown");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2015-12-12 07:33:51 +00:00
|
|
|
} // namespace mate
|
2015-06-15 13:18:40 +00:00
|
|
|
|
2015-12-12 07:33:51 +00:00
|
|
|
namespace atom {
|
2015-06-15 13:18:40 +00:00
|
|
|
|
2015-12-12 07:33:51 +00:00
|
|
|
namespace api {
|
2015-06-15 13:18:40 +00:00
|
|
|
|
2015-12-12 07:33:51 +00:00
|
|
|
namespace {
|
2015-06-14 08:19:53 +00:00
|
|
|
|
2015-12-12 07:33:51 +00:00
|
|
|
// Returns whether |domain| matches |filter|.
|
|
|
|
bool MatchesDomain(std::string filter, const std::string& domain) {
|
2015-06-14 08:19:53 +00:00
|
|
|
// Add a leading '.' character to the filter domain if it doesn't exist.
|
2015-12-12 07:33:51 +00:00
|
|
|
if (net::cookie_util::DomainIsHostOnly(filter))
|
|
|
|
filter.insert(0, ".");
|
2015-06-14 08:19:53 +00:00
|
|
|
|
2015-12-12 07:33:51 +00:00
|
|
|
std::string sub_domain(domain);
|
2015-06-14 08:19:53 +00:00
|
|
|
// 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.
|
2015-12-12 07:33:51 +00:00
|
|
|
for (sub_domain.insert(0, "."); sub_domain.length() >= filter.length();) {
|
|
|
|
if (sub_domain == filter)
|
2015-06-14 08:19:53 +00:00
|
|
|
return true;
|
|
|
|
const size_t next_dot = sub_domain.find('.', 1); // Skip over leading dot.
|
|
|
|
sub_domain.erase(0, next_dot);
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-12-12 07:33:51 +00:00
|
|
|
// Returns whether |cookie| matches |filter|.
|
2015-06-14 08:19:53 +00:00
|
|
|
bool MatchesCookie(const base::DictionaryValue* filter,
|
2015-06-20 02:41:40 +00:00
|
|
|
const net::CanonicalCookie& cookie) {
|
2015-12-12 07:33:51 +00:00
|
|
|
std::string str;
|
|
|
|
bool b;
|
|
|
|
if (filter->GetString("name", &str) && str != cookie.Name())
|
2015-06-14 08:19:53 +00:00
|
|
|
return false;
|
2015-12-12 07:33:51 +00:00
|
|
|
if (filter->GetString("path", &str) && str != cookie.Path())
|
2015-06-14 08:19:53 +00:00
|
|
|
return false;
|
2015-12-12 07:33:51 +00:00
|
|
|
if (filter->GetString("domain", &str) && !MatchesDomain(str, cookie.Domain()))
|
2015-06-14 08:19:53 +00:00
|
|
|
return false;
|
2015-12-12 07:33:51 +00:00
|
|
|
if (filter->GetBoolean("secure", &b) && b != cookie.IsSecure())
|
2015-06-14 08:19:53 +00:00
|
|
|
return false;
|
2015-12-12 07:33:51 +00:00
|
|
|
if (filter->GetBoolean("session", &b) && b != !cookie.IsPersistent())
|
2015-06-14 08:19:53 +00:00
|
|
|
return false;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-12-12 07:33:51 +00:00
|
|
|
// Helper to returns the CookieStore.
|
|
|
|
inline net::CookieStore* GetCookieStore(
|
|
|
|
scoped_refptr<net::URLRequestContextGetter> getter) {
|
|
|
|
return getter->GetURLRequestContext()->cookie_store();
|
2015-06-14 08:19:53 +00:00
|
|
|
}
|
|
|
|
|
2015-12-12 07:33:51 +00:00
|
|
|
// Remove cookies from |list| not matching |filter|, and pass it to |callback|.
|
2016-05-23 01:59:39 +00:00
|
|
|
void FilterCookies(std::unique_ptr<base::DictionaryValue> filter,
|
2019-02-21 12:32:44 +00:00
|
|
|
util::Promise promise,
|
2019-02-21 17:04:39 +00:00
|
|
|
const net::CookieList& list,
|
|
|
|
const net::CookieStatusList& excluded_list) {
|
2015-06-14 08:19:53 +00:00
|
|
|
net::CookieList result;
|
2015-12-12 07:33:51 +00:00
|
|
|
for (const auto& cookie : list) {
|
2015-06-18 10:38:32 +00:00
|
|
|
if (MatchesCookie(filter.get(), cookie))
|
2015-06-14 08:19:53 +00:00
|
|
|
result.push_back(cookie);
|
|
|
|
}
|
2019-01-25 18:11:35 +00:00
|
|
|
|
|
|
|
base::PostTaskWithTraits(
|
|
|
|
FROM_HERE, {BrowserThread::UI},
|
2019-03-08 02:07:04 +00:00
|
|
|
base::BindOnce(util::Promise::ResolvePromise<net::CookieList>,
|
|
|
|
std::move(promise), std::move(result)));
|
2015-06-15 07:33:09 +00:00
|
|
|
}
|
|
|
|
|
2015-12-12 07:33:51 +00:00
|
|
|
// Receives cookies matching |filter| in IO thread.
|
|
|
|
void GetCookiesOnIO(scoped_refptr<net::URLRequestContextGetter> getter,
|
2016-05-23 01:59:39 +00:00
|
|
|
std::unique_ptr<base::DictionaryValue> filter,
|
2019-02-21 12:32:44 +00:00
|
|
|
util::Promise promise) {
|
2015-06-15 13:18:40 +00:00
|
|
|
std::string url;
|
2015-12-12 07:33:51 +00:00
|
|
|
filter->GetString("url", &url);
|
2015-06-15 13:18:40 +00:00
|
|
|
|
2015-12-12 07:33:51 +00:00
|
|
|
auto filtered_callback =
|
2019-02-21 12:32:44 +00:00
|
|
|
base::BindOnce(FilterCookies, std::move(filter), std::move(promise));
|
2015-06-15 13:18:40 +00:00
|
|
|
|
2015-12-12 07:33:51 +00:00
|
|
|
// Empty url will match all url cookies.
|
|
|
|
if (url.empty())
|
2019-02-21 12:32:44 +00:00
|
|
|
GetCookieStore(getter)->GetAllCookiesAsync(std::move(filtered_callback));
|
2015-12-12 07:33:51 +00:00
|
|
|
else
|
2019-02-21 12:32:44 +00:00
|
|
|
GetCookieStore(getter)->GetAllCookiesForURLAsync(
|
|
|
|
GURL(url), std::move(filtered_callback));
|
2015-12-12 07:33:51 +00:00
|
|
|
}
|
2015-06-15 13:18:40 +00:00
|
|
|
|
2015-12-12 07:33:51 +00:00
|
|
|
// Removes cookie with |url| and |name| in IO thread.
|
2019-01-25 18:11:35 +00:00
|
|
|
void RemoveCookieOnIO(scoped_refptr<net::URLRequestContextGetter> getter,
|
|
|
|
const GURL& url,
|
|
|
|
const std::string& name,
|
2019-02-21 12:32:44 +00:00
|
|
|
util::Promise promise) {
|
2019-02-21 17:03:22 +00:00
|
|
|
net::CookieDeletionInfo cookie_info;
|
|
|
|
cookie_info.url = url;
|
|
|
|
cookie_info.name = name;
|
|
|
|
GetCookieStore(getter)->DeleteAllMatchingInfoAsync(
|
|
|
|
std::move(cookie_info),
|
|
|
|
base::BindOnce(
|
|
|
|
[](util::Promise promise, uint32_t num_deleted) {
|
|
|
|
util::Promise::ResolveEmptyPromise(std::move(promise));
|
|
|
|
},
|
|
|
|
std::move(promise)));
|
2015-06-15 13:18:40 +00:00
|
|
|
}
|
|
|
|
|
2015-12-12 07:33:51 +00:00
|
|
|
// Callback of SetCookie.
|
2019-02-27 10:35:52 +00:00
|
|
|
void OnSetCookie(util::Promise promise,
|
|
|
|
net::CanonicalCookie::CookieInclusionStatus status) {
|
|
|
|
std::string errmsg;
|
|
|
|
switch (status) {
|
|
|
|
case net::CanonicalCookie::CookieInclusionStatus::EXCLUDE_HTTP_ONLY:
|
|
|
|
errmsg = "Failed to create httponly cookie";
|
|
|
|
break;
|
|
|
|
case net::CanonicalCookie::CookieInclusionStatus::EXCLUDE_SECURE_ONLY:
|
|
|
|
errmsg = "Cannot create a secure cookie from an insecure URL";
|
|
|
|
break;
|
|
|
|
case net::CanonicalCookie::CookieInclusionStatus::EXCLUDE_FAILURE_TO_STORE:
|
|
|
|
errmsg = "Failed to parse cookie";
|
|
|
|
break;
|
|
|
|
case net::CanonicalCookie::CookieInclusionStatus::EXCLUDE_INVALID_DOMAIN:
|
|
|
|
errmsg = "Failed to get cookie domain";
|
|
|
|
break;
|
|
|
|
case net::CanonicalCookie::CookieInclusionStatus::EXCLUDE_INVALID_PREFIX:
|
|
|
|
errmsg = "Failed because the cookie violated prefix rules.";
|
|
|
|
break;
|
|
|
|
case net::CanonicalCookie::CookieInclusionStatus::
|
|
|
|
EXCLUDE_NONCOOKIEABLE_SCHEME:
|
|
|
|
errmsg = "Cannot set cookie for current scheme";
|
|
|
|
break;
|
|
|
|
case net::CanonicalCookie::CookieInclusionStatus::INCLUDE:
|
|
|
|
errmsg = "";
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
errmsg = "Setting cookie failed";
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (errmsg.empty()) {
|
|
|
|
RunCallbackInUI(
|
2019-03-08 02:07:04 +00:00
|
|
|
base::BindOnce(util::Promise::ResolveEmptyPromise, std::move(promise)));
|
|
|
|
} else {
|
2019-02-27 10:35:52 +00:00
|
|
|
RunCallbackInUI(
|
|
|
|
base::BindOnce(util::Promise::RejectPromise, std::move(promise), errmsg));
|
2019-03-08 02:07:04 +00:00
|
|
|
}
|
2015-12-12 07:33:51 +00:00
|
|
|
}
|
2015-06-15 13:18:40 +00:00
|
|
|
|
2017-04-14 13:12:22 +00:00
|
|
|
// Flushes cookie store in IO thread.
|
2017-04-17 11:37:10 +00:00
|
|
|
void FlushCookieStoreOnIOThread(
|
|
|
|
scoped_refptr<net::URLRequestContextGetter> getter,
|
2019-02-21 12:32:44 +00:00
|
|
|
util::Promise promise) {
|
2019-01-25 18:11:35 +00:00
|
|
|
GetCookieStore(getter)->FlushStore(
|
2019-03-08 02:07:04 +00:00
|
|
|
base::BindOnce(util::Promise::ResolveEmptyPromise, std::move(promise)));
|
2017-04-14 13:12:22 +00:00
|
|
|
}
|
|
|
|
|
2015-12-12 07:33:51 +00:00
|
|
|
// Sets cookie with |details| in IO thread.
|
|
|
|
void SetCookieOnIO(scoped_refptr<net::URLRequestContextGetter> getter,
|
2016-05-23 01:59:39 +00:00
|
|
|
std::unique_ptr<base::DictionaryValue> details,
|
2019-02-21 12:32:44 +00:00
|
|
|
util::Promise promise) {
|
2019-02-27 09:01:26 +00:00
|
|
|
std::string url_string, name, value, domain, path;
|
2015-06-15 13:18:40 +00:00
|
|
|
bool secure = false;
|
|
|
|
bool http_only = false;
|
2016-04-27 17:40:20 +00:00
|
|
|
double creation_date;
|
2015-06-15 13:18:40 +00:00
|
|
|
double expiration_date;
|
2016-04-27 17:40:20 +00:00
|
|
|
double last_access_date;
|
2019-02-27 09:01:26 +00:00
|
|
|
details->GetString("url", &url_string);
|
2015-06-15 13:18:40 +00:00
|
|
|
details->GetString("name", &name);
|
|
|
|
details->GetString("value", &value);
|
|
|
|
details->GetString("domain", &domain);
|
|
|
|
details->GetString("path", &path);
|
|
|
|
details->GetBoolean("secure", &secure);
|
2015-12-12 07:33:51 +00:00
|
|
|
details->GetBoolean("httpOnly", &http_only);
|
2015-06-15 13:18:40 +00:00
|
|
|
|
2016-04-27 17:40:20 +00:00
|
|
|
base::Time creation_time;
|
|
|
|
if (details->GetDouble("creationDate", &creation_date)) {
|
2018-04-18 01:55:30 +00:00
|
|
|
creation_time = (creation_date == 0)
|
|
|
|
? base::Time::UnixEpoch()
|
|
|
|
: base::Time::FromDoubleT(creation_date);
|
2016-04-27 17:40:20 +00:00
|
|
|
}
|
|
|
|
|
2015-06-15 13:18:40 +00:00
|
|
|
base::Time expiration_time;
|
|
|
|
if (details->GetDouble("expirationDate", &expiration_date)) {
|
2018-04-18 01:55:30 +00:00
|
|
|
expiration_time = (expiration_date == 0)
|
|
|
|
? base::Time::UnixEpoch()
|
|
|
|
: base::Time::FromDoubleT(expiration_date);
|
2015-06-15 13:18:40 +00:00
|
|
|
}
|
|
|
|
|
2016-04-27 17:40:20 +00:00
|
|
|
base::Time last_access_time;
|
|
|
|
if (details->GetDouble("lastAccessDate", &last_access_date)) {
|
2018-04-18 01:55:30 +00:00
|
|
|
last_access_time = (last_access_date == 0)
|
|
|
|
? base::Time::UnixEpoch()
|
|
|
|
: base::Time::FromDoubleT(last_access_date);
|
2016-04-27 17:40:20 +00:00
|
|
|
}
|
|
|
|
|
2019-02-27 09:01:26 +00:00
|
|
|
GURL url(url_string);
|
2018-04-11 09:25:51 +00:00
|
|
|
std::unique_ptr<net::CanonicalCookie> canonical_cookie(
|
|
|
|
net::CanonicalCookie::CreateSanitizedCookie(
|
2019-02-27 09:01:26 +00:00
|
|
|
url, name, value, domain, path, creation_time, expiration_time,
|
2018-04-11 09:25:51 +00:00
|
|
|
last_access_time, secure, http_only,
|
|
|
|
net::CookieSameSite::DEFAULT_MODE, net::COOKIE_PRIORITY_DEFAULT));
|
2019-01-25 18:11:35 +00:00
|
|
|
auto completion_callback = base::BindOnce(OnSetCookie, std::move(promise));
|
2018-06-18 04:34:26 +00:00
|
|
|
if (!canonical_cookie || !canonical_cookie->IsCanonical()) {
|
2019-02-27 10:35:52 +00:00
|
|
|
std::move(completion_callback)
|
|
|
|
.Run(net::CanonicalCookie::CookieInclusionStatus::
|
|
|
|
EXCLUDE_FAILURE_TO_STORE);
|
2018-06-18 04:34:26 +00:00
|
|
|
return;
|
|
|
|
}
|
2019-02-27 09:01:26 +00:00
|
|
|
if (url.is_empty()) {
|
2019-02-27 10:35:52 +00:00
|
|
|
std::move(completion_callback)
|
|
|
|
.Run(net::CanonicalCookie::CookieInclusionStatus::
|
|
|
|
EXCLUDE_INVALID_DOMAIN);
|
2018-06-18 04:34:26 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (name.empty()) {
|
2019-02-27 10:35:52 +00:00
|
|
|
std::move(completion_callback)
|
|
|
|
.Run(net::CanonicalCookie::CookieInclusionStatus::
|
|
|
|
EXCLUDE_FAILURE_TO_STORE);
|
2018-04-11 09:25:51 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
GetCookieStore(getter)->SetCanonicalCookieAsync(
|
2019-02-27 09:01:26 +00:00
|
|
|
std::move(canonical_cookie), url.scheme(), http_only,
|
2018-04-11 09:25:51 +00:00
|
|
|
std::move(completion_callback));
|
2015-12-12 07:33:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
2017-11-27 03:27:14 +00:00
|
|
|
Cookies::Cookies(v8::Isolate* isolate, AtomBrowserContext* browser_context)
|
2018-03-30 13:24:55 +00:00
|
|
|
: browser_context_(browser_context) {
|
2016-04-25 01:17:54 +00:00
|
|
|
Init(isolate);
|
2018-08-14 21:07:53 +00:00
|
|
|
cookie_change_subscription_ =
|
2018-10-04 18:08:56 +00:00
|
|
|
browser_context_->cookie_change_notifier()->RegisterCookieChangeCallback(
|
|
|
|
base::Bind(&Cookies::OnCookieChanged, base::Unretained(this)));
|
2015-12-12 07:33:51 +00:00
|
|
|
}
|
|
|
|
|
2017-11-27 03:27:14 +00:00
|
|
|
Cookies::~Cookies() {}
|
2015-12-12 07:33:51 +00:00
|
|
|
|
2019-01-25 18:11:35 +00:00
|
|
|
v8::Local<v8::Promise> Cookies::Get(const base::DictionaryValue& filter) {
|
2019-02-21 12:32:44 +00:00
|
|
|
util::Promise promise(isolate());
|
|
|
|
v8::Local<v8::Promise> handle = promise.GetHandle();
|
2019-01-25 18:11:35 +00:00
|
|
|
|
2018-08-03 21:23:07 +00:00
|
|
|
auto copy = base::DictionaryValue::From(
|
|
|
|
base::Value::ToUniquePtrValue(filter.Clone()));
|
2018-04-17 22:41:47 +00:00
|
|
|
auto* getter = browser_context_->GetRequestContext();
|
2019-01-12 01:00:43 +00:00
|
|
|
base::PostTaskWithTraits(
|
|
|
|
FROM_HERE, {BrowserThread::IO},
|
2018-08-03 21:23:07 +00:00
|
|
|
base::BindOnce(GetCookiesOnIO, base::RetainedRef(getter), std::move(copy),
|
2019-02-21 12:32:44 +00:00
|
|
|
std::move(promise)));
|
2019-01-25 18:11:35 +00:00
|
|
|
|
2019-02-21 12:32:44 +00:00
|
|
|
return handle;
|
2015-06-15 13:18:40 +00:00
|
|
|
}
|
|
|
|
|
2019-01-25 18:11:35 +00:00
|
|
|
v8::Local<v8::Promise> Cookies::Remove(const GURL& url,
|
|
|
|
const std::string& name) {
|
2019-02-21 12:32:44 +00:00
|
|
|
util::Promise promise(isolate());
|
|
|
|
v8::Local<v8::Promise> handle = promise.GetHandle();
|
2019-01-25 18:11:35 +00:00
|
|
|
|
2018-04-17 22:41:47 +00:00
|
|
|
auto* getter = browser_context_->GetRequestContext();
|
2019-01-12 01:00:43 +00:00
|
|
|
base::PostTaskWithTraits(
|
|
|
|
FROM_HERE, {BrowserThread::IO},
|
2019-01-25 18:11:35 +00:00
|
|
|
base::BindOnce(RemoveCookieOnIO, base::RetainedRef(getter), url, name,
|
2019-02-21 12:32:44 +00:00
|
|
|
std::move(promise)));
|
2019-01-25 18:11:35 +00:00
|
|
|
|
2019-02-21 12:32:44 +00:00
|
|
|
return handle;
|
2015-06-15 13:18:40 +00:00
|
|
|
}
|
|
|
|
|
2019-01-25 18:11:35 +00:00
|
|
|
v8::Local<v8::Promise> Cookies::Set(const base::DictionaryValue& details) {
|
2019-02-21 12:32:44 +00:00
|
|
|
util::Promise promise(isolate());
|
|
|
|
v8::Local<v8::Promise> handle = promise.GetHandle();
|
2019-01-25 18:11:35 +00:00
|
|
|
|
2018-08-03 21:23:07 +00:00
|
|
|
auto copy = base::DictionaryValue::From(
|
|
|
|
base::Value::ToUniquePtrValue(details.Clone()));
|
2018-04-17 22:41:47 +00:00
|
|
|
auto* getter = browser_context_->GetRequestContext();
|
2019-01-12 01:00:43 +00:00
|
|
|
base::PostTaskWithTraits(
|
|
|
|
FROM_HERE, {BrowserThread::IO},
|
2018-08-03 21:23:07 +00:00
|
|
|
base::BindOnce(SetCookieOnIO, base::RetainedRef(getter), std::move(copy),
|
2019-02-21 12:32:44 +00:00
|
|
|
std::move(promise)));
|
2019-01-25 18:11:35 +00:00
|
|
|
|
2019-02-21 12:32:44 +00:00
|
|
|
return handle;
|
2015-08-10 07:02:16 +00:00
|
|
|
}
|
|
|
|
|
2019-01-25 18:11:35 +00:00
|
|
|
v8::Local<v8::Promise> Cookies::FlushStore() {
|
2019-02-21 12:32:44 +00:00
|
|
|
util::Promise promise(isolate());
|
|
|
|
v8::Local<v8::Promise> handle = promise.GetHandle();
|
2019-01-25 18:11:35 +00:00
|
|
|
|
2018-04-17 22:41:47 +00:00
|
|
|
auto* getter = browser_context_->GetRequestContext();
|
2019-02-21 12:32:44 +00:00
|
|
|
base::PostTaskWithTraits(
|
|
|
|
FROM_HERE, {BrowserThread::IO},
|
|
|
|
base::BindOnce(FlushCookieStoreOnIOThread, base::RetainedRef(getter),
|
|
|
|
std::move(promise)));
|
2019-01-25 18:11:35 +00:00
|
|
|
|
2019-02-21 12:32:44 +00:00
|
|
|
return handle;
|
2017-04-14 13:12:22 +00:00
|
|
|
}
|
|
|
|
|
2017-11-28 07:23:42 +00:00
|
|
|
void Cookies::OnCookieChanged(const CookieDetails* details) {
|
2017-11-27 03:27:14 +00:00
|
|
|
Emit("changed", *(details->cookie), details->cause, details->removed);
|
2016-09-21 23:24:03 +00:00
|
|
|
}
|
|
|
|
|
2015-06-14 08:19:53 +00:00
|
|
|
// static
|
2018-04-18 01:55:30 +00:00
|
|
|
mate::Handle<Cookies> Cookies::Create(v8::Isolate* isolate,
|
|
|
|
AtomBrowserContext* browser_context) {
|
2016-04-25 01:17:54 +00:00
|
|
|
return mate::CreateHandle(isolate, new Cookies(isolate, browser_context));
|
2015-06-14 08:19:53 +00:00
|
|
|
}
|
|
|
|
|
2015-12-03 08:04:46 +00:00
|
|
|
// static
|
|
|
|
void Cookies::BuildPrototype(v8::Isolate* isolate,
|
2016-08-02 09:08:12 +00:00
|
|
|
v8::Local<v8::FunctionTemplate> prototype) {
|
2016-08-02 10:28:12 +00:00
|
|
|
prototype->SetClassName(mate::StringToV8(isolate, "Cookies"));
|
2016-08-02 09:08:12 +00:00
|
|
|
mate::ObjectTemplateBuilder(isolate, prototype->PrototypeTemplate())
|
2015-12-03 08:04:46 +00:00
|
|
|
.SetMethod("get", &Cookies::Get)
|
|
|
|
.SetMethod("remove", &Cookies::Remove)
|
2017-04-14 13:12:22 +00:00
|
|
|
.SetMethod("set", &Cookies::Set)
|
|
|
|
.SetMethod("flushStore", &Cookies::FlushStore);
|
2015-12-03 08:04:46 +00:00
|
|
|
}
|
|
|
|
|
2015-06-14 08:19:53 +00:00
|
|
|
} // namespace api
|
|
|
|
|
2015-08-10 07:36:47 +00:00
|
|
|
} // namespace atom
|