|
|
|
/*
|
|
|
|
This file is part of KAddressbook.
|
|
|
|
Copyright (c) 2003 Daniel Molkentin <molkentin@kde.org>
|
|
|
|
|
|
|
|
This program 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 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program 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 this program; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
|
|
|
|
As a special exception, permission is given to link this program
|
|
|
|
with any edition of TQt, and distribute the resulting executable,
|
|
|
|
without including the source code for TQt in the source distribution.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <tqfile.h>
|
|
|
|
|
|
|
|
#include <tdefiledialog.h>
|
|
|
|
#include <tdeio/netaccess.h>
|
|
|
|
#include <tdelocale.h>
|
|
|
|
#include <tdemessagebox.h>
|
|
|
|
#include <tdetempfile.h>
|
|
|
|
#include <kurl.h>
|
|
|
|
|
|
|
|
#include <kdebug.h>
|
|
|
|
|
|
|
|
#include "eudora_xxport.h"
|
|
|
|
|
|
|
|
#define CTRL_C 3
|
|
|
|
|
|
|
|
K_EXPORT_KADDRESSBOOK_XXFILTER( libkaddrbk_eudora_xxport, EudoraXXPort )
|
|
|
|
|
|
|
|
EudoraXXPort::EudoraXXPort( TDEABC::AddressBook *ab, TQWidget *parent, const char *name )
|
|
|
|
: KAB::XXPort( ab, parent, name )
|
|
|
|
{
|
|
|
|
createImportAction( i18n( "Import Eudora Addressbook..." ) );
|
|
|
|
}
|
|
|
|
|
|
|
|
TDEABC::AddresseeList EudoraXXPort::importContacts( const TQString& ) const
|
|
|
|
{
|
|
|
|
TQString fileName = KFileDialog::getOpenFileName( TQDir::homeDirPath(),
|
|
|
|
"*.[tT][xX][tT]|" + i18n("Eudora Light Addressbook (*.txt)"), 0 );
|
|
|
|
if ( fileName.isEmpty() )
|
|
|
|
return TDEABC::AddresseeList();
|
|
|
|
|
|
|
|
TQFile file( fileName );
|
|
|
|
if ( !file.open( IO_ReadOnly ) )
|
|
|
|
return TDEABC::AddresseeList();
|
|
|
|
|
|
|
|
TQString line;
|
|
|
|
TQTextStream stream( &file );
|
|
|
|
TDEABC::Addressee *a = 0;
|
|
|
|
int bytesRead = 0;
|
|
|
|
|
|
|
|
TDEABC::AddresseeList list;
|
|
|
|
|
|
|
|
while( !stream.eof() ) {
|
|
|
|
line = stream.readLine();
|
|
|
|
bytesRead += line.length();
|
|
|
|
TQString tmp;
|
|
|
|
|
|
|
|
if ( line.startsWith( "alias" ) ) {
|
|
|
|
if ( a ) { // Write it out
|
|
|
|
list << *a;
|
|
|
|
delete a;
|
|
|
|
a = 0;
|
|
|
|
a = new TDEABC::Addressee();
|
|
|
|
} else
|
|
|
|
a = new TDEABC::Addressee();
|
|
|
|
|
|
|
|
tmp = key( line ).stripWhiteSpace();
|
|
|
|
if ( !tmp.isEmpty() )
|
|
|
|
a->setFormattedName( tmp );
|
|
|
|
|
|
|
|
tmp = email( line ).stripWhiteSpace();
|
|
|
|
if ( !tmp.isEmpty() )
|
|
|
|
a->insertEmail( tmp );
|
|
|
|
} else if ( line.startsWith( "note" ) ) {
|
|
|
|
if ( !a ) // Must have an alias before a note
|
|
|
|
break;
|
|
|
|
|
|
|
|
tmp = comment( line ).stripWhiteSpace();
|
|
|
|
if ( !tmp.isEmpty() )
|
|
|
|
a->setNote( tmp );
|
|
|
|
|
|
|
|
tmp = get( line, "name" ).stripWhiteSpace();
|
|
|
|
if ( !tmp.isEmpty() )
|
|
|
|
a->setNameFromString( tmp );
|
|
|
|
|
|
|
|
tmp = get( line, "address" ).stripWhiteSpace();
|
|
|
|
if ( !tmp.isEmpty() ) {
|
|
|
|
TDEABC::Address addr;
|
|
|
|
kdDebug(5720) << tmp << endl; // dump complete address
|
|
|
|
addr.setLabel( tmp );
|
|
|
|
a->insertAddress( addr );
|
|
|
|
}
|
|
|
|
|
|
|
|
tmp = get( line, "phone" ).stripWhiteSpace();
|
|
|
|
if ( !tmp.isEmpty() )
|
|
|
|
a->insertPhoneNumber( TDEABC::PhoneNumber( tmp, TDEABC::PhoneNumber::Home ) );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( a ) { // Write out address
|
|
|
|
list << *a;
|
|
|
|
delete a;
|
|
|
|
a = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
file.close();
|
|
|
|
|
|
|
|
return list;
|
|
|
|
}
|
|
|
|
|
|
|
|
TQString EudoraXXPort::key( const TQString& line) const
|
|
|
|
{
|
|
|
|
int e;
|
|
|
|
TQString result;
|
|
|
|
int b = line.find( '\"', 0 );
|
|
|
|
|
|
|
|
if ( b == -1 ) {
|
|
|
|
b = line.find( ' ' );
|
|
|
|
if ( b == -1 )
|
|
|
|
return result;
|
|
|
|
|
|
|
|
b++;
|
|
|
|
e = line.find( ' ', b );
|
|
|
|
result = line.mid( b, e - b );
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
b++;
|
|
|
|
e = line.find( '\"', b );
|
|
|
|
if ( e == -1 )
|
|
|
|
return result;
|
|
|
|
|
|
|
|
result = line.mid( b, e - b );
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
TQString EudoraXXPort::email( const TQString& line ) const
|
|
|
|
{
|
|
|
|
int b;
|
|
|
|
TQString result;
|
|
|
|
b = line.findRev( '\"' );
|
|
|
|
if ( b == -1 ) {
|
|
|
|
b = line.findRev( ' ' );
|
|
|
|
if ( b == -1 )
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
result = line.mid( b + 1 );
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
TQString EudoraXXPort::comment( const TQString& line ) const
|
|
|
|
{
|
|
|
|
int b;
|
|
|
|
TQString result;
|
|
|
|
uint i;
|
|
|
|
b = line.findRev( '>' );
|
|
|
|
if ( b == -1 ) {
|
|
|
|
b = line.findRev( '\"' );
|
|
|
|
if ( b == -1 )
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
result = line.mid( b + 1 );
|
|
|
|
for ( i = 0; i < result.length(); i++ ) {
|
|
|
|
if ( result[ i ] == CTRL_C )
|
|
|
|
result[ i ] = '\n';
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
TQString EudoraXXPort::get( const TQString& line, const TQString& key ) const
|
|
|
|
{
|
|
|
|
TQString fd = "<" + key + ":";
|
|
|
|
int b, e;
|
|
|
|
uint i;
|
|
|
|
|
|
|
|
// Find formatted key, return on error
|
|
|
|
b = line.find( fd );
|
|
|
|
if ( b == -1 )
|
|
|
|
return TQString();
|
|
|
|
|
|
|
|
b += fd.length();
|
|
|
|
e = line.find( '>', b );
|
|
|
|
if ( e == -1 )
|
|
|
|
return TQString();
|
|
|
|
|
|
|
|
e--;
|
|
|
|
TQString result = line.mid( b, e - b + 1 );
|
|
|
|
for ( i = 0; i < result.length(); i++ ) {
|
|
|
|
if ( result[ i ] == CTRL_C )
|
|
|
|
result[ i ] = '\n';
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
#include "eudora_xxport.moc"
|