blob: 5b4c6029dc75835805ffb8612c9e37728c0af5bb (
plain) (
blame)
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
|
/*
* Copyright (C) 2008-2020 The QXmpp developers
*
* Author:
* Linus Jahn
*
* Source:
* https://github.com/qxmpp-project/qxmpp
*
* This file is a part of QXmpp library.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
*/
#include "QXmppMixItem.h"
#include "QXmppConstants_p.h"
#include "QXmppDataForm.h"
#include "QXmppUtils.h"
#include <QBuffer>
#include <QDomElement>
#include <QSharedData>
class QXmppMixInfoItemPrivate : public QSharedData
{
public:
QString name;
QString description;
QStringList contactJids;
};
QXmppMixInfoItem::QXmppMixInfoItem()
: d(new QXmppMixInfoItemPrivate)
{
}
QXmppMixInfoItem::QXmppMixInfoItem(const QXmppMixInfoItem&) = default;
QXmppMixInfoItem& QXmppMixInfoItem::operator=(const QXmppMixInfoItem&) = default;
QXmppMixInfoItem::~QXmppMixInfoItem() = default;
/// Returns the user-specified name of the MIX channel. This is not the name
/// part of the channel's JID.
QString QXmppMixInfoItem::name() const
{
return d->name;
}
/// Sets the name of the channel.
void QXmppMixInfoItem::setName(const QString& name)
{
d->name = name;
}
/// Returns the description of the channel. This string might be very long.
QString QXmppMixInfoItem::description() const
{
return d->description;
}
/// Sets the longer channel description.
void QXmppMixInfoItem::setDescription(const QString& description)
{
d->description = description;
}
/// Returns a list of JIDs that are responsible for this channel.
QStringList QXmppMixInfoItem::contactJids() const
{
return d->contactJids;
}
/// Sets a list of public JIDs that are responsible for this channel.
void QXmppMixInfoItem::setContactJids(const QStringList& contactJids)
{
d->contactJids = contactJids;
}
/// Returns true, if the given dom element is a MIX channel info item.
bool QXmppMixInfoItem::isMixChannelInfo(const QDomElement& element)
{
QXmppDataForm form;
form.parse(element);
for (const auto& field : form.fields()) {
if (field.key() == QStringLiteral("FORM_TYPE"))
return field.value() == ns_mix;
}
return false;
}
void QXmppMixInfoItem::parse(const QXmppElement& element)
{
QXmppDataForm form;
form.parse(element.sourceDomElement());
for (auto& field : form.fields()) {
if (field.key() == QStringLiteral("Name"))
d->name = field.value().toString();
else if (field.key() == QStringLiteral("Description"))
d->description = field.value().toString();
else if (field.key() == QStringLiteral("Contact"))
d->contactJids = field.value().toStringList();
}
}
QXmppElement QXmppMixInfoItem::toElement() const
{
QXmppDataForm form;
form.setType(QXmppDataForm::Result);
QList<QXmppDataForm::Field> fields;
QXmppDataForm::Field formType;
formType.setType(QXmppDataForm::Field::HiddenField);
formType.setKey(QStringLiteral("FORM_TYPE"));
formType.setValue(ns_mix);
fields << formType;
QXmppDataForm::Field nameField;
nameField.setKey(QStringLiteral("Name"));
nameField.setValue(d->name);
fields << nameField;
QXmppDataForm::Field descriptionField;
descriptionField.setKey(QStringLiteral("Description"));
descriptionField.setValue(d->description);
fields << descriptionField;
QXmppDataForm::Field contactsField;
contactsField.setKey(QStringLiteral("Contact"));
contactsField.setValue(d->contactJids);
contactsField.setType(QXmppDataForm::Field::JidMultiField);
fields << contactsField;
form.setFields(fields);
// FIXME: this is too complicated; maybe don't use QXmppElement in QXmppPubSubItem?
QBuffer buffer;
buffer.open(QIODevice::ReadWrite);
QXmlStreamWriter writer(&buffer);
form.toXml(&writer);
QDomDocument doc;
doc.setContent(buffer.data());
return QXmppElement(doc.documentElement());
}
class QXmppMixParticipantItemPrivate : public QSharedData
{
public:
QString nick;
QString jid;
};
QXmppMixParticipantItem::QXmppMixParticipantItem()
: d(new QXmppMixParticipantItemPrivate)
{
}
QXmppMixParticipantItem::QXmppMixParticipantItem(const QXmppMixParticipantItem&) = default;
QXmppMixParticipantItem& QXmppMixParticipantItem::operator=(const QXmppMixParticipantItem&) = default;
QXmppMixParticipantItem::~QXmppMixParticipantItem() = default;
/// Returns the participant's nickname.
QString QXmppMixParticipantItem::nick() const
{
return d->nick;
}
/// Sets the participants nickname.
void QXmppMixParticipantItem::setNick(const QString& nick)
{
d->nick = nick;
}
/// Returns the participant's JID.
QString QXmppMixParticipantItem::jid() const
{
return d->jid;
}
/// Sets the participant's JID.
void QXmppMixParticipantItem::setJid(const QString& jid)
{
d->jid = jid;
}
void QXmppMixParticipantItem::parse(const QXmppElement& itemContent)
{
d->nick = itemContent.firstChildElement(QStringLiteral("nick")).value();
d->jid = itemContent.firstChildElement(QStringLiteral("jid")).value();
}
QXmppElement QXmppMixParticipantItem::toElement() const
{
QXmppElement element;
element.setTagName(QStringLiteral("participant"));
element.setAttribute(QStringLiteral("xmlns"), ns_mix);
QXmppElement jid;
jid.setTagName(QStringLiteral("jid"));
jid.setValue(d->jid);
element.appendChild(jid);
QXmppElement nick;
nick.setTagName(QStringLiteral("nick"));
nick.setValue(d->nick);
element.appendChild(nick);
return element;
}
/// Returns true, if this dom element is a MIX participant item.
bool QXmppMixParticipantItem::isMixParticipantItem(const QDomElement& element)
{
return element.tagName() == QStringLiteral("participant") && element.namespaceURI() == ns_mix;
}
|