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
/*
|
|
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)
|
|
: TQObject(parent, name), m_client( parent )
|
|
{
|
|
}
|
|
|
|
UserDetailsManager::~UserDetailsManager()
|
|
{
|
|
}
|
|
|
|
void UserDetailsManager::dump( const TQStringList & list )
|
|
{
|
|
for ( TQStringList::ConstIterator it = list.begin(); it != list.end(); ++it )
|
|
{
|
|
m_client->debug( TQString( " - %1" ).arg (*it) );
|
|
}
|
|
}
|
|
|
|
bool UserDetailsManager::known( const TQString & dn )
|
|
{
|
|
if ( dn == m_client->userDN() )
|
|
return true;
|
|
// TODO: replace with m_detailsMap.contains( dn );
|
|
TQStringList::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 TQString & dn )
|
|
{
|
|
return m_detailsMap[ dn ];
|
|
}
|
|
|
|
TQStringList UserDetailsManager::knownDNs()
|
|
{
|
|
return m_detailsMap.keys();
|
|
}
|
|
|
|
void UserDetailsManager::addDetails( const ContactDetails & details )
|
|
{
|
|
//tqDebug( "UserDetailsManager::addContact, got %s, we now know: ", details.dn.ascii() );
|
|
m_detailsMap.insert( details.dn, details );
|
|
/* TQStringList keys = m_detailsMap.keys();
|
|
dump( keys );
|
|
tqDebug( "UserDetailsManager::addContact, pending: " );
|
|
dump( m_pendingDNs );*/
|
|
}
|
|
|
|
void UserDetailsManager::removeContact( const TQString & dn )
|
|
{
|
|
m_detailsMap.remove( dn );
|
|
}
|
|
|
|
void UserDetailsManager::requestDetails( const TQStringList & dnList, bool onlyUnknown )
|
|
{
|
|
// build a list of DNs that are not already subject to a pending request
|
|
TQStringList requestList;
|
|
TQValueListConstIterator<TQString> end = dnList.end();
|
|
for ( TQValueListConstIterator<TQString> 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;
|
|
TQStringList::Iterator found = m_pendingDNs.find( *it );
|
|
if ( found == m_pendingDNs.end() )
|
|
{
|
|
m_client->debug( TQString( "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, TQT_SIGNAL( gotContactUserDetails( const GroupWise::ContactDetails & ) ),
|
|
TQT_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 TQString & dn, bool onlyUnknown )
|
|
{
|
|
m_client->debug( TQString( "UserDetailsManager::requestDetails for %1" ).arg( dn ) );
|
|
TQStringList 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"
|