forked from SerenityOS/serenity
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CookiesModel.cpp
123 lines (101 loc) Β· 2.98 KB
/
CookiesModel.cpp
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
/*
* Copyright (c) 2022, the SerenityOS developers.
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#include "CookiesModel.h"
#include <AK/FuzzyMatch.h>
namespace Browser {
void CookiesModel::set_items(AK::Vector<Web::Cookie::Cookie> items)
{
begin_insert_rows({}, m_cookies.size(), m_cookies.size());
m_cookies = move(items);
end_insert_rows();
did_update(DontInvalidateIndices);
}
void CookiesModel::clear_items()
{
begin_insert_rows({}, m_cookies.size(), m_cookies.size());
m_cookies.clear();
end_insert_rows();
did_update(DontInvalidateIndices);
}
int CookiesModel::row_count(GUI::ModelIndex const& index) const
{
if (!index.is_valid())
return m_cookies.size();
return 0;
}
ErrorOr<String> CookiesModel::column_name(int column) const
{
switch (column) {
case Column::Domain:
return "Domain"_string;
case Column::Path:
return "Path"_string;
case Column::Name:
return "Name"_string;
case Column::Value:
return "Value"_string;
case Column::ExpiryTime:
return "Expiry time"_string;
case Column::SameSite:
return "SameSite"_string;
case Column::__Count:
return String {};
}
return String {};
}
GUI::ModelIndex CookiesModel::index(int row, int column, GUI::ModelIndex const&) const
{
if (static_cast<size_t>(row) < m_cookies.size())
return create_index(row, column, &m_cookies.at(row));
return {};
}
GUI::Variant CookiesModel::data(GUI::ModelIndex const& index, GUI::ModelRole role) const
{
if (role != GUI::ModelRole::Display)
return {};
auto const& cookie = m_cookies[index.row()];
switch (index.column()) {
case Column::Domain:
return cookie.domain;
case Column::Path:
return cookie.path;
case Column::Name:
return cookie.name;
case Column::Value:
return cookie.value;
case Column::ExpiryTime:
return cookie.expiry_time_to_string();
case Column::SameSite:
return Web::Cookie::same_site_to_string(cookie.same_site);
}
VERIFY_NOT_REACHED();
}
GUI::Model::MatchResult CookiesModel::data_matches(GUI::ModelIndex const& index, GUI::Variant const& term) const
{
auto needle = term.as_string();
if (needle.is_empty())
return { TriState::True };
auto const& cookie = m_cookies[index.row()];
auto haystack = ByteString::formatted("{} {} {} {}", cookie.domain, cookie.path, cookie.name, cookie.value);
auto match_result = fuzzy_match(needle, haystack);
if (match_result.score > 0)
return { TriState::True, match_result.score };
return { TriState::False };
}
Web::Cookie::Cookie CookiesModel::take_cookie(GUI::ModelIndex const& index)
{
VERIFY(index.is_valid());
auto cookie = m_cookies.take(index.row());
did_update(InvalidateAllIndices);
return cookie;
}
AK::Vector<Web::Cookie::Cookie> CookiesModel::take_all_cookies()
{
auto cookies = move(m_cookies);
did_update(InvalidateAllIndices);
return cookies;
}
}