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.
|
|
|
|
|
2020-02-04 20:19:40 +00:00
|
|
|
#include "shell/browser/api/electron_api_cookies.h"
|
2015-06-14 08:19:53 +00:00
|
|
|
|
2018-09-13 00:25:56 +00:00
|
|
|
#include <memory>
|
|
|
|
#include <utility>
|
|
|
|
|
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"
|
2019-04-24 19:49:30 +00:00
|
|
|
#include "content/public/browser/storage_partition.h"
|
2019-04-30 13:45:05 +00:00
|
|
|
#include "gin/dictionary.h"
|
|
|
|
#include "gin/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"
|
2019-06-19 20:46:59 +00:00
|
|
|
#include "shell/browser/cookie_change_notifier.h"
|
2020-02-04 20:19:40 +00:00
|
|
|
#include "shell/browser/electron_browser_context.h"
|
2019-10-25 13:03:28 +00:00
|
|
|
#include "shell/common/gin_converters/gurl_converter.h"
|
2019-10-31 07:56:00 +00:00
|
|
|
#include "shell/common/gin_converters/value_converter.h"
|
2019-10-25 13:03:28 +00:00
|
|
|
#include "shell/common/gin_helper/dictionary.h"
|
|
|
|
#include "shell/common/gin_helper/object_template_builder.h"
|
2015-06-14 08:19:53 +00:00
|
|
|
|
|
|
|
using content::BrowserThread;
|
|
|
|
|
2019-04-30 13:45:05 +00:00
|
|
|
namespace gin {
|
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<net::CanonicalCookie> {
|
|
|
|
static v8::Local<v8::Value> ToV8(v8::Isolate* isolate,
|
|
|
|
const net::CanonicalCookie& val) {
|
2019-04-30 13:45:05 +00:00
|
|
|
gin::Dictionary dict(isolate, v8::Object::New(isolate));
|
2015-12-12 07:33:51 +00:00
|
|
|
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());
|
2019-04-30 13:45:05 +00:00
|
|
|
return ConvertToV8(isolate, dict).As<v8::Object>();
|
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 <>
|
2019-10-28 22:12:35 +00:00
|
|
|
struct Converter<net::CookieChangeCause> {
|
|
|
|
static v8::Local<v8::Value> ToV8(v8::Isolate* isolate,
|
|
|
|
const net::CookieChangeCause& val) {
|
2016-09-21 23:24:03 +00:00
|
|
|
switch (val) {
|
2019-10-28 22:12:35 +00:00
|
|
|
case net::CookieChangeCause::INSERTED:
|
|
|
|
case net::CookieChangeCause::EXPLICIT:
|
2019-04-30 13:45:05 +00:00
|
|
|
return gin::StringToV8(isolate, "explicit");
|
2019-10-28 22:12:35 +00:00
|
|
|
case net::CookieChangeCause::OVERWRITE:
|
2019-04-30 13:45:05 +00:00
|
|
|
return gin::StringToV8(isolate, "overwrite");
|
2019-10-28 22:12:35 +00:00
|
|
|
case net::CookieChangeCause::EXPIRED:
|
2019-04-30 13:45:05 +00:00
|
|
|
return gin::StringToV8(isolate, "expired");
|
2019-10-28 22:12:35 +00:00
|
|
|
case net::CookieChangeCause::EVICTED:
|
2019-04-30 13:45:05 +00:00
|
|
|
return gin::StringToV8(isolate, "evicted");
|
2019-10-28 22:12:35 +00:00
|
|
|
case net::CookieChangeCause::EXPIRED_OVERWRITE:
|
2019-04-30 13:45:05 +00:00
|
|
|
return gin::StringToV8(isolate, "expired-overwrite");
|
2016-09-21 23:24:03 +00:00
|
|
|
default:
|
2019-04-30 13:45:05 +00:00
|
|
|
return gin::StringToV8(isolate, "unknown");
|
2016-09-21 23:24:03 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2019-04-30 13:45:05 +00:00
|
|
|
} // namespace gin
|
2015-06-15 13:18:40 +00:00
|
|
|
|
2019-06-19 21:23:04 +00:00
|
|
|
namespace electron {
|
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|.
|
2019-04-24 19:49:30 +00:00
|
|
|
bool MatchesCookie(const base::Value& filter,
|
2015-06-20 02:41:40 +00:00
|
|
|
const net::CanonicalCookie& cookie) {
|
2019-04-24 19:49:30 +00:00
|
|
|
const std::string* str;
|
|
|
|
if ((str = filter.FindStringKey("name")) && *str != cookie.Name())
|
2015-06-14 08:19:53 +00:00
|
|
|
return false;
|
2019-04-24 19:49:30 +00:00
|
|
|
if ((str = filter.FindStringKey("path")) && *str != cookie.Path())
|
2015-06-14 08:19:53 +00:00
|
|
|
return false;
|
2019-04-24 19:49:30 +00:00
|
|
|
if ((str = filter.FindStringKey("domain")) &&
|
|
|
|
!MatchesDomain(*str, cookie.Domain()))
|
2015-06-14 08:19:53 +00:00
|
|
|
return false;
|
2019-04-24 19:49:30 +00:00
|
|
|
base::Optional<bool> secure_filter = filter.FindBoolKey("secure");
|
|
|
|
if (secure_filter && *secure_filter == cookie.IsSecure())
|
2015-06-14 08:19:53 +00:00
|
|
|
return false;
|
2019-04-24 19:49:30 +00:00
|
|
|
base::Optional<bool> session_filter = filter.FindBoolKey("session");
|
|
|
|
if (session_filter && *session_filter != !cookie.IsPersistent())
|
2015-06-14 08:19:53 +00:00
|
|
|
return false;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-12-12 07:33:51 +00:00
|
|
|
// Remove cookies from |list| not matching |filter|, and pass it to |callback|.
|
2019-04-24 19:49:30 +00:00
|
|
|
void FilterCookies(const base::Value& filter,
|
2019-11-01 06:10:32 +00:00
|
|
|
gin_helper::Promise<net::CookieList> promise,
|
2019-10-09 06:57:40 +00:00
|
|
|
const net::CookieList& cookies) {
|
2015-06-14 08:19:53 +00:00
|
|
|
net::CookieList result;
|
2019-10-09 06:57:40 +00:00
|
|
|
for (const auto& cookie : cookies) {
|
2019-04-24 19:49:30 +00:00
|
|
|
if (MatchesCookie(filter, cookie))
|
2015-06-14 08:19:53 +00:00
|
|
|
result.push_back(cookie);
|
|
|
|
}
|
2019-11-01 06:10:32 +00:00
|
|
|
promise.Resolve(result);
|
2015-06-15 07:33:09 +00:00
|
|
|
}
|
|
|
|
|
2019-10-09 06:57:40 +00:00
|
|
|
void FilterCookieWithStatuses(const base::Value& filter,
|
2019-11-01 06:10:32 +00:00
|
|
|
gin_helper::Promise<net::CookieList> promise,
|
2019-10-09 06:57:40 +00:00
|
|
|
const net::CookieStatusList& list,
|
|
|
|
const net::CookieStatusList& excluded_list) {
|
|
|
|
FilterCookies(filter, std::move(promise),
|
|
|
|
net::cookie_util::StripStatuses(list));
|
|
|
|
}
|
|
|
|
|
2019-12-11 07:44:49 +00:00
|
|
|
// Parse dictionary property to CanonicalCookie time correctly.
|
|
|
|
base::Time ParseTimeProperty(const base::Optional<double>& value) {
|
|
|
|
if (!value) // empty time means ignoring the parameter
|
|
|
|
return base::Time();
|
|
|
|
if (*value == 0) // FromDoubleT would convert 0 to empty Time
|
|
|
|
return base::Time::UnixEpoch();
|
|
|
|
return base::Time::FromDoubleT(*value);
|
|
|
|
}
|
|
|
|
|
2019-04-24 19:49:30 +00:00
|
|
|
std::string InclusionStatusToString(
|
|
|
|
net::CanonicalCookie::CookieInclusionStatus status) {
|
2019-09-18 19:58:00 +00:00
|
|
|
if (status.HasExclusionReason(
|
|
|
|
net::CanonicalCookie::CookieInclusionStatus::EXCLUDE_HTTP_ONLY))
|
|
|
|
return "Failed to create httponly cookie";
|
|
|
|
if (status.HasExclusionReason(
|
|
|
|
net::CanonicalCookie::CookieInclusionStatus::EXCLUDE_SECURE_ONLY))
|
|
|
|
return "Cannot create a secure cookie from an insecure URL";
|
|
|
|
if (status.HasExclusionReason(net::CanonicalCookie::CookieInclusionStatus::
|
|
|
|
EXCLUDE_FAILURE_TO_STORE))
|
|
|
|
return "Failed to parse cookie";
|
|
|
|
if (status.HasExclusionReason(
|
|
|
|
net::CanonicalCookie::CookieInclusionStatus::EXCLUDE_INVALID_DOMAIN))
|
|
|
|
return "Failed to get cookie domain";
|
|
|
|
if (status.HasExclusionReason(
|
|
|
|
net::CanonicalCookie::CookieInclusionStatus::EXCLUDE_INVALID_PREFIX))
|
|
|
|
return "Failed because the cookie violated prefix rules.";
|
|
|
|
if (status.HasExclusionReason(net::CanonicalCookie::CookieInclusionStatus::
|
|
|
|
EXCLUDE_NONCOOKIEABLE_SCHEME))
|
|
|
|
return "Cannot set cookie for current scheme";
|
|
|
|
return "Setting cookie failed";
|
2015-12-12 07:33:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
2020-03-25 22:34:53 +00:00
|
|
|
gin::WrapperInfo Cookies::kWrapperInfo = {gin::kEmbedderNativeGin};
|
|
|
|
|
2020-02-04 20:19:40 +00:00
|
|
|
Cookies::Cookies(v8::Isolate* isolate, ElectronBrowserContext* browser_context)
|
2018-03-30 13:24:55 +00:00
|
|
|
: browser_context_(browser_context) {
|
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(
|
2019-04-28 01:03:06 +00:00
|
|
|
base::BindRepeating(&Cookies::OnCookieChanged,
|
|
|
|
base::Unretained(this)));
|
2015-12-12 07:33:51 +00:00
|
|
|
}
|
|
|
|
|
2019-09-16 22:12:00 +00:00
|
|
|
Cookies::~Cookies() = default;
|
2015-12-12 07:33:51 +00:00
|
|
|
|
2020-03-25 22:34:53 +00:00
|
|
|
v8::Local<v8::Promise> Cookies::Get(v8::Isolate* isolate,
|
|
|
|
const gin_helper::Dictionary& filter) {
|
|
|
|
gin_helper::Promise<net::CookieList> promise(isolate);
|
2019-02-21 12:32:44 +00:00
|
|
|
v8::Local<v8::Promise> handle = promise.GetHandle();
|
2019-01-25 18:11:35 +00:00
|
|
|
|
2020-03-25 22:34:53 +00:00
|
|
|
auto* storage_partition =
|
|
|
|
content::BrowserContext::GetDefaultStoragePartition(browser_context_);
|
2019-04-24 19:49:30 +00:00
|
|
|
auto* manager = storage_partition->GetCookieManagerForBrowserProcess();
|
|
|
|
|
2019-10-09 06:57:40 +00:00
|
|
|
base::DictionaryValue dict;
|
2020-03-25 22:34:53 +00:00
|
|
|
gin::ConvertFromV8(isolate, filter.GetHandle(), &dict);
|
2019-10-09 06:57:40 +00:00
|
|
|
|
|
|
|
std::string url;
|
|
|
|
filter.Get("url", &url);
|
|
|
|
if (url.empty()) {
|
|
|
|
manager->GetAllCookies(
|
|
|
|
base::BindOnce(&FilterCookies, std::move(dict), std::move(promise)));
|
|
|
|
} else {
|
|
|
|
net::CookieOptions options;
|
|
|
|
options.set_include_httponly();
|
|
|
|
options.set_same_site_cookie_context(
|
|
|
|
net::CookieOptions::SameSiteCookieContext::SAME_SITE_STRICT);
|
|
|
|
options.set_do_not_update_access_time();
|
|
|
|
|
|
|
|
manager->GetCookieList(GURL(url), options,
|
|
|
|
base::BindOnce(&FilterCookieWithStatuses,
|
|
|
|
std::move(dict), 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
|
|
|
}
|
|
|
|
|
2020-03-25 22:34:53 +00:00
|
|
|
v8::Local<v8::Promise> Cookies::Remove(v8::Isolate* isolate,
|
|
|
|
const GURL& url,
|
2019-01-25 18:11:35 +00:00
|
|
|
const std::string& name) {
|
2020-03-25 22:34:53 +00:00
|
|
|
gin_helper::Promise<void> promise(isolate);
|
2019-02-21 12:32:44 +00:00
|
|
|
v8::Local<v8::Promise> handle = promise.GetHandle();
|
2019-01-25 18:11:35 +00:00
|
|
|
|
2019-04-24 19:49:30 +00:00
|
|
|
auto cookie_deletion_filter = network::mojom::CookieDeletionFilter::New();
|
|
|
|
cookie_deletion_filter->url = url;
|
|
|
|
cookie_deletion_filter->cookie_name = name;
|
|
|
|
|
2020-03-25 22:34:53 +00:00
|
|
|
auto* storage_partition =
|
|
|
|
content::BrowserContext::GetDefaultStoragePartition(browser_context_);
|
2019-04-24 19:49:30 +00:00
|
|
|
auto* manager = storage_partition->GetCookieManagerForBrowserProcess();
|
|
|
|
|
|
|
|
manager->DeleteCookies(
|
|
|
|
std::move(cookie_deletion_filter),
|
|
|
|
base::BindOnce(
|
2019-11-01 06:10:32 +00:00
|
|
|
[](gin_helper::Promise<void> promise, uint32_t num_deleted) {
|
|
|
|
gin_helper::Promise<void>::ResolvePromise(std::move(promise));
|
2019-04-24 19:49:30 +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
|
|
|
}
|
|
|
|
|
2020-03-25 22:34:53 +00:00
|
|
|
v8::Local<v8::Promise> Cookies::Set(v8::Isolate* isolate,
|
|
|
|
const base::DictionaryValue& details) {
|
|
|
|
gin_helper::Promise<void> promise(isolate);
|
2019-02-21 12:32:44 +00:00
|
|
|
v8::Local<v8::Promise> handle = promise.GetHandle();
|
2019-01-25 18:11:35 +00:00
|
|
|
|
2019-04-24 19:49:30 +00:00
|
|
|
const std::string* url_string = details.FindStringKey("url");
|
|
|
|
const std::string* name = details.FindStringKey("name");
|
|
|
|
const std::string* value = details.FindStringKey("value");
|
|
|
|
const std::string* domain = details.FindStringKey("domain");
|
|
|
|
const std::string* path = details.FindStringKey("path");
|
|
|
|
bool secure = details.FindBoolKey("secure").value_or(false);
|
|
|
|
bool http_only = details.FindBoolKey("httpOnly").value_or(false);
|
|
|
|
|
|
|
|
GURL url(url_string ? *url_string : "");
|
2019-06-14 17:56:22 +00:00
|
|
|
if (!url.is_valid()) {
|
2019-09-18 19:58:00 +00:00
|
|
|
promise.RejectWithErrorMessage(
|
|
|
|
InclusionStatusToString(net::CanonicalCookie::CookieInclusionStatus(
|
|
|
|
net::CanonicalCookie::CookieInclusionStatus::
|
|
|
|
EXCLUDE_INVALID_DOMAIN)));
|
2019-04-24 19:49:30 +00:00
|
|
|
return handle;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto canonical_cookie = net::CanonicalCookie::CreateSanitizedCookie(
|
2019-12-11 07:44:49 +00:00
|
|
|
url, name ? *name : "", value ? *value : "", domain ? *domain : "",
|
|
|
|
path ? *path : "",
|
|
|
|
ParseTimeProperty(details.FindDoubleKey("creationDate")),
|
|
|
|
ParseTimeProperty(details.FindDoubleKey("expirationDate")),
|
|
|
|
ParseTimeProperty(details.FindDoubleKey("lastAccessDate")), secure,
|
|
|
|
http_only, net::CookieSameSite::NO_RESTRICTION,
|
|
|
|
net::COOKIE_PRIORITY_DEFAULT);
|
2019-04-24 19:49:30 +00:00
|
|
|
if (!canonical_cookie || !canonical_cookie->IsCanonical()) {
|
2019-09-18 19:58:00 +00:00
|
|
|
promise.RejectWithErrorMessage(
|
|
|
|
InclusionStatusToString(net::CanonicalCookie::CookieInclusionStatus(
|
|
|
|
net::CanonicalCookie::CookieInclusionStatus::
|
|
|
|
EXCLUDE_FAILURE_TO_STORE)));
|
2019-04-24 19:49:30 +00:00
|
|
|
return handle;
|
|
|
|
}
|
|
|
|
net::CookieOptions options;
|
|
|
|
if (http_only) {
|
|
|
|
options.set_include_httponly();
|
|
|
|
}
|
|
|
|
|
2020-03-25 22:34:53 +00:00
|
|
|
auto* storage_partition =
|
|
|
|
content::BrowserContext::GetDefaultStoragePartition(browser_context_);
|
2019-04-24 19:49:30 +00:00
|
|
|
auto* manager = storage_partition->GetCookieManagerForBrowserProcess();
|
|
|
|
manager->SetCanonicalCookie(
|
|
|
|
*canonical_cookie, url.scheme(), options,
|
|
|
|
base::BindOnce(
|
2019-11-01 06:10:32 +00:00
|
|
|
[](gin_helper::Promise<void> promise,
|
2019-04-24 19:49:30 +00:00
|
|
|
net::CanonicalCookie::CookieInclusionStatus status) {
|
2019-09-18 19:58:00 +00:00
|
|
|
if (status.IsInclude()) {
|
2019-04-24 19:49:30 +00:00
|
|
|
promise.Resolve();
|
|
|
|
} else {
|
2019-09-18 19:58:00 +00:00
|
|
|
promise.RejectWithErrorMessage(InclusionStatusToString(status));
|
2019-04-24 19:49:30 +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
|
|
|
}
|
|
|
|
|
2020-03-25 22:34:53 +00:00
|
|
|
v8::Local<v8::Promise> Cookies::FlushStore(v8::Isolate* isolate) {
|
|
|
|
gin_helper::Promise<void> promise(isolate);
|
2019-02-21 12:32:44 +00:00
|
|
|
v8::Local<v8::Promise> handle = promise.GetHandle();
|
2019-01-25 18:11:35 +00:00
|
|
|
|
2020-03-25 22:34:53 +00:00
|
|
|
auto* storage_partition =
|
|
|
|
content::BrowserContext::GetDefaultStoragePartition(browser_context_);
|
2019-04-24 19:49:30 +00:00
|
|
|
auto* manager = storage_partition->GetCookieManagerForBrowserProcess();
|
|
|
|
|
2019-08-23 00:03:28 +00:00
|
|
|
manager->FlushCookieStore(base::BindOnce(
|
2019-11-01 06:10:32 +00:00
|
|
|
gin_helper::Promise<void>::ResolvePromise, 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
|
|
|
}
|
|
|
|
|
2019-10-28 22:12:35 +00:00
|
|
|
void Cookies::OnCookieChanged(const net::CookieChangeInfo& change) {
|
2020-03-25 22:34:53 +00:00
|
|
|
v8::Isolate* isolate = v8::Isolate::GetCurrent();
|
|
|
|
v8::HandleScope scope(isolate);
|
|
|
|
Emit("changed", gin::ConvertToV8(isolate, change.cookie),
|
|
|
|
gin::ConvertToV8(isolate, change.cause),
|
|
|
|
gin::ConvertToV8(isolate,
|
2019-10-28 22:12:35 +00:00
|
|
|
change.cause != net::CookieChangeCause::INSERTED));
|
2016-09-21 23:24:03 +00:00
|
|
|
}
|
|
|
|
|
2015-06-14 08:19:53 +00:00
|
|
|
// static
|
2019-04-30 13:45:05 +00:00
|
|
|
gin::Handle<Cookies> Cookies::Create(v8::Isolate* isolate,
|
2020-02-04 20:19:40 +00:00
|
|
|
ElectronBrowserContext* browser_context) {
|
2019-04-30 13:45:05 +00:00
|
|
|
return gin::CreateHandle(isolate, new Cookies(isolate, browser_context));
|
2015-06-14 08:19:53 +00:00
|
|
|
}
|
|
|
|
|
2020-03-25 22:34:53 +00:00
|
|
|
gin::ObjectTemplateBuilder Cookies::GetObjectTemplateBuilder(
|
|
|
|
v8::Isolate* isolate) {
|
|
|
|
return gin_helper::EventEmitterMixin<Cookies>::GetObjectTemplateBuilder(
|
|
|
|
isolate)
|
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
|
|
|
}
|
|
|
|
|
2020-03-25 22:34:53 +00:00
|
|
|
const char* Cookies::GetTypeName() {
|
|
|
|
return "Cookies";
|
|
|
|
}
|
|
|
|
|
2015-06-14 08:19:53 +00:00
|
|
|
} // namespace api
|
|
|
|
|
2019-06-19 21:23:04 +00:00
|
|
|
} // namespace electron
|