/src/sip/jabber/avatarmanager.cpp
http://github.com/tomahawk-player/tomahawk · C++ · 192 lines · 125 code · 37 blank · 30 comment · 12 complexity · 834f23217387ee30a6ec4e1e412482f9 MD5 · raw file
- /* === This file is part of Tomahawk Player - <http://tomahawk-player.org> ===
- *
- * Copyright 2010-2011, Christian Muehlhaeuser <muesli@tomahawk-player.org>
- *
- * Tomahawk is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * Tomahawk is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with Tomahawk. If not, see <http://www.gnu.org/licenses/>.
- */
- #include "avatarmanager.h"
- #include "utils/tomahawkutils.h"
- #include <jreen/vcard.h>
- #include <jreen/vcardupdate.h>
- #include <jreen/presence.h>
- #include <jreen/iqreply.h>
- #include <QDir>
- #include <QCryptographicHash>
- #include <QPixmap>
- #include "utils/logger.h"
- AvatarManager::AvatarManager(Jreen::Client *client) :
- m_cacheDir(TomahawkUtils::appDataDir().absolutePath().append("/jreen/"))
- {
- m_client = client;
- m_cachedAvatars = m_cacheDir.entryList();
- connect(m_client, SIGNAL(serverFeaturesReceived(QSet<QString>)), SLOT(onNewConnection()));
- connect(m_client, SIGNAL(presenceReceived(Jreen::Presence)), SLOT(onNewPresence(Jreen::Presence)));
- connect(m_client, SIGNAL(iqReceived(Jreen::IQ)), SLOT(onNewIq(Jreen::IQ)));
- connect(this, SIGNAL(newAvatar(QString)), SLOT(onNewAvatar(QString)));
- }
- AvatarManager::~AvatarManager()
- {
- }
- void AvatarManager::onNewConnection()
- {
- fetchVCard( m_client->jid().bare() );
- }
- void AvatarManager::fetchVCard(const QString &jid)
- {
- // qDebug() << Q_FUNC_INFO;
- Jreen::IQ iq(Jreen::IQ::Get, jid );
- iq.addExtension(new Jreen::VCard());
- Jreen::IQReply *reply = m_client->send(iq);
- connect(reply, SIGNAL(received(Jreen::IQ)), SLOT(onNewIq(Jreen::IQ)));
- }
- void AvatarManager::onNewPresence(const Jreen::Presence& presence)
- {
- Jreen::VCardUpdate::Ptr update = presence.payload<Jreen::VCardUpdate>();
- if(update)
- {
- // qDebug() << "vcard: found update for" << presence.from().full();
- if(!isCached(update->photoHash()))
- {
- // qDebug() << presence.from().full() << "vcard: photo not cached, starting request..." << update->photoHash();
- fetchVCard( presence.from().bare() );
- }
- else
- {
- // qDebug() << presence.from().full() << "vcard: photo already cached no request necessary " << update->photoHash();
- m_JidsAvatarHashes.insert( update->photoHash(), presence.from().bare() );
- if ( !this->avatar( presence.from().bare() ).isNull() )
- emit newAvatar(presence.from().bare());
- }
- }
- else
- {
- // qDebug() << Q_FUNC_INFO << presence.from().full() << "got no statusupdateextension";
- //TODO: do we want this? might fetch avatars for broken clients
- fetchVCard( presence.from().bare() );
- }
- }
- void AvatarManager::onNewIq(const Jreen::IQ& iq)
- {
- Jreen::VCard::Ptr vcard = iq.payload<Jreen::VCard>();
- if(vcard)
- {
- iq.accept();
- // qDebug() << Q_FUNC_INFO << "Got vcard from " << iq.from().full();
- QString id = iq.from().full();
- QString avatarHash;
- const Jreen::VCard::Photo &photo = vcard->photo();
- if (!photo.data().isEmpty()) {
- // qDebug() << "vcard: got photo data" << id;
- avatarHash = QCryptographicHash::hash(photo.data(), QCryptographicHash::Sha1).toHex();
- if (!m_cacheDir.exists())
- m_cacheDir.mkpath( avatarDir( avatarHash ).absolutePath() );
- QFile file(avatarPath(avatarHash));
- if (file.open(QIODevice::WriteOnly)) {
- file.write(photo.data());
- file.close();
- }
- m_cachedAvatars.append(avatarHash);
- m_JidsAvatarHashes.insert( avatarHash, iq.from().bare() );
- Q_ASSERT(!this->avatar(iq.from().bare()).isNull());
- emit newAvatar(iq.from().bare());
- }
- else
- {
- // qDebug() << "vcard: got no photo data" << id;
- }
- // got own presence
- if ( m_client->jid().bare() == id )
- {
- // qDebug() << Q_FUNC_INFO << "got own vcard";
- Jreen::Presence presence = m_client->presence();
- Jreen::VCardUpdate::Ptr update = presence.payload<Jreen::VCardUpdate>();
- if (update->photoHash() != avatarHash)
- {
- qDebug() << Q_FUNC_INFO << "Updating own presence...";
- update->setPhotoHash(avatarHash);
- m_client->send(presence);
- }
- }
- }
- }
- QPixmap AvatarManager::avatar(const QString &jid) const
- {
- if( isCached( avatarHash( jid ) ) )
- {
- return QPixmap( avatarPath( avatarHash( jid ) ) );
- }
- else
- {
- return QPixmap();
- }
- }
- QString AvatarManager::avatarHash(const QString &jid) const
- {
- //qDebug() << Q_FUNC_INFO << jid << m_JidsAvatarHashes.key(jid);
- return m_JidsAvatarHashes.key(jid);
- }
- QDir AvatarManager::avatarDir(const QString&) const
- {
- return m_cacheDir;
- }
- QString AvatarManager::avatarPath(const QString &avatarHash) const
- {
- Q_ASSERT(!avatarHash.contains("@"));
- return avatarDir(avatarHash).absoluteFilePath(avatarHash);
- }
- bool AvatarManager::isCached(const QString &avatarHash) const
- {
- return m_cachedAvatars.contains( avatarHash );
- }
- void AvatarManager::onNewAvatar(const QString&)
- {
- // qDebug() << Q_FUNC_INFO << "Found new Avatar..." << jid;
- }