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
|
// SPDX-FileCopyrightText: 2009 Manjeet Dahiya <manjeetdahiya@gmail.com>
// SPDX-FileCopyrightText: 2010 Jeremy Lainé <jeremy.laine@m4x.org>
//
// SPDX-License-Identifier: LGPL-2.1-or-later
#include "QXmppRosterIq.h"
#include "QXmppConstants_p.h"
#include "QXmppUtils.h"
#include <QDomElement>
#include <QSharedData>
#include <QXmlStreamWriter>
class QXmppRosterIqPrivate : public QSharedData
{
public:
QList<QXmppRosterIq::Item> items;
// XEP-0237 Roster Versioning
QString version;
// XEP-0405: Mediated Information eXchange (MIX): Participant Server Requirements
bool mixAnnotate = false;
};
QXmppRosterIq::QXmppRosterIq()
: d(new QXmppRosterIqPrivate)
{
}
/// Default copy-constructor
QXmppRosterIq::QXmppRosterIq(const QXmppRosterIq &) = default;
/// Default move-constructor
QXmppRosterIq::QXmppRosterIq(QXmppRosterIq &&) = default;
QXmppRosterIq::~QXmppRosterIq() = default;
/// Default assignment operator
QXmppRosterIq &QXmppRosterIq::operator=(const QXmppRosterIq &) = default;
/// Default move-assignment operator
QXmppRosterIq &QXmppRosterIq::operator=(QXmppRosterIq &&) = default;
///
/// Adds an item to the roster IQ.
///
/// \param item
///
void QXmppRosterIq::addItem(const Item &item)
{
d->items.append(item);
}
///
/// Returns the roster IQ's items.
///
QList<QXmppRosterIq::Item> QXmppRosterIq::items() const
{
return d->items;
}
///
/// Returns the roster version of IQ.
///
/// \return version as a QString
///
/// \since QXmpp 1.0
///
QString QXmppRosterIq::version() const
{
return d->version;
}
///
/// Sets the roster version of IQ.
///
/// \param version as a QString
///
/// \since QXmpp 1.0
///
void QXmppRosterIq::setVersion(const QString &version)
{
d->version = version;
}
///
/// Whether to annotate which items are MIX channels.
///
/// \since QXmpp 1.3
///
bool QXmppRosterIq::mixAnnotate() const
{
return d->mixAnnotate;
}
///
/// Sets whether to include which roster items are MIX channels. This MUST only
/// be enabled in get requests.
///
/// \since QXmpp 1.3
///
void QXmppRosterIq::setMixAnnotate(bool mixAnnotate)
{
d->mixAnnotate = mixAnnotate;
}
/// \cond
bool QXmppRosterIq::isRosterIq(const QDomElement &element)
{
return (element.firstChildElement(QStringLiteral("query")).namespaceURI() == ns_roster);
}
void QXmppRosterIq::parseElementFromChild(const QDomElement &element)
{
QDomElement queryElement = element.firstChildElement(QStringLiteral("query"));
setVersion(queryElement.attribute(QStringLiteral("ver")));
QDomElement itemElement = queryElement.firstChildElement(QStringLiteral("item"));
while (!itemElement.isNull()) {
QXmppRosterIq::Item item;
item.parse(itemElement);
d->items.append(item);
itemElement = itemElement.nextSiblingElement(QStringLiteral("item"));
}
QDomElement annotateElement = queryElement.firstChildElement(QStringLiteral("annotate"));
setMixAnnotate(!annotateElement.isNull() && annotateElement.namespaceURI() == ns_mix_roster);
}
void QXmppRosterIq::toXmlElementFromChild(QXmlStreamWriter *writer) const
{
writer->writeStartElement(QStringLiteral("query"));
writer->writeDefaultNamespace(ns_roster);
// XEP-0237 roster versioning - If the server does not advertise support for roster versioning, the client MUST NOT include the 'ver' attribute.
if (!version().isEmpty()) {
writer->writeAttribute(QStringLiteral("ver"), version());
}
// XEP-0405: Mediated Information eXchange (MIX): Participant Server Requirements
if (d->mixAnnotate) {
writer->writeStartElement(QStringLiteral("annotate"));
writer->writeAttribute(QStringLiteral("xmlns"), ns_mix_roster);
writer->writeEndElement();
}
for (int i = 0; i < d->items.count(); ++i) {
d->items.at(i).toXml(writer);
}
writer->writeEndElement();
}
/// \endcond
class QXmppRosterIq::ItemPrivate : public QSharedData
{
public:
ItemPrivate();
QString bareJid;
Item::SubscriptionType type;
QString name;
// can be subscribe/unsubscribe (attribute "ask")
QString subscriptionStatus;
QSet<QString> groups;
bool approved;
// XEP-0405: Mediated Information eXchange (MIX): Participant Server Requirements
bool isMixChannel = false;
QString mixParticipantId;
};
QXmppRosterIq::ItemPrivate::ItemPrivate()
: type(QXmppRosterIq::Item::NotSet),
approved(false)
{
}
///
/// Constructs a new roster entry.
///
QXmppRosterIq::Item::Item()
: d(new ItemPrivate)
{
}
/// Default copy-constructor
QXmppRosterIq::Item::Item(const QXmppRosterIq::Item &other) = default;
/// Default move-constructor
QXmppRosterIq::Item::Item(QXmppRosterIq::Item &&) = default;
QXmppRosterIq::Item::~Item() = default;
/// Default assignment operator
QXmppRosterIq::Item &QXmppRosterIq::Item::operator=(const Item &other) = default;
/// Default assignment operator
QXmppRosterIq::Item &QXmppRosterIq::Item::operator=(Item &&) = default;
///
/// Returns the bareJid of the roster entry.
///
/// \return bareJid as a QString
///
QString QXmppRosterIq::Item::bareJid() const
{
return d->bareJid;
}
/// Sets the bareJid of the roster entry.
///
/// \param bareJid as a QString
///
void QXmppRosterIq::Item::setBareJid(const QString &bareJid)
{
d->bareJid = bareJid;
}
///
/// Returns the groups of the roster entry.
///
/// \return QSet<QString> list of all the groups
///
QSet<QString> QXmppRosterIq::Item::groups() const
{
return d->groups;
}
///
/// Sets the groups of the roster entry.
///
/// \param groups list of all the groups as a QSet<QString>
///
void QXmppRosterIq::Item::setGroups(const QSet<QString> &groups)
{
d->groups = groups;
}
///
/// Returns the name of the roster entry.
///
/// \return name as a QString
///
QString QXmppRosterIq::Item::name() const
{
return d->name;
}
///
/// Sets the name of the roster entry.
///
/// \param name as a QString
///
void QXmppRosterIq::Item::setName(const QString &name)
{
d->name = name;
}
///
/// Returns the subscription status of the roster entry. It is the "ask"
/// attribute in the Roster IQ stanza. Its value can be "subscribe" or "unsubscribe"
/// or empty.
///
/// \return subscription status as a QString
///
QString QXmppRosterIq::Item::subscriptionStatus() const
{
return d->subscriptionStatus;
}
///
/// Sets the subscription status of the roster entry. It is the "ask"
/// attribute in the Roster IQ stanza. Its value can be "subscribe" or "unsubscribe"
/// or empty.
///
/// \param status as a QString
///
void QXmppRosterIq::Item::setSubscriptionStatus(const QString &status)
{
d->subscriptionStatus = status;
}
///
/// Returns the subscription type of the roster entry.
///
QXmppRosterIq::Item::SubscriptionType
QXmppRosterIq::Item::subscriptionType() const
{
return d->type;
}
///
/// Sets the subscription type of the roster entry.
///
/// \param type
///
void QXmppRosterIq::Item::setSubscriptionType(SubscriptionType type)
{
d->type = type;
}
///
/// Returns whether the item has a pre-approved presence subscription.
///
/// \since QXmpp 1.3
///
bool QXmppRosterIq::Item::isApproved() const
{
return d->approved;
}
///
/// Sets whether the item has a pre-approved presence subscription.
///
/// This cannot be used to initiate a pre-approved subscription. For this
/// purpose the client must send a <presence/> stanza of type
/// \c subscribed to the user.
///
/// \since QXmpp 1.3
///
void QXmppRosterIq::Item::setIsApproved(bool approved)
{
d->approved = approved;
}
QString QXmppRosterIq::Item::getSubscriptionTypeStr() const
{
switch (d->type) {
case NotSet:
return "";
case None:
return "none";
case Both:
return "both";
case From:
return "from";
case To:
return "to";
case Remove:
return "remove";
default: {
qWarning("QXmppRosterIq::Item::getTypeStr(): invalid type");
return "";
}
}
}
void QXmppRosterIq::Item::setSubscriptionTypeFromStr(const QString &type)
{
if (type.isEmpty()) {
setSubscriptionType(NotSet);
} else if (type == QStringLiteral("none")) {
setSubscriptionType(None);
} else if (type == QStringLiteral("both")) {
setSubscriptionType(Both);
} else if (type == QStringLiteral("from")) {
setSubscriptionType(From);
} else if (type == QStringLiteral("to")) {
setSubscriptionType(To);
} else if (type == QStringLiteral("remove")) {
setSubscriptionType(Remove);
} else {
qWarning("QXmppRosterIq::Item::setTypeFromStr(): invalid type");
}
}
///
/// Returns whether this is a MIX channel.
///
/// \since QXmpp 1.3
///
bool QXmppRosterIq::Item::isMixChannel() const
{
return d->isMixChannel;
}
///
/// Sets whether this is a MIX channel.
///
/// \since QXmpp 1.3
///
void QXmppRosterIq::Item::setIsMixChannel(bool isMixChannel)
{
d->isMixChannel = isMixChannel;
}
///
/// Returns the participant id for this MIX channel.
///
/// \since QXmpp 1.3
///
QString QXmppRosterIq::Item::mixParticipantId() const
{
return d->mixParticipantId;
}
///
/// Sets the participant id for this MIX channel.
///
/// \since QXmpp 1.3
///
void QXmppRosterIq::Item::setMixParticipantId(const QString &participantId)
{
d->mixParticipantId = participantId;
}
/// \cond
void QXmppRosterIq::Item::parse(const QDomElement &element)
{
d->name = element.attribute(QStringLiteral("name"));
d->bareJid = element.attribute(QStringLiteral("jid"));
setSubscriptionTypeFromStr(element.attribute(QStringLiteral("subscription")));
setSubscriptionStatus(element.attribute(QStringLiteral("ask")));
// pre-approved
const QString approved = element.attribute(QStringLiteral("approved"));
d->approved = (approved == QStringLiteral("1") || approved == QStringLiteral("true"));
// groups
QDomElement groupElement = element.firstChildElement(QStringLiteral("group"));
while (!groupElement.isNull()) {
d->groups << groupElement.text();
groupElement = groupElement.nextSiblingElement(QStringLiteral("group"));
}
// XEP-0405: Mediated Information eXchange (MIX): Participant Server Requirements
QDomElement channelElement = element.firstChildElement(QStringLiteral("channel"));
if (!channelElement.isNull() && channelElement.namespaceURI() == ns_mix_roster) {
d->isMixChannel = true;
d->mixParticipantId = channelElement.attribute(QStringLiteral("participant-id"));
}
}
void QXmppRosterIq::Item::toXml(QXmlStreamWriter *writer) const
{
writer->writeStartElement(QStringLiteral("item"));
helperToXmlAddAttribute(writer, QStringLiteral("jid"), d->bareJid);
helperToXmlAddAttribute(writer, QStringLiteral("name"), d->name);
helperToXmlAddAttribute(writer, QStringLiteral("subscription"), getSubscriptionTypeStr());
helperToXmlAddAttribute(writer, QStringLiteral("ask"), subscriptionStatus());
if (d->approved) {
writer->writeAttribute(QStringLiteral("approved"), QStringLiteral("true"));
}
QSet<QString>::const_iterator i = d->groups.constBegin();
while (i != d->groups.constEnd()) {
helperToXmlAddTextElement(writer, QStringLiteral("group"), *i);
++i;
}
// XEP-0405: Mediated Information eXchange (MIX): Participant Server Requirements
if (d->isMixChannel) {
writer->writeStartElement(QStringLiteral("channel"));
writer->writeAttribute(QStringLiteral("xmlns"), ns_mix_roster);
helperToXmlAddAttribute(writer, QStringLiteral("participant-id"), d->mixParticipantId);
writer->writeEndElement();
}
writer->writeEndElement();
}
/// \endcond
|