463 lines
18 KiB
Diff
463 lines
18 KiB
Diff
|
diff -Nru kdepim-runtime-4.13.0.orig/migration/knotes/knotesmigrator.cpp kdepim-runtime-4.13.0/migration/knotes/knotesmigrator.cpp
|
||
|
--- kdepim-runtime-4.13.0.orig/migration/knotes/knotesmigrator.cpp 2014-04-08 10:37:03.000000000 +0000
|
||
|
+++ kdepim-runtime-4.13.0/migration/knotes/knotesmigrator.cpp 2014-04-28 10:03:22.727567818 +0000
|
||
|
@@ -39,6 +39,7 @@
|
||
|
#include <KMime/Message>
|
||
|
|
||
|
#include <KDebug>
|
||
|
+#include <KStandardDirs>
|
||
|
#include "maildirsettings.h"
|
||
|
#include <krandom.h>
|
||
|
|
||
|
@@ -46,53 +47,76 @@
|
||
|
using namespace Akonadi;
|
||
|
|
||
|
KNotesMigrator::KNotesMigrator() :
|
||
|
- KResMigrator<KRES::Resource>( QLatin1String("notes"), QString() ), m_notesResource( 0 )
|
||
|
+ KMigratorBase(), mIndexResource(-1), m_notesResource( 0 )
|
||
|
{
|
||
|
Akonadi::AttributeFactory::registerAttribute<NoteLockAttribute>();
|
||
|
Akonadi::AttributeFactory::registerAttribute<NoteAlarmAttribute>();
|
||
|
Akonadi::AttributeFactory::registerAttribute<NoteDisplayAttribute>();
|
||
|
Akonadi::AttributeFactory::registerAttribute<ShowFolderNotesAttribute>();
|
||
|
+ const QString kresCfgFile = KStandardDirs::locateLocal( "config", QLatin1String( "kresources/notes/stdrc" ) );
|
||
|
+ mConfig = new KConfig( kresCfgFile );
|
||
|
+ const KConfigGroup generalGroup( mConfig, QLatin1String( "General" ) );
|
||
|
+ mUnknownTypeResources = generalGroup.readEntry( QLatin1String( "ResourceKeys" ), QStringList() );
|
||
|
+ m_notesResource = new KCal::CalendarLocal( QString() );
|
||
|
}
|
||
|
|
||
|
KNotesMigrator::~KNotesMigrator()
|
||
|
{
|
||
|
delete m_notesResource;
|
||
|
+ delete mConfig;
|
||
|
+}
|
||
|
+
|
||
|
+void KNotesMigrator::migrate()
|
||
|
+{
|
||
|
+ emit message( Info, i18n( "Beginning KNotes migration..." ) );
|
||
|
+ migrateNext();
|
||
|
}
|
||
|
|
||
|
-bool KNotesMigrator::migrateResource( KRES::Resource* res)
|
||
|
+void KNotesMigrator::migrateNext()
|
||
|
{
|
||
|
- if ( res->type() == QLatin1String("file") )
|
||
|
+ ++mIndexResource;
|
||
|
+
|
||
|
+ if (mUnknownTypeResources.isEmpty() || mIndexResource >= mUnknownTypeResources.count()) {
|
||
|
+ emit message( Info, i18n( "KNotes migration finished" ) );
|
||
|
+ deleteLater();
|
||
|
+ return;
|
||
|
+ }
|
||
|
+
|
||
|
+ const KConfigGroup kresCfgGroup( mConfig, QString::fromLatin1( "Resource_%1" ).arg( mUnknownTypeResources.at(mIndexResource) ) );
|
||
|
+ const QString resourceType = kresCfgGroup.readEntry( QLatin1String( "ResourceType" ), QString() );
|
||
|
+ if (resourceType == QLatin1String("file")) {
|
||
|
createAgentInstance( QLatin1String("akonadi_akonotes_resource"), this, SLOT(notesResourceCreated(KJob*)) );
|
||
|
- else
|
||
|
- return false;
|
||
|
- return true;
|
||
|
+ } else {
|
||
|
+ migrateNext();
|
||
|
+ }
|
||
|
}
|
||
|
|
||
|
void KNotesMigrator::notesResourceCreated(KJob * job)
|
||
|
{
|
||
|
if ( job->error() ) {
|
||
|
migrationFailed( i18n( "Failed to create resource: %1", job->errorText() ) );
|
||
|
+ migrateNext();
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
- KRES::Resource *res = currentResource();
|
||
|
+ const KConfigGroup kresCfgGroup( mConfig, QString::fromLatin1( "Resource_%1" ).arg( mUnknownTypeResources.at(mIndexResource) ) );
|
||
|
+
|
||
|
m_agentInstance = static_cast<AgentInstanceCreateJob*>( job )->instance();
|
||
|
- const KConfigGroup kresCfg = kresConfig( res );
|
||
|
- m_agentInstance.setName( kresCfg.readEntry( "ResourceName", "Migrated Notes" ) );
|
||
|
+ m_agentInstance.setName( kresCfgGroup.readEntry( "ResourceName", "Migrated Notes" ) );
|
||
|
|
||
|
- QString resourcePath = kresCfg.readEntry( "NotesURL" );
|
||
|
+ const QString resourcePath = kresCfgGroup.readEntry( "NotesURL" );
|
||
|
KUrl url( resourcePath );
|
||
|
|
||
|
if ( !QFile::exists( url.toLocalFile() ) ) {
|
||
|
- migrationCompleted( m_agentInstance );
|
||
|
+ migrateNext();
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
- m_notesResource = new KCal::CalendarLocal( QString() );
|
||
|
|
||
|
bool success = m_notesResource->load( url.toLocalFile() );
|
||
|
if ( !success ) {
|
||
|
migrationFailed( i18n( "Failed to open file for reading: %1" , resourcePath ) );
|
||
|
+ migrateNext();
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
@@ -103,9 +127,11 @@
|
||
|
if ( !iface->isValid() ) {
|
||
|
migrationFailed( i18n( "Failed to obtain D-Bus interface for remote configuration." ), m_agentInstance );
|
||
|
delete iface;
|
||
|
+ migrateNext();
|
||
|
return;
|
||
|
}
|
||
|
- iface->setReadOnly( res->readOnly() );
|
||
|
+ bool isReadOnly = kresCfgGroup.readEntry("ResourceIsReadOnly", false);
|
||
|
+ iface->setReadOnly( isReadOnly );
|
||
|
|
||
|
QDBusPendingReply<void> response = iface->setPath( KGlobal::dirs()->localxdgdatadir() + QLatin1String("/notes/") + KRandom::randomString( 10 ) );
|
||
|
|
||
|
@@ -149,6 +175,7 @@
|
||
|
}
|
||
|
}
|
||
|
emit message( Error, i18n( "Could not find root collection for resource \"%1\"" ,m_agentInstance.identifier() ) );
|
||
|
+ migrateNext();
|
||
|
}
|
||
|
|
||
|
void KNotesMigrator::startMigration()
|
||
|
@@ -236,5 +263,12 @@
|
||
|
void KNotesMigrator::slotCollectionModify(KJob* job)
|
||
|
{
|
||
|
Q_UNUSED( job );
|
||
|
- migrationCompleted( m_agentInstance );
|
||
|
+ migrateNext();
|
||
|
}
|
||
|
+
|
||
|
+void KNotesMigrator::migrationFailed( const QString& errorMsg, const Akonadi::AgentInstance& instance )
|
||
|
+{
|
||
|
+ Q_UNUSED( instance )
|
||
|
+ emit message( Error, i18n( "Migration failed: %1" ,errorMsg ) );
|
||
|
+}
|
||
|
+
|
||
|
diff -Nru kdepim-runtime-4.13.0.orig/migration/knotes/knotesmigrator.cpp.orig kdepim-runtime-4.13.0/migration/knotes/knotesmigrator.cpp.orig
|
||
|
--- kdepim-runtime-4.13.0.orig/migration/knotes/knotesmigrator.cpp.orig 1970-01-01 00:00:00.000000000 +0000
|
||
|
+++ kdepim-runtime-4.13.0/migration/knotes/knotesmigrator.cpp.orig 2014-04-08 10:37:03.000000000 +0000
|
||
|
@@ -0,0 +1,240 @@
|
||
|
+/*
|
||
|
+ Copyright (c) 2008 Volker Krause <vkrause@kde.org>
|
||
|
+ Copyright (c) 2013 Laurent Montel <montel@kde.org>
|
||
|
+
|
||
|
+ This library is free software; you can redistribute it and/or modify it
|
||
|
+ under the terms of the GNU Library General Public License as published by
|
||
|
+ the Free Software Foundation; either version 2 of the License, or (at your
|
||
|
+ option) any later version.
|
||
|
+
|
||
|
+ This library 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 Library General Public
|
||
|
+ License for more details.
|
||
|
+
|
||
|
+ You should have received a copy of the GNU Library General Public License
|
||
|
+ along with this library; see the file COPYING.LIB. If not, write to the
|
||
|
+ Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
|
||
|
+ 02110-1301, USA.
|
||
|
+*/
|
||
|
+
|
||
|
+#include "knotesmigrator.h"
|
||
|
+#include "notelockattribute.h"
|
||
|
+#include "notealarmattribute.h"
|
||
|
+#include "notedisplayattribute.h"
|
||
|
+#include "showfoldernotesattribute.h"
|
||
|
+#include "knotesmigratorconfig.h"
|
||
|
+#include "knoteconfig.h"
|
||
|
+
|
||
|
+#include <akonadi/agentinstance.h>
|
||
|
+#include <akonadi/agentinstancecreatejob.h>
|
||
|
+#include <akonadi/agentmanager.h>
|
||
|
+#include <akonadi/agenttype.h>
|
||
|
+#include <akonadi/resourcesynchronizationjob.h>
|
||
|
+#include <akonadi/collectionfetchjob.h>
|
||
|
+#include <Akonadi/AttributeFactory>
|
||
|
+#include <Akonadi/CollectionModifyJob>
|
||
|
+#include <akonadi/item.h>
|
||
|
+#include "entitytreecreatejob.h"
|
||
|
+#include <KMime/Message>
|
||
|
+
|
||
|
+#include <KDebug>
|
||
|
+#include "maildirsettings.h"
|
||
|
+#include <krandom.h>
|
||
|
+
|
||
|
+
|
||
|
+using namespace Akonadi;
|
||
|
+
|
||
|
+KNotesMigrator::KNotesMigrator() :
|
||
|
+ KResMigrator<KRES::Resource>( QLatin1String("notes"), QString() ), m_notesResource( 0 )
|
||
|
+{
|
||
|
+ Akonadi::AttributeFactory::registerAttribute<NoteLockAttribute>();
|
||
|
+ Akonadi::AttributeFactory::registerAttribute<NoteAlarmAttribute>();
|
||
|
+ Akonadi::AttributeFactory::registerAttribute<NoteDisplayAttribute>();
|
||
|
+ Akonadi::AttributeFactory::registerAttribute<ShowFolderNotesAttribute>();
|
||
|
+}
|
||
|
+
|
||
|
+KNotesMigrator::~KNotesMigrator()
|
||
|
+{
|
||
|
+ delete m_notesResource;
|
||
|
+}
|
||
|
+
|
||
|
+bool KNotesMigrator::migrateResource( KRES::Resource* res)
|
||
|
+{
|
||
|
+ if ( res->type() == QLatin1String("file") )
|
||
|
+ createAgentInstance( QLatin1String("akonadi_akonotes_resource"), this, SLOT(notesResourceCreated(KJob*)) );
|
||
|
+ else
|
||
|
+ return false;
|
||
|
+ return true;
|
||
|
+}
|
||
|
+
|
||
|
+void KNotesMigrator::notesResourceCreated(KJob * job)
|
||
|
+{
|
||
|
+ if ( job->error() ) {
|
||
|
+ migrationFailed( i18n( "Failed to create resource: %1", job->errorText() ) );
|
||
|
+ return;
|
||
|
+ }
|
||
|
+
|
||
|
+ KRES::Resource *res = currentResource();
|
||
|
+ m_agentInstance = static_cast<AgentInstanceCreateJob*>( job )->instance();
|
||
|
+ const KConfigGroup kresCfg = kresConfig( res );
|
||
|
+ m_agentInstance.setName( kresCfg.readEntry( "ResourceName", "Migrated Notes" ) );
|
||
|
+
|
||
|
+ QString resourcePath = kresCfg.readEntry( "NotesURL" );
|
||
|
+ KUrl url( resourcePath );
|
||
|
+
|
||
|
+ if ( !QFile::exists( url.toLocalFile() ) ) {
|
||
|
+ migrationCompleted( m_agentInstance );
|
||
|
+ return;
|
||
|
+ }
|
||
|
+
|
||
|
+ m_notesResource = new KCal::CalendarLocal( QString() );
|
||
|
+
|
||
|
+ bool success = m_notesResource->load( url.toLocalFile() );
|
||
|
+ if ( !success ) {
|
||
|
+ migrationFailed( i18n( "Failed to open file for reading: %1" , resourcePath ) );
|
||
|
+ return;
|
||
|
+ }
|
||
|
+
|
||
|
+ OrgKdeAkonadiMaildirSettingsInterface *iface = new OrgKdeAkonadiMaildirSettingsInterface(
|
||
|
+ QLatin1String("org.freedesktop.Akonadi.Resource.") + m_agentInstance.identifier(),
|
||
|
+ QLatin1String("/Settings"), QDBusConnection::sessionBus(), this );
|
||
|
+
|
||
|
+ if ( !iface->isValid() ) {
|
||
|
+ migrationFailed( i18n( "Failed to obtain D-Bus interface for remote configuration." ), m_agentInstance );
|
||
|
+ delete iface;
|
||
|
+ return;
|
||
|
+ }
|
||
|
+ iface->setReadOnly( res->readOnly() );
|
||
|
+
|
||
|
+ QDBusPendingReply<void> response = iface->setPath( KGlobal::dirs()->localxdgdatadir() + QLatin1String("/notes/") + KRandom::randomString( 10 ) );
|
||
|
+
|
||
|
+ // make sure the config is saved
|
||
|
+ iface->writeConfig();
|
||
|
+
|
||
|
+ m_agentInstance.reconfigure();
|
||
|
+
|
||
|
+ ResourceSynchronizationJob *syncJob = new ResourceSynchronizationJob( m_agentInstance, this );
|
||
|
+ connect( syncJob, SIGNAL(result(KJob*)), SLOT(syncDone(KJob*)));
|
||
|
+ syncJob->start();
|
||
|
+}
|
||
|
+
|
||
|
+void KNotesMigrator::syncDone(KJob *job)
|
||
|
+{
|
||
|
+ Q_UNUSED( job );
|
||
|
+ emit message( Info, i18n( "Instance \"%1\" synchronized" , m_agentInstance.identifier() ) );
|
||
|
+ qDebug()<<" m_agentInstance.identifier() :"<<m_agentInstance.identifier();
|
||
|
+
|
||
|
+ CollectionFetchJob *collectionFetchJob = new CollectionFetchJob( Collection::root(), CollectionFetchJob::FirstLevel, this );
|
||
|
+ connect( collectionFetchJob, SIGNAL(collectionsReceived(Akonadi::Collection::List)), SLOT(rootCollectionsRecieved(Akonadi::Collection::List)) );
|
||
|
+ connect( collectionFetchJob, SIGNAL(result(KJob*)), SLOT(rootFetchFinished(KJob*)) );
|
||
|
+}
|
||
|
+
|
||
|
+void KNotesMigrator::rootFetchFinished( KJob *job )
|
||
|
+{
|
||
|
+ emit message( Info, i18n( "Root fetch finished" ) );
|
||
|
+ if ( job->error() ) {
|
||
|
+ emit message( Error, i18nc( "A job to fetch akonadi resources failed. %1 is the error string.", "Fetching resources failed: %1" , job->errorString() ) );
|
||
|
+ }
|
||
|
+}
|
||
|
+
|
||
|
+void KNotesMigrator::rootCollectionsRecieved( const Akonadi::Collection::List &list )
|
||
|
+{
|
||
|
+ emit message( Info, i18n( "Received root collections" ) );
|
||
|
+ foreach ( const Collection &collection, list ) {
|
||
|
+ if ( collection.resource() == m_agentInstance.identifier() ) {
|
||
|
+ m_resourceCollection = collection;
|
||
|
+ startMigration();
|
||
|
+ return;
|
||
|
+ }
|
||
|
+ }
|
||
|
+ emit message( Error, i18n( "Could not find root collection for resource \"%1\"" ,m_agentInstance.identifier() ) );
|
||
|
+}
|
||
|
+
|
||
|
+void KNotesMigrator::startMigration()
|
||
|
+{
|
||
|
+ KCal::Journal::List oldNotesList = m_notesResource->rawJournals();
|
||
|
+ Akonadi::Item::List newItemsList;
|
||
|
+ KConfig config(QLatin1String("globalnotesettings"));
|
||
|
+ KConfigGroup grp = config.group(QLatin1String("SelectNoteFolder"));
|
||
|
+ grp.writeEntry("DefaultFolder", m_resourceCollection.id());
|
||
|
+ config.sync();
|
||
|
+
|
||
|
+ emit message( Info, i18np( "Starting migration of %1 note", "Starting migration of %1 notes", oldNotesList.size() ) );
|
||
|
+
|
||
|
+ foreach ( KCal::Journal *journal, oldNotesList ) {
|
||
|
+ Item newItem;
|
||
|
+ newItem.setMimeType( QLatin1String("text/x-vnd.akonadi.note") );
|
||
|
+ newItem.setParentCollection( m_resourceCollection );
|
||
|
+ KMime::Message::Ptr note( new KMime::Message() );
|
||
|
+
|
||
|
+ QByteArray encoding( "utf-8" );
|
||
|
+ note->subject( true )->fromUnicodeString( journal->summary(), encoding );
|
||
|
+ note->mainBodyPart()->fromUnicodeString( journal->description() );
|
||
|
+ note->contentType( true )->setMimeType( journal->descriptionIsRich() ? "text/html" : "text/plain" );
|
||
|
+
|
||
|
+ note->assemble();
|
||
|
+ KNotesMigratorConfig *config = new KNotesMigratorConfig(journal);
|
||
|
+ if (config) {
|
||
|
+
|
||
|
+ if (config->readOnly()) {
|
||
|
+ newItem.addAttribute( new NoteLockAttribute() );
|
||
|
+ }
|
||
|
+
|
||
|
+ //Position/Editor/Color etc.
|
||
|
+ NoteDisplayAttribute *displayAttribute = new NoteDisplayAttribute();
|
||
|
+ displayAttribute->setBackgroundColor(config->noteConfig()->bgColor());
|
||
|
+ displayAttribute->setForegroundColor(config->noteConfig()->fgColor());
|
||
|
+ displayAttribute->setSize(QSize(config->noteConfig()->width(), config->noteConfig()->height()));
|
||
|
+ displayAttribute->setRememberDesktop(config->noteConfig()->rememberDesktop());
|
||
|
+ displayAttribute->setTabSize(config->noteConfig()->tabSize());
|
||
|
+ displayAttribute->setFont(config->noteConfig()->font());
|
||
|
+ displayAttribute->setTitleFont(config->noteConfig()->titleFont());
|
||
|
+ displayAttribute->setDesktop(config->noteConfig()->desktop());
|
||
|
+ displayAttribute->setIsHidden(config->noteConfig()->hideNote());
|
||
|
+ displayAttribute->setPosition(config->noteConfig()->position());
|
||
|
+ displayAttribute->setShowInTaskbar(config->noteConfig()->showInTaskbar());
|
||
|
+ displayAttribute->setKeepAbove(config->noteConfig()->keepAbove());
|
||
|
+ displayAttribute->setKeepBelow(config->noteConfig()->keepBelow());
|
||
|
+ displayAttribute->setAutoIndent(config->noteConfig()->autoIndent());
|
||
|
+ newItem.addAttribute( displayAttribute );
|
||
|
+ delete config;
|
||
|
+ }
|
||
|
+
|
||
|
+ //Alarm.
|
||
|
+ //In note we have an unique alarm.
|
||
|
+ if (!journal->alarms().isEmpty()) {
|
||
|
+ KCal::Alarm *alarm = journal->alarms().first();
|
||
|
+ if (alarm->hasTime()) {
|
||
|
+ NoteAlarmAttribute *alarmAttribute = new NoteAlarmAttribute;
|
||
|
+ alarmAttribute->setDateTime(alarm->time());
|
||
|
+ newItem.addAttribute( alarmAttribute );
|
||
|
+ }
|
||
|
+ }
|
||
|
+ newItem.setPayload( note );
|
||
|
+ newItemsList.append( newItem );
|
||
|
+ }
|
||
|
+
|
||
|
+ EntityTreeCreateJob *createJob = new EntityTreeCreateJob( QList<Akonadi::Collection::List>(), newItemsList,this );
|
||
|
+ connect(createJob, SIGNAL(result(KJob*)), SLOT(newResourceFilled(KJob*)));
|
||
|
+}
|
||
|
+
|
||
|
+void KNotesMigrator::newResourceFilled(KJob* job)
|
||
|
+{
|
||
|
+ Q_UNUSED( job );
|
||
|
+ showDefaultCollection();
|
||
|
+}
|
||
|
+
|
||
|
+void KNotesMigrator::showDefaultCollection()
|
||
|
+{
|
||
|
+ ShowFolderNotesAttribute *attribute = m_resourceCollection.attribute<ShowFolderNotesAttribute>( Akonadi::Collection::AddIfMissing );
|
||
|
+ Q_UNUSED(attribute);
|
||
|
+ Akonadi::CollectionModifyJob *job = new Akonadi::CollectionModifyJob( m_resourceCollection );
|
||
|
+ connect(job, SIGNAL(result(KJob*)), SLOT(slotCollectionModify(KJob*)));
|
||
|
+}
|
||
|
+
|
||
|
+void KNotesMigrator::slotCollectionModify(KJob* job)
|
||
|
+{
|
||
|
+ Q_UNUSED( job );
|
||
|
+ migrationCompleted( m_agentInstance );
|
||
|
+}
|
||
|
diff -Nru kdepim-runtime-4.13.0.orig/migration/knotes/knotesmigrator.cpp.rej kdepim-runtime-4.13.0/migration/knotes/knotesmigrator.cpp.rej
|
||
|
--- kdepim-runtime-4.13.0.orig/migration/knotes/knotesmigrator.cpp.rej 1970-01-01 00:00:00.000000000 +0000
|
||
|
+++ kdepim-runtime-4.13.0/migration/knotes/knotesmigrator.cpp.rej 2014-04-28 10:02:38.513018943 +0000
|
||
|
@@ -0,0 +1,19 @@
|
||
|
+--- migration/knotes/knotesmigrator.cpp
|
||
|
++++ migration/knotes/knotesmigrator.cpp
|
||
|
+@@ -290,6 +317,13 @@
|
||
|
+ void KNotesMigrator::slotCollectionModify(KJob* job)
|
||
|
+ {
|
||
|
+ Q_UNUSED( job );
|
||
|
+- migrationCompleted( m_agentInstance );
|
||
|
+-}
|
||
|
+-
|
||
|
++ migrateNext();
|
||
|
++}
|
||
|
++
|
||
|
++void KNotesMigrator::migrationFailed( const QString& errorMsg, const Akonadi::AgentInstance& instance )
|
||
|
++{
|
||
|
++ Q_UNUSED( instance )
|
||
|
++ emit message( Error, i18n( "Migration failed: %1" ,errorMsg ) );
|
||
|
++}
|
||
|
++
|
||
|
++
|
||
|
diff -Nru kdepim-runtime-4.13.0.orig/migration/knotes/knotesmigrator.h kdepim-runtime-4.13.0/migration/knotes/knotesmigrator.h
|
||
|
--- kdepim-runtime-4.13.0.orig/migration/knotes/knotesmigrator.h 2014-04-08 10:37:03.000000000 +0000
|
||
|
+++ kdepim-runtime-4.13.0/migration/knotes/knotesmigrator.h 2014-04-28 10:02:38.514018932 +0000
|
||
|
@@ -22,8 +22,7 @@
|
||
|
#ifndef KNOTESMIGRATOR_H
|
||
|
#define KNOTESMIGRATOR_H
|
||
|
|
||
|
-#include "kresmigrator.h"
|
||
|
-
|
||
|
+#include "kmigratorbase.h"
|
||
|
#include <kcal/resourcecalendar.h>
|
||
|
#include <kcal/calendarlocal.h>
|
||
|
#include <akonadi/collection.h>
|
||
|
@@ -37,13 +36,17 @@
|
||
|
/**
|
||
|
* Migrate KNotes resources to Akonadi
|
||
|
*/
|
||
|
-class KNotesMigrator : public KResMigrator<KRES::Resource>
|
||
|
+class KNotesMigrator : public KMigratorBase
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
KNotesMigrator();
|
||
|
~KNotesMigrator();
|
||
|
- bool migrateResource( KRES::Resource *res );
|
||
|
+
|
||
|
+ /* reimp */ void migrate();
|
||
|
+ /* reimp */ void migrateNext();
|
||
|
+protected:
|
||
|
+ /* reimp */ void migrationFailed( const QString& errorMsg, const Akonadi::AgentInstance& instance = Akonadi::AgentInstance() );
|
||
|
|
||
|
private slots:
|
||
|
void notesResourceCreated( KJob* job );
|
||
|
@@ -58,10 +61,13 @@
|
||
|
void showDefaultCollection();
|
||
|
|
||
|
private:
|
||
|
+ int mIndexResource;
|
||
|
+ QStringList mUnknownTypeResources;
|
||
|
Akonadi::Collection m_resourceCollection;
|
||
|
- AgentInstance m_agentInstance;
|
||
|
+ Akonadi::AgentInstance m_agentInstance;
|
||
|
|
||
|
KCal::CalendarLocal *m_notesResource;
|
||
|
+ KConfig *mConfig;
|
||
|
};
|
||
|
|
||
|
#endif
|
||
|
diff -Nru kdepim-runtime-4.13.0.orig/migration/knotes/main.cpp kdepim-runtime-4.13.0/migration/knotes/main.cpp
|
||
|
--- kdepim-runtime-4.13.0.orig/migration/knotes/main.cpp 2014-04-08 10:37:03.000000000 +0000
|
||
|
+++ kdepim-runtime-4.13.0/migration/knotes/main.cpp 2014-04-28 10:02:38.514018932 +0000
|
||
|
@@ -64,8 +64,6 @@
|
||
|
args->clear();
|
||
|
|
||
|
KNotesMigrator *migrator = new KNotesMigrator;
|
||
|
- migrator->setBridgingOnly(false);
|
||
|
- migrator->setOmitClientBridge(false);
|
||
|
if ( infoDialog && migrator ) {
|
||
|
infoDialog->migratorAdded();
|
||
|
QObject::connect( migrator, SIGNAL(message(KMigratorBase::MessageType,QString)),
|