summaryrefslogtreecommitdiffstats
blob: 9c3255d60605b5cf74378ee7bb325318242259e9 (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
/*
 * Copyright (c) 2010 Remko Tronçon
 * Licensed under the GNU General Public License v3.
 * See Documentation/Licenses/GPLv3.txt for more information.
 */

#include "Swiften/Avatars/AvatarManager.h"

#include <boost/bind.hpp>

#include "Swiften/Avatars/VCardUpdateAvatarManager.h"
#include "Swiften/Avatars/AvatarStorage.h"

namespace Swift {

AvatarManager::AvatarManager(VCardManager* vcardManager, StanzaChannel* stanzaChannel, AvatarStorage* avatarStorage, MUCRegistry* mucRegistry) : avatarStorage(avatarStorage) {
	vcardUpdateAvatarManager = new VCardUpdateAvatarManager(vcardManager, stanzaChannel, avatarStorage, mucRegistry);
	vcardUpdateAvatarManager->onAvatarChanged.connect(boost::ref(onAvatarChanged));
}

AvatarManager::~AvatarManager() {
	delete vcardUpdateAvatarManager;
}

boost::filesystem::path AvatarManager::getAvatarPath(const JID& jid) const {
	String hash = vcardUpdateAvatarManager->getAvatarHash(jid);
	if (!hash.isEmpty()) {
		return avatarStorage->getAvatarPath(hash);
	}
	return boost::filesystem::path();
}


}