blob: a6fe2be71050e2ee0634480c9e08c4f332ed837b (
plain)
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
|
#include "Swiften/Parser/PayloadParsers/VCardParser.h"
#include "Swiften/Base/foreach.h"
#include "Swiften/StringCodecs/Base64.h"
namespace Swift {
VCardParser::VCardParser() {
}
void VCardParser::handleStartElement(const String& element, const String&, const AttributeMap&) {
elementStack_.push_back(element);
currentText_ = "";
}
void VCardParser::handleEndElement(const String&, const String&) {
String elementHierarchy = getElementHierarchy();
if (elementHierarchy == "/vCard/PHOTO/TYPE") {
getPayloadInternal()->setPhotoType(currentText_);
}
else if (elementHierarchy == "/vCard/PHOTO/BINVAL") {
getPayloadInternal()->setPhoto(Base64::decode(currentText_));
}
elementStack_.pop_back();
}
void VCardParser::handleCharacterData(const String& text) {
currentText_ += text;
}
String VCardParser::getElementHierarchy() const {
String result;
foreach(const String& element, elementStack_) {
result += "/" + element;
}
return result;
}
}
|