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
|
/*
* Copyright (C) 2008-2012 The QXmpp developers
*
* Author:
* Manjeet Dahiya
*
* 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 <QBuffer>
#include <QXmlStreamWriter>
#include "QXmppVCardIq.h"
#include "QXmppUtils.h"
#include "QXmppConstants.h"
static QString getImageType(const QByteArray &contents)
{
if (contents.startsWith("\x89PNG\x0d\x0a\x1a\x0a"))
return "image/png";
else if (contents.startsWith("\x8aMNG"))
return "video/x-mng";
else if (contents.startsWith("GIF8"))
return "image/gif";
else if (contents.startsWith("BM"))
return "image/bmp";
else if (contents.contains("/* XPM */"))
return "image/x-xpm";
else if (contents.contains("<?xml") && contents.contains("<svg"))
return "image/svg+xml";
else if (contents.startsWith("\xFF\xD8\xFF\xE0"))
return "image/jpeg";
return "image/unknown";
}
class QXmppVCardEmailPrivate : public QSharedData
{
public:
QXmppVCardEmailPrivate() : type(QXmppVCardEmail::None) {};
QString address;
QXmppVCardEmail::Type type;
};
/// Constructs an empty vCard e-mail address.
QXmppVCardEmail::QXmppVCardEmail()
: d(new QXmppVCardEmailPrivate)
{
}
/// Constructs a copy of \a other.
QXmppVCardEmail::QXmppVCardEmail(const QXmppVCardEmail &other)
: d(other.d)
{
}
QXmppVCardEmail::~QXmppVCardEmail()
{
}
/// Assigns \a other to this vCard e-mail address.
QXmppVCardEmail& QXmppVCardEmail::operator=(const QXmppVCardEmail &other)
{
d = other.d;
return *this;
}
/// Returns the e-mail address.
QString QXmppVCardEmail::address() const
{
return d->address;
}
/// Sets the e-mail \a address.
void QXmppVCardEmail::setAddress(const QString &address)
{
d->address = address;
}
/// Returns the e-mail type, which is a combination of TypeFlag.
QXmppVCardEmail::Type QXmppVCardEmail::type() const
{
return d->type;
}
/// Sets the e-mail \a type, which is a combination of TypeFlag.
void QXmppVCardEmail::setType(QXmppVCardEmail::Type type)
{
d->type = type;
}
void QXmppVCardEmail::parse(const QDomElement &element)
{
if (!element.firstChildElement("HOME").isNull())
d->type |= Home;
if (!element.firstChildElement("WORK").isNull())
d->type |= Work;
if (!element.firstChildElement("INTERNET").isNull())
d->type |= Internet;
if (!element.firstChildElement("PREF").isNull())
d->type |= Preferred;
if (!element.firstChildElement("X400").isNull())
d->type |= X400;
d->address = element.firstChildElement("USERID").text();
}
void QXmppVCardEmail::toXml(QXmlStreamWriter *writer) const
{
writer->writeStartElement("EMAIL");
if (d->type & Home)
writer->writeEmptyElement("HOME");
if (d->type & Work)
writer->writeEmptyElement("WORK");
if (d->type & Internet)
writer->writeEmptyElement("INTERNET");
if (d->type & Preferred)
writer->writeEmptyElement("PREF");
if (d->type & X400)
writer->writeEmptyElement("X400");
writer->writeTextElement("USERID", d->address);
writer->writeEndElement();
}
/// Constructs a QXmppVCardIq for the specified recipient.
///
/// \param jid
QXmppVCardIq::QXmppVCardIq(const QString& jid) : QXmppIq(QXmppIq::Get)
{
// for self jid should be empty
setTo(jid);
}
/// Returns the date of birth of the individual associated with the vCard.
///
QDate QXmppVCardIq::birthday() const
{
return m_birthday;
}
/// Sets the date of birth of the individual associated with the vCard.
///
/// \param birthday
void QXmppVCardIq::setBirthday(const QDate &birthday)
{
m_birthday = birthday;
}
/// Returns the email address.
///
QString QXmppVCardIq::email() const
{
if (m_emails.isEmpty())
return QString();
else
return m_emails.first().address();
}
/// Sets the email address.
///
/// \param email
void QXmppVCardIq::setEmail(const QString &email)
{
QXmppVCardEmail first;
first.setAddress(email);
first.setType(QXmppVCardEmail::Internet);
m_emails = QList<QXmppVCardEmail>() << first;
}
/// Returns the first name.
///
QString QXmppVCardIq::firstName() const
{
return m_firstName;
}
/// Sets the first name.
///
/// \param firstName
void QXmppVCardIq::setFirstName(const QString &firstName)
{
m_firstName = firstName;
}
/// Returns the full name.
///
QString QXmppVCardIq::fullName() const
{
return m_fullName;
}
/// Sets the full name.
///
/// \param fullName
void QXmppVCardIq::setFullName(const QString &fullName)
{
m_fullName = fullName;
}
/// Returns the last name.
///
QString QXmppVCardIq::lastName() const
{
return m_lastName;
}
/// Sets the last name.
///
/// \param lastName
void QXmppVCardIq::setLastName(const QString &lastName)
{
m_lastName = lastName;
}
/// Returns the middle name.
///
QString QXmppVCardIq::middleName() const
{
return m_middleName;
}
/// Sets the middle name.
///
/// \param middleName
void QXmppVCardIq::setMiddleName(const QString &middleName)
{
m_middleName = middleName;
}
/// Returns the nickname.
///
QString QXmppVCardIq::nickName() const
{
return m_nickName;
}
/// Sets the nickname.
///
/// \param nickName
void QXmppVCardIq::setNickName(const QString &nickName)
{
m_nickName = nickName;
}
/// Returns the URL associated with the vCard. It can represent the user's
/// homepage or a location at which you can find real-time information about
/// the vCard.
QString QXmppVCardIq::url() const
{
return m_url;
}
/// Sets the URL associated with the vCard. It can represent the user's
/// homepage or a location at which you can find real-time information about
/// the vCard.
///
/// \param url
void QXmppVCardIq::setUrl(const QString& url)
{
m_url = url;
}
/// Returns the photo's binary contents.
///
/// If you want to use the photo as a QImage you can use:
///
/// \code
/// QBuffer buffer;
/// buffer.setData(myCard.photo());
/// buffer.open(QIODevice::ReadOnly);
/// QImageReader imageReader(&buffer);
/// QImage myImage = imageReader.read();
/// \endcode
QByteArray QXmppVCardIq::photo() const
{
return m_photo;
}
/// Sets the photo's binary contents.
void QXmppVCardIq::setPhoto(const QByteArray& photo)
{
m_photo = photo;
}
/// Returns the photo's MIME type.
QString QXmppVCardIq::photoType() const
{
return m_photoType;
}
/// Sets the photo's MIME type.
void QXmppVCardIq::setPhotoType(const QString& photoType)
{
m_photoType = photoType;
}
/// Returns the e-mail addresses.
QList<QXmppVCardEmail> QXmppVCardIq::emails() const
{
return m_emails;
}
/// Sets the e-mail addresses.
void QXmppVCardIq::setEmails(const QList<QXmppVCardEmail> &emails)
{
m_emails = emails;
}
/// \cond
bool QXmppVCardIq::isVCard(const QDomElement &nodeRecv)
{
return nodeRecv.firstChildElement("vCard").namespaceURI() == ns_vcard;
}
void QXmppVCardIq::parseElementFromChild(const QDomElement& nodeRecv)
{
// vCard
QDomElement cardElement = nodeRecv.firstChildElement("vCard");
m_birthday = QDate::fromString(cardElement.firstChildElement("BDAY").text(), "yyyy-MM-dd");
m_fullName = cardElement.firstChildElement("FN").text();
m_nickName = cardElement.firstChildElement("NICKNAME").text();
QDomElement nameElement = cardElement.firstChildElement("N");
m_firstName = nameElement.firstChildElement("GIVEN").text();
m_lastName = nameElement.firstChildElement("FAMILY").text();
m_middleName = nameElement.firstChildElement("MIDDLE").text();
m_url = cardElement.firstChildElement("URL").text();
QDomElement photoElement = cardElement.firstChildElement("PHOTO");
QByteArray base64data = photoElement.
firstChildElement("BINVAL").text().toAscii();
m_photo = QByteArray::fromBase64(base64data);
m_photoType = photoElement.firstChildElement("TYPE").text();
QDomElement child = cardElement.firstChildElement();
while (!child.isNull()) {
if (child.tagName() == "EMAIL") {
QXmppVCardEmail email;
email.parse(child);
m_emails << email;
}
child = child.nextSiblingElement();
}
}
void QXmppVCardIq::toXmlElementFromChild(QXmlStreamWriter *writer) const
{
writer->writeStartElement("vCard");
writer->writeAttribute("xmlns", ns_vcard);
if (m_birthday.isValid())
helperToXmlAddTextElement(writer, "BDAY", m_birthday.toString("yyyy-MM-dd"));
foreach (const QXmppVCardEmail &email, m_emails)
email.toXml(writer);
if (!m_fullName.isEmpty())
helperToXmlAddTextElement(writer, "FN", m_fullName);
if(!m_nickName.isEmpty())
helperToXmlAddTextElement(writer, "NICKNAME", m_nickName);
if (!m_firstName.isEmpty() ||
!m_lastName.isEmpty() ||
!m_middleName.isEmpty())
{
writer->writeStartElement("N");
if (!m_firstName.isEmpty())
helperToXmlAddTextElement(writer, "GIVEN", m_firstName);
if (!m_lastName.isEmpty())
helperToXmlAddTextElement(writer, "FAMILY", m_lastName);
if (!m_middleName.isEmpty())
helperToXmlAddTextElement(writer, "MIDDLE", m_middleName);
writer->writeEndElement();
}
if (!m_url.isEmpty())
helperToXmlAddTextElement(writer, "URL", m_url);
if(!photo().isEmpty())
{
writer->writeStartElement("PHOTO");
QString photoType = m_photoType;
if (photoType.isEmpty())
photoType = getImageType(m_photo);
helperToXmlAddTextElement(writer, "TYPE", photoType);
helperToXmlAddTextElement(writer, "BINVAL", m_photo.toBase64());
writer->writeEndElement();
}
writer->writeEndElement();
}
/// \endcond
|