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.
132 lines
3.9 KiB
132 lines
3.9 KiB
/*
|
|
Kopete Groupwise Protocol
|
|
joinchattask.cpp - Join a Chat on the server, after having been invited.
|
|
|
|
Copyright (c) 2005 SUSE Linux Products GmbH http://www.suse.com
|
|
|
|
Based on Iris, Copyright (C) 2003 Justin Karneges
|
|
|
|
Kopete (c) 2002-2005 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 "gwerror.h"
|
|
#include "client.h"
|
|
#include "response.h"
|
|
#include "userdetailsmanager.h"
|
|
|
|
#include "joinchattask.h"
|
|
|
|
JoinChatTask::JoinChatTask(Task* parent): RequestTask(parent)
|
|
{
|
|
}
|
|
|
|
JoinChatTask::~JoinChatTask()
|
|
{
|
|
}
|
|
|
|
void JoinChatTask::join( const TQString & displayName )
|
|
{
|
|
m_displayName = displayName;
|
|
Field::FieldList lst, tmp;
|
|
tmp.append( new Field::SingleField( NM_A_SZ_OBJECT_ID, 0, NMFIELD_TYPE_UTF8, displayName ) );
|
|
lst.append( new Field::MultiField( NM_A_FA_CONVERSATION, NMFIELD_METHOD_VALID, 0, NMFIELD_TYPE_ARRAY, tmp ) );
|
|
createTransfer( "joinchat", lst );
|
|
}
|
|
|
|
bool JoinChatTask::take( Transfer * transfer )
|
|
{
|
|
if ( forMe( transfer ) )
|
|
{
|
|
client()->debug( "JoinChatTask::take()" );
|
|
Response * response = dynamic_cast<Response *>( transfer );
|
|
Field::FieldList responseFields = response->fields();
|
|
// if the request was successful
|
|
if ( response->resultCode() == GroupWise::None )
|
|
{
|
|
// extract the list of participants and store them
|
|
Field::MultiField * participants = responseFields.findMultiField( NM_A_FA_CONTACT_LIST );
|
|
if ( participants )
|
|
{
|
|
Field::SingleField * contact = 0;
|
|
Field::FieldList contactList = participants->fields();
|
|
const Field::FieldListIterator end = contactList.end();
|
|
for ( Field::FieldListIterator it = contactList.find( NM_A_SZ_DN );
|
|
it != end;
|
|
it = contactList.find( ++it, NM_A_SZ_DN ) )
|
|
{
|
|
contact = static_cast<Field::SingleField *>( *it );
|
|
if ( contact )
|
|
{
|
|
// HACK: lowercased DN
|
|
TQString dn = contact->value().toString().lower();
|
|
m_participants.append( dn );
|
|
// need to ask for details for these contacts
|
|
}
|
|
}
|
|
}
|
|
else
|
|
setError( GroupWise::Protocol );
|
|
|
|
// now, extract the list of pending invites and store them
|
|
Field::MultiField * invitees = responseFields.findMultiField( NM_A_FA_RESULTS );
|
|
if ( invitees )
|
|
{
|
|
Field::SingleField * contact = 0;
|
|
Field::FieldList contactList = invitees->fields();
|
|
const Field::FieldListIterator end = contactList.end();
|
|
for ( Field::FieldListIterator it = contactList.find( NM_A_SZ_DN );
|
|
it != end;
|
|
it = contactList.find( ++it, NM_A_SZ_DN ) )
|
|
{
|
|
contact = static_cast<Field::SingleField *>( *it );
|
|
if ( contact )
|
|
{
|
|
// HACK: lowercased DN
|
|
TQString dn = contact->value().toString().lower();
|
|
m_invitees.append( dn );
|
|
// need to ask for details for these contacts
|
|
if ( !client()->userDetailsManager()->known( dn ) )
|
|
; // don't request details for chatrooms, there could be too many
|
|
}
|
|
}
|
|
}
|
|
else
|
|
setError( GroupWise::Protocol );
|
|
|
|
client()->debug( "JoinChatTask::finished()" );
|
|
finished();
|
|
}
|
|
else
|
|
setError( response->resultCode() );
|
|
return true;
|
|
}
|
|
else
|
|
return false;
|
|
}
|
|
|
|
TQStringList JoinChatTask::participants() const
|
|
{
|
|
return m_participants;
|
|
}
|
|
|
|
TQStringList JoinChatTask::invitees() const
|
|
{
|
|
return m_invitees;
|
|
}
|
|
|
|
TQString JoinChatTask::displayName() const
|
|
{
|
|
return m_displayName;
|
|
}
|
|
|
|
#include "joinchattask.moc"
|