kde-playground/kdepim/importwizard/thunderbird/thunderbirdimportdata.cpp

145 lines
4.3 KiB
C++
Raw Normal View History

/*
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 "thunderbirdimportdata.h"
#include "importfilterinfogui.h"
#include "thunderbirdsettings.h"
#include "thunderbirdaddressbook.h"
#include "mailimporter/filter_thunderbird.h"
#include "mailimporter/filterinfo.h"
#include "mailcommon/filter/filterimporterexporter.h"
#include "importwizard.h"
#include <KLocale>
#include <KConfig>
#include <QDir>
ThunderbirdImportData::ThunderbirdImportData(ImportWizard*parent)
:AbstractImporter(parent)
{
mPath = MailImporter::FilterThunderbird::defaultSettingsPath();
}
ThunderbirdImportData::~ThunderbirdImportData()
{
}
QString ThunderbirdImportData::defaultProfile()
{
if (mDefaultProfile.isEmpty()) {
mDefaultProfile = MailImporter::FilterThunderbird::defaultProfile(mImportWizard);
}
return mDefaultProfile;
}
bool ThunderbirdImportData::foundMailer() const
{
QDir directory( mPath );
if ( directory.exists() )
return true;
return false;
}
bool ThunderbirdImportData::importAddressBook()
{
const QDir addressbookDir(mPath+defaultProfile());
ThunderBirdAddressBook account( addressbookDir, mImportWizard );
return true;
}
QString ThunderbirdImportData::name() const
{
return QLatin1String("Thunderbird");
}
bool ThunderbirdImportData::importSettings()
{
const QString accountFile = mPath + defaultProfile() + QLatin1String("/prefs.js");
if ( QFile( accountFile ).exists() ) {
ThunderbirdSettings account( accountFile, mImportWizard );
} else {
addImportSettingsInfo(i18n("Thunderbird settings not found."));
}
return true;
}
bool ThunderbirdImportData::importMails()
{
//* This should be usually ~/.thunderbird/xxxx.default/Mail/Local Folders/
MailImporter::FilterInfo *info = initializeInfo();
MailImporter::FilterThunderbird thunderbird;
thunderbird.setFilterInfo( info );
info->clear();
info->setStatusMessage(i18n("Import in progress"));
const QString mailsPath = mPath + defaultProfile() + QLatin1String("/Mail/Local Folders/");
QDir directory(mailsPath);
if (directory.exists())
thunderbird.importMails(mailsPath);
else
thunderbird.import();
info->setStatusMessage(i18n("Import finished"));
delete info;
return true;
}
bool ThunderbirdImportData::importFilters()
{
const QString path(mPath + defaultProfile());
QDir dir(path);
bool filtersAdded = false;
const QStringList subDir = dir.entryList(QDir::AllDirs|QDir::NoDotAndDotDot,QDir::Name);
if (subDir.isEmpty())
return true;
Q_FOREACH ( const QString& mailPath, subDir ) {
const QString subMailPath(path + QLatin1Char('/') + mailPath);
QDir dirMail(subMailPath);
const QStringList subDirMail = dirMail.entryList(QDir::AllDirs|QDir::NoDotAndDotDot,QDir::Name);
bool foundFilterFile = false;
Q_FOREACH ( const QString& file, subDirMail ) {
const QString filterFile(subMailPath +QLatin1Char('/')+ file + QLatin1String("/msgFilterRules.dat"));
if (QFile(filterFile).exists()) {
foundFilterFile = true;
const bool added = addFilters( filterFile, MailCommon::FilterImporterExporter::ThunderBirdFilter );
if (!filtersAdded && added) {
filtersAdded = true;
}
}
}
if (!foundFilterFile)
return true;
}
return filtersAdded;
}
AbstractImporter::TypeSupportedOptions ThunderbirdImportData::supportedOption()
{
TypeSupportedOptions options;
options |=AbstractImporter::Mails;
options |=AbstractImporter::Filters;
options |=AbstractImporter::Settings;
options |=AbstractImporter::AddressBooks;
return options;
}