kde-playground/kdepim/importwizard/evolutionv3/evolutionv3importdata.cpp
2015-04-14 21:49:29 +00:00

127 lines
3.7 KiB
C++

/*
Copyright (c) 2012-2013 Montel Laurent <montel@kde.org>
This program is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License, version 2, as
published by the Free Software Foundation.
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.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include "evolutionv3importdata.h"
#include "evolutionsettings.h"
#include "evolutioncalendar.h"
#include "evolutionaddressbook.h"
#include "mailimporter/filter_evolution_v3.h"
#include "mailimporter/filterinfo.h"
#include "importfilterinfogui.h"
#include "mailcommon/filter/filterimporterexporter.h"
#include "importwizard.h"
#include <KLocale>
#include <QDir>
Evolutionv3ImportData::Evolutionv3ImportData(ImportWizard*parent)
:AbstractImporter(parent)
{
mPath = MailImporter::FilterEvolution_v3::defaultSettingsPath();
}
Evolutionv3ImportData::~Evolutionv3ImportData()
{
}
bool Evolutionv3ImportData::foundMailer() const
{
QDir directory( mPath );
if ( directory.exists() )
return true;
return false;
}
QString Evolutionv3ImportData::name() const
{
return QLatin1String("Evolution 3.x");
}
bool Evolutionv3ImportData::importSettings()
{
const QString accountFile = QDir::homePath() + QLatin1String("/.gconf/apps/evolution/mail/%gconf.xml");
if ( QFile( accountFile ).exists() ) {
EvolutionSettings account( mImportWizard );
account.loadAccount(accountFile);
const QString ldapFile = QDir::homePath() + QLatin1String("/.gconf/apps/evolution/addressbook/%gconf.xml");
if(QFile( ldapFile ).exists() ) {
account.loadLdap(ldapFile);
}
} else {
addImportSettingsInfo(i18n("Evolution settings not found."));
}
return true;
}
bool Evolutionv3ImportData::importMails()
{
MailImporter::FilterInfo *info = initializeInfo();
MailImporter::FilterEvolution_v3 evolution;
evolution.setFilterInfo( info );
info->setStatusMessage(i18n("Import in progress"));
const QString mailsPath = mPath;
QDir directory(mailsPath);
if(directory.exists())
evolution.importMails(mailsPath);
else
evolution.import();
info->setStatusMessage(i18n("Import finished"));
delete info;
return true;
}
bool Evolutionv3ImportData::importFilters()
{
const QString filterPath = QDir::homePath() +QLatin1String("/.config/evolution/mail/filter.xml");
return addFilters( filterPath, MailCommon::FilterImporterExporter::EvolutionFilter );
}
bool Evolutionv3ImportData::importAddressBook()
{
EvolutionAddressBook addressbook(mImportWizard);
return true;
}
bool Evolutionv3ImportData::importCalendar()
{
const QString calendarFile = QDir::homePath() + QLatin1String("/.gconf/apps/evolution/calendar/%gconf.xml");
if ( QFile( calendarFile ).exists() ) {
EvolutionCalendar calendar( mImportWizard );
calendar.loadCalendar(calendarFile);
} else {
addImportCalendarInfo(i18n("Evolution calendar not found."));
}
return true;
}
AbstractImporter::TypeSupportedOptions Evolutionv3ImportData::supportedOption()
{
TypeSupportedOptions options;
options |=AbstractImporter::Mails;
options |=AbstractImporter::Filters;
options |=AbstractImporter::Settings;
options |=AbstractImporter::Calendars;
options |=AbstractImporter::AddressBooks;
return options;
}