1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622
|
/*
* Copyright (C) 2012 Igalia S.L.
* Copyright (C) 2017 Endless Mobile, Inc.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public License
* along with this library; see the file COPYING.LIB. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
#include "config.h"
#include "WebKitCookieManager.h"
#include "APIHTTPCookieStore.h"
#include "NetworkProcessProxy.h"
#include "SoupCookiePersistentStorageType.h"
#include "WebKitCookieManagerPrivate.h"
#include "WebKitEnumTypes.h"
#include "WebKitWebsiteDataManagerPrivate.h"
#include "WebKitWebsiteDataPrivate.h"
#include "WebsiteDataRecord.h"
#include <WebCore/HTTPCookieAcceptPolicy.h>
#include <glib/gi18n-lib.h>
#include <pal/SessionID.h>
#include <wtf/glib/GRefPtr.h>
#include <wtf/glib/WTFGType.h>
#include <wtf/text/CString.h>
using namespace WebKit;
/**
* WebKitCookieManager:
*
* Defines how to handle cookies in a #WebKitWebContext.
*
* The WebKitCookieManager defines how to set up and handle cookies.
* You can get it from a #WebKitWebsiteDataManager with
* webkit_website_data_manager_get_cookie_manager(), and use it to set where to
* store cookies with webkit_cookie_manager_set_persistent_storage(),
* or to set the acceptance policy, with webkit_cookie_manager_get_accept_policy().
*/
enum {
CHANGED,
LAST_SIGNAL
};
class CookieStoreObserver : public API::HTTPCookieStore::Observer {
WTF_MAKE_FAST_ALLOCATED;
public:
CookieStoreObserver(Function<void()>&& callback)
: m_callback(WTFMove(callback)) { }
private:
void cookiesDidChange(API::HTTPCookieStore&) final
{
m_callback();
}
Function<void()> m_callback;
};
struct _WebKitCookieManagerPrivate {
API::HTTPCookieStore& cookieStore() const
{
ASSERT(dataManager);
return webkitWebsiteDataManagerGetDataStore(dataManager).cookieStore();
}
PAL::SessionID sessionID() const
{
ASSERT(dataManager);
return webkitWebsiteDataManagerGetDataStore(dataManager).sessionID();
}
~_WebKitCookieManagerPrivate()
{
cookieStore().unregisterObserver(*m_observer);
}
WebKitWebsiteDataManager* dataManager;
std::unique_ptr<CookieStoreObserver> m_observer;
};
static guint signals[LAST_SIGNAL] = { 0, };
WEBKIT_DEFINE_FINAL_TYPE(WebKitCookieManager, webkit_cookie_manager, G_TYPE_OBJECT, GObject)
static inline SoupCookiePersistentStorageType toSoupCookiePersistentStorageType(WebKitCookiePersistentStorage kitStorage)
{
switch (kitStorage) {
case WEBKIT_COOKIE_PERSISTENT_STORAGE_TEXT:
return SoupCookiePersistentStorageType::Text;
case WEBKIT_COOKIE_PERSISTENT_STORAGE_SQLITE:
return SoupCookiePersistentStorageType::SQLite;
default:
ASSERT_NOT_REACHED();
return SoupCookiePersistentStorageType::Text;
}
}
static inline WebKitCookieAcceptPolicy toWebKitCookieAcceptPolicy(WebCore::HTTPCookieAcceptPolicy httpPolicy)
{
switch (httpPolicy) {
case WebCore::HTTPCookieAcceptPolicy::AlwaysAccept:
return WEBKIT_COOKIE_POLICY_ACCEPT_ALWAYS;
case WebCore::HTTPCookieAcceptPolicy::Never:
return WEBKIT_COOKIE_POLICY_ACCEPT_NEVER;
case WebCore::HTTPCookieAcceptPolicy::ExclusivelyFromMainDocumentDomain:
return WEBKIT_COOKIE_POLICY_ACCEPT_NO_THIRD_PARTY;
case WebCore::HTTPCookieAcceptPolicy::OnlyFromMainDocumentDomain:
break;
}
RELEASE_ASSERT_NOT_REACHED();
}
static inline WebCore::HTTPCookieAcceptPolicy toHTTPCookieAcceptPolicy(WebKitCookieAcceptPolicy kitPolicy)
{
switch (kitPolicy) {
case WEBKIT_COOKIE_POLICY_ACCEPT_ALWAYS:
return WebCore::HTTPCookieAcceptPolicy::AlwaysAccept;
case WEBKIT_COOKIE_POLICY_ACCEPT_NEVER:
return WebCore::HTTPCookieAcceptPolicy::Never;
case WEBKIT_COOKIE_POLICY_ACCEPT_NO_THIRD_PARTY:
return WebCore::HTTPCookieAcceptPolicy::ExclusivelyFromMainDocumentDomain;
}
RELEASE_ASSERT_NOT_REACHED();
}
static void webkit_cookie_manager_class_init(WebKitCookieManagerClass* findClass)
{
GObjectClass* gObjectClass = G_OBJECT_CLASS(findClass);
/**
* WebKitCookieManager::changed:
* @cookie_manager: the #WebKitCookieManager
*
* This signal is emitted when cookies are added, removed or modified.
*/
signals[CHANGED] =
g_signal_new("changed",
G_TYPE_FROM_CLASS(gObjectClass),
G_SIGNAL_RUN_LAST,
0, 0, 0,
g_cclosure_marshal_VOID__VOID,
G_TYPE_NONE, 0);
}
WebKitCookieManager* webkitCookieManagerCreate(WebKitWebsiteDataManager* dataManager)
{
WebKitCookieManager* manager = WEBKIT_COOKIE_MANAGER(g_object_new(WEBKIT_TYPE_COOKIE_MANAGER, nullptr));
manager->priv->dataManager = dataManager;
manager->priv->m_observer = makeUnique<CookieStoreObserver>([manager] {
g_signal_emit(manager, signals[CHANGED], 0);
});
manager->priv->cookieStore().registerObserver(*manager->priv->m_observer);
return manager;
}
/**
* webkit_cookie_manager_set_persistent_storage:
* @cookie_manager: a #WebKitCookieManager
* @filename: the filename to read to/write from
* @storage: a #WebKitCookiePersistentStorage
*
* Set non-session cookies.
*
* Set the @filename where non-session cookies are stored persistently using
* @storage as the format to read/write the cookies.
* Cookies are initially read from @filename to create an initial set of cookies.
* Then, non-session cookies will be written to @filename when the WebKitCookieManager::changed
* signal is emitted.
* By default, @cookie_manager doesn't store the cookies persistently, so you need to call this
* method to keep cookies saved across sessions.
*
* This method should never be called on a #WebKitCookieManager associated to an ephemeral #WebKitWebsiteDataManager.
*/
void webkit_cookie_manager_set_persistent_storage(WebKitCookieManager* manager, const char* filename, WebKitCookiePersistentStorage storage)
{
g_return_if_fail(WEBKIT_IS_COOKIE_MANAGER(manager));
g_return_if_fail(filename);
g_return_if_fail(!webkit_website_data_manager_is_ephemeral(manager->priv->dataManager));
auto sessionID = manager->priv->sessionID();
if (sessionID.isEphemeral())
return;
auto& websiteDataStore = webkitWebsiteDataManagerGetDataStore(manager->priv->dataManager);
websiteDataStore.setCookiePersistentStorage(String::fromUTF8(filename), toSoupCookiePersistentStorageType(storage));
}
/**
* webkit_cookie_manager_set_accept_policy:
* @cookie_manager: a #WebKitCookieManager
* @policy: a #WebKitCookieAcceptPolicy
*
* Set the cookie acceptance policy of @cookie_manager as @policy.
*
* Note that ITP has its own way to handle third-party cookies, so when it's enabled,
* and @policy is set to %WEBKIT_COOKIE_POLICY_ACCEPT_NO_THIRD_PARTY, %WEBKIT_COOKIE_POLICY_ACCEPT_ALWAYS
* will be used instead. Once disabled, the policy will be set back to %WEBKIT_COOKIE_POLICY_ACCEPT_NO_THIRD_PARTY.
* See also webkit_website_data_manager_set_itp_enabled().
*/
void webkit_cookie_manager_set_accept_policy(WebKitCookieManager* manager, WebKitCookieAcceptPolicy policy)
{
g_return_if_fail(WEBKIT_IS_COOKIE_MANAGER(manager));
auto& websiteDataStore = webkitWebsiteDataManagerGetDataStore(manager->priv->dataManager);
websiteDataStore.setHTTPCookieAcceptPolicy(toHTTPCookieAcceptPolicy(policy));
}
/**
* webkit_cookie_manager_get_accept_policy:
* @cookie_manager: a #WebKitCookieManager
* @cancellable: (allow-none): a #GCancellable or %NULL to ignore
* @callback: (scope async): a #GAsyncReadyCallback to call when the request is satisfied
* @user_data: the data to pass to callback function
*
* Asynchronously get the cookie acceptance policy of @cookie_manager.
*
* Note that when policy was set to %WEBKIT_COOKIE_POLICY_ACCEPT_NO_THIRD_PARTY and
* ITP is enabled, this will return %WEBKIT_COOKIE_POLICY_ACCEPT_ALWAYS.
* See also webkit_website_data_manager_set_itp_enabled().
*
* When the operation is finished, @callback will be called. You can then call
* webkit_cookie_manager_get_accept_policy_finish() to get the result of the operation.
*/
void webkit_cookie_manager_get_accept_policy(WebKitCookieManager* manager, GCancellable* cancellable, GAsyncReadyCallback callback, gpointer userData)
{
g_return_if_fail(WEBKIT_IS_COOKIE_MANAGER(manager));
GRefPtr<GTask> task = adoptGRef(g_task_new(manager, cancellable, callback, userData));
manager->priv->cookieStore().getHTTPCookieAcceptPolicy([task = WTFMove(task)](WebCore::HTTPCookieAcceptPolicy policy) {
g_task_return_int(task.get(), toWebKitCookieAcceptPolicy(policy));
});
}
/**
* webkit_cookie_manager_get_accept_policy_finish:
* @cookie_manager: a #WebKitCookieManager
* @result: a #GAsyncResult
* @error: return location for error or %NULL to ignore
*
* Finish an asynchronous operation started with webkit_cookie_manager_get_accept_policy().
*
* Returns: the cookie acceptance policy of @cookie_manager as a #WebKitCookieAcceptPolicy.
*/
WebKitCookieAcceptPolicy webkit_cookie_manager_get_accept_policy_finish(WebKitCookieManager* manager, GAsyncResult* result, GError** error)
{
g_return_val_if_fail(WEBKIT_IS_COOKIE_MANAGER(manager), WEBKIT_COOKIE_POLICY_ACCEPT_NO_THIRD_PARTY);
g_return_val_if_fail(g_task_is_valid(result, manager), WEBKIT_COOKIE_POLICY_ACCEPT_NO_THIRD_PARTY);
gssize returnValue = g_task_propagate_int(G_TASK(result), error);
return returnValue == -1 ? WEBKIT_COOKIE_POLICY_ACCEPT_NO_THIRD_PARTY : static_cast<WebKitCookieAcceptPolicy>(returnValue);
}
/**
* webkit_cookie_manager_add_cookie:
* @cookie_manager: a #WebKitCookieManager
* @cookie: the #SoupCookie to be added
* @cancellable: (allow-none): a #GCancellable or %NULL to ignore
* @callback: (scope async): a #GAsyncReadyCallback to call when the request is satisfied
* @user_data: the data to pass to callback function
*
* Asynchronously add a #SoupCookie to the underlying storage.
*
* When the operation is finished, @callback will be called. You can then call
* webkit_cookie_manager_add_cookie_finish() to get the result of the operation.
*
* Since: 2.20
*/
void webkit_cookie_manager_add_cookie(WebKitCookieManager* manager, SoupCookie* cookie, GCancellable* cancellable, GAsyncReadyCallback callback, gpointer userData)
{
g_return_if_fail(WEBKIT_IS_COOKIE_MANAGER(manager));
g_return_if_fail(cookie);
GRefPtr<GTask> task = adoptGRef(g_task_new(manager, cancellable, callback, userData));
manager->priv->cookieStore().setCookies({ WebCore::Cookie(cookie) }, [task = WTFMove(task)]() {
g_task_return_boolean(task.get(), TRUE);
});
}
/**
* webkit_cookie_manager_add_cookie_finish:
* @cookie_manager: a #WebKitCookieManager
* @result: a #GAsyncResult
* @error: return location for error or %NULL to ignore
*
* Finish an asynchronous operation started with webkit_cookie_manager_add_cookie().
*
* Returns: %TRUE if the cookie was added or %FALSE in case of error.
*
* Since: 2.20
*/
gboolean webkit_cookie_manager_add_cookie_finish(WebKitCookieManager* manager, GAsyncResult* result, GError** error)
{
g_return_val_if_fail(WEBKIT_IS_COOKIE_MANAGER(manager), FALSE);
g_return_val_if_fail(g_task_is_valid(result, manager), FALSE);
return g_task_propagate_boolean(G_TASK(result), error);
}
/**
* webkit_cookie_manager_get_cookies:
* @cookie_manager: a #WebKitCookieManager
* @uri: the URI associated to the cookies to be retrieved
* @cancellable: (allow-none): a #GCancellable or %NULL to ignore
* @callback: (scope async): a #GAsyncReadyCallback to call when the request is satisfied
* @user_data: the data to pass to callback function
*
* Asynchronously get a list of #SoupCookie from @cookie_manager.
*
* Asynchronously get a list of #SoupCookie from @cookie_manager associated with @uri, which
* must be either an HTTP or an HTTPS URL.
*
* When the operation is finished, @callback will be called. You can then call
* webkit_cookie_manager_get_cookies_finish() to get the result of the operation.
*
* Since: 2.20
*/
void webkit_cookie_manager_get_cookies(WebKitCookieManager* manager, const gchar* uri, GCancellable* cancellable, GAsyncReadyCallback callback, gpointer userData)
{
g_return_if_fail(WEBKIT_IS_COOKIE_MANAGER(manager));
g_return_if_fail(uri);
GRefPtr<GTask> task = adoptGRef(g_task_new(manager, cancellable, callback, userData));
manager->priv->cookieStore().cookiesForURL(URL { String::fromUTF8(uri) }, [task = WTFMove(task)](const Vector<WebCore::Cookie>& cookies) {
GList* cookiesList = nullptr;
for (auto& cookie : cookies)
cookiesList = g_list_prepend(cookiesList, cookie.toSoupCookie());
g_task_return_pointer(task.get(), g_list_reverse(cookiesList), [](gpointer data) {
g_list_free_full(static_cast<GList*>(data), reinterpret_cast<GDestroyNotify>(soup_cookie_free));
});
});
}
/**
* webkit_cookie_manager_get_cookies_finish:
* @cookie_manager: a #WebKitCookieManager
* @result: a #GAsyncResult
* @error: return location for error or %NULL to ignore
*
* Finish an asynchronous operation started with webkit_cookie_manager_get_cookies().
*
* The return value is a #GSList of #SoupCookie instances which should be released
* with g_list_free_full() and soup_cookie_free().
*
* Returns: (element-type SoupCookie) (transfer full): A #GList of #SoupCookie instances.
*
* Since: 2.20
*/
GList* webkit_cookie_manager_get_cookies_finish(WebKitCookieManager* manager, GAsyncResult* result, GError** error)
{
g_return_val_if_fail(WEBKIT_IS_COOKIE_MANAGER(manager), nullptr);
g_return_val_if_fail(g_task_is_valid(result, manager), nullptr);
return reinterpret_cast<GList*>(g_task_propagate_pointer(G_TASK(result), error));
}
/**
* webkit_cookie_manager_delete_cookie:
* @cookie_manager: a #WebKitCookieManager
* @cookie: the #SoupCookie to be deleted
* @cancellable: (allow-none): a #GCancellable or %NULL to ignore
* @callback: (scope async): a #GAsyncReadyCallback to call when the request is satisfied
* @user_data: the data to pass to callback function
*
* Asynchronously delete a #SoupCookie from the current session.
*
* When the operation is finished, @callback will be called. You can then call
* webkit_cookie_manager_delete_cookie_finish() to get the result of the operation.
*
* Since: 2.20
*/
void webkit_cookie_manager_delete_cookie(WebKitCookieManager* manager, SoupCookie* cookie, GCancellable* cancellable, GAsyncReadyCallback callback, gpointer userData)
{
g_return_if_fail(WEBKIT_IS_COOKIE_MANAGER(manager));
g_return_if_fail(cookie);
GRefPtr<GTask> task = adoptGRef(g_task_new(manager, cancellable, callback, userData));
manager->priv->cookieStore().deleteCookie(WebCore::Cookie(cookie), [task = WTFMove(task)]() {
g_task_return_boolean(task.get(), TRUE);
});
}
/**
* webkit_cookie_manager_delete_cookie_finish:
* @cookie_manager: a #WebKitCookieManager
* @result: a #GAsyncResult
* @error: return location for error or %NULL to ignore
*
* Finish an asynchronous operation started with webkit_cookie_manager_delete_cookie().
*
* Returns: %TRUE if the cookie was deleted or %FALSE in case of error.
*
* Since: 2.20
*/
gboolean webkit_cookie_manager_delete_cookie_finish(WebKitCookieManager* manager, GAsyncResult* result, GError** error)
{
g_return_val_if_fail(WEBKIT_IS_COOKIE_MANAGER(manager), FALSE);
g_return_val_if_fail(g_task_is_valid(result, manager), FALSE);
return g_task_propagate_boolean(G_TASK(result), error);
}
#if PLATFORM(GTK) && !USE(GTK4)
/**
* webkit_cookie_manager_get_domains_with_cookies:
* @cookie_manager: a #WebKitCookieManager
* @cancellable: (allow-none): a #GCancellable or %NULL to ignore
* @callback: (scope async): a #GAsyncReadyCallback to call when the request is satisfied
* @user_data: the data to pass to callback function
*
* Asynchronously get the list of domains for which @cookie_manager contains cookies.
*
* When the operation is finished, @callback will be called. You can then call
* webkit_cookie_manager_get_domains_with_cookies_finish() to get the result of the operation.
*
* Deprecated: 2.16: Use webkit_website_data_manager_fetch() instead.
*/
void webkit_cookie_manager_get_domains_with_cookies(WebKitCookieManager* manager, GCancellable* cancellable, GAsyncReadyCallback callback, gpointer userData)
{
g_return_if_fail(WEBKIT_IS_COOKIE_MANAGER(manager));
GTask* task = g_task_new(manager, cancellable, callback, userData);
webkit_website_data_manager_fetch(manager->priv->dataManager, WEBKIT_WEBSITE_DATA_COOKIES, cancellable, [](GObject* object, GAsyncResult* result, gpointer userData) {
GRefPtr<GTask> task = adoptGRef(G_TASK(userData));
GError* error = nullptr;
GUniquePtr<GList> dataList(webkit_website_data_manager_fetch_finish(WEBKIT_WEBSITE_DATA_MANAGER(object), result, &error));
if (error) {
g_task_return_error(task.get(), error);
return;
}
GPtrArray* domains = g_ptr_array_sized_new(g_list_length(dataList.get()));
for (GList* item = dataList.get(); item; item = g_list_next(item)) {
auto* data = static_cast<WebKitWebsiteData*>(item->data);
g_ptr_array_add(domains, g_strdup(webkit_website_data_get_name(data)));
webkit_website_data_unref(data);
}
g_ptr_array_add(domains, nullptr);
g_task_return_pointer(task.get(), g_ptr_array_free(domains, FALSE), reinterpret_cast<GDestroyNotify>(g_strfreev));
}, task);
}
/**
* webkit_cookie_manager_get_domains_with_cookies_finish:
* @cookie_manager: a #WebKitCookieManager
* @result: a #GAsyncResult
* @error: return location for error or %NULL to ignore
*
* Finish an asynchronous operation started with webkit_cookie_manager_get_domains_with_cookies().
*
* The return value is a %NULL terminated list of strings which should
* be released with g_strfreev().
*
* Returns: (transfer full) (array zero-terminated=1): A %NULL terminated array of domain names
* or %NULL in case of error.
*
* Deprecated: 2.16: Use webkit_website_data_manager_fetch_finish() instead.
*/
gchar** webkit_cookie_manager_get_domains_with_cookies_finish(WebKitCookieManager* manager, GAsyncResult* result, GError** error)
{
g_return_val_if_fail(WEBKIT_IS_COOKIE_MANAGER(manager), nullptr);
g_return_val_if_fail(g_task_is_valid(result, manager), nullptr);
return reinterpret_cast<char**>(g_task_propagate_pointer(G_TASK(result), error));
}
/**
* webkit_cookie_manager_delete_cookies_for_domain:
* @cookie_manager: a #WebKitCookieManager
* @domain: a domain name
*
* Remove all cookies of @cookie_manager for the given @domain.
*
* Deprecated: 2.16: Use webkit_website_data_manager_remove() instead.
*/
void webkit_cookie_manager_delete_cookies_for_domain(WebKitCookieManager* manager, const gchar* domain)
{
g_return_if_fail(WEBKIT_IS_COOKIE_MANAGER(manager));
g_return_if_fail(domain);
WebsiteDataRecord record;
record.addCookieHostName(String::fromUTF8(domain));
auto* data = webkitWebsiteDataCreate(WTFMove(record));
GList dataList = { data, nullptr, nullptr };
webkit_website_data_manager_remove(manager->priv->dataManager, WEBKIT_WEBSITE_DATA_COOKIES, &dataList, nullptr, nullptr, nullptr);
webkit_website_data_unref(data);
}
/**
* webkit_cookie_manager_delete_all_cookies:
* @cookie_manager: a #WebKitCookieManager
*
* Delete all cookies of @cookie_manager.
*
* Deprecated: 2.16: Use webkit_website_data_manager_clear() instead.
*/
void webkit_cookie_manager_delete_all_cookies(WebKitCookieManager* manager)
{
g_return_if_fail(WEBKIT_IS_COOKIE_MANAGER(manager));
webkit_website_data_manager_clear(manager->priv->dataManager, WEBKIT_WEBSITE_DATA_COOKIES, 0, nullptr, nullptr, nullptr);
}
#endif
/**
* webkit_cookie_manager_replace_cookies:
* @cookie_manager: a #WebKitCookieManager
* @cookies: (element-type SoupCookie) (transfer none): a #GList of #SoupCookie to be added
* @cancellable: (nullable): a #GCancellable or %NULL to ignore
* @callback: (scope async): (closure user_data): a #GAsyncReadyCallback to call when the request is satisfied
* @user_data: the data to pass to callback function
*
* Asynchronously replace all cookies in @cookie_manager with the given list of @cookies.
*
* When the operation is finished, @callback will be called. You can then call
* webkit_cookie_manager_replace_cookies_finish() to get the result of the operation.
*
* Since: 2.42
*/
void webkit_cookie_manager_replace_cookies(WebKitCookieManager* manager, GList* cookies, GCancellable* cancellable, GAsyncReadyCallback callback, gpointer userData)
{
g_return_if_fail(WEBKIT_IS_COOKIE_MANAGER(manager));
g_return_if_fail(cookies);
Vector<WebCore::Cookie> webCookies;
for (GList* it = cookies; it; it = g_list_next(it))
webCookies.append(WebCore::Cookie(reinterpret_cast<SoupCookie*>(it->data)));
GRefPtr<GTask> task = adoptGRef(g_task_new(manager, cancellable, callback, userData));
manager->priv->cookieStore().replaceCookies(WTFMove(webCookies), [task = WTFMove(task)]() {
g_task_return_boolean(task.get(), TRUE);
});
}
/**
* webkit_cookie_manager_replace_cookies_finish:
* @cookie_manager: a #WebKitCookieManager
* @result: a #GAsyncResult
* @error: return location for error or %NULL to ignore
*
* Finish an asynchronous operation started with webkit_cookie_manager_replace_cookies().
*
* Returns: %TRUE if the cookies were added or %FALSE in case of error.
*
* Since: 2.42
*/
gboolean webkit_cookie_manager_replace_cookies_finish(WebKitCookieManager* manager, GAsyncResult* result, GError** error)
{
g_return_val_if_fail(WEBKIT_IS_COOKIE_MANAGER(manager), FALSE);
g_return_val_if_fail(g_task_is_valid(result, manager), FALSE);
return g_task_propagate_boolean(G_TASK(result), error);
}
/**
* webkit_cookie_manager_get_all_cookies:
* @cookie_manager: a #WebKitCookieManager
* @cancellable: (nullable): a #GCancellable or %NULL to ignore
* @callback: (scope async): (closure user_data): a #GAsyncReadyCallback to call when the request is satisfied
* @user_data: the data to pass to callback function
*
* Asynchronously get a list of #SoupCookie from @cookie_manager.
*
* When the operation is finished, @callback will be called. You can then call
* webkit_cookie_manager_get_all_cookies_finish() to get the result of the operation.
*
* Since: 2.42
*/
void webkit_cookie_manager_get_all_cookies(WebKitCookieManager* manager, GCancellable* cancellable, GAsyncReadyCallback callback, gpointer userData)
{
g_return_if_fail(WEBKIT_IS_COOKIE_MANAGER(manager));
GRefPtr<GTask> task = adoptGRef(g_task_new(manager, cancellable, callback, userData));
manager->priv->cookieStore().getAllCookies([task = WTFMove(task)](const Vector<WebCore::Cookie>& cookies) {
GList* cookiesList = nullptr;
for (auto& cookie : cookies)
cookiesList = g_list_prepend(cookiesList, cookie.toSoupCookie());
g_task_return_pointer(task.get(), g_list_reverse(cookiesList), [](gpointer data) {
g_list_free_full(static_cast<GList*>(data), reinterpret_cast<GDestroyNotify>(soup_cookie_free));
});
});
}
/**
* webkit_cookie_manager_get_all_cookies_finish:
* @cookie_manager: a #WebKitCookieManager
* @result: a #GAsyncResult
* @error: return location for error or %NULL to ignore
*
* Finish an asynchronous operation started with webkit_cookie_manager_get_all_cookies().
*
* The return value is a #GSList of #SoupCookie instances which should be released
* with g_list_free_full() and soup_cookie_free().
*
* Returns: (element-type SoupCookie) (transfer full): A #GList of #SoupCookie instances.
*
* Since: 2.42
*/
GList* webkit_cookie_manager_get_all_cookies_finish(WebKitCookieManager* manager, GAsyncResult* result, GError** error)
{
g_return_val_if_fail(WEBKIT_IS_COOKIE_MANAGER(manager), nullptr);
g_return_val_if_fail(g_task_is_valid(result, manager), nullptr);
return static_cast<GList*>(g_task_propagate_pointer(G_TASK(result), error));
}
|