diff options
author | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
---|---|---|
committer | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
commit | 460c52653ab0dcca6f19a4f492ed2c5e4e963ab0 (patch) | |
tree | 67208f7c145782a7e90b123b982ca78d88cc2c87 /kresources/lib/calendaradaptor.cpp | |
download | tdepim-460c52653ab0dcca6f19a4f492ed2c5e4e963ab0.tar.gz tdepim-460c52653ab0dcca6f19a4f492ed2c5e4e963ab0.zip |
Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features.
BUG:215923
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kresources/lib/calendaradaptor.cpp')
-rw-r--r-- | kresources/lib/calendaradaptor.cpp | 150 |
1 files changed, 150 insertions, 0 deletions
diff --git a/kresources/lib/calendaradaptor.cpp b/kresources/lib/calendaradaptor.cpp new file mode 100644 index 000000000..ddba9961c --- /dev/null +++ b/kresources/lib/calendaradaptor.cpp @@ -0,0 +1,150 @@ +/* + This file is part of kdepim. + + Copyright (c) 2004 Cornelius Schumacher <schumacher@kde.org> + Copyright (c) 2004 Till Adam <adam@kde.org> + Copyright (c) 2005 Reinhold Kainhofer <reinhold@kainhofer.com> + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Library General Public + License as published by the Free Software Foundation; either + version 2 of the License, or (at your option) any later version. + + This library 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 + Library General Public License for more details. + + You should have received a copy of the GNU Library General Public License + along with this library; see the file COPYING.LIB. If not, write to + the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, + Boston, MA 02110-1301, USA. +*/ + +#include "calendaradaptor.h" + +#include <libkcal/incidence.h> +#include <libkcal/calendar.h> +#include <libkcal/resourcecached.h> +#include <libkcal/icalformat.h> + +#include <kio/job.h> + +#include <kdebug.h> + +using namespace KCal; + + +CalendarUploadItem::CalendarUploadItem( CalendarAdaptor *adaptor, KCal::Incidence *incidence, KPIM::GroupwareUploadItem::UploadType type ) + : GroupwareUploadItem( type ) +{ + if ( incidence && adaptor ) { + if ( incidence->type() == "Event" ) mItemType = KPIM::FolderLister::Event; + else if ( incidence->type() == "Todo" ) mItemType = KPIM::FolderLister::Todo; + else if ( incidence->type() == "Journal" ) mItemType = KPIM::FolderLister::Journal; + + setUrl( incidence->customProperty( adaptor->identifier(), "storagelocation" ) ); + setUid( incidence->uid() ); + + ICalFormat format; + format.setTimeZone( adaptor->resource()->timeZoneId(), true ); + setData( format.toICalString( incidence ) ); + } +} + + + +CalendarAdaptor::CalendarAdaptor() +{ +} + +QString CalendarAdaptor::mimeType() const +{ + return "text/calendar"; +} + +bool CalendarAdaptor::localItemExists( const QString &localId ) +{ + KCal::Incidence *i = mResource->incidence( localId ); + return i; +} + +bool CalendarAdaptor::localItemHasChanged( const QString &localId ) +{ + KCal::Incidence *i = mResource->incidence( localId ); + if ( !i ) return false; + + if ( !mResource->deletedIncidences().isEmpty() && + mResource->deletedIncidences().find( i ) + != mResource->deletedIncidences().end() ) + return true; + if ( !mResource->changedIncidences().isEmpty() && + mResource->changedIncidences().find( i ) + != mResource->changedIncidences().end() ) + return true; + + return false; +} + +void CalendarAdaptor::deleteItem( const QString &localId ) +{ + mResource->disableChangeNotification(); + KCal::Incidence *i = mResource->incidence( localId ); + if ( i ) { + mResource->deleteIncidence( i ); + mResource->clearChange( i ); + } + mResource->enableChangeNotification(); +} + +void CalendarAdaptor::addItem( KCal::Incidence *i) +{ + if ( i ) { + mResource->disableChangeNotification(); + Incidence *existing = mResource->incidence( i->uid() ); + if ( existing ) { + mResource->deleteIncidence( i ); + } + mResource->addIncidence( i ); + mResource->clearChange( i ); + mResource->enableChangeNotification(); + } +} + + +void CalendarAdaptor::calendarItemDownloaded( KCal::Incidence *inc, + const QString &newLocalId, const KURL &remoteId, const QString &fingerprint, + const QString &storagelocation ) +{ +kdDebug() << "CalendarAdaptor::calendarItemDownloaded, inc=" << inc->summary() << ", local=" << newLocalId << ", remote=" << remoteId.url() << ", fpr=" << fingerprint << ", storagelocation="<< storagelocation << endl; + // remove the currently existing item from the cache + deleteItem( newLocalId ); + QString localId = idMapper()->localId( remoteId.path() ); + if ( !localId.isEmpty() ) deleteItem( localId ); + + // add the new item + inc->setCustomProperty( identifier(), "storagelocation", storagelocation ); + if ( !localId.isEmpty() ) inc->setUid( localId ); + addItem( inc ); + + // update the fingerprint and the ids in the idMapper + idMapper()->removeRemoteId( localId ); + idMapper()->removeRemoteId( newLocalId ); + + emit itemDownloaded( inc->uid(), remoteId, fingerprint ); +} + + +void CalendarAdaptor::clearChange( const QString &uid ) +{ + KCal::Incidence *i = mResource->incidence( uid ); + mResource->clearChange( i ); +} + +KPIM::GroupwareUploadItem *CalendarAdaptor::newUploadItem( KCal::Incidence*it, + KPIM::GroupwareUploadItem::UploadType type ) +{ + return new CalendarUploadItem( this, it, type ); +} + +#include "calendaradaptor.moc" |