-rw-r--r-- | kabc/addressee.cpp | 123 |
1 files changed, 103 insertions, 20 deletions
diff --git a/kabc/addressee.cpp b/kabc/addressee.cpp index 548305a..cb10160 100644 --- a/kabc/addressee.cpp +++ b/kabc/addressee.cpp | |||
@@ -211,132 +211,215 @@ void Addressee::computeCsum(const QString &dev) | |||
211 | QStringList l; | 211 | QStringList l; |
212 | if ( !mData->name.isEmpty() ) l.append(mData->name); | 212 | if ( !mData->name.isEmpty() ) l.append(mData->name); |
213 | if ( !mData->formattedName.isEmpty() ) l.append(mData->formattedName ); | 213 | if ( !mData->formattedName.isEmpty() ) l.append(mData->formattedName ); |
214 | if ( !mData->familyName.isEmpty() ) l.append( mData->familyName ); | 214 | if ( !mData->familyName.isEmpty() ) l.append( mData->familyName ); |
215 | if ( !mData->givenName.isEmpty() ) l.append(mData->givenName ); | 215 | if ( !mData->givenName.isEmpty() ) l.append(mData->givenName ); |
216 | if ( !mData->additionalName ) l.append( mData->additionalName ); | 216 | if ( !mData->additionalName ) l.append( mData->additionalName ); |
217 | if ( !mData->prefix.isEmpty() ) l.append( mData->prefix ); | 217 | if ( !mData->prefix.isEmpty() ) l.append( mData->prefix ); |
218 | if ( !mData->suffix.isEmpty() ) l.append( mData->suffix ); | 218 | if ( !mData->suffix.isEmpty() ) l.append( mData->suffix ); |
219 | if ( !mData->nickName.isEmpty() ) l.append( mData->nickName ); | 219 | if ( !mData->nickName.isEmpty() ) l.append( mData->nickName ); |
220 | if ( mData->birthday.isValid() ) l.append( mData->birthday.toString() ); | 220 | if ( mData->birthday.isValid() ) l.append( mData->birthday.toString() ); |
221 | if ( !mData->mailer.isEmpty() ) l.append( mData->mailer ); | 221 | if ( !mData->mailer.isEmpty() ) l.append( mData->mailer ); |
222 | if ( mData->timeZone.isValid() ) l.append( mData->timeZone.asString() ); | 222 | if ( mData->timeZone.isValid() ) l.append( mData->timeZone.asString() ); |
223 | if ( mData->geo.isValid() ) l.append( mData->geo.asString() ); | 223 | if ( mData->geo.isValid() ) l.append( mData->geo.asString() ); |
224 | if ( !mData->title .isEmpty() ) l.append( mData->title ); | 224 | if ( !mData->title .isEmpty() ) l.append( mData->title ); |
225 | if ( !mData->role.isEmpty() ) l.append( mData->role ); | 225 | if ( !mData->role.isEmpty() ) l.append( mData->role ); |
226 | if ( !mData->organization.isEmpty() ) l.append( mData->organization ); | 226 | if ( !mData->organization.isEmpty() ) l.append( mData->organization ); |
227 | if ( !mData->note.isEmpty() ) l.append( mData->note ); | 227 | if ( !mData->note.isEmpty() ) l.append( mData->note ); |
228 | if ( !mData->productId.isEmpty() ) l.append(mData->productId ); | 228 | if ( !mData->productId.isEmpty() ) l.append(mData->productId ); |
229 | if ( !mData->sortString.isEmpty() ) l.append( mData->sortString ); | 229 | if ( !mData->sortString.isEmpty() ) l.append( mData->sortString ); |
230 | if ( mData->secrecy.isValid() ) l.append( mData->secrecy.asString()); | 230 | if ( mData->secrecy.isValid() ) l.append( mData->secrecy.asString()); |
231 | // if ( !mData->logo.isEmpty() ) l.append( ); | 231 | // if ( !mData->logo.isEmpty() ) l.append( ); |
232 | //if ( !mData->photo.isEmpty() ) l.append( ); | 232 | //if ( !mData->photo.isEmpty() ) l.append( ); |
233 | //if ( !mData->sound.isEmpty() ) l.append( ); | 233 | //if ( !mData->sound.isEmpty() ) l.append( ); |
234 | //if ( !mData->agent.isEmpty() ) l.append( ); | 234 | //if ( !mData->agent.isEmpty() ) l.append( ); |
235 | //if ( mData->url.isValid() ) l.append( ); | 235 | if ( mData->url.isValid() ) |
236 | #if 0 | 236 | if ( ! mData->url.path().isEmpty()) l.append( mData->url.path() ); |
237 | if ( !mData->phoneNumbers.isEmpty() ) l.append( ); | ||
238 | if ( !mData->addresses.isEmpty() ) l.append( ); | ||
239 | //if ( !mData->keys.isEmpty() ) l.append( ); | ||
240 | if ( !mData->emails.isEmpty() ) l.append( ); | ||
241 | if ( !mData->categories .isEmpty() ) l.append( ); | ||
242 | if ( !mData->custom.isEmpty() ) l.append( ); | ||
243 | #endif | ||
244 | KABC::PhoneNumber::List phoneNumbers; | 237 | KABC::PhoneNumber::List phoneNumbers; |
245 | KABC::PhoneNumber::List::Iterator phoneIter; | 238 | KABC::PhoneNumber::List::Iterator phoneIter; |
246 | 239 | ||
247 | QStringList t; | 240 | QStringList t; |
248 | for ( phoneIter = mData->phoneNumbers.begin(); phoneIter != mData->phoneNumbers.end(); | 241 | for ( phoneIter = mData->phoneNumbers.begin(); phoneIter != mData->phoneNumbers.end(); |
249 | ++phoneIter ) | 242 | ++phoneIter ) |
250 | t.append( ( *phoneIter ).number()+QString::number( ( *phoneIter ).type() ) ); | 243 | t.append( ( *phoneIter ).number()+QString::number( ( *phoneIter ).type() ) ); |
251 | t.sort(); | 244 | t.sort(); |
252 | uint iii; | 245 | uint iii; |
253 | for ( iii = 0; iii < t.count(); ++iii) | 246 | for ( iii = 0; iii < t.count(); ++iii) |
254 | l.append( t[iii] ); | 247 | l.append( t[iii] ); |
255 | t = mData->emails; | 248 | t = mData->emails; |
256 | t.sort(); | 249 | t.sort(); |
257 | for ( iii = 0; iii < t.count(); ++iii) | 250 | for ( iii = 0; iii < t.count(); ++iii) |
258 | l.append( t[iii] ); | 251 | l.append( t[iii] ); |
259 | t = mData->categories; | 252 | t = mData->categories; |
260 | t.sort(); | 253 | t.sort(); |
261 | for ( iii = 0; iii < t.count(); ++iii) | 254 | for ( iii = 0; iii < t.count(); ++iii) |
262 | l.append( t[iii] ); | 255 | l.append( t[iii] ); |
263 | t = mData->custom; | 256 | t = mData->custom; |
264 | t.sort(); | 257 | t.sort(); |
265 | for ( iii = 0; iii < t.count(); ++iii) | 258 | for ( iii = 0; iii < t.count(); ++iii) |
266 | l.append( t[iii] ); | 259 | l.append( t[iii] ); |
267 | KABC::Address::List::Iterator addressIter; | 260 | KABC::Address::List::Iterator addressIter; |
268 | for ( addressIter = mData->addresses.begin(); addressIter != mData->addresses.end(); | 261 | for ( addressIter = mData->addresses.begin(); addressIter != mData->addresses.end(); |
269 | ++addressIter ) { | 262 | ++addressIter ) { |
270 | t = (*addressIter).asList(); | 263 | t = (*addressIter).asList(); |
271 | t.sort(); | 264 | t.sort(); |
272 | for ( iii = 0; iii < t.count(); ++iii) | 265 | for ( iii = 0; iii < t.count(); ++iii) |
273 | l.append( t[iii] ); | 266 | l.append( t[iii] ); |
274 | } | 267 | } |
275 | uint cs = getCsum4List(l); | 268 | uint cs = getCsum4List(l); |
276 | // qDebug("CSUM computed %d %s %s", cs,QString::number (cs ).latin1(), uid().latin1() ); | 269 | // qDebug("CSUM computed %d %s %s", cs,QString::number (cs ).latin1(), uid().latin1() ); |
277 | setCsum( dev, QString::number (cs )); | 270 | setCsum( dev, QString::number (cs )); |
278 | } | 271 | } |
279 | 272 | ||
280 | void Addressee::mergeContact( const Addressee& ad ) | 273 | void Addressee::mergeContact( const Addressee& ad , bool isSubSet) // = false) |
281 | { | 274 | { |
282 | 275 | ||
283 | detach(); | 276 | detach(); |
284 | if ( mData->name.isEmpty() ) mData->name = ad.mData->name; | 277 | if ( mData->name.isEmpty() ) mData->name = ad.mData->name; |
285 | if ( mData->formattedName.isEmpty() ) mData->formattedName = ad.mData->formattedName; | 278 | if ( mData->formattedName.isEmpty() ) mData->formattedName = ad.mData->formattedName; |
286 | if ( mData->familyName.isEmpty() ) mData->familyName = ad.mData->familyName; | 279 | if ( mData->familyName.isEmpty() ) mData->familyName = ad.mData->familyName; |
287 | if ( mData->givenName.isEmpty() ) mData->givenName = ad.mData->givenName ; | 280 | if ( mData->givenName.isEmpty() ) mData->givenName = ad.mData->givenName ; |
288 | if ( mData->additionalName ) mData->additionalName = ad.mData->additionalName; | 281 | if ( mData->additionalName ) mData->additionalName = ad.mData->additionalName; |
289 | if ( mData->prefix.isEmpty() ) mData->prefix = ad.mData->prefix; | 282 | if ( mData->prefix.isEmpty() ) mData->prefix = ad.mData->prefix; |
290 | if ( mData->suffix.isEmpty() ) mData->suffix = ad.mData->suffix; | 283 | if ( mData->suffix.isEmpty() ) mData->suffix = ad.mData->suffix; |
291 | if ( mData->nickName.isEmpty() ) mData->nickName = ad.mData->nickName; | 284 | if ( mData->nickName.isEmpty() ) mData->nickName = ad.mData->nickName; |
292 | if ( !mData->birthday.isValid() ) | 285 | if ( !mData->birthday.isValid() ) |
293 | if ( ad.mData->birthday.isValid()) | 286 | if ( ad.mData->birthday.isValid()) |
294 | mData->birthday = ad.mData->birthday; | 287 | mData->birthday = ad.mData->birthday; |
295 | if ( mData->mailer.isEmpty() ) mData->mailer = ad.mData->mailer; | 288 | if ( mData->mailer.isEmpty() ) mData->mailer = ad.mData->mailer; |
296 | if ( !mData->timeZone.isValid() ) mData->timeZone = ad.mData->timeZone; | 289 | if ( !mData->timeZone.isValid() ) mData->timeZone = ad.mData->timeZone; |
297 | if ( !mData->geo.isValid() ) mData->geo = ad.mData->geo; | 290 | if ( !mData->geo.isValid() ) mData->geo = ad.mData->geo; |
298 | if ( mData->title .isEmpty() ) mData->title = ad.mData->title ; | 291 | if ( mData->title .isEmpty() ) mData->title = ad.mData->title ; |
299 | if ( mData->role.isEmpty() ) mData->role = ad.mData->role ; | 292 | if ( mData->role.isEmpty() ) mData->role = ad.mData->role ; |
300 | if ( mData->organization.isEmpty() ) mData->organization = ad.mData->organization ; | 293 | if ( mData->organization.isEmpty() ) mData->organization = ad.mData->organization ; |
301 | if ( mData->note.isEmpty() ) mData->note = ad.mData->note ; | 294 | if ( mData->note.isEmpty() ) mData->note = ad.mData->note ; |
302 | if ( mData->productId.isEmpty() ) mData->productId = ad.mData->productId; | 295 | if ( mData->productId.isEmpty() ) mData->productId = ad.mData->productId; |
303 | if ( mData->sortString.isEmpty() ) mData->sortString = ad.mData->sortString; | 296 | if ( mData->sortString.isEmpty() ) mData->sortString = ad.mData->sortString; |
304 | if ( !mData->secrecy.isValid() ) mData->secrecy = ad.mData->secrecy; | 297 | if ( !mData->secrecy.isValid() ) mData->secrecy = ad.mData->secrecy; |
305 | if ( ( !mData->url.isValid() && ad.mData->url.isValid() ) ) mData->url = ad.mData->url ; | 298 | if ( ( !mData->url.isValid() && ad.mData->url.isValid() ) ) mData->url = ad.mData->url ; |
306 | PhoneNumber::List phoneAD = phoneNumbers(); | 299 | QStringList t; |
307 | PhoneNumber::List::Iterator phoneItAD; | 300 | QStringList tAD; |
308 | bool found = false; | 301 | uint iii; |
309 | for ( phoneItAD = phoneAD.begin(); phoneItAD != phoneAD.end(); ++phoneItAD ) { | 302 | if ( isSubSet ) { |
303 | // ********** phone numbers | ||
304 | PhoneNumber::List phoneAD = ad.phoneNumbers(); | ||
305 | PhoneNumber::List::Iterator phoneItAD; | ||
306 | for ( phoneItAD = phoneAD.begin(); phoneItAD != phoneAD.end(); ++phoneItAD ) { | ||
307 | bool found = false; | ||
308 | PhoneNumber::List::Iterator it; | ||
309 | for( it = mData->phoneNumbers.begin(); it != mData->phoneNumbers.end(); ++it ) { | ||
310 | if ( (*it) == ( *phoneItAD ) ) { | ||
311 | found = true; | ||
312 | break; | ||
313 | } | ||
314 | } | ||
315 | if ( ! found ) | ||
316 | mData->phoneNumbers.append( *phoneItAD ); | ||
317 | } | ||
318 | // ************* emails; | ||
319 | t = mData->emails; | ||
320 | tAD = ad.mData->emails; | ||
321 | for ( iii = 0; iii < tAD.count(); ++iii) | ||
322 | if ( !t.contains(tAD[iii] ) ) | ||
323 | mData->emails.append( tAD[iii] ); | ||
324 | // ************* categories; | ||
325 | t = mData->categories; | ||
326 | tAD = ad.mData->categories; | ||
327 | for ( iii = 0; iii < tAD.count(); ++iii) | ||
328 | if ( !t.contains(tAD[iii] ) ) | ||
329 | mData->categories.append( tAD[iii] ); | ||
310 | 330 | ||
311 | 331 | ||
332 | } | ||
333 | |||
334 | QStringList::ConstIterator it; | ||
335 | for( it = ad.mData->custom.begin(); it != ad.mData->custom.end(); ++it ) { | ||
336 | QString qualifiedName = (*it).left( (*it).find( ":" )); | ||
337 | bool found = false; | ||
338 | QStringList::ConstIterator itL; | ||
339 | for( itL = mData->custom.begin(); itL != mData->custom.end(); ++itL ) { | ||
340 | if ( (*itL).startsWith( qualifiedName ) ) { | ||
341 | found = true; | ||
342 | break; | ||
343 | } | ||
344 | } | ||
345 | if ( ! found ) { | ||
346 | mData->custom.append( *it ); | ||
347 | } | ||
348 | } | ||
349 | if ( mData->logo.undefined() && !ad.mData->logo.undefined() ) mData->logo = ad.mData->logo; | ||
350 | if ( mData->photo.undefined() && !ad.mData->photo.undefined() ) mData->photo = ad.mData->photo; | ||
351 | if ( !mData->sound.isIntern() ) { | ||
352 | if ( mData->sound.url().isEmpty() ) { | ||
353 | mData->sound = ad.mData->sound; | ||
354 | } | ||
355 | } | ||
356 | if ( !mData->agent.isIntern() ) { | ||
357 | if ( mData->agent.url().isEmpty() ) { | ||
358 | mData->agent = ad.mData->agent; | ||
359 | } | ||
312 | } | 360 | } |
361 | |||
362 | #if 0 | ||
363 | |||
364 | if ( mData->url.isValid() ) | ||
365 | if ( ! mData->url.path().isEmpty()) l.append( mData->url.path() ); | ||
366 | KABC::PhoneNumber::List phoneNumbers; | ||
367 | KABC::PhoneNumber::List::Iterator phoneIter; | ||
368 | |||
369 | QStringList t; | ||
370 | for ( phoneIter = mData->phoneNumbers.begin(); phoneIter != mData->phoneNumbers.end(); | ||
371 | ++phoneIter ) | ||
372 | t.append( ( *phoneIter ).number()+QString::number( ( *phoneIter ).type() ) ); | ||
373 | t.sort(); | ||
374 | uint iii; | ||
375 | for ( iii = 0; iii < t.count(); ++iii) | ||
376 | l.append( t[iii] ); | ||
377 | t = mData->emails; | ||
378 | t.sort(); | ||
379 | for ( iii = 0; iii < t.count(); ++iii) | ||
380 | l.append( t[iii] ); | ||
381 | t = mData->categories; | ||
382 | t.sort(); | ||
383 | for ( iii = 0; iii < t.count(); ++iii) | ||
384 | l.append( t[iii] ); | ||
385 | t = mData->custom; | ||
386 | t.sort(); | ||
387 | for ( iii = 0; iii < t.count(); ++iii) | ||
388 | l.append( t[iii] ); | ||
389 | KABC::Address::List::Iterator addressIter; | ||
390 | for ( addressIter = mData->addresses.begin(); addressIter != mData->addresses.end(); | ||
391 | ++addressIter ) { | ||
392 | t = (*addressIter).asList(); | ||
393 | t.sort(); | ||
394 | for ( iii = 0; iii < t.count(); ++iii) | ||
395 | l.append( t[iii] ); | ||
396 | } | ||
397 | |||
398 | #endif | ||
399 | |||
313 | // pending: | 400 | // pending: |
314 | // merging phonenumbers | ||
315 | // merging addresses | 401 | // merging addresses |
316 | // merging emails; | ||
317 | // merging categories; | ||
318 | // merging custom; | ||
319 | // merging keys | 402 | // merging keys |
320 | //qDebug("merge contact %s ", ad.uid().latin1()); | 403 | //qDebug("merge contact %s ", ad.uid().latin1()); |
321 | setUid( ad.uid() ); | 404 | setUid( ad.uid() ); |
322 | setRevision( ad.revision() ); | 405 | setRevision( ad.revision() ); |
323 | } | 406 | } |
324 | 407 | ||
325 | bool Addressee::removeVoice() | 408 | bool Addressee::removeVoice() |
326 | { | 409 | { |
327 | PhoneNumber::List phoneN = phoneNumbers(); | 410 | PhoneNumber::List phoneN = phoneNumbers(); |
328 | PhoneNumber::List::Iterator phoneIt; | 411 | PhoneNumber::List::Iterator phoneIt; |
329 | bool found = false; | 412 | bool found = false; |
330 | for ( phoneIt = phoneN.begin(); phoneIt != phoneN.end(); ++phoneIt ) { | 413 | for ( phoneIt = phoneN.begin(); phoneIt != phoneN.end(); ++phoneIt ) { |
331 | if ( (*phoneIt).type() & PhoneNumber::Voice) { // voice found | 414 | if ( (*phoneIt).type() & PhoneNumber::Voice) { // voice found |
332 | if ((*phoneIt).type() - PhoneNumber::Voice ) { | 415 | if ((*phoneIt).type() - PhoneNumber::Voice ) { |
333 | (*phoneIt).setType((*phoneIt).type() - PhoneNumber::Voice ); | 416 | (*phoneIt).setType((*phoneIt).type() - PhoneNumber::Voice ); |
334 | insertPhoneNumber( (*phoneIt) ); | 417 | insertPhoneNumber( (*phoneIt) ); |
335 | found = true; | 418 | found = true; |
336 | } | 419 | } |
337 | } | 420 | } |
338 | 421 | ||
339 | } | 422 | } |
340 | return found; | 423 | return found; |
341 | } | 424 | } |
342 | 425 | ||