syncevolution/src/EvolutionCalendarSourceRegi...

129 lines
5.5 KiB
C++
Raw Normal View History

/*
* Copyright (C) 2008 Patrick Ohly
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "EvolutionCalendarSource.h"
#include "EvolutionMemoSource.h"
#include "SyncEvolutionUtil.h"
static EvolutionSyncSource *createSource(const EvolutionSyncSourceParams &params)
{
pair <string, string> sourceType = EvolutionSyncSource::getSourceType(params.m_nodes);
bool isMe;
isMe = sourceType.first == "Evolution Task List";
if (isMe || sourceType.first == "todo") {
if (sourceType.second == "" || sourceType.second == "text/calendar") {
#ifdef ENABLE_ECAL
return new EvolutionCalendarSource(E_CAL_SOURCE_TYPE_TODO, params);
#else
return isMe ? RegisterSyncSource::InactiveSource : NULL;
#endif
} else {
return NULL;
}
}
isMe = sourceType.first == "Evolution Memos";
if (isMe || sourceType.first == "memo") {
if (sourceType.second == "" || sourceType.second == "text/plain") {
#ifdef ENABLE_ECAL
return new EvolutionMemoSource(params);
#else
return isMe ? RegisterSyncSource::InactiveSource : NULL;
#endif
} else if (sourceType.second == "text/calendar") {
#ifdef ENABLE_ECAL
return new EvolutionCalendarSource(E_CAL_SOURCE_TYPE_JOURNAL, params);
#else
return isMe ? RegisterSyncSource::InactiveSource : NULL;
#endif
} else {
return NULL;
}
}
isMe = sourceType.first == "Evolution Calendar";
if (isMe || sourceType.first == "calendar") {
if (sourceType.second == "" || sourceType.second == "text/calendar" ||
sourceType.second == "text/x-vcalendar" /* this is for backwards compatibility with broken configs */ ) {
#ifdef ENABLE_ECAL
return new EvolutionCalendarSource(E_CAL_SOURCE_TYPE_EVENT, params);
#else
return isMe ? RegisterSyncSource::InactiveSource : NULL;
#endif
} else {
return NULL;
}
}
return NULL;
}
static RegisterSyncSource registerMe("Evolution Calendar/Task List/Memos",
#ifdef ENABLE_ECAL
true,
#else
false,
#endif
createSource,
"Evolution Calendar = calendar = events = evolution-events\n"
" always uses iCalendar 2.0\n"
"Evolution Task List = Evolution Tasks = todo = tasks = evolution-tasks\n"
" always uses iCalendar 2.0\n"
"Evolution Memos = memo = memos = evolution-memos\n"
" plain text in UTF-8 (default) = text/plain\n"
" iCalendar 2.0 = text/calendar\n"
" The later format is not tested because none of the\n"
" supported SyncML servers accepts it.\n",
Values() +
(Aliases("Evolution Calendar") + "evolution-calendar") +
(Aliases("Evolution Task List") + "Evolution Tasks" + "evolution-tasks") +
(Aliases("Evolution Memos") + "evolution-memos"));
#ifdef ENABLE_ECAL
#ifdef ENABLE_UNIT_TESTS
class EvolutionCalendarTest : public CppUnit::TestFixture {
CPPUNIT_TEST_SUITE(EvolutionCalendarTest);
CPPUNIT_TEST(testInstantiate);
CPPUNIT_TEST_SUITE_END();
protected:
void testInstantiate() {
boost::shared_ptr<EvolutionSyncSource> source;
source.reset(EvolutionSyncSource::createTestingSource("calendar", "calendar", true));
source.reset(EvolutionSyncSource::createTestingSource("calendar", "evolution-calendar", true));
source.reset(EvolutionSyncSource::createTestingSource("calendar", "Evolution Calendar:text/calendar", true));
source.reset(EvolutionSyncSource::createTestingSource("calendar", "tasks", true));
source.reset(EvolutionSyncSource::createTestingSource("calendar", "evolution-tasks", true));
source.reset(EvolutionSyncSource::createTestingSource("calendar", "Evolution Tasks", true));
source.reset(EvolutionSyncSource::createTestingSource("calendar", "Evolution Task List:text/calendar", true));
source.reset(EvolutionSyncSource::createTestingSource("calendar", "memos", true));
source.reset(EvolutionSyncSource::createTestingSource("calendar", "evolution-memos", true));
source.reset(EvolutionSyncSource::createTestingSource("calendar", "Evolution Memos:text/plain", true));
source.reset(EvolutionSyncSource::createTestingSource("calendar", "Evolution Memos:text/calendar", true));
}
};
SYNCEVOLUTION_TEST_SUITE_REGISTRATION(EvolutionCalendarTest);
#endif // ENABLE_UNIT_TESTS
#endif // ENABLE_ECAL