1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
|
/*
KAbc2Mutt
Copyright (c) 2003 - 2004 Tobias Koenig <tokoe@kde.org>
This program is free software; you can redistribute it and/or
modify it under the terms of version 2 of the GNU General Public
License as published by the Free Software Foundation.
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.
*/
#include <kabc/distributionlist.h>
#include <kapplication.h>
#include <klocale.h>
#include <tqregexp.h>
#include <iostream>
#include "kabc2mutt.h"
static std::ostream & operator<< ( std::ostream &os, const TQString &s );
KABC2Mutt::KABC2Mutt( TQObject *parent, const char *name )
: TQObject( parent, name ), mFormat( Aliases ),
mIgnoreCase( false ), mAllAddresses( false ),
mAlternateKeyFormat( false ),
mAddressBook( 0 )
{
}
void KABC2Mutt::run()
{
mAddressBook = KABC::StdAddressBook::self( true );
KABC::StdAddressBook::setAutomaticSave( false );
connect( mAddressBook, TQT_SIGNAL( addressBookChanged( AddressBook* ) ),
this, TQT_SLOT( loadingFinished() ) );
}
void KABC2Mutt::loadingFinished()
{
// print addressees
KABC::AddressBook::ConstIterator iaddr;
for ( iaddr = mAddressBook->begin(); iaddr != mAddressBook->end(); ++iaddr ) {
const TQString name = (*iaddr).givenName() + ' ' + (*iaddr).familyName();
if ( !mQuery.isEmpty() ) {
bool match = (name.find(mQuery, 0, mIgnoreCase) > -1) ||
((*iaddr).preferredEmail().find( mQuery, 0, mIgnoreCase ) > -1 );
if ( !match )
continue;
}
const TQStringList &allAddresses = (*iaddr).emails();
TQStringList::const_iterator from, to;
bool multiple = false;
if ( mAllAddresses ) {
// use all entries
multiple = allAddresses.size() > 1;
from = allAddresses.begin();
to = allAddresses.end();
} else {
// use only the first entry, the one returned by preferredEmail()
from = to = allAddresses.begin(); // start with empty list
if ( to != allAddresses.end() )
++to;
}
size_t index = 0;
if ( mFormat == Aliases ) {
static const TQChar space = TQChar( ' ' );
static const TQChar underscore = TQChar( '_' );
TQString key;
if ( !mAlternateKeyFormat )
key = (*iaddr).givenName().left( 3 ) + (*iaddr).familyName().left( 3 );
else
if ( !(*iaddr).familyName().isEmpty() )
key = (*iaddr).givenName().left( 1 ).lower() +
(*iaddr).familyName().lower().tqreplace( space, underscore );
else
key = (*iaddr).givenName().lower().tqreplace( space, underscore );
while ( from != to ) {
std::cout << "alias " << key;
if ( index )
std::cout << index;
std::cout << '\t' << name << " <" << (*from) << '>' << std::endl;
++index;
++from;
}
if ( !(*iaddr).nickName().isEmpty() ) {
std::cout << "alias "
<< (*iaddr).nickName().lower().tqreplace( space, underscore )
<< '\t' << name << " <"
<< (*iaddr).preferredEmail() << '>' << std::endl;
}
} else {
while ( from != to ) {
std::cout << (*from) << '\t' << name;
if ( multiple ) {
if ( index )
std::cout << "\t#" << index;
else
std::cout << '\t' << i18n( "preferred" );
++index;
}
std::cout << std::endl;
++from;
}
}
}
// print all distribution lists
KABC::DistributionListManager manager( mAddressBook );
manager.load();
TQStringList dists = manager.listNames();
for ( TQStringList::Iterator iaddr = dists.begin(); iaddr != dists.end(); ++iaddr ) {
KABC::DistributionList *list = manager.list( *iaddr );
if ( list ) {
if ( !mQuery.isEmpty() ) {
bool match = ((*iaddr).find(mQuery) > -1);
if ( !match )
continue;
}
TQStringList emails = list->emails();
if ( emails.isEmpty() )
continue;
if ( mFormat == Aliases ) {
std::cout << "alias " << (*iaddr).tqreplace( TQRegExp( " " ), "_" )
<< '\t' << emails.join( "," ) << std::endl;
} else {
std::cout << emails.join( "," ) << '\t' << (*iaddr) << '\t' << std::endl;
}
}
}
kapp->quit();
}
static std::ostream & operator<< ( std::ostream &os, const TQString &s )
{
os << s.local8Bit().data();
return os;
}
#include "kabc2mutt.moc"
|