/*========================================================================= | KCalDAV |-------------------------------------------------------------------------- | (c) 2010 Timothy Pearson | (c) 2009 Kumaran Santhanam (initial KDE4 version) | | This project is released under the GNU General Public License. | Please see the file COPYING for more details. |-------------------------------------------------------------------------- | Remote calendar writing class. ========================================================================*/ /*========================================================================= | INCLUDES ========================================================================*/ #include "writer.h" #include #include /*========================================================================= | DEFINES ========================================================================*/ // Use caldav_modify_object() function. // If it's not set, a pair of caldav_delete_object/caldav_add_object // is used for modifying objects. // It's done, because, for some reason, SOGo server returns an error // on caldav_modify_object. DAViCAL works fine both ways. #define USE_CALDAV_MODIFY /*========================================================================= | NAMESPACE ========================================================================*/ using namespace KCal; /*========================================================================= | METHODS ========================================================================*/ void CalDavWriter::cleanJob() { CalDavJob::cleanJob(); } int CalDavWriter::runJob(runtime_info* RT) { kdDebug() << "writer::run, url: " << url() << "\n"; int res = OK; kdDebug() << "pushing added objects"; res = pushObjects(mAdded, caldav_add_object, OK, RT); if (OK == res) { #ifdef USE_CALDAV_MODIFY kdDebug() << "pushing changed objects"; res = pushObjects(mChanged, caldav_modify_object, OK, RT); if (OK == res) { kdDebug() << "pushing deleted objects"; res = pushObjects(mDeleted, caldav_delete_object, OK, RT); } #else // if USE_CALDAV_MODIFY kdDebug() << "pushing changed objects (delete)"; res = pushObjects(mChanged, caldav_delete_object, OK, RT); if (OK == res) { kdDebug() << "pushing changed objects (add)"; res = pushObjects(mChanged, caldav_add_object, OK, RT); if (OK == res) { kdDebug() << "pushing deleted objects"; res = pushObjects(mDeleted, caldav_delete_object, OK, RT); } } #endif // if USE_CALDAV_MODIFY } if (OK != res) { clearObjects(); } return res; } // EOF ========================================================================