mirror of
https://codeberg.org/Mercury-IM/Smack
synced 2024-11-12 19:02:06 +01:00
Make VCard XML null value safe
The user is able to set (most) values to null. We must take that into consideration when transforming the VCard to XML.
This commit is contained in:
parent
49e1c837b2
commit
2250ac20ed
1 changed files with 31 additions and 11 deletions
|
@ -565,23 +565,27 @@ public class VCard extends IQ {
|
|||
xml.rightAngleBracket();
|
||||
if (hasNameField()) {
|
||||
xml.openElement("N");
|
||||
xml.element("FAMILY", lastName);
|
||||
xml.element("GIVEN", firstName);
|
||||
xml.element("MIDDLE", middleName);
|
||||
xml.optElement("FAMILY", lastName);
|
||||
xml.optElement("GIVEN", firstName);
|
||||
xml.optElement("MIDDLE", middleName);
|
||||
xml.closeElement("N");
|
||||
}
|
||||
if (hasOrganizationFields()) {
|
||||
xml.openElement("ORG");
|
||||
xml.element("ORGNAME", organization);
|
||||
xml.element("ORGUNIT", organizationUnit);
|
||||
xml.optElement("ORGNAME", organization);
|
||||
xml.optElement("ORGUNIT", organizationUnit);
|
||||
xml.closeElement("ORG");
|
||||
}
|
||||
for (Entry<String, String> entry : otherSimpleFields.entrySet()) {
|
||||
xml.element(entry.getKey(), entry.getValue());
|
||||
xml.optElement(entry.getKey(), entry.getValue());
|
||||
}
|
||||
for (Entry<String, String> entry : otherUnescapableFields.entrySet()) {
|
||||
final String value = entry.getValue();
|
||||
if (value == null) {
|
||||
continue;
|
||||
}
|
||||
xml.openElement(entry.getKey());
|
||||
xml.append(entry.getValue());
|
||||
xml.append(value);
|
||||
xml.closeElement(entry.getKey());
|
||||
}
|
||||
if (photoBinval != null) {
|
||||
|
@ -607,24 +611,36 @@ public class VCard extends IQ {
|
|||
xml.closeElement("EMAIL");
|
||||
}
|
||||
for (Entry<String, String> phone : workPhones.entrySet()) {
|
||||
final String number = phone.getValue();
|
||||
if (number == null) {
|
||||
continue;
|
||||
}
|
||||
xml.openElement("TEL");
|
||||
xml.emptyElement("WORK");
|
||||
xml.emptyElement(phone.getKey());
|
||||
xml.element("NUMBER", phone.getValue());
|
||||
xml.element("NUMBER", number);
|
||||
xml.closeElement("TEL");
|
||||
}
|
||||
for (Entry<String, String> phone : homePhones.entrySet()) {
|
||||
final String number = phone.getValue();
|
||||
if (number == null) {
|
||||
continue;
|
||||
}
|
||||
xml.openElement("TEL");
|
||||
xml.emptyElement("HOME");
|
||||
xml.emptyElement(phone.getKey());
|
||||
xml.element("NUMBER", phone.getValue());
|
||||
xml.element("NUMBER", number);
|
||||
xml.closeElement("TEL");
|
||||
}
|
||||
if (!workAddr.isEmpty()) {
|
||||
xml.openElement("ADR");
|
||||
xml.emptyElement("WORK");
|
||||
for (Entry<String, String> entry : workAddr.entrySet()) {
|
||||
xml.element(entry.getKey(), entry.getValue());
|
||||
final String value = entry.getValue();
|
||||
if (value == null) {
|
||||
continue;
|
||||
}
|
||||
xml.element(entry.getKey(), value);
|
||||
}
|
||||
xml.closeElement("ADR");
|
||||
}
|
||||
|
@ -632,7 +648,11 @@ public class VCard extends IQ {
|
|||
xml.openElement("ADR");
|
||||
xml.emptyElement("HOME");
|
||||
for (Entry<String, String> entry : homeAddr.entrySet()) {
|
||||
xml.element(entry.getKey(), entry.getValue());
|
||||
final String value = entry.getValue();
|
||||
if (value == null) {
|
||||
continue;
|
||||
}
|
||||
xml.element(entry.getKey(), value);
|
||||
}
|
||||
xml.closeElement("ADR");
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue