-rw-r--r-- | kabc/addressbook.cpp | 133 |
1 files changed, 97 insertions, 36 deletions
diff --git a/kabc/addressbook.cpp b/kabc/addressbook.cpp index 16e1653..ec9f893 100644 --- a/kabc/addressbook.cpp +++ b/kabc/addressbook.cpp | |||
@@ -234,6 +234,7 @@ AddressBook::AddressBook( const QString &config, const QString &family ) | |||
234 | // the default family is "contact" | 234 | // the default family is "contact" |
235 | void AddressBook::init(const QString &config, const QString &family ) | 235 | void AddressBook::init(const QString &config, const QString &family ) |
236 | { | 236 | { |
237 | blockLSEchange = false; | ||
237 | d = new AddressBookData; | 238 | d = new AddressBookData; |
238 | QString fami = family; | 239 | QString fami = family; |
239 | qDebug("new ab "); | 240 | qDebug("new ab "); |
@@ -345,6 +346,7 @@ bool AddressBook::load() | |||
345 | for ( addrIt = d->mAddressees.begin(); addrIt != d->mAddressees.end(); ++addrIt ) | 346 | for ( addrIt = d->mAddressees.begin(); addrIt != d->mAddressees.end(); ++addrIt ) |
346 | (*addrIt).setChanged( false ); | 347 | (*addrIt).setChanged( false ); |
347 | 348 | ||
349 | blockLSEchange = true; | ||
348 | return ok; | 350 | return ok; |
349 | } | 351 | } |
350 | 352 | ||
@@ -447,53 +449,110 @@ Ticket *AddressBook::requestSaveTicket( Resource *resource ) | |||
447 | 449 | ||
448 | void AddressBook::insertAddressee( const Addressee &a, bool setRev ) | 450 | void AddressBook::insertAddressee( const Addressee &a, bool setRev ) |
449 | { | 451 | { |
450 | Addressee::List::Iterator it; | 452 | if ( blockLSEchange && setRev && a.uid().left( 19 ) == QString("last-syncAddressee-") ) { |
451 | for ( it = d->mAddressees.begin(); it != d->mAddressees.end(); ++it ) { | 453 | return; |
452 | if ( a.uid() == (*it).uid() ) { | 454 | } |
453 | if ( setRev && (*it).uid().left( 19 ) == QString("last-syncAddressee-") ) { | 455 | bool found = false; |
454 | return; | 456 | Addressee::List::Iterator it; |
455 | } | 457 | for ( it = d->mAddressees.begin(); it != d->mAddressees.end(); ++it ) { |
456 | bool changed = false; | 458 | if ( a.uid() == (*it).uid() ) { |
457 | Addressee addr = a; | 459 | |
458 | if ( addr != (*it) ) | 460 | bool changed = false; |
459 | changed = true; | 461 | Addressee addr = a; |
460 | 462 | if ( addr != (*it) ) | |
461 | (*it) = a; | 463 | changed = true; |
462 | if ( (*it).resource() == 0 ) | 464 | |
463 | (*it).setResource( standardResource() ); | 465 | (*it) = a; |
464 | 466 | if ( (*it).resource() == 0 ) | |
465 | if ( changed ) { | 467 | (*it).setResource( standardResource() ); |
466 | if ( setRev ) { | 468 | |
469 | if ( changed ) { | ||
470 | if ( setRev ) { | ||
467 | 471 | ||
468 | // get rid of micro seconds | 472 | // get rid of micro seconds |
469 | QDateTime dt = QDateTime::currentDateTime(); | 473 | QDateTime dt = QDateTime::currentDateTime(); |
470 | QTime t = dt.time(); | 474 | QTime t = dt.time(); |
471 | dt.setTime( QTime (t.hour (), t.minute (), t.second () ) ); | 475 | dt.setTime( QTime (t.hour (), t.minute (), t.second () ) ); |
472 | (*it).setRevision( dt ); | 476 | (*it).setRevision( dt ); |
473 | } | 477 | } |
474 | (*it).setChanged( true ); | 478 | (*it).setChanged( true ); |
475 | } | 479 | } |
476 | 480 | ||
477 | return; | 481 | found = true; |
482 | } else { | ||
483 | if ( (*it).uid() == QString("last-syncAddressee-") ) { | ||
484 | QString name = (*it).uid().mid( 19 ); | ||
485 | Addressee b = a; | ||
486 | QString id = b.getID( name ); | ||
487 | if ( ! id.isEmpty() ) { | ||
488 | QString des = (*it).note(); | ||
489 | int startN; | ||
490 | if( (startN = des.find( id ) ) >= 0 ) { | ||
491 | int endN = des.find( ",", startN+1 ); | ||
492 | des = des.left( startN ) + des.mid( endN+1 ); | ||
493 | (*it).setNote( des ); | ||
494 | } | ||
495 | } | ||
496 | } | ||
497 | } | ||
478 | } | 498 | } |
479 | } | 499 | if ( found ) |
480 | d->mAddressees.append( a ); | 500 | return; |
481 | Addressee& addr = d->mAddressees.last(); | 501 | d->mAddressees.append( a ); |
482 | if ( addr.resource() == 0 ) | 502 | Addressee& addr = d->mAddressees.last(); |
483 | addr.setResource( standardResource() ); | 503 | if ( addr.resource() == 0 ) |
504 | addr.setResource( standardResource() ); | ||
484 | 505 | ||
485 | addr.setChanged( true ); | 506 | addr.setChanged( true ); |
486 | } | 507 | } |
487 | 508 | ||
488 | void AddressBook::removeAddressee( const Addressee &a ) | 509 | void AddressBook::removeAddressee( const Addressee &a ) |
489 | { | 510 | { |
490 | Iterator it; | 511 | Iterator it; |
512 | Iterator it2; | ||
513 | bool found = false; | ||
491 | for ( it = begin(); it != end(); ++it ) { | 514 | for ( it = begin(); it != end(); ++it ) { |
492 | if ( a.uid() == (*it).uid() ) { | 515 | if ( a.uid() == (*it).uid() ) { |
493 | removeAddressee( it ); | 516 | found = true; |
494 | return; | 517 | it2 = it; |
518 | } else { | ||
519 | if ( (*it).uid() == QString("last-syncAddressee-") ) { | ||
520 | QString name = (*it).uid().mid( 19 ); | ||
521 | Addressee b = a; | ||
522 | QString id = b.getID( name ); | ||
523 | if ( ! id.isEmpty() ) { | ||
524 | QString des = (*it).note(); | ||
525 | if( des.find( id ) < 0 ) { | ||
526 | des += id + ","; | ||
527 | (*it).setNote( des ); | ||
528 | } | ||
529 | } | ||
530 | } | ||
531 | |||
495 | } | 532 | } |
496 | } | 533 | } |
534 | |||
535 | if ( found ) | ||
536 | removeAddressee( it2 ); | ||
537 | |||
538 | } | ||
539 | |||
540 | void AddressBook::removeDeletedAddressees() | ||
541 | { | ||
542 | deleteRemovedAddressees(); | ||
543 | Iterator it = begin(); | ||
544 | Iterator it2 ; | ||
545 | QDateTime dt ( QDate( 2004,1,1) ); | ||
546 | while ( it != end() ) { | ||
547 | (*it).setRevision( dt ); | ||
548 | if ( (*it).tempSyncStat() == SYNC_TEMPSTATE_DELETE ) { | ||
549 | it2 = it; | ||
550 | ++it; | ||
551 | removeAddressee( it2 ); | ||
552 | } else | ||
553 | ++it; | ||
554 | } | ||
555 | deleteRemovedAddressees(); | ||
497 | } | 556 | } |
498 | 557 | ||
499 | void AddressBook::removeAddressee( const Iterator &it ) | 558 | void AddressBook::removeAddressee( const Iterator &it ) |
@@ -523,6 +582,7 @@ Addressee AddressBook::findByUid( const QString &uid ) | |||
523 | } | 582 | } |
524 | return Addressee(); | 583 | return Addressee(); |
525 | } | 584 | } |
585 | #if 0 | ||
526 | Addressee::List AddressBook::getExternLastSyncAddressees() | 586 | Addressee::List AddressBook::getExternLastSyncAddressees() |
527 | { | 587 | { |
528 | Addressee::List results; | 588 | Addressee::List results; |
@@ -530,13 +590,14 @@ Addressee::List AddressBook::getExternLastSyncAddressees() | |||
530 | Iterator it; | 590 | Iterator it; |
531 | for ( it = begin(); it != end(); ++it ) { | 591 | for ( it = begin(); it != end(); ++it ) { |
532 | if ( (*it).uid().left( 19 ) == "last-syncAddressee-" ) { | 592 | if ( (*it).uid().left( 19 ) == "last-syncAddressee-" ) { |
533 | if ( (*it).familyName().left(3) == "E: " ) | 593 | if ( (*it).familyName().left(4) == "!E: " ) |
534 | results.append( *it ); | 594 | results.append( *it ); |
535 | } | 595 | } |
536 | } | 596 | } |
537 | 597 | ||
538 | return results; | 598 | return results; |
539 | } | 599 | } |
600 | #endif | ||
540 | void AddressBook::resetTempSyncStat() | 601 | void AddressBook::resetTempSyncStat() |
541 | { | 602 | { |
542 | Iterator it; | 603 | Iterator it; |