mirror of
https://bitbucket.org/smil3y/kde-playground.git
synced 2025-02-23 18:32:51 +00:00
145 lines
5.6 KiB
C++
145 lines
5.6 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 "exportaddressbookjob.h"
|
|
#include "messageviewer/utils/kcursorsaver.h"
|
|
|
|
#include <Akonadi/AgentManager>
|
|
|
|
#include <KLocalizedString>
|
|
#include <KStandardDirs>
|
|
#include <KTemporaryFile>
|
|
#include <KConfigGroup>
|
|
#include <KZip>
|
|
|
|
#include <QWidget>
|
|
#include <QDir>
|
|
|
|
|
|
ExportAddressbookJob::ExportAddressbookJob(QWidget *parent, Utils::StoredTypes typeSelected, ArchiveStorage *archiveStorage,int numberOfStep)
|
|
: AbstractImportExportJob(parent, archiveStorage, typeSelected, numberOfStep)
|
|
{
|
|
}
|
|
|
|
ExportAddressbookJob::~ExportAddressbookJob()
|
|
{
|
|
|
|
}
|
|
|
|
void ExportAddressbookJob::start()
|
|
{
|
|
Q_EMIT title(i18n("Start export KAddressBook settings..."));
|
|
mArchiveDirectory = archive()->directory();
|
|
if (mTypeSelected & Utils::Resources) {
|
|
backupResources();
|
|
increaseProgressDialog();
|
|
if (wasCanceled()) {
|
|
Q_EMIT jobFinished();
|
|
return;
|
|
}
|
|
}
|
|
if (mTypeSelected & Utils::Config) {
|
|
backupConfig();
|
|
increaseProgressDialog();
|
|
if (wasCanceled()) {
|
|
Q_EMIT jobFinished();
|
|
return;
|
|
}
|
|
}
|
|
Q_EMIT jobFinished();
|
|
}
|
|
|
|
void ExportAddressbookJob::backupResources()
|
|
{
|
|
showInfo(i18n("Backing up resources..."));
|
|
MessageViewer::KCursorSaver busy( MessageViewer::KBusyPtr::busy() );
|
|
Akonadi::AgentManager *manager = Akonadi::AgentManager::self();
|
|
const Akonadi::AgentInstance::List list = manager->instances();
|
|
foreach( const Akonadi::AgentInstance &agent, list ) {
|
|
const QString identifier = agent.identifier();
|
|
if (identifier.contains(QLatin1String("akonadi_vcarddir_resource_")) || identifier.contains(QLatin1String("akonadi_contacts_resource_")) ) {
|
|
const QString archivePath = Utils::addressbookPath() + identifier + QDir::separator();
|
|
|
|
KUrl url = Utils::resourcePath(agent, QLatin1String("$HOME/.local/share/contacts/"));
|
|
if (!mAgentPaths.contains(url.path())) {
|
|
mAgentPaths << url.path();
|
|
if (!url.isEmpty()) {
|
|
const bool fileAdded = backupFullDirectory(url, archivePath, QLatin1String("addressbook.zip"));
|
|
if (fileAdded) {
|
|
const QString errorStr = Utils::storeResources(archive(), identifier, archivePath);
|
|
if (!errorStr.isEmpty())
|
|
Q_EMIT error(errorStr);
|
|
url = Utils::akonadiAgentConfigPath(identifier);
|
|
if (!url.isEmpty()) {
|
|
const QString filename = url.fileName();
|
|
const bool fileAdded = archive()->addLocalFile(url.path(), archivePath + filename);
|
|
if (fileAdded)
|
|
Q_EMIT info(i18n("\"%1\" was backuped.",filename));
|
|
else
|
|
Q_EMIT error(i18n("\"%1\" file cannot be added to backup file.",filename));
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} else if (identifier.contains(QLatin1String("akonadi_vcard_resource_"))) {
|
|
backupResourceFile(agent, Utils::addressbookPath());
|
|
}
|
|
}
|
|
Q_EMIT info(i18n("Resources backup done."));
|
|
}
|
|
|
|
void ExportAddressbookJob::backupConfig()
|
|
{
|
|
showInfo(i18n("Backing up config..."));
|
|
MessageViewer::KCursorSaver busy( MessageViewer::KBusyPtr::busy() );
|
|
|
|
const QString kaddressbookStr(QLatin1String("kaddressbookrc"));
|
|
const QString kaddressbookrc = KStandardDirs::locateLocal( "config", kaddressbookStr);
|
|
if (QFile(kaddressbookrc).exists()) {
|
|
KSharedConfigPtr kaddressbook = KSharedConfig::openConfig(kaddressbookrc);
|
|
|
|
KTemporaryFile tmp;
|
|
tmp.open();
|
|
|
|
KConfig *kaddressBookConfig = kaddressbook->copyTo( tmp.fileName() );
|
|
|
|
const QString collectionViewCheckStateStr(QLatin1String("CollectionViewCheckState"));
|
|
if (kaddressBookConfig->hasGroup(collectionViewCheckStateStr)) {
|
|
KConfigGroup group = kaddressBookConfig->group(collectionViewCheckStateStr);
|
|
const QString selectionKey(QLatin1String("Selection"));
|
|
Utils::convertCollectionListToRealPath(group, selectionKey);
|
|
}
|
|
|
|
const QString collectionViewStateStr(QLatin1String("CollectionViewState"));
|
|
if (kaddressBookConfig->hasGroup(collectionViewStateStr)) {
|
|
KConfigGroup group = kaddressBookConfig->group(collectionViewStateStr);
|
|
QString currentKey(QLatin1String("Current"));
|
|
Utils::convertCollectionToRealPath(group, currentKey);
|
|
|
|
currentKey = QLatin1String("Expansion");
|
|
Utils::convertCollectionToRealPath(group, currentKey);
|
|
|
|
currentKey = QLatin1String("Selection");
|
|
Utils::convertCollectionToRealPath(group, currentKey);
|
|
}
|
|
kaddressBookConfig->sync();
|
|
backupFile(tmp.fileName(), Utils::configsPath(), kaddressbookStr);
|
|
delete kaddressBookConfig;
|
|
}
|
|
Q_EMIT info(i18n("Config backup done."));
|
|
}
|
|
|