You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
150 lines
4.8 KiB
150 lines
4.8 KiB
/* |
|
Copyright (C) 2014-2016 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 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; see the file COPYING. If not, write to |
|
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
|
Boston, MA 02110-1301, USA. |
|
*/ |
|
|
|
#include "followupreminderagent.h" |
|
#include "followupremindermanager.h" |
|
#include "FollowupReminder/FollowUpReminderUtil" |
|
#include "followupreminderadaptor.h" |
|
#include "followupreminderinfodialog.h" |
|
#include "followupreminderagentsettings.h" |
|
#include <KWindowSystem> |
|
#include <KMime/Message> |
|
|
|
#include <AkonadiCore/ChangeRecorder> |
|
#include <AkonadiCore/ItemFetchScope> |
|
#include <kdbusconnectionpool.h> |
|
|
|
#include <Kdelibs4ConfigMigrator> |
|
#include <AkonadiCore/Session> |
|
#include <AkonadiCore/CollectionFetchScope> |
|
|
|
#include <QPointer> |
|
#include "followupreminderagent_debug.h" |
|
#include <QTimer> |
|
|
|
FollowUpReminderAgent::FollowUpReminderAgent(const QString &id) |
|
: Akonadi::AgentBase(id) |
|
{ |
|
Kdelibs4ConfigMigrator migrate(QStringLiteral("followupreminderagent")); |
|
migrate.setConfigFiles(QStringList() << QStringLiteral("akonadi_followupreminder_agentrc") << QStringLiteral("akonadi_followupreminder_agent.notifyrc")); |
|
migrate.migrate(); |
|
|
|
new FollowUpReminderAgentAdaptor(this); |
|
KDBusConnectionPool::threadConnection().registerObject(QStringLiteral("/FollowUpReminder"), this, QDBusConnection::ExportAdaptors); |
|
KDBusConnectionPool::threadConnection().registerService(QStringLiteral("org.freedesktop.Akonadi.FollowUpReminder")); |
|
mManager = new FollowUpReminderManager(this); |
|
setNeedsNetwork(true); |
|
|
|
changeRecorder()->setMimeTypeMonitored(KMime::Message::mimeType()); |
|
changeRecorder()->itemFetchScope().setCacheOnly(true); |
|
changeRecorder()->itemFetchScope().setFetchModificationTime(false); |
|
changeRecorder()->fetchCollection(true); |
|
changeRecorder()->setChangeRecordingEnabled(false); |
|
changeRecorder()->ignoreSession(Akonadi::Session::defaultSession()); |
|
changeRecorder()->collectionFetchScope().setAncestorRetrieval(Akonadi::CollectionFetchScope::All); |
|
changeRecorder()->setCollectionMonitored(Akonadi::Collection::root(), true); |
|
|
|
if (FollowUpReminderAgentSettings::enabled()) { |
|
mManager->load(); |
|
} |
|
|
|
mTimer = new QTimer(this); |
|
connect(mTimer, &QTimer::timeout, this, &FollowUpReminderAgent::reload); |
|
//Reload all each 24hours |
|
mTimer->start(24 * 60 * 60 * 1000); |
|
} |
|
|
|
FollowUpReminderAgent::~FollowUpReminderAgent() |
|
{ |
|
} |
|
|
|
void FollowUpReminderAgent::setEnableAgent(bool enabled) |
|
{ |
|
if (FollowUpReminderAgentSettings::self()->enabled() == enabled) { |
|
return; |
|
} |
|
|
|
FollowUpReminderAgentSettings::self()->setEnabled(enabled); |
|
FollowUpReminderAgentSettings::self()->save(); |
|
if (enabled) { |
|
mManager->load(); |
|
mTimer->start(); |
|
} else { |
|
mTimer->stop(); |
|
} |
|
} |
|
|
|
bool FollowUpReminderAgent::enabledAgent() const |
|
{ |
|
return FollowUpReminderAgentSettings::self()->enabled(); |
|
} |
|
|
|
void FollowUpReminderAgent::showConfigureDialog(qlonglong windowId) |
|
{ |
|
QPointer<FollowUpReminderInfoDialog> dialog = new FollowUpReminderInfoDialog(); |
|
dialog->load(); |
|
if (windowId) { |
|
#ifndef Q_OS_WIN |
|
KWindowSystem::setMainWindow(dialog, windowId); |
|
#else |
|
KWindowSystem::setMainWindow(dialog, (HWND)windowId); |
|
#endif |
|
} |
|
if (dialog->exec()) { |
|
const QList<qint32> lstRemoveItem = dialog->listRemoveId(); |
|
if (FollowUpReminder::FollowUpReminderUtil::removeFollowupReminderInfo(FollowUpReminder::FollowUpReminderUtil::defaultConfig(), lstRemoveItem, true)) { |
|
mManager->load(); |
|
} |
|
} |
|
delete dialog; |
|
} |
|
|
|
void FollowUpReminderAgent::configure(WId windowId) |
|
{ |
|
showConfigureDialog((qulonglong)windowId); |
|
} |
|
|
|
void FollowUpReminderAgent::itemAdded(const Akonadi::Item &item, const Akonadi::Collection &collection) |
|
{ |
|
if (!enabledAgent()) { |
|
return; |
|
} |
|
|
|
if (item.mimeType() != KMime::Message::mimeType()) { |
|
qCDebug(FOLLOWUPREMINDERAGENT_LOG) << "FollowUpReminderAgent::itemAdded called for a non-message item!"; |
|
return; |
|
} |
|
mManager->checkFollowUp(item, collection); |
|
} |
|
|
|
void FollowUpReminderAgent::reload() |
|
{ |
|
if (enabledAgent()) { |
|
mManager->load(true); |
|
mTimer->start(); |
|
} |
|
} |
|
|
|
QString FollowUpReminderAgent::printDebugInfo() |
|
{ |
|
return mManager->printDebugInfo(); |
|
} |
|
|
|
AKONADI_AGENT_MAIN(FollowUpReminderAgent) |
|
|
|
|