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
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
|
/*
* Copyright (C) 2008-2012 The QXmpp developers
*
* Author:
* Jeremy Lainé
*
* Source:
* http://code.google.com/p/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 <QDebug>
#include <QDomElement>
#include <QStringList>
#include "QXmppConstants.h"
#include "QXmppDataForm.h"
#include "QXmppUtils.h"
struct field_type {
QXmppDataForm::Field::Type type;
const char *str;
};
static field_type field_types[] = {
{QXmppDataForm::Field::BooleanField, "boolean"},
{QXmppDataForm::Field::FixedField, "fixed"},
{QXmppDataForm::Field::HiddenField, "hidden"},
{QXmppDataForm::Field::JidMultiField, "jid-multi"},
{QXmppDataForm::Field::JidSingleField, "jid-single"},
{QXmppDataForm::Field::ListMultiField, "list-multi"},
{QXmppDataForm::Field::ListSingleField, "list-single"},
{QXmppDataForm::Field::TextMultiField, "text-multi"},
{QXmppDataForm::Field::TextPrivateField, "text-private"},
{QXmppDataForm::Field::TextSingleField, "text-single"},
{static_cast<QXmppDataForm::Field::Type>(-1), NULL},
};
class QXmppDataFormFieldPrivate : public QSharedData
{
public:
QXmppDataFormFieldPrivate();
QString description;
QString key;
QString label;
QList<QPair<QString, QString> > options;
bool required;
QXmppDataForm::Field::Type type;
QVariant value;
};
QXmppDataFormFieldPrivate::QXmppDataFormFieldPrivate()
: required(false)
, type(QXmppDataForm::Field::TextSingleField)
{
}
/// Constructs a QXmppDataForm::Field of the specified \a type.
QXmppDataForm::Field::Field(QXmppDataForm::Field::Type type)
: d(new QXmppDataFormFieldPrivate)
{
d->type = type;
}
/// Constructs a copy of \a other.
QXmppDataForm::Field::Field(const QXmppDataForm::Field &other)
: d(other.d)
{
}
/// Destroys the form field.
QXmppDataForm::Field::~Field()
{
}
/// Assigns \a other to this field.
QXmppDataForm::Field& QXmppDataForm::Field::operator=(const QXmppDataForm::Field &other)
{
d = other.d;
return *this;
}
/// Returns the field's description.
QString QXmppDataForm::Field::description() const
{
return d->description;
}
/// Sets the field's description.
///
/// \param description
void QXmppDataForm::Field::setDescription(const QString &description)
{
d->description = description;
}
/// Returns the field's key.
QString QXmppDataForm::Field::key() const
{
return d->key;
}
/// Sets the field's key.
///
/// \param key
void QXmppDataForm::Field::setKey(const QString &key)
{
d->key = key;
}
/// Returns the field's label.
QString QXmppDataForm::Field::label() const
{
return d->label;
}
/// Sets the field's label.
///
/// \param label
void QXmppDataForm::Field::setLabel(const QString &label)
{
d->label = label;
}
/// Returns the field's options.
QList<QPair<QString, QString> > QXmppDataForm::Field::options() const
{
return d->options;
}
/// Sets the field's options.
///
/// \param options
void QXmppDataForm::Field::setOptions(const QList<QPair<QString, QString> > &options)
{
d->options = options;
}
/// Returns true if the field is required, false otherwise.
bool QXmppDataForm::Field::isRequired() const
{
return d->required;
}
/// Set to true if the field is required, false otherwise.
///
/// \param required
void QXmppDataForm::Field::setRequired(bool required)
{
d->required = required;
}
/// Returns the field's type.
QXmppDataForm::Field::Type QXmppDataForm::Field::type() const
{
return d->type;
}
/// Sets the field's type.
///
/// \param type
void QXmppDataForm::Field::setType(QXmppDataForm::Field::Type type)
{
d->type = type;
}
/// Returns the field's value.
QVariant QXmppDataForm::Field::value() const
{
return d->value;
}
/// Sets the field's value.
///
/// \param value
void QXmppDataForm::Field::setValue(const QVariant &value)
{
d->value = value;
}
class QXmppDataFormPrivate : public QSharedData
{
public:
QXmppDataFormPrivate();
QString instructions;
QList<QXmppDataForm::Field> fields;
QString title;
QXmppDataForm::Type type;
};
QXmppDataFormPrivate::QXmppDataFormPrivate()
: type(QXmppDataForm::None)
{
}
/// Constructs a QXmppDataForm of the specified \a type.
QXmppDataForm::QXmppDataForm(QXmppDataForm::Type type)
: d(new QXmppDataFormPrivate)
{
d->type = type;
}
/// Constructs a copy of \a other.
QXmppDataForm::QXmppDataForm(const QXmppDataForm &other)
: d(other.d)
{
}
/// Destroys the form.
QXmppDataForm::~QXmppDataForm()
{
}
/// Assigns \a other to this form.
QXmppDataForm& QXmppDataForm::operator=(const QXmppDataForm &other)
{
d = other.d;
return *this;
}
/// Returns the form's fields.
QList<QXmppDataForm::Field> QXmppDataForm::fields() const
{
return d->fields;
}
/// Returns the form's fields by reference.
QList<QXmppDataForm::Field> &QXmppDataForm::fields()
{
return d->fields;
}
/// Sets the form's fields.
///
/// \param fields
void QXmppDataForm::setFields(const QList<QXmppDataForm::Field> &fields)
{
d->fields = fields;
}
/// Returns the form's instructions.
QString QXmppDataForm::instructions() const
{
return d->instructions;
}
/// Sets the form's instructions.
///
/// \param instructions
void QXmppDataForm::setInstructions(const QString &instructions)
{
d->instructions = instructions;
}
/// Returns the form's title.
QString QXmppDataForm::title() const
{
return d->title;
}
/// Sets the form's title.
///
/// \param title
void QXmppDataForm::setTitle(const QString &title)
{
d->title = title;
}
/// Returns the form's type.
QXmppDataForm::Type QXmppDataForm::type() const
{
return d->type;
}
/// Sets the form's type.
///
/// \param type
void QXmppDataForm::setType(QXmppDataForm::Type type)
{
d->type = type;
}
/// Returns true if the form has an unknown type.
bool QXmppDataForm::isNull() const
{
return d->type == QXmppDataForm::None;
}
void QXmppDataForm::parse(const QDomElement &element)
{
if (element.isNull())
return;
/* form type */
const QString typeStr = element.attribute("type");
if (typeStr == "form")
d->type = QXmppDataForm::Form;
else if (typeStr == "submit")
d->type = QXmppDataForm::Submit;
else if (typeStr == "cancel")
d->type = QXmppDataForm::Cancel;
else if (typeStr == "result")
d->type = QXmppDataForm::Result;
else
{
qWarning() << "Unknown form type" << typeStr;
return;
}
/* form properties */
d->title = element.firstChildElement("title").text();
d->instructions = element.firstChildElement("instructions").text();
QDomElement fieldElement = element.firstChildElement("field");
while (!fieldElement.isNull())
{
QXmppDataForm::Field field;
/* field type */
QXmppDataForm::Field::Type type = QXmppDataForm::Field::TextSingleField;
const QString typeStr = fieldElement.attribute("type");
struct field_type *ptr;
for (ptr = field_types; ptr->str; ptr++)
{
if (typeStr == ptr->str)
{
type = ptr->type;
break;
}
}
field.setType(type);
/* field attributes */
field.setLabel(fieldElement.attribute("label"));
field.setKey(fieldElement.attribute("var"));
/* field value(s) */
if (type == QXmppDataForm::Field::BooleanField)
{
const QString valueStr = fieldElement.firstChildElement("value").text();
field.setValue(valueStr == "1" || valueStr == "true");
}
else if (type == QXmppDataForm::Field::ListMultiField ||
type == QXmppDataForm::Field::JidMultiField ||
type == QXmppDataForm::Field::TextMultiField)
{
QStringList values;
QDomElement valueElement = fieldElement.firstChildElement("value");
while (!valueElement.isNull())
{
values.append(valueElement.text());
valueElement = valueElement.nextSiblingElement("value");
}
field.setValue(values);
}
else
{
field.setValue(fieldElement.firstChildElement("value").text());
}
/* field options */
if (type == QXmppDataForm::Field::ListMultiField ||
type == QXmppDataForm::Field::ListSingleField)
{
QList<QPair<QString, QString> > options;
QDomElement optionElement = fieldElement.firstChildElement("option");
while (!optionElement.isNull())
{
options.append(QPair<QString, QString>(optionElement.attribute("label"),
optionElement.firstChildElement("value").text()));
optionElement = optionElement.nextSiblingElement("option");
}
field.setOptions(options);
}
/* other properties */
field.setDescription(fieldElement.firstChildElement("description").text());
field.setRequired(!fieldElement.firstChildElement("required").isNull());
d->fields.append(field);
fieldElement = fieldElement.nextSiblingElement("field");
}
}
void QXmppDataForm::toXml(QXmlStreamWriter *writer) const
{
if (isNull())
return;
writer->writeStartElement("x");
writer->writeAttribute("xmlns", ns_data);
/* form type */
QString typeStr;
if (d->type == QXmppDataForm::Form)
typeStr = "form";
else if (d->type == QXmppDataForm::Submit)
typeStr = "submit";
else if (d->type == QXmppDataForm::Cancel)
typeStr = "cancel";
else if (d->type == QXmppDataForm::Result)
typeStr = "result";
writer->writeAttribute("type", typeStr);
/* form properties */
if (!d->title.isEmpty())
writer->writeAttribute("title", d->title);
if (!d->instructions.isEmpty())
writer->writeAttribute("instructions", d->instructions);
foreach (const QXmppDataForm::Field &field, d->fields) {
writer->writeStartElement("field");
/* field type */
const QXmppDataForm::Field::Type type = field.type();
QString typeStr;
struct field_type *ptr;
for (ptr = field_types; ptr->str; ptr++)
{
if (type == ptr->type)
{
typeStr = ptr->str;
break;
}
}
writer->writeAttribute("type", typeStr);
/* field attributes */
helperToXmlAddAttribute(writer, "label", field.label());
helperToXmlAddAttribute(writer, "var", field.key());
/* field value(s) */
if (type == QXmppDataForm::Field::BooleanField)
{
helperToXmlAddTextElement(writer, "value", field.value().toBool() ? "1" : "0");
}
else if (type == QXmppDataForm::Field::ListMultiField ||
type == QXmppDataForm::Field::JidMultiField ||
type == QXmppDataForm::Field::TextMultiField)
{
foreach (const QString &value, field.value().toStringList())
helperToXmlAddTextElement(writer, "value", value);
}
else
{
helperToXmlAddTextElement(writer, "value", field.value().toString());
}
/* field options */
if (type == QXmppDataForm::Field::ListMultiField ||
type == QXmppDataForm::Field::ListSingleField)
{
QPair<QString, QString> option;
foreach (option, field.options())
{
writer->writeStartElement("option");
helperToXmlAddAttribute(writer, "label", option.first);
helperToXmlAddTextElement(writer, "value", option.second);
writer->writeEndElement();
}
}
/* other properties */
if (!field.description().isEmpty())
helperToXmlAddTextElement(writer, "description", field.description());
if (field.isRequired())
helperToXmlAddTextElement(writer, "required", "");
writer->writeEndElement();
}
writer->writeEndElement();
}
|