summaryrefslogtreecommitdiffabout
path: root/kabc/vcardparser
authorulf69 <ulf69>2004-07-09 08:10:08 (UTC)
committer ulf69 <ulf69>2004-07-09 08:10:08 (UTC)
commitde99e22a7093e857ee3c08a67ccc389d6374099a (patch) (unidiff)
tree511c309f9df3ae71d43c194cc41f27bdb1966a05 /kabc/vcardparser
parentd56bb523048598245ac4ffcb16689687e082f831 (diff)
downloadkdepimpi-de99e22a7093e857ee3c08a67ccc389d6374099a.zip
kdepimpi-de99e22a7093e857ee3c08a67ccc389d6374099a.tar.gz
kdepimpi-de99e22a7093e857ee3c08a67ccc389d6374099a.tar.bz2
support of caseinsensitive phone and adress types, as required by the vcard spec
Diffstat (limited to 'kabc/vcardparser') (more/less context) (ignore whitespace changes)
-rw-r--r--kabc/vcardparser/vcardtool.cpp22
1 files changed, 18 insertions, 4 deletions
diff --git a/kabc/vcardparser/vcardtool.cpp b/kabc/vcardparser/vcardtool.cpp
index 01c5b3e..71f29d7 100644
--- a/kabc/vcardparser/vcardtool.cpp
+++ b/kabc/vcardparser/vcardtool.cpp
@@ -1,428 +1,442 @@
1/* 1/*
2 This file is part of libkabc. 2 This file is part of libkabc.
3 Copyright (c) 2003 Tobias Koenig <tokoe@kde.org> 3 Copyright (c) 2003 Tobias Koenig <tokoe@kde.org>
4 4
5 This library is free software; you can redistribute it and/or 5 This library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Library General Public 6 modify it under the terms of the GNU Library General Public
7 License as published by the Free Software Foundation; either 7 License as published by the Free Software Foundation; either
8 version 2 of the License, or (at your option) any later version. 8 version 2 of the License, or (at your option) any later version.
9 9
10 This library is distributed in the hope that it will be useful, 10 This library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of 11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Library General Public License for more details. 13 Library General Public License for more details.
14 14
15 You should have received a copy of the GNU Library General Public License 15 You should have received a copy of the GNU Library General Public License
16 along with this library; see the file COPYING.LIB. If not, write to 16 along with this library; see the file COPYING.LIB. If not, write to
17 the Free Software Foundation, Inc., 59 Temple Place - Suite 330, 17 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18 Boston, MA 02111-1307, USA. 18 Boston, MA 02111-1307, USA.
19*/ 19*/
20 20
21#include <qdatastream.h> 21#include <qdatastream.h>
22#include <qstring.h> 22#include <qstring.h>
23#include <qregexp.h> 23#include <qregexp.h>
24#include <kmdcodec.h> 24#include <kmdcodec.h>
25 25
26#include "agent.h" 26#include "agent.h"
27#include "key.h" 27#include "key.h"
28#include "picture.h" 28#include "picture.h"
29#include "secrecy.h" 29#include "secrecy.h"
30#include "sound.h" 30#include "sound.h"
31 31
32#include "vcardtool.h" 32#include "vcardtool.h"
33 33
34using namespace KABC; 34using namespace KABC;
35 35
36VCardTool::VCardTool() 36VCardTool::VCardTool()
37{ 37{
38 mAddressTypeMap.insert( "dom", Address::Dom ); 38 mAddressTypeMap.insert( "dom", Address::Dom );
39 mAddressTypeMap.insert( "intl", Address::Intl ); 39 mAddressTypeMap.insert( "intl", Address::Intl );
40 mAddressTypeMap.insert( "postal", Address::Postal ); 40 mAddressTypeMap.insert( "postal", Address::Postal );
41 mAddressTypeMap.insert( "parcel", Address::Parcel ); 41 mAddressTypeMap.insert( "parcel", Address::Parcel );
42 mAddressTypeMap.insert( "home", Address::Home ); 42 mAddressTypeMap.insert( "home", Address::Home );
43 mAddressTypeMap.insert( "work", Address::Work ); 43 mAddressTypeMap.insert( "work", Address::Work );
44 mAddressTypeMap.insert( "pref", Address::Pref ); 44 mAddressTypeMap.insert( "pref", Address::Pref );
45 45
46 mPhoneTypeMap.insert( "HOME", PhoneNumber::Home ); 46 mPhoneTypeMap.insert( "HOME", PhoneNumber::Home );
47 mPhoneTypeMap.insert( "WORK", PhoneNumber::Work ); 47 mPhoneTypeMap.insert( "WORK", PhoneNumber::Work );
48 mPhoneTypeMap.insert( "MSG", PhoneNumber::Msg ); 48 mPhoneTypeMap.insert( "MSG", PhoneNumber::Msg );
49 mPhoneTypeMap.insert( "PREF", PhoneNumber::Pref ); 49 mPhoneTypeMap.insert( "PREF", PhoneNumber::Pref );
50 mPhoneTypeMap.insert( "VOICE", PhoneNumber::Voice ); 50 mPhoneTypeMap.insert( "VOICE", PhoneNumber::Voice );
51 mPhoneTypeMap.insert( "FAX", PhoneNumber::Fax ); 51 mPhoneTypeMap.insert( "FAX", PhoneNumber::Fax );
52 mPhoneTypeMap.insert( "CELL", PhoneNumber::Cell ); 52 mPhoneTypeMap.insert( "CELL", PhoneNumber::Cell );
53 mPhoneTypeMap.insert( "VIDEO", PhoneNumber::Video ); 53 mPhoneTypeMap.insert( "VIDEO", PhoneNumber::Video );
54 mPhoneTypeMap.insert( "BBS", PhoneNumber::Bbs ); 54 mPhoneTypeMap.insert( "BBS", PhoneNumber::Bbs );
55 mPhoneTypeMap.insert( "MODEM", PhoneNumber::Modem ); 55 mPhoneTypeMap.insert( "MODEM", PhoneNumber::Modem );
56 mPhoneTypeMap.insert( "CAR", PhoneNumber::Car ); 56 mPhoneTypeMap.insert( "CAR", PhoneNumber::Car );
57 mPhoneTypeMap.insert( "ISDN", PhoneNumber::Isdn ); 57 mPhoneTypeMap.insert( "ISDN", PhoneNumber::Isdn );
58 mPhoneTypeMap.insert( "PCS", PhoneNumber::Pcs ); 58 mPhoneTypeMap.insert( "PCS", PhoneNumber::Pcs );
59 mPhoneTypeMap.insert( "PAGER", PhoneNumber::Pager ); 59 mPhoneTypeMap.insert( "PAGER", PhoneNumber::Pager );
60} 60}
61 61
62VCardTool::~VCardTool() 62VCardTool::~VCardTool()
63{ 63{
64} 64}
65 65
66QString VCardTool::createVCards( Addressee::List list, VCard::Version version ) 66QString VCardTool::createVCards( Addressee::List list, VCard::Version version )
67{ 67{
68 VCard::List vCardList; 68 VCard::List vCardList;
69 69
70 Addressee::List::Iterator addrIt; 70 Addressee::List::Iterator addrIt;
71 for ( addrIt = list.begin(); addrIt != list.end(); ++addrIt ) { 71 for ( addrIt = list.begin(); addrIt != list.end(); ++addrIt ) {
72 VCard card; 72 VCard card;
73 QStringList::ConstIterator strIt; 73 QStringList::ConstIterator strIt;
74 74
75 // ADR + LABEL 75 // ADR + LABEL
76 Address::List addresses = (*addrIt).addresses(); 76 Address::List addresses = (*addrIt).addresses();
77 for ( Address::List::Iterator it = addresses.begin(); it != addresses.end(); ++it ) { 77 for ( Address::List::Iterator it = addresses.begin(); it != addresses.end(); ++it ) {
78 QStringList address; 78 QStringList address;
79 79
80/*US 80/*US
81 address.append( (*it).postOfficeBox().replace( ';', "\\;" ) ); 81 address.append( (*it).postOfficeBox().replace( ';', "\\;" ) );
82 address.append( (*it).extended().replace( ';', "\\;" ) ); 82 address.append( (*it).extended().replace( ';', "\\;" ) );
83 address.append( (*it).street().replace( ';', "\\;" ) ); 83 address.append( (*it).street().replace( ';', "\\;" ) );
84 address.append( (*it).locality().replace( ';', "\\;" ) ); 84 address.append( (*it).locality().replace( ';', "\\;" ) );
85 address.append( (*it).region().replace( ';', "\\;" ) ); 85 address.append( (*it).region().replace( ';', "\\;" ) );
86 address.append( (*it).postalCode().replace( ';', "\\;" ) ); 86 address.append( (*it).postalCode().replace( ';', "\\;" ) );
87 address.append( (*it).country().replace( ';', "\\;" ) ); 87 address.append( (*it).country().replace( ';', "\\;" ) );
88*/ 88*/
89//US using the old implementation instead 89//US using the old implementation instead
90 //qDebug("VCardTool::createVCards has to be verified"); 90 //qDebug("VCardTool::createVCards has to be verified");
91 address.append( (*it).postOfficeBox().replace( QRegExp(";"), "\\;" ) ); 91 address.append( (*it).postOfficeBox().replace( QRegExp(";"), "\\;" ) );
92 address.append( (*it).extended().replace( QRegExp(";"), "\\;" ) ); 92 address.append( (*it).extended().replace( QRegExp(";"), "\\;" ) );
93 address.append( (*it).street().replace( QRegExp(";"), "\\;" ) ); 93 address.append( (*it).street().replace( QRegExp(";"), "\\;" ) );
94 address.append( (*it).locality().replace( QRegExp(";"), "\\;" ) ); 94 address.append( (*it).locality().replace( QRegExp(";"), "\\;" ) );
95 address.append( (*it).region().replace( QRegExp(";"), "\\;" ) ); 95 address.append( (*it).region().replace( QRegExp(";"), "\\;" ) );
96 address.append( (*it).postalCode().replace( QRegExp(";"), "\\;" ) ); 96 address.append( (*it).postalCode().replace( QRegExp(";"), "\\;" ) );
97 address.append( (*it).country().replace( QRegExp(";"), "\\;" ) ); 97 address.append( (*it).country().replace( QRegExp(";"), "\\;" ) );
98 98
99 VCardLine adrLine( "ADR", address.join( ";" ) ); 99 VCardLine adrLine( "ADR", address.join( ";" ) );
100 VCardLine labelLine( "LABEL", (*it).label() ); 100 VCardLine labelLine( "LABEL", (*it).label() );
101 101
102 bool hasLabel = !(*it).label().isEmpty(); 102 bool hasLabel = !(*it).label().isEmpty();
103 QMap<QString, int>::Iterator typeIt; 103 QMap<QString, int>::Iterator typeIt;
104 for ( typeIt = mAddressTypeMap.begin(); typeIt != mAddressTypeMap.end(); ++typeIt ) { 104 for ( typeIt = mAddressTypeMap.begin(); typeIt != mAddressTypeMap.end(); ++typeIt ) {
105 if ( typeIt.data() & (*it).type() ) { 105 if ( typeIt.data() & (*it).type() ) {
106 adrLine.addParameter( "TYPE", typeIt.key() ); 106 if ( version == VCard::v3_0 ) {
107 if ( hasLabel ) 107 adrLine.addParameter( "TYPE", typeIt.key().lower() );
108 labelLine.addParameter( "TYPE", typeIt.key() ); 108 }
109 else {
110 adrLine.addParameter( "TYPE", typeIt.key() );
111 }
112 if ( hasLabel ) {
113 if ( version == VCard::v3_0 ) {
114 labelLine.addParameter( "TYPE", typeIt.key().lower() );
115 }
116 else {
117 labelLine.addParameter( "TYPE", typeIt.key() );
118 }
119 }
109 } 120 }
110 } 121 }
111 122
112 card.addLine( adrLine ); 123 card.addLine( adrLine );
113 if ( hasLabel ) 124 if ( hasLabel )
114 card.addLine( labelLine ); 125 card.addLine( labelLine );
115 } 126 }
116 127
117 // AGENT 128 // AGENT
118 card.addLine( createAgent( version, (*addrIt).agent() ) ); 129 card.addLine( createAgent( version, (*addrIt).agent() ) );
119 130
120 // BDAY 131 // BDAY
121 card.addLine( VCardLine( "BDAY", createDateTime( (*addrIt).birthday() ) ) ); 132 card.addLine( VCardLine( "BDAY", createDateTime( (*addrIt).birthday() ) ) );
122 133
123 // CATEGORIES 134 // CATEGORIES
124 if ( version == VCard::v3_0 ) { 135 if ( version == VCard::v3_0 ) {
125 QStringList categories = (*addrIt).categories(); 136 QStringList categories = (*addrIt).categories();
126 QStringList::Iterator catIt; 137 QStringList::Iterator catIt;
127 for ( catIt = categories.begin(); catIt != categories.end(); ++catIt ) 138 for ( catIt = categories.begin(); catIt != categories.end(); ++catIt )
128 { 139 {
129//US using the old implementation instead 140//US using the old implementation instead
130 // qDebug("VCardTool::createVCards has to be verified"); 141 // qDebug("VCardTool::createVCards has to be verified");
131//US (*catIt).replace( ',', "\\," ); 142//US (*catIt).replace( ',', "\\," );
132 (*catIt).replace( QRegExp(","), "\\," ); 143 (*catIt).replace( QRegExp(","), "\\," );
133 } 144 }
134 card.addLine( VCardLine( "CATEGORIES", categories.join( "," ) ) ); 145 card.addLine( VCardLine( "CATEGORIES", categories.join( "," ) ) );
135 } 146 }
136 147
137 // CLASS 148 // CLASS
138 if ( version == VCard::v3_0 ) { 149 if ( version == VCard::v3_0 ) {
139 card.addLine( createSecrecy( (*addrIt).secrecy() ) ); 150 card.addLine( createSecrecy( (*addrIt).secrecy() ) );
140 } 151 }
141 152
142 // EMAIL 153 // EMAIL
143 QStringList emails = (*addrIt).emails(); 154 QStringList emails = (*addrIt).emails();
144 bool pref = true; 155 bool pref = true;
145 for ( strIt = emails.begin(); strIt != emails.end(); ++strIt ) { 156 for ( strIt = emails.begin(); strIt != emails.end(); ++strIt ) {
146 VCardLine line( "EMAIL", *strIt ); 157 VCardLine line( "EMAIL", *strIt );
147 if ( pref == true ) { 158 if ( pref == true ) {
148 line.addParameter( "TYPE", "PREF" ); 159 line.addParameter( "TYPE", "PREF" );
149 pref = false; 160 pref = false;
150 } 161 }
151 card.addLine( line ); 162 card.addLine( line );
152 } 163 }
153 164
154 // FN 165 // FN
155 card.addLine( VCardLine( "FN", (*addrIt).formattedName() ) ); 166 card.addLine( VCardLine( "FN", (*addrIt).formattedName() ) );
156 167
157 // GEO 168 // GEO
158 Geo geo = (*addrIt).geo(); 169 Geo geo = (*addrIt).geo();
159 if ( geo.isValid() ) { 170 if ( geo.isValid() ) {
160 QString str; 171 QString str;
161 str.sprintf( "%.6f;%.6f", geo.latitude(), geo.longitude() ); 172 str.sprintf( "%.6f;%.6f", geo.latitude(), geo.longitude() );
162 card.addLine( VCardLine( "GEO", str ) ); 173 card.addLine( VCardLine( "GEO", str ) );
163 } 174 }
164 175
165 // KEY 176 // KEY
166 Key::List keys = (*addrIt).keys(); 177 Key::List keys = (*addrIt).keys();
167 Key::List::ConstIterator keyIt; 178 Key::List::ConstIterator keyIt;
168 for ( keyIt = keys.begin(); keyIt != keys.end(); ++keyIt ) 179 for ( keyIt = keys.begin(); keyIt != keys.end(); ++keyIt )
169 card.addLine( createKey( *keyIt ) ); 180 card.addLine( createKey( *keyIt ) );
170 181
171 // LOGO 182 // LOGO
172 card.addLine( createPicture( "LOGO", (*addrIt).logo() ) ); 183 card.addLine( createPicture( "LOGO", (*addrIt).logo() ) );
173 184
174 // MAILER 185 // MAILER
175 card.addLine( VCardLine( "MAILER", (*addrIt).mailer() ) ); 186 card.addLine( VCardLine( "MAILER", (*addrIt).mailer() ) );
176 187
177 // N 188 // N
178 QStringList name; 189 QStringList name;
179//US using the old implementation instead 190//US using the old implementation instead
180 //qDebug("VCardTool::createVCards has to be verified"); 191 //qDebug("VCardTool::createVCards has to be verified");
181/*US 192/*US
182 name.append( (*addrIt).familyName().replace( ';', "\\;" ) ); 193 name.append( (*addrIt).familyName().replace( ';', "\\;" ) );
183 name.append( (*addrIt).givenName().replace( ';', "\\;" ) ); 194 name.append( (*addrIt).givenName().replace( ';', "\\;" ) );
184 name.append( (*addrIt).additionalName().replace( ';', "\\;" ) ); 195 name.append( (*addrIt).additionalName().replace( ';', "\\;" ) );
185 name.append( (*addrIt).prefix().replace( ';', "\\;" ) ); 196 name.append( (*addrIt).prefix().replace( ';', "\\;" ) );
186 name.append( (*addrIt).suffix().replace( ';', "\\;" ) ); 197 name.append( (*addrIt).suffix().replace( ';', "\\;" ) );
187*/ 198*/
188 name.append( (*addrIt).familyName().replace( QRegExp(";"), "\\;" ) ); 199 name.append( (*addrIt).familyName().replace( QRegExp(";"), "\\;" ) );
189 name.append( (*addrIt).givenName().replace( QRegExp(";"), "\\;" ) ); 200 name.append( (*addrIt).givenName().replace( QRegExp(";"), "\\;" ) );
190 name.append( (*addrIt).additionalName().replace( QRegExp(";"), "\\;" ) ); 201 name.append( (*addrIt).additionalName().replace( QRegExp(";"), "\\;" ) );
191 name.append( (*addrIt).prefix().replace( QRegExp(";"), "\\;" ) ); 202 name.append( (*addrIt).prefix().replace( QRegExp(";"), "\\;" ) );
192 name.append( (*addrIt).suffix().replace( QRegExp(";"), "\\;" ) ); 203 name.append( (*addrIt).suffix().replace( QRegExp(";"), "\\;" ) );
193 204
194 if ( !name.join( "" ).isEmpty() ) 205 if ( !name.join( "" ).isEmpty() )
195 card.addLine( VCardLine( "N", name.join( ";" ) ) ); 206 card.addLine( VCardLine( "N", name.join( ";" ) ) );
196 207
197 // NICKNAME 208 // NICKNAME
198 if ( version == VCard::v3_0 ) 209 if ( version == VCard::v3_0 )
199 card.addLine( VCardLine( "NICKNAME", (*addrIt).nickName() ) ); 210 card.addLine( VCardLine( "NICKNAME", (*addrIt).nickName() ) );
200 211
201 // NOTE 212 // NOTE
202 card.addLine( VCardLine( "NOTE", (*addrIt).note() ) ); 213 card.addLine( VCardLine( "NOTE", (*addrIt).note() ) );
203 214
204 // ORG 215 // ORG
205 card.addLine( VCardLine( "ORG", (*addrIt).organization() ) ); 216 card.addLine( VCardLine( "ORG", (*addrIt).organization() ) );
206 217
207 // PHOTO 218 // PHOTO
208 card.addLine( createPicture( "PHOTO", (*addrIt).photo() ) ); 219 card.addLine( createPicture( "PHOTO", (*addrIt).photo() ) );
209 220
210 // PROID 221 // PROID
211 if ( version == VCard::v3_0 ) 222 if ( version == VCard::v3_0 )
212 card.addLine( VCardLine( "PRODID", (*addrIt).productId() ) ); 223 card.addLine( VCardLine( "PRODID", (*addrIt).productId() ) );
213 224
214 // REV 225 // REV
215 card.addLine( VCardLine( "REV", createDateTime( (*addrIt).revision() ) ) ); 226 card.addLine( VCardLine( "REV", createDateTime( (*addrIt).revision() ) ) );
216 227
217 // ROLE 228 // ROLE
218 card.addLine( VCardLine( "ROLE", (*addrIt).role() ) ); 229 card.addLine( VCardLine( "ROLE", (*addrIt).role() ) );
219 230
220 // SORT-STRING 231 // SORT-STRING
221 if ( version == VCard::v3_0 ) 232 if ( version == VCard::v3_0 )
222 card.addLine( VCardLine( "SORT-STRING", (*addrIt).sortString() ) ); 233 card.addLine( VCardLine( "SORT-STRING", (*addrIt).sortString() ) );
223 234
224 // SOUND 235 // SOUND
225 card.addLine( createSound( (*addrIt).sound() ) ); 236 card.addLine( createSound( (*addrIt).sound() ) );
226 237
227 // TEL 238 // TEL
228 PhoneNumber::List phoneNumbers = (*addrIt).phoneNumbers(); 239 PhoneNumber::List phoneNumbers = (*addrIt).phoneNumbers();
229 PhoneNumber::List::ConstIterator phoneIt; 240 PhoneNumber::List::ConstIterator phoneIt;
230 for ( phoneIt = phoneNumbers.begin(); phoneIt != phoneNumbers.end(); ++phoneIt ) { 241 for ( phoneIt = phoneNumbers.begin(); phoneIt != phoneNumbers.end(); ++phoneIt ) {
231 VCardLine line( "TEL", (*phoneIt).number() ); 242 VCardLine line( "TEL", (*phoneIt).number() );
232 243
233 QMap<QString, int>::Iterator typeIt; 244 QMap<QString, int>::Iterator typeIt;
234 for ( typeIt = mPhoneTypeMap.begin(); typeIt != mPhoneTypeMap.end(); ++typeIt ) { 245 for ( typeIt = mPhoneTypeMap.begin(); typeIt != mPhoneTypeMap.end(); ++typeIt ) {
235 if ( typeIt.data() & (*phoneIt).type() ) 246 if ( typeIt.data() & (*phoneIt).type() )
236 line.addParameter( "TYPE", typeIt.key() ); 247 if ( version == VCard::v3_0 )
248 line.addParameter( "TYPE", typeIt.key().lower() );
249 else
250 line.addParameter( "TYPE", typeIt.key() );
237 } 251 }
238 252
239 card.addLine( line ); 253 card.addLine( line );
240 } 254 }
241 255
242 // TITLE 256 // TITLE
243 card.addLine( VCardLine( "TITLE", (*addrIt).title() ) ); 257 card.addLine( VCardLine( "TITLE", (*addrIt).title() ) );
244 258
245 // TZ 259 // TZ
246 TimeZone timeZone = (*addrIt).timeZone(); 260 TimeZone timeZone = (*addrIt).timeZone();
247 if ( timeZone.isValid() ) { 261 if ( timeZone.isValid() ) {
248 QString str; 262 QString str;
249 263
250 int neg = 1; 264 int neg = 1;
251 if ( timeZone.offset() < 0 ) 265 if ( timeZone.offset() < 0 )
252 neg = -1; 266 neg = -1;
253 267
254 str.sprintf( "%c%02d:%02d", ( timeZone.offset() >= 0 ? '+' : '-' ), 268 str.sprintf( "%c%02d:%02d", ( timeZone.offset() >= 0 ? '+' : '-' ),
255 ( timeZone.offset() / 60 ) * neg, 269 ( timeZone.offset() / 60 ) * neg,
256 ( timeZone.offset() % 60 ) * neg ); 270 ( timeZone.offset() % 60 ) * neg );
257 271
258 card.addLine( VCardLine( "TZ", str ) ); 272 card.addLine( VCardLine( "TZ", str ) );
259 } 273 }
260 274
261 // UID 275 // UID
262 card.addLine( VCardLine( "UID", (*addrIt).uid() ) ); 276 card.addLine( VCardLine( "UID", (*addrIt).uid() ) );
263 277
264 // URL 278 // URL
265 card.addLine( VCardLine( "URL", (*addrIt).url().url() ) ); 279 card.addLine( VCardLine( "URL", (*addrIt).url().url() ) );
266 280
267 // VERSION 281 // VERSION
268 if ( version == VCard::v2_1 ) 282 if ( version == VCard::v2_1 )
269 card.addLine( VCardLine( "VERSION", "2.1" ) ); 283 card.addLine( VCardLine( "VERSION", "2.1" ) );
270 if ( version == VCard::v3_0 ) 284 if ( version == VCard::v3_0 )
271 card.addLine( VCardLine( "VERSION", "3.0" ) ); 285 card.addLine( VCardLine( "VERSION", "3.0" ) );
272 286
273 // X- 287 // X-
274 QStringList customs = (*addrIt).customs(); 288 QStringList customs = (*addrIt).customs();
275 for ( strIt = customs.begin(); strIt != customs.end(); ++strIt ) { 289 for ( strIt = customs.begin(); strIt != customs.end(); ++strIt ) {
276 QString identifier = "X-" + (*strIt).left( (*strIt).find( ":" ) ); 290 QString identifier = "X-" + (*strIt).left( (*strIt).find( ":" ) );
277 QString value = (*strIt).mid( (*strIt).find( ":" ) + 1 ); 291 QString value = (*strIt).mid( (*strIt).find( ":" ) + 1 );
278 if ( value.isEmpty() ) 292 if ( value.isEmpty() )
279 continue; 293 continue;
280 294
281 card.addLine( VCardLine( identifier, value ) ); 295 card.addLine( VCardLine( identifier, value ) );
282 } 296 }
283 297
284 vCardList.append( card ); 298 vCardList.append( card );
285 } 299 }
286 300
287 return VCardParser::createVCards( vCardList ); 301 return VCardParser::createVCards( vCardList );
288} 302}
289 303
290Addressee::List VCardTool::parseVCards( const QString& vcard ) 304Addressee::List VCardTool::parseVCards( const QString& vcard )
291{ 305{
292 QChar semicolonSep( ';' ); 306 QChar semicolonSep( ';' );
293 QChar commaSep( ',' ); 307 QChar commaSep( ',' );
294 QString identifier; 308 QString identifier;
295 309
296 Addressee::List addrList; 310 Addressee::List addrList;
297 VCard::List vCardList = VCardParser::parseVCards( vcard ); 311 VCard::List vCardList = VCardParser::parseVCards( vcard );
298 VCard::List::Iterator cardIt; 312 VCard::List::Iterator cardIt;
299 for ( cardIt = vCardList.begin(); cardIt != vCardList.end(); ++cardIt ) { 313 for ( cardIt = vCardList.begin(); cardIt != vCardList.end(); ++cardIt ) {
300 Addressee addr; 314 Addressee addr;
301 QStringList idents = (*cardIt).identifiers(); 315 QStringList idents = (*cardIt).identifiers();
302 QStringList::ConstIterator identIt; 316 QStringList::ConstIterator identIt;
303 for ( identIt = idents.begin(); identIt != idents.end(); ++identIt ) { 317 for ( identIt = idents.begin(); identIt != idents.end(); ++identIt ) {
304 VCard card = (*cardIt); 318 VCard card = (*cardIt);
305 VCardLine::List lines = card.lines( (*identIt) ); 319 VCardLine::List lines = card.lines( (*identIt) );
306 VCardLine::List::Iterator lineIt; 320 VCardLine::List::Iterator lineIt;
307 321
308 // iterate over the lines 322 // iterate over the lines
309 for ( lineIt = lines.begin(); lineIt != lines.end(); ++lineIt ) { 323 for ( lineIt = lines.begin(); lineIt != lines.end(); ++lineIt ) {
310 QStringList params = (*lineIt).parameterList(); 324 QStringList params = (*lineIt).parameterList();
311 325
312 identifier = (*lineIt).identifier().lower(); 326 identifier = (*lineIt).identifier().lower();
313 // ADR 327 // ADR
314 if ( identifier == "adr" ) { 328 if ( identifier == "adr" ) {
315 Address address; 329 Address address;
316 QStringList addrParts = splitString( semicolonSep, (*lineIt).value().asString() ); 330 QStringList addrParts = splitString( semicolonSep, (*lineIt).value().asString() );
317 if ( addrParts.count() > 0 ) 331 if ( addrParts.count() > 0 )
318 address.setPostOfficeBox( addrParts[ 0 ] ); 332 address.setPostOfficeBox( addrParts[ 0 ] );
319 if ( addrParts.count() > 1 ) 333 if ( addrParts.count() > 1 )
320 address.setExtended( addrParts[ 1 ] ); 334 address.setExtended( addrParts[ 1 ] );
321 if ( addrParts.count() > 2 ) 335 if ( addrParts.count() > 2 )
322 address.setStreet( addrParts[ 2 ].replace ( QRegExp("\\\\n") , "\n") ); 336 address.setStreet( addrParts[ 2 ].replace ( QRegExp("\\\\n") , "\n") );
323 if ( addrParts.count() > 3 ) 337 if ( addrParts.count() > 3 )
324 address.setLocality( addrParts[ 3 ] ); 338 address.setLocality( addrParts[ 3 ] );
325 if ( addrParts.count() > 4 ) 339 if ( addrParts.count() > 4 )
326 address.setRegion( addrParts[ 4 ] ); 340 address.setRegion( addrParts[ 4 ] );
327 if ( addrParts.count() > 5 ) 341 if ( addrParts.count() > 5 )
328 address.setPostalCode( addrParts[ 5 ] ); 342 address.setPostalCode( addrParts[ 5 ] );
329 if ( addrParts.count() > 6 ) 343 if ( addrParts.count() > 6 )
330 address.setCountry( addrParts[ 6 ] ); 344 address.setCountry( addrParts[ 6 ] );
331 345
332 int type = 0; 346 int type = 0;
333 347
334 QStringList types = (*lineIt).parameters( "type" ); 348 QStringList types = (*lineIt).parameters( "type" );
335 for ( QStringList::Iterator it = types.begin(); it != types.end(); ++it ) 349 for ( QStringList::Iterator it = types.begin(); it != types.end(); ++it )
336 type += mAddressTypeMap[ (*it).lower() ]; 350 type += mAddressTypeMap[ (*it).lower() ];
337 351
338 if ( !type ) 352 if ( !type )
339 type = Address::Home; // default 353 type = Address::Home; // default
340 354
341 address.setType( type ); 355 address.setType( type );
342 addr.insertAddress( address ); 356 addr.insertAddress( address );
343 } 357 }
344 358
345 // AGENT 359 // AGENT
346 if ( identifier == "agent" ) 360 if ( identifier == "agent" )
347 addr.setAgent( parseAgent( *lineIt ) ); 361 addr.setAgent( parseAgent( *lineIt ) );
348 362
349 // BDAY 363 // BDAY
350 if ( identifier == "bday" ) 364 if ( identifier == "bday" )
351 addr.setBirthday( parseDateTime( (*lineIt).value().asString() ) ); 365 addr.setBirthday( parseDateTime( (*lineIt).value().asString() ) );
352 366
353 // CATEGORIES 367 // CATEGORIES
354 if ( identifier == "categories" ) { 368 if ( identifier == "categories" ) {
355 QStringList categories = splitString( commaSep, (*lineIt).value().asString() ); 369 QStringList categories = splitString( commaSep, (*lineIt).value().asString() );
356 addr.setCategories( categories ); 370 addr.setCategories( categories );
357 } 371 }
358 372
359 // CLASS 373 // CLASS
360 if ( identifier == "class" ) 374 if ( identifier == "class" )
361 addr.setSecrecy( parseSecrecy( *lineIt ) ); 375 addr.setSecrecy( parseSecrecy( *lineIt ) );
362 376
363 // EMAIL 377 // EMAIL
364 if ( identifier == "email" ) { 378 if ( identifier == "email" ) {
365 QStringList types = (*lineIt).parameters( "type" ); 379 QStringList types = (*lineIt).parameters( "type" );
366 addr.insertEmail( (*lineIt).value().asString(), types.contains( "PREF" ) ); 380 addr.insertEmail( (*lineIt).value().asString(), types.contains( "PREF" ) );
367 } 381 }
368 382
369 // FN 383 // FN
370 if ( identifier == "fn" ) 384 if ( identifier == "fn" )
371 addr.setFormattedName( (*lineIt).value().asString() ); 385 addr.setFormattedName( (*lineIt).value().asString() );
372 386
373 // GEO 387 // GEO
374 if ( identifier == "geo" ) { 388 if ( identifier == "geo" ) {
375 Geo geo; 389 Geo geo;
376 390
377 QStringList geoParts = QStringList::split( ';', (*lineIt).value().asString(), true ); 391 QStringList geoParts = QStringList::split( ';', (*lineIt).value().asString(), true );
378 geo.setLatitude( geoParts[ 0 ].toFloat() ); 392 geo.setLatitude( geoParts[ 0 ].toFloat() );
379 geo.setLongitude( geoParts[ 1 ].toFloat() ); 393 geo.setLongitude( geoParts[ 1 ].toFloat() );
380 394
381 addr.setGeo( geo ); 395 addr.setGeo( geo );
382 } 396 }
383 397
384 // KEY 398 // KEY
385 if ( identifier == "key" ) 399 if ( identifier == "key" )
386 addr.insertKey( parseKey( *lineIt ) ); 400 addr.insertKey( parseKey( *lineIt ) );
387 401
388 // LABEL 402 // LABEL
389 if ( identifier == "label" ) { 403 if ( identifier == "label" ) {
390 int type = 0; 404 int type = 0;
391 405
392 QStringList types = (*lineIt).parameters( "type" ); 406 QStringList types = (*lineIt).parameters( "type" );
393 for ( QStringList::Iterator it = types.begin(); it != types.end(); ++it ) 407 for ( QStringList::Iterator it = types.begin(); it != types.end(); ++it )
394 type += mAddressTypeMap[ (*it).lower() ]; 408 type += mAddressTypeMap[ (*it).lower() ];
395 409
396 if ( !type ) 410 if ( !type )
397 type = Address::Home; 411 type = Address::Home;
398 412
399 KABC::Address::List addressList = addr.addresses(); 413 KABC::Address::List addressList = addr.addresses();
400 KABC::Address::List::Iterator it; 414 KABC::Address::List::Iterator it;
401 for ( it = addressList.begin(); it != addressList.end(); ++it ) { 415 for ( it = addressList.begin(); it != addressList.end(); ++it ) {
402 if ( (*it).type() == type ) { 416 if ( (*it).type() == type ) {
403 (*it).setLabel( (*lineIt).value().asString() ); 417 (*it).setLabel( (*lineIt).value().asString() );
404 addr.insertAddress( *it ); 418 addr.insertAddress( *it );
405 } 419 }
406 } 420 }
407 } 421 }
408 422
409 // LOGO 423 // LOGO
410 if ( identifier == "logo" ) 424 if ( identifier == "logo" )
411 addr.setLogo( parsePicture( *lineIt ) ); 425 addr.setLogo( parsePicture( *lineIt ) );
412 426
413 // MAILER 427 // MAILER
414 if ( identifier == "mailer" ) 428 if ( identifier == "mailer" )
415 addr.setMailer( (*lineIt).value().asString() ); 429 addr.setMailer( (*lineIt).value().asString() );
416 430
417 // N 431 // N
418 if ( identifier == "n" ) { 432 if ( identifier == "n" ) {
419 QStringList nameParts = splitString( semicolonSep, (*lineIt).value().asString() ); 433 QStringList nameParts = splitString( semicolonSep, (*lineIt).value().asString() );
420 if ( nameParts.count() > 0 ) 434 if ( nameParts.count() > 0 )
421 addr.setFamilyName( nameParts[ 0 ] ); 435 addr.setFamilyName( nameParts[ 0 ] );
422 if ( nameParts.count() > 1 ) 436 if ( nameParts.count() > 1 )
423 addr.setGivenName( nameParts[ 1 ] ); 437 addr.setGivenName( nameParts[ 1 ] );
424 if ( nameParts.count() > 2 ) 438 if ( nameParts.count() > 2 )
425 addr.setAdditionalName( nameParts[ 2 ] ); 439 addr.setAdditionalName( nameParts[ 2 ] );
426 if ( nameParts.count() > 3 ) 440 if ( nameParts.count() > 3 )
427 addr.setPrefix( nameParts[ 3 ] ); 441 addr.setPrefix( nameParts[ 3 ] );
428 if ( nameParts.count() > 4 ) 442 if ( nameParts.count() > 4 )