summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRemko Tronçon <git@el-tramo.be>2010-04-07 19:57:03 (GMT)
committerRemko Tronçon <git@el-tramo.be>2010-08-24 17:10:23 (GMT)
commit6e4b357141a6d09632f1e96d0eaf54f79daf52c9 (patch)
tree7627e6309e9b7048e0da0482fff389a6648b2aae /Swiften/VCards/VCardFileStorage.cpp
parent1586683c148825cd24863aec6ef940c8c0fec5ea (diff)
downloadswift-6e4b357141a6d09632f1e96d0eaf54f79daf52c9.zip
swift-6e4b357141a6d09632f1e96d0eaf54f79daf52c9.tar.bz2
Added VCardStorage.
Diffstat (limited to 'Swiften/VCards/VCardFileStorage.cpp')
-rw-r--r--Swiften/VCards/VCardFileStorage.cpp53
1 files changed, 53 insertions, 0 deletions
diff --git a/Swiften/VCards/VCardFileStorage.cpp b/Swiften/VCards/VCardFileStorage.cpp
new file mode 100644
index 0000000..d3163fb
--- /dev/null
+++ b/Swiften/VCards/VCardFileStorage.cpp
@@ -0,0 +1,53 @@
+/*
+ * Copyright (c) 2010 Remko Tronçon
+ * Licensed under the GNU General Public License v3.
+ * See Documentation/Licenses/GPLv3.txt for more information.
+ */
+
+#include "Swiften/VCards/VCardFileStorage.h"
+
+#include <boost/filesystem/fstream.hpp>
+
+#include "Swiften/JID/JID.h"
+#include "Swiften/Base/ByteArray.h"
+#include "Swiften/Elements/VCard.h"
+#include "Swiften/Serializer/PayloadSerializers/VCardSerializer.h"
+#include "Swiften/Parser/PayloadParsers/UnitTest/PayloadParserTester.h"
+#include "Swiften/Parser/PayloadParsers/VCardParser.h"
+
+namespace Swift {
+
+VCardFileStorage::VCardFileStorage(boost::filesystem::path dir) : vcardsPath(dir) {
+}
+
+boost::shared_ptr<VCard> VCardFileStorage::getVCard(const JID& jid) const {
+ boost::filesystem::path vcardPath(getVCardPath(jid));
+ if (boost::filesystem::exists(vcardPath)) {
+ ByteArray data;
+ data.readFromFile(vcardPath.string());
+
+ VCardParser parser;
+ PayloadParserTester tester(&parser);
+ tester.parse(String(data.getData(), data.getSize()));
+ return boost::dynamic_pointer_cast<VCard>(parser.getPayload());
+ }
+ else {
+ return boost::shared_ptr<VCard>();
+ }
+}
+
+void VCardFileStorage::setVCard(const JID& jid, boost::shared_ptr<VCard> v) {
+ boost::filesystem::path vcardPath(getVCardPath(jid));
+ if (!boost::filesystem::exists(vcardPath.parent_path())) {
+ boost::filesystem::create_directories(vcardPath.parent_path());
+ }
+ boost::filesystem::ofstream file(getVCardPath(jid));
+ file << VCardSerializer().serializePayload(v);
+ file.close();
+}
+
+boost::filesystem::path VCardFileStorage::getVCardPath(const JID& jid) const {
+ return boost::filesystem::path(vcardsPath / (jid.toBare().toString().getUTF8String() + ".xml"));
+}
+
+}