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.
tdepim/kaddressbook/kabtools.cpp

272 lines
9.2 KiB

/*
This file is part of KAddressBook.
Copyright (c) 2005 Tobias Koenig <tokoe@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 <tdeabc/addressbook.h>
#include <tdeabc/vcardconverter.h>
#include <tdeapplication.h>
#include <kdebug.h>
#include <ktempdir.h>
#include <tqfile.h>
#include "kabtools.h"
static TQString uniqueFileName( const TDEABC::Addressee &addressee, TQStringList &existingFiles )
{
TQString name;
TQString uniquePart;
uint number = 0;
do {
name = addressee.givenName() + "_" + addressee.familyName() + uniquePart + ".vcf";
name.replace( ' ', '_' );
name.replace( '/', '_' );
++number;
uniquePart = TQString( "_%1" ).arg( number );
} while ( existingFiles.contains( name ) );
existingFiles.append( name );
return name;
}
void KABTools::mailVCards( const TQStringList &uids, TDEABC::AddressBook *ab )
{
KURL::List urls;
KTempDir tempDir;
if ( tempDir.status() != 0 ) {
kdWarning() << strerror( tempDir.status() ) << endl;
return;
}
TQStringList existingFiles;
TQStringList::ConstIterator it( uids.begin() );
const TQStringList::ConstIterator endIt( uids.end() );
for ( ; it != endIt; ++it ) {
TDEABC::Addressee addressee = ab->findByUid( *it );
if ( addressee.isEmpty() )
continue;
TQString fileName = uniqueFileName( addressee, existingFiles );
TQString path = tempDir.name() + "/" + fileName;
TQFile file( path );
if ( file.open( IO_WriteOnly ) ) {
TDEABC::VCardConverter converter;
TDEABC::Addressee::List list;
list.append( addressee );
#if defined(KABC_VCARD_ENCODING_FIX)
const TQCString vcard = converter.createVCardsRaw( list, TDEABC::VCardConverter::v3_0 );
file.writeBlock( vcard, vcard.length() );
#else
TQString vcard = converter.createVCards( list, TDEABC::VCardConverter::v3_0 );
TQTextStream t( &file );
t.setEncoding( TQTextStream::UnicodeUTF8 );
t << vcard;
#endif
file.close();
KURL url( path );
url.setFileEncoding( "UTF-8" );
urls.append( url );
}
}
kapp->invokeMailer( TQString(), TQString(), TQString(),
TQString(),
TQString(),
TQString(),
urls.toStringList() );
}
static void mergePictures( TDEABC::Picture &master, const TDEABC::Picture &slave )
{
if ( master.isIntern() ) {
if ( master.data().isNull() ) {
if ( slave.isIntern() && !slave.data().isNull() )
master.setData( slave.data() );
else if ( !slave.isIntern() && !slave.url().isEmpty() )
master.setUrl( slave.url() );
}
} else {
if ( master.url().isEmpty() ) {
if ( slave.isIntern() && !slave.data().isNull() )
master.setData( slave.data() );
else if ( !slave.isIntern() && !slave.url().isEmpty() )
master.setUrl( slave.url() );
}
}
}
TDEABC::Addressee KABTools::mergeContacts( const TDEABC::Addressee::List &list )
{
if ( list.count() == 0 ) //emtpy
return TDEABC::Addressee();
else if ( list.count() == 1 ) // nothing to merge
return list.first();
TDEABC::Addressee masterAddressee = list.first();
TDEABC::Addressee::List::ConstIterator contactIt( list.begin() );
const TDEABC::Addressee::List::ConstIterator contactEndIt( list.end() );
for ( ++contactIt; contactIt != contactEndIt; ++contactIt ) {
// ADR + LABEL
const TDEABC::Address::List addresses = (*contactIt).addresses();
TDEABC::Address::List masterAddresses = masterAddressee.addresses();
TDEABC::Address::List::ConstIterator addrIt( addresses.begin() );
const TDEABC::Address::List::ConstIterator addrEndIt( addresses.end() );
for ( ; addrIt != addrEndIt; ++addrIt ) {
if ( !masterAddresses.contains( *addrIt ) )
masterAddressee.insertAddress( *addrIt );
}
// BIRTHDAY
if ( masterAddressee.birthday().isNull() && !(*contactIt).birthday().isNull() )
masterAddressee.setBirthday( (*contactIt).birthday() );
// CATEGORIES
const TQStringList categories = (*contactIt).categories();
const TQStringList masterCategories = masterAddressee.categories();
TQStringList newCategories( masterCategories );
TQStringList::ConstIterator it( categories.begin() );
TQStringList::ConstIterator endIt( categories.end() );
for ( it = categories.begin(); it != endIt; ++it )
if ( !masterCategories.contains( *it ) )
newCategories.append( *it );
masterAddressee.setCategories( newCategories );
// CLASS
if ( !masterAddressee.secrecy().isValid() && (*contactIt).secrecy().isValid() )
masterAddressee.setSecrecy( (*contactIt).secrecy() );
// EMAIL
const TQStringList emails = (*contactIt).emails();
const TQStringList masterEmails = masterAddressee.emails();
endIt = emails.end();
for ( it = emails.begin(); it != endIt; ++it )
if ( !masterEmails.contains( *it ) )
masterAddressee.insertEmail( *it, false );
// FN
if ( masterAddressee.formattedName().isEmpty() && !(*contactIt).formattedName().isEmpty() )
masterAddressee.setFormattedName( (*contactIt).formattedName() );
// GEO
if ( !masterAddressee.geo().isValid() && (*contactIt).geo().isValid() )
masterAddressee.setGeo( (*contactIt).geo() );
/*
// KEY
*/
// LOGO
TDEABC::Picture logo = masterAddressee.logo();
mergePictures( logo, (*contactIt).logo() );
masterAddressee.setLogo( logo );
// MAILER
if ( masterAddressee.mailer().isEmpty() && !(*contactIt).mailer().isEmpty() )
masterAddressee.setMailer( (*contactIt).mailer() );
// N
if ( masterAddressee.assembledName().isEmpty() && !(*contactIt).assembledName().isEmpty() )
masterAddressee.setNameFromString( (*contactIt).assembledName() );
// NICKNAME
if ( masterAddressee.nickName().isEmpty() && !(*contactIt).nickName().isEmpty() )
masterAddressee.setNickName( (*contactIt).nickName() );
// NOTE
if ( masterAddressee.note().isEmpty() && !(*contactIt).note().isEmpty() )
masterAddressee.setNote( (*contactIt).note() );
// ORG
if ( masterAddressee.organization().isEmpty() && !(*contactIt).organization().isEmpty() )
masterAddressee.setOrganization( (*contactIt).organization() );
// PHOTO
TDEABC::Picture photo = masterAddressee.photo();
mergePictures( photo, (*contactIt).photo() );
masterAddressee.setPhoto( photo );
// PROID
if ( masterAddressee.productId().isEmpty() && !(*contactIt).productId().isEmpty() )
masterAddressee.setProductId( (*contactIt).productId() );
// REV
if ( masterAddressee.revision().isNull() && !(*contactIt).revision().isNull() )
masterAddressee.setRevision( (*contactIt).revision() );
// ROLE
if ( masterAddressee.role().isEmpty() && !(*contactIt).role().isEmpty() )
masterAddressee.setRole( (*contactIt).role() );
// SORT-STRING
if ( masterAddressee.sortString().isEmpty() && !(*contactIt).sortString().isEmpty() )
masterAddressee.setSortString( (*contactIt).sortString() );
/*
// SOUND
*/
// TEL
const TDEABC::PhoneNumber::List phones = (*contactIt).phoneNumbers();
const TDEABC::PhoneNumber::List masterPhones = masterAddressee.phoneNumbers();
TDEABC::PhoneNumber::List::ConstIterator phoneIt( phones.begin() );
const TDEABC::PhoneNumber::List::ConstIterator phoneEndIt( phones.end() );
for ( ; phoneIt != phoneEndIt; ++phoneIt )
if ( !masterPhones.contains( *phoneIt ) )
masterAddressee.insertPhoneNumber( *phoneIt );
// TITLE
if ( masterAddressee.title().isEmpty() && !(*contactIt).title().isEmpty() )
masterAddressee.setTitle( (*contactIt).title() );
// TZ
if ( !masterAddressee.timeZone().isValid() && (*contactIt).timeZone().isValid() )
masterAddressee.setTimeZone( (*contactIt).timeZone() );
// UID // ignore UID
// URL
if ( masterAddressee.url().isEmpty() && !(*contactIt).url().isEmpty() )
masterAddressee.setUrl( (*contactIt).url() );
// X-
const TQStringList customs = (*contactIt).customs();
const TQStringList masterCustoms = masterAddressee.customs();
TQStringList newCustoms( masterCustoms );
endIt = customs.end();
for ( it = customs.begin(); it != endIt; ++it )
if ( !masterCustoms.contains( *it ) )
newCustoms.append( *it );
masterAddressee.setCustoms( newCustoms );
}
return masterAddressee;
}