![]() |
LeechCraft
0.6.70-13729-g7046a9d2a7
Modular cross-platform feature rich live environment.
|
A customized cookie jar with additional features. More...
#include "customcookiejar.h"
Inheritance diagram for LC::Util::CustomCookieJar:
Collaboration diagram for LC::Util::CustomCookieJar:Signals | |
| void | cookiesAdded (const QList< QNetworkCookie > &) |
| void | cookiesRemoved (const QList< QNetworkCookie > &) |
Public Member Functions | |
| CustomCookieJar (QObject *parent=nullptr) | |
| Constructs the cookie jar. More... | |
| void | SetFilterTrackingCookies (bool filter) |
| void | SetEnabled (bool enabled) |
| Enables or disables the cookies. More... | |
| void | SetExactDomainMatch (bool enabled) |
| Sets whether exact domain matching is enabled. More... | |
| void | SetWhitelist (const QList< QRegExp > &list) |
| Sets the cookies whitelist. More... | |
| void | SetBlacklist (const QList< QRegExp > &list) |
| Sets the cookies blacklist. More... | |
| QByteArray | Save () const |
| void | Load (const QByteArray &data) |
| void | CollectGarbage () |
| QList< QNetworkCookie > | cookiesForUrl (const QUrl &url) const override |
| Returns cookies for the given url. More... | |
| bool | setCookiesFromUrl (const QList< QNetworkCookie > &cookieList, const QUrl &url) override |
| Adds the cookieList for the given url to the jar. More... | |
A customized cookie jar with additional features.
Allows one to filter tracking cookies, filter duplicate cookies and has unlimited storage period.
Definition at line 48 of file customcookiejar.h.
|
explicit |
Constructs the cookie jar.
Filtering of tracking cookies is false by default, and cookies aren't restored.
| [in] | parent | The parent object. |
Definition at line 44 of file customcookiejar.cpp.
| void LC::Util::CustomCookieJar::CollectGarbage | ( | ) |
Removes duplicate cookies.
Definition at line 116 of file customcookiejar.cpp.
|
signal |
|
override |
Returns cookies for the given url.
This function automatically filters out duplicate cookies.
If the cookie jar is disabled, this function does nothing.
| [in] | url | The url to return cookies for. |
Definition at line 135 of file customcookiejar.cpp.
Referenced by setCookiesFromUrl().
Here is the caller graph for this function:
|
signal |
| void LC::Util::CustomCookieJar::Load | ( | const QByteArray & | data | ) |
Restores the cookies from the array previously obtained from Save().
| [in] | data | Serialized cookies. |
Definition at line 94 of file customcookiejar.cpp.
References cookiesAdded().
Referenced by LC::Util::SvcAuth::VkAuthManager::clearAuthData(), and LC::Util::SvcAuth::VkAuthManager::VkAuthManager().
Here is the caller graph for this function:| QByteArray LC::Util::CustomCookieJar::Save | ( | ) | const |
Serializes the cookie jar contents into a QByteArray suitable for storage.
Definition at line 74 of file customcookiejar.cpp.
| void LC::Util::CustomCookieJar::SetBlacklist | ( | const QList< QRegExp > & | list | ) |
Sets the cookies blacklist.
Cookies whose domains match regexps from the list will always be rejected until they are also present in the whitelist, in which case they are accepted.
| [in] | list | The blacklist. |
Definition at line 69 of file customcookiejar.cpp.
|
override |
Adds the cookieList for the given url to the jar.
If the cookie jar is disabled, this function does nothing.
| [in] | cookieList | The list of cookies to add. |
| [in] | url | The url to set cookies for. |
Definition at line 221 of file customcookiejar.cpp.
References cookiesAdded(), cookiesForUrl(), cookiesRemoved(), and LC::Util::MakeScopeGuard().
Here is the call graph for this function:| void LC::Util::CustomCookieJar::SetEnabled | ( | bool | enabled | ) |
Enables or disables the cookies.
If cookie jar is disabled, no new cookies will be saved and no cookies will be returned for any URL.
| [in] | enabled | Whether the cookie jar should be enabled. |
Definition at line 54 of file customcookiejar.cpp.
| void LC::Util::CustomCookieJar::SetExactDomainMatch | ( | bool | enabled | ) |
Sets whether exact domain matching is enabled.
| [in] | enabled | Whether exact matching is enabled. |
Definition at line 59 of file customcookiejar.cpp.
| void LC::Util::CustomCookieJar::SetFilterTrackingCookies | ( | bool | filter | ) |
Enables or disables filtering tracking cookies.
| [in] | filter | Whether to filter tracking cookies. |
Definition at line 49 of file customcookiejar.cpp.
| void LC::Util::CustomCookieJar::SetWhitelist | ( | const QList< QRegExp > & | list | ) |
Sets the cookies whitelist.
Cookies whose domains match regexps from the list will always be accepted even despite the SetFilterTrackingCookies() and SetExactDomainMatch() settings.
If a cookie domain matches both a whitelist regexp and blacklist regexp, it is accepted.
If cookies are disabled via SetEnabled(), this option has no effect.
| [in] | list | The whitelist. |
Definition at line 64 of file customcookiejar.cpp.