void JabberPersonalInfoService::vCardDownloaded(bool ok, const QXmppVCardIq &vCard) { if (!ok) return; CurrentBuddy.setNickName(vCard.nickName()); CurrentBuddy.setFirstName(vCard.fullName()); CurrentBuddy.setFamilyName(vCard.middleName()); QDate bday = vCard.birthday(); if (bday.isValid() && !bday.isNull()) CurrentBuddy.setBirthYear(bday.year()); if (!vCard.addresses().isEmpty()) CurrentBuddy.setCity(vCard.addresses().at(0).locality()); if (!vCard.emails().isEmpty()) CurrentBuddy.setEmail(vCard.emails().at(0).address()); CurrentBuddy.setWebsite(vCard.url()); emit personalInfoAvailable(CurrentBuddy); }
void tst_QXmppVCardIq::testVCard() { const QByteArray xml( "<iq id=\"vcard1\" type=\"set\">" "<vCard xmlns=\"vcard-temp\">" "<ADR><CTRY>France</CTRY></ADR>" "<BDAY>1983-09-14</BDAY>" "<DESC>I like XMPP.</DESC>" "<EMAIL><INTERNET/><USERID>[email protected]</USERID></EMAIL>" "<FN>Foo Bar!</FN>" "<NICKNAME>FooBar</NICKNAME>" "<N><GIVEN>Foo</GIVEN><FAMILY>Wiz</FAMILY><MIDDLE>Baz</MIDDLE></N>" "<TEL><HOME/><NUMBER>12345</NUMBER></TEL>" "<TEL><WORK/><NUMBER>67890</NUMBER></TEL>" "<PHOTO>" "<TYPE>image/png</TYPE>" "<BINVAL>" "iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAIAAABLbSncAAAAAXNSR0IArs4c6QAAAAlwSFlzAAA" "UIgAAFCIBjw1HyAAAAAd0SU1FB9oIHQInNvuJovgAAAAiSURBVAjXY2TQ+s/AwMDAwPD/GiMDlP" "WfgYGBiQEHGJwSAK2BBQ1f3uvpAAAAAElFTkSuQmCC" "</BINVAL>" "</PHOTO>" "<URL>https://github.com/qxmpp-project/qxmpp/</URL>" "<ORG>" "<ORGNAME>QXmpp foundation</ORGNAME>" "<ORGUNIT>Main QXmpp dev unit</ORGUNIT>" "</ORG>" "<TITLE>Executive Director</TITLE>" "<ROLE>Patron Saint</ROLE>" "</vCard>" "</iq>"); QXmppVCardIq vcard; parsePacket(vcard, xml); QCOMPARE(vcard.addresses().size(), 1); QCOMPARE(vcard.addresses()[0].country(), QLatin1String("France")); QCOMPARE(int(vcard.addresses()[0].type()), int(QXmppVCardEmail::None)); QCOMPARE(vcard.birthday(), QDate(1983, 9, 14)); QCOMPARE(vcard.description(), QLatin1String("I like XMPP.")); QCOMPARE(vcard.email(), QLatin1String("*****@*****.**")); QCOMPARE(vcard.emails().size(), 1); QCOMPARE(vcard.emails()[0].address(), QLatin1String("*****@*****.**")); QCOMPARE(int(vcard.emails()[0].type()), int(QXmppVCardEmail::Internet)); QCOMPARE(vcard.nickName(), QLatin1String("FooBar")); QCOMPARE(vcard.fullName(), QLatin1String("Foo Bar!")); QCOMPARE(vcard.firstName(), QLatin1String("Foo")); QCOMPARE(vcard.middleName(), QLatin1String("Baz")); QCOMPARE(vcard.lastName(), QLatin1String("Wiz")); QCOMPARE(vcard.phones().size(), 2); QCOMPARE(vcard.phones()[0].number(), QLatin1String("12345")); QCOMPARE(int(vcard.phones()[0].type()), int(QXmppVCardEmail::Home)); QCOMPARE(vcard.phones()[1].number(), QLatin1String("67890")); QCOMPARE(int(vcard.phones()[1].type()), int(QXmppVCardEmail::Work)); QCOMPARE(vcard.photo(), QByteArray::fromBase64( "iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAIAAABLbSncAAAAAXNSR0IArs4c6QAAAAlwSFlzAAA" "UIgAAFCIBjw1HyAAAAAd0SU1FB9oIHQInNvuJovgAAAAiSURBVAjXY2TQ+s/AwMDAwPD/GiMDlP" "WfgYGBiQEHGJwSAK2BBQ1f3uvpAAAAAElFTkSuQmCC")); QCOMPARE(vcard.photoType(), QLatin1String("image/png")); QCOMPARE(vcard.url(), QLatin1String("https://github.com/qxmpp-project/qxmpp/")); const QXmppVCardOrganization &orgInfo = vcard.organization(); QCOMPARE(orgInfo.organization(), QLatin1String("QXmpp foundation")); QCOMPARE(orgInfo.unit(), QLatin1String("Main QXmpp dev unit")); QCOMPARE(orgInfo.title(), QLatin1String("Executive Director")); QCOMPARE(orgInfo.role(), QLatin1String("Patron Saint")); serializePacket(vcard, xml); }