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
|
/******************************************************************************
* THIS FILE IS GENERATED - ANY EDITS WILL BE OVERWRITTEN
*/
#include "pushrules.h"
#include "converters.h"
#include <QtCore/QStringBuilder>
using namespace QMatrixClient;
static const auto basePath = QStringLiteral("/_matrix/client/r0");
class GetPushRulesJob::Private
{
public:
PushRuleset global;
};
QUrl GetPushRulesJob::makeRequestUrl(QUrl baseUrl)
{
return BaseJob::makeRequestUrl(std::move(baseUrl),
basePath % "/pushrules");
}
GetPushRulesJob::GetPushRulesJob()
: BaseJob(HttpVerb::Get, "GetPushRulesJob",
basePath % "/pushrules")
, d(new Private)
{
}
GetPushRulesJob::~GetPushRulesJob() = default;
const PushRuleset& GetPushRulesJob::global() const
{
return d->global;
}
BaseJob::Status GetPushRulesJob::parseJson(const QJsonDocument& data)
{
auto json = data.object();
if (!json.contains("global"))
return { JsonParseError,
"The key 'global' not found in the response" };
d->global = fromJson<PushRuleset>(json.value("global"));
return Success;
}
class GetPushRuleJob::Private
{
public:
PushRule data;
};
QUrl GetPushRuleJob::makeRequestUrl(QUrl baseUrl, const QString& scope, const QString& kind, const QString& ruleId)
{
return BaseJob::makeRequestUrl(std::move(baseUrl),
basePath % "/pushrules/" % scope % "/" % kind % "/" % ruleId);
}
GetPushRuleJob::GetPushRuleJob(const QString& scope, const QString& kind, const QString& ruleId)
: BaseJob(HttpVerb::Get, "GetPushRuleJob",
basePath % "/pushrules/" % scope % "/" % kind % "/" % ruleId)
, d(new Private)
{
}
GetPushRuleJob::~GetPushRuleJob() = default;
const PushRule& GetPushRuleJob::data() const
{
return d->data;
}
BaseJob::Status GetPushRuleJob::parseJson(const QJsonDocument& data)
{
auto json = data.object();
if (!json.contains("data"))
return { JsonParseError,
"The key 'data' not found in the response" };
d->data = fromJson<PushRule>(json.value("data"));
return Success;
}
QUrl DeletePushRuleJob::makeRequestUrl(QUrl baseUrl, const QString& scope, const QString& kind, const QString& ruleId)
{
return BaseJob::makeRequestUrl(std::move(baseUrl),
basePath % "/pushrules/" % scope % "/" % kind % "/" % ruleId);
}
DeletePushRuleJob::DeletePushRuleJob(const QString& scope, const QString& kind, const QString& ruleId)
: BaseJob(HttpVerb::Delete, "DeletePushRuleJob",
basePath % "/pushrules/" % scope % "/" % kind % "/" % ruleId)
{
}
BaseJob::Query queryToSetPushRule(const QString& before, const QString& after)
{
BaseJob::Query _q;
addParam<IfNotEmpty>(_q, "before", before);
addParam<IfNotEmpty>(_q, "after", after);
return _q;
}
SetPushRuleJob::SetPushRuleJob(const QString& scope, const QString& kind, const QString& ruleId, const QStringList& actions, const QString& before, const QString& after, const QVector<PushCondition>& conditions, const QString& pattern)
: BaseJob(HttpVerb::Put, "SetPushRuleJob",
basePath % "/pushrules/" % scope % "/" % kind % "/" % ruleId,
queryToSetPushRule(before, after))
{
QJsonObject _data;
addParam<>(_data, "actions", actions);
addParam<IfNotEmpty>(_data, "conditions", conditions);
addParam<IfNotEmpty>(_data, "pattern", pattern);
setRequestData(_data);
}
class IsPushRuleEnabledJob::Private
{
public:
bool enabled;
};
QUrl IsPushRuleEnabledJob::makeRequestUrl(QUrl baseUrl, const QString& scope, const QString& kind, const QString& ruleId)
{
return BaseJob::makeRequestUrl(std::move(baseUrl),
basePath % "/pushrules/" % scope % "/" % kind % "/" % ruleId % "/enabled");
}
IsPushRuleEnabledJob::IsPushRuleEnabledJob(const QString& scope, const QString& kind, const QString& ruleId)
: BaseJob(HttpVerb::Get, "IsPushRuleEnabledJob",
basePath % "/pushrules/" % scope % "/" % kind % "/" % ruleId % "/enabled")
, d(new Private)
{
}
IsPushRuleEnabledJob::~IsPushRuleEnabledJob() = default;
bool IsPushRuleEnabledJob::enabled() const
{
return d->enabled;
}
BaseJob::Status IsPushRuleEnabledJob::parseJson(const QJsonDocument& data)
{
auto json = data.object();
if (!json.contains("enabled"))
return { JsonParseError,
"The key 'enabled' not found in the response" };
d->enabled = fromJson<bool>(json.value("enabled"));
return Success;
}
SetPushRuleEnabledJob::SetPushRuleEnabledJob(const QString& scope, const QString& kind, const QString& ruleId, bool enabled)
: BaseJob(HttpVerb::Put, "SetPushRuleEnabledJob",
basePath % "/pushrules/" % scope % "/" % kind % "/" % ruleId % "/enabled")
{
QJsonObject _data;
addParam<>(_data, "enabled", enabled);
setRequestData(_data);
}
class GetPushRuleActionsJob::Private
{
public:
QStringList actions;
};
QUrl GetPushRuleActionsJob::makeRequestUrl(QUrl baseUrl, const QString& scope, const QString& kind, const QString& ruleId)
{
return BaseJob::makeRequestUrl(std::move(baseUrl),
basePath % "/pushrules/" % scope % "/" % kind % "/" % ruleId % "/actions");
}
GetPushRuleActionsJob::GetPushRuleActionsJob(const QString& scope, const QString& kind, const QString& ruleId)
: BaseJob(HttpVerb::Get, "GetPushRuleActionsJob",
basePath % "/pushrules/" % scope % "/" % kind % "/" % ruleId % "/actions")
, d(new Private)
{
}
GetPushRuleActionsJob::~GetPushRuleActionsJob() = default;
const QStringList& GetPushRuleActionsJob::actions() const
{
return d->actions;
}
BaseJob::Status GetPushRuleActionsJob::parseJson(const QJsonDocument& data)
{
auto json = data.object();
if (!json.contains("actions"))
return { JsonParseError,
"The key 'actions' not found in the response" };
d->actions = fromJson<QStringList>(json.value("actions"));
return Success;
}
SetPushRuleActionsJob::SetPushRuleActionsJob(const QString& scope, const QString& kind, const QString& ruleId, const QStringList& actions)
: BaseJob(HttpVerb::Put, "SetPushRuleActionsJob",
basePath % "/pushrules/" % scope % "/" % kind % "/" % ruleId % "/actions")
{
QJsonObject _data;
addParam<>(_data, "actions", actions);
setRequestData(_data);
}
|