blob: abececaeff42026cba4b20635d512fd4f764112b (
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
/*
* 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, VCard::ref v) {
boost::filesystem::path vcardPath(getVCardPath(jid));
if (!boost::filesystem::exists(vcardPath.parent_path())) {
try {
boost::filesystem::create_directories(vcardPath.parent_path());
}
catch (const boost::filesystem::filesystem_error& e) {
std::cerr << "ERROR: " << e.what() << std::endl;
}
}
boost::filesystem::ofstream file(getVCardPath(jid));
file << VCardSerializer().serializePayload(v);
file.close();
}
boost::filesystem::path VCardFileStorage::getVCardPath(const JID& jid) const {
String file(jid.toString());
file.replaceAll('/', "%2f");
return boost::filesystem::path(vcardsPath / (file.getUTF8String() + ".xml"));
}
}
|