blob: e54d168621fa23ab194728ac3aef65ec8f96bed1 (
plain)
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
|
/*
* Copyright (c) 2021-2023, Tim Flynn <trflynn89@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <AK/DeprecatedString.h>
#include <AK/Time.h>
#include <LibIPC/Forward.h>
namespace Web::Cookie {
enum class SameSite {
Default,
None,
Strict,
Lax
};
enum class Source {
NonHttp,
Http,
};
struct Cookie {
DeprecatedString creation_time_to_string() const;
DeprecatedString last_access_time_to_string() const;
DeprecatedString expiry_time_to_string() const;
DeprecatedString name;
DeprecatedString value;
SameSite same_site;
Time creation_time {};
Time last_access_time {};
Time expiry_time {};
DeprecatedString domain {};
DeprecatedString path {};
bool secure { false };
bool http_only { false };
bool host_only { false };
bool persistent { false };
};
StringView same_site_to_string(SameSite same_site_mode);
SameSite same_site_from_string(StringView same_site_mode);
}
namespace IPC {
template<>
ErrorOr<void> encode(Encoder&, Web::Cookie::Cookie const&);
template<>
ErrorOr<Web::Cookie::Cookie> decode(Decoder&);
}
|