You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
130 lines
4.2 KiB
130 lines
4.2 KiB
15 years ago
|
/*
|
||
|
userdetailsmanager.cpp - Storage of all user details seen during this session
|
||
|
|
||
|
Copyright (c) 2004 SUSE Linux AG http://www.suse.com
|
||
|
|
||
|
Kopete (c) 2002-2004 by the Kopete developers <kopete-devel@kde.org>
|
||
|
|
||
|
*************************************************************************
|
||
|
* *
|
||
|
* This library is free software; you can redistribute it and/or *
|
||
|
* modify it under the terms of the GNU Lesser General Public *
|
||
|
* License as published by the Free Software Foundation; either *
|
||
|
* version 2 of the License, or (at your option) any later version. *
|
||
|
* *
|
||
|
*************************************************************************
|
||
|
*/
|
||
|
|
||
|
#include "client.h"
|
||
|
#include "tasks/getdetailstask.h"
|
||
|
|
||
|
#include "userdetailsmanager.h"
|
||
|
|
||
|
UserDetailsManager::UserDetailsManager( Client * parent, const char *name)
|
||
|
: QObject(parent, name), m_client( parent )
|
||
|
{
|
||
|
}
|
||
|
|
||
|
UserDetailsManager::~UserDetailsManager()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
void UserDetailsManager::dump( const QStringList & list )
|
||
|
{
|
||
|
for ( QStringList::ConstIterator it = list.begin(); it != list.end(); ++it )
|
||
|
{
|
||
|
m_client->debug( QString( " - %1" ).arg (*it) );
|
||
|
}
|
||
|
}
|
||
|
|
||
|
bool UserDetailsManager::known( const QString & dn )
|
||
|
{
|
||
|
if ( dn == m_client->userDN() )
|
||
|
return true;
|
||
|
// TODO: replace with m_detailsMap.contains( dn );
|
||
|
QStringList::Iterator found = m_detailsMap.keys().find( dn );
|
||
|
// we always know the local user's details, so don't look them up
|
||
|
return ( found !=m_detailsMap.keys().end() );
|
||
|
}
|
||
|
|
||
|
ContactDetails UserDetailsManager::details( const QString & dn )
|
||
|
{
|
||
|
return m_detailsMap[ dn ];
|
||
|
}
|
||
|
|
||
|
QStringList UserDetailsManager::knownDNs()
|
||
|
{
|
||
|
return m_detailsMap.keys();
|
||
|
}
|
||
|
|
||
|
void UserDetailsManager::addDetails( const ContactDetails & details )
|
||
|
{
|
||
|
//qDebug( "UserDetailsManager::addContact, got %s, we now know: ", details.dn.ascii() );
|
||
|
m_detailsMap.insert( details.dn, details );
|
||
|
/* QStringList keys = m_detailsMap.keys();
|
||
|
dump( keys );
|
||
|
qDebug( "UserDetailsManager::addContact, pending: " );
|
||
|
dump( m_pendingDNs );*/
|
||
|
}
|
||
|
|
||
|
void UserDetailsManager::removeContact( const QString & dn )
|
||
|
{
|
||
|
m_detailsMap.remove( dn );
|
||
|
}
|
||
|
|
||
|
void UserDetailsManager::requestDetails( const QStringList & dnList, bool onlyUnknown )
|
||
|
{
|
||
|
// build a list of DNs that are not already subject to a pending request
|
||
|
QStringList requestList;
|
||
|
QValueListConstIterator<QString> end = dnList.end();
|
||
|
for ( QValueListConstIterator<QString> it = dnList.begin(); it != end; ++it )
|
||
|
{
|
||
|
// don't request our own details
|
||
|
if ( *it == m_client->userDN() )
|
||
|
break;
|
||
|
// don't request details we already have unless the caller specified this
|
||
|
if ( onlyUnknown && known( *it ) )
|
||
|
break;
|
||
|
QStringList::Iterator found = m_pendingDNs.find( *it );
|
||
|
if ( found == m_pendingDNs.end() )
|
||
|
{
|
||
|
m_client->debug( QString( "UserDetailsManager::requestDetails - including %1" ).arg( (*it) ) );
|
||
|
requestList.append( *it );
|
||
|
m_pendingDNs.append( *it );
|
||
|
}
|
||
|
}
|
||
|
if ( !requestList.empty() )
|
||
|
{
|
||
|
GetDetailsTask * gdt = new GetDetailsTask( m_client->rootTask() );
|
||
|
gdt->userDNs( requestList );
|
||
|
connect( gdt, SIGNAL( gotContactUserDetails( const GroupWise::ContactDetails & ) ),
|
||
|
SLOT( slotReceiveContactDetails( const GroupWise::ContactDetails & ) ) );
|
||
|
// TODO: connect to gdt's finished() signal, check for failures, expand gdt to maintain a list of not found DNs?
|
||
|
gdt->go( true );
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
m_client->debug( "UserDetailsManager::requestDetails - all requested contacts are already available or pending" );
|
||
|
}
|
||
|
}
|
||
|
|
||
|
void UserDetailsManager::requestDetails( const QString & dn, bool onlyUnknown )
|
||
|
{
|
||
|
m_client->debug( QString( "UserDetailsManager::requestDetails for %1" ).arg( dn ) );
|
||
|
QStringList list;
|
||
|
list.append( dn );
|
||
|
requestDetails( list, onlyUnknown );
|
||
|
}
|
||
|
|
||
|
void UserDetailsManager::slotReceiveContactDetails( const GroupWise::ContactDetails & details )
|
||
|
{
|
||
|
m_client->debug( "UserDetailsManager::slotReceiveContactDetails()" );
|
||
|
m_pendingDNs.remove( details.dn );
|
||
|
/*client()->userDetailsManager()->*/
|
||
|
addDetails( details );
|
||
|
//emit temporaryContact( details );
|
||
|
emit gotContactDetails( details );
|
||
|
}
|
||
|
|
||
|
#include "userdetailsmanager.moc"
|