kde-playground/kdepim/kalarm/functions.cpp

2466 lines
86 KiB
C++
Raw Normal View History

/*
* functions.cpp - miscellaneous functions
* Program: kalarm
* Copyright © 2001-2014 by David Jarvie <djarvie@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; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#include "kalarm.h" //krazy:exclude=includes (kalarm.h must be first)
#include "functions.h"
#include "functions_p.h"
#ifdef USE_AKONADI
#include "collectionmodel.h"
#include "collectionsearch.h"
#else
#include "alarmresources.h"
#include "eventlistmodel.h"
#endif
#include "alarmcalendar.h"
#include "alarmtime.h"
#include "autoqpointer.h"
#include "alarmlistview.h"
#include "editdlg.h"
#include "kalarmapp.h"
#include "kamail.h"
#include "mainwindow.h"
#include "messagebox.h"
#include "messagewin.h"
#include "preferences.h"
#include "shellprocess.h"
#include "templatelistview.h"
#include "templatemenuaction.h"
#include <kalarmcal/identities.h>
#include <kalarmcal/kaevent.h>
#ifdef USE_AKONADI
#include <kcalcore/event.h>
#include <kcalcore/icalformat.h>
#include <kcalcore/person.h>
#include <kcalcore/duration.h>
using namespace KCalCore;
#else
#include <kcal/event.h>
#include <kcal/icalformat.h>
#include <kcal/person.h>
#include <kcal/duration.h>
using namespace KCal;
#endif
#include <kpimidentities/identitymanager.h>
#include <kpimidentities/identity.h>
#include <kholidays/holidays.h>
#include <kconfiggroup.h>
#include <kaction.h>
#include <ktoggleaction.h>
#include <kactioncollection.h>
#include <kdbusservicestarter.h>
#include <kglobal.h>
#include <klocale.h>
#include <kstandarddirs.h>
#include <kauth.h>
#include <ksystemtimezone.h>
#include <kstandardguiitem.h>
#include <kstandardshortcut.h>
#include <kfiledialog.h>
#include <kicon.h>
#include <kio/netaccess.h>
#include <kfileitem.h>
#include <kdebug.h>
#include <ktoolinvocation.h>
#ifdef Q_WS_X11
#include <kwindowsystem.h>
#include <kxmessages.h>
#include <kstartupinfo.h>
#include <netwm.h>
#include <QX11Info>
#endif
#include <QDir>
#include <QRegExp>
#include <QDesktopWidget>
#include <QtDBus/QtDBus>
#include <QTimer>
#include <qglobal.h>
#ifdef USE_AKONADI
using namespace Akonadi;
#endif
namespace
{
bool refreshAlarmsQueued = false;
QDBusInterface* korgInterface = 0;
struct UpdateStatusData
{
KAlarm::UpdateResult status; // status code and KOrganizer error message if any
int warnErr;
int warnKOrg;
explicit UpdateStatusData(KAlarm::UpdateStatus s = KAlarm::UPDATE_OK) : status(s), warnErr(0), warnKOrg(0) {}
// Set an error status and increment to number of errors to warn about
void setError(KAlarm::UpdateStatus st, int errorCount = -1)
{
status.set(st);
if (errorCount < 0)
++warnErr;
else
warnErr = errorCount;
}
// Update the error status with a KOrganizer related status
void korgUpdate(KAlarm::UpdateResult result)
{
if (result.status != KAlarm::UPDATE_OK)
{
++warnKOrg;
if (result.status > status.status)
status = result;
}
}
};
const QLatin1String KMAIL_DBUS_SERVICE("org.kde.kmail");
//const QLatin1String KMAIL_DBUS_IFACE("org.kde.kmail.kmail");
//const QLatin1String KMAIL_DBUS_WINDOW_PATH("/kmail/kmail_mainwindow_1");
const QLatin1String KORG_DBUS_SERVICE("org.kde.korganizer");
const QLatin1String KORG_DBUS_IFACE("org.kde.korganizer.Korganizer");
// D-Bus object path of KOrganizer's notification interface
#define KORG_DBUS_PATH "/Korganizer"
#define KORG_DBUS_LOAD_PATH "/korganizer_PimApplication"
//const QLatin1String KORG_DBUS_WINDOW_PATH("/korganizer/MainWindow_1");
#ifdef USE_AKONADI
const QLatin1String KORG_MIME_TYPE("application/x-vnd.akonadi.calendar.event");
#endif
const QLatin1String KORGANIZER_UID("-korg");
const QLatin1String ALARM_OPTS_FILE("alarmopts");
const char* DONT_SHOW_ERRORS_GROUP = "DontShowErrors";
void editNewTemplate(EditAlarmDlg::Type, const KAEvent* preset, QWidget* parent);
void displayUpdateError(QWidget* parent, KAlarm::UpdateError, const UpdateStatusData&, bool showKOrgError = true);
KAlarm::UpdateResult sendToKOrganizer(const KAEvent&);
KAlarm::UpdateResult deleteFromKOrganizer(const QString& eventID);
KAlarm::UpdateResult runKOrganizer();
QString uidKOrganizer(const QString& eventID);
}
namespace KAlarm
{
Private* Private::mInstance = 0;
/******************************************************************************
* Display a main window with the specified event selected.
*/
#ifdef USE_AKONADI
MainWindow* displayMainWindowSelected(Akonadi::Item::Id eventId)
#else
MainWindow* displayMainWindowSelected(const QString& eventId)
#endif
{
MainWindow* win = MainWindow::firstWindow();
if (!win)
{
if (theApp()->checkCalendar()) // ensure calendar is open
{
win = MainWindow::create();
win->show();
}
}
else
{
// There is already a main window, so make it the active window
win->hide(); // in case it's on a different desktop
win->setWindowState(win->windowState() & ~Qt::WindowMinimized);
win->show();
win->raise();
win->activateWindow();
}
#ifdef USE_AKONADI
if (win && eventId >= 0)
win->selectEvent(eventId);
#else
if (win && !eventId.isEmpty())
win->selectEvent(eventId);
#endif
return win;
}
/******************************************************************************
* Create an "Alarms Enabled/Enable Alarms" action.
*/
KToggleAction* createAlarmEnableAction(QObject* parent)
{
KToggleAction* action = new KToggleAction(i18nc("@action", "Enable &Alarms"), parent);
action->setChecked(theApp()->alarmsEnabled());
QObject::connect(action, SIGNAL(toggled(bool)), theApp(), SLOT(setAlarmsEnabled(bool)));
// The following line ensures that all instances are kept in the same state
QObject::connect(theApp(), SIGNAL(alarmEnabledToggled(bool)), action, SLOT(setChecked(bool)));
return action;
}
/******************************************************************************
* Create a "Stop Play" action.
*/
KAction* createStopPlayAction(QObject* parent)
{
KAction* action = new KAction(KIcon(QLatin1String("media-playback-stop")), i18nc("@action", "Stop Play"), parent);
action->setEnabled(MessageWin::isAudioPlaying());
QObject::connect(action, SIGNAL(triggered(bool)), theApp(), SLOT(stopAudio()));
// The following line ensures that all instances are kept in the same state
QObject::connect(theApp(), SIGNAL(audioPlaying(bool)), action, SLOT(setEnabled(bool)));
return action;
}
/******************************************************************************
* Create a "Spread Windows" action.
*/
KToggleAction* createSpreadWindowsAction(QObject* parent)
{
KToggleAction* action = new KToggleAction(i18nc("@action", "Spread Windows"), parent);
QObject::connect(action, SIGNAL(triggered(bool)), theApp(), SLOT(spreadWindows(bool)));
// The following line ensures that all instances are kept in the same state
QObject::connect(theApp(), SIGNAL(spreadWindowsToggled(bool)), action, SLOT(setChecked(bool)));
return action;
}
/******************************************************************************
* Add a new active (non-archived) alarm.
* Save it in the calendar file and add it to every main window instance.
* Parameters: msgParent = parent widget for any calendar selection prompt or
* error message.
* event - is updated with the actual event ID.
*/
#ifdef USE_AKONADI
UpdateResult addEvent(KAEvent& event, Collection* calendar, QWidget* msgParent, int options, bool showKOrgErr)
#else
UpdateResult addEvent(KAEvent& event, AlarmResource* calendar, QWidget* msgParent, int options, bool showKOrgErr)
#endif
{
kDebug() << event.id();
bool cancelled = false;
UpdateStatusData status;
if (!theApp()->checkCalendar()) // ensure calendar is open
status.status = UPDATE_FAILED;
else
{
// Save the event details in the calendar file, and get the new event ID
AlarmCalendar* cal = AlarmCalendar::resources();
#ifdef USE_AKONADI
// Note that AlarmCalendar::addEvent() updates 'event'.
if (!cal->addEvent(event, msgParent, (options & USE_EVENT_ID), calendar, (options & NO_RESOURCE_PROMPT), &cancelled))
#else
KAEvent* newev = new KAEvent(event);
if (!cal->addEvent(newev, msgParent, (options & USE_EVENT_ID), calendar, (options & NO_RESOURCE_PROMPT), &cancelled))
#endif
{
#ifndef USE_AKONADI
delete newev;
#endif
status.status = UPDATE_FAILED;
}
else
{
#ifndef USE_AKONADI
event = *newev; // update event ID etc.
#endif
if (!cal->save())
status.status = SAVE_FAILED;
}
if (status.status == UPDATE_OK)
{
if ((options & ALLOW_KORG_UPDATE) && event.copyToKOrganizer())
{
UpdateResult st = sendToKOrganizer(event); // tell KOrganizer to show the event
status.korgUpdate(st);
}
#ifndef USE_AKONADI
// Update the window lists
EventListModel::alarms()->addEvent(newev);
#endif
}
}
if (status.status != UPDATE_OK && !cancelled && msgParent)
displayUpdateError(msgParent, ERR_ADD, status, showKOrgErr);
return status.status;
}
/******************************************************************************
* Add a list of new active (non-archived) alarms.
* Save them in the calendar file and add them to every main window instance.
* The events are updated with their actual event IDs.
*/
UpdateResult addEvents(QVector<KAEvent>& events, QWidget* msgParent, bool allowKOrgUpdate, bool showKOrgErr)
{
kDebug() << events.count();
if (events.isEmpty())
return UpdateResult(UPDATE_OK);
UpdateStatusData status;
#ifdef USE_AKONADI
Collection collection;
#else
AlarmResource* resource;
#endif
if (!theApp()->checkCalendar()) // ensure calendar is open
status.status = UPDATE_FAILED;
else
{
#ifdef USE_AKONADI
collection = CollectionControlModel::instance()->destination(CalEvent::ACTIVE, msgParent);
if (!collection.isValid())
#else
resource = AlarmResources::instance()->destination(CalEvent::ACTIVE, msgParent);
if (!resource)
#endif
{
kDebug() << "No calendar";
status.status = UPDATE_FAILED;
}
}
if (status.status == UPDATE_OK)
{
QString selectID;
AlarmCalendar* cal = AlarmCalendar::resources();
for (int i = 0, end = events.count(); i < end; ++i)
{
// Save the event details in the calendar file, and get the new event ID
#ifdef USE_AKONADI
if (!cal->addEvent(events[i], msgParent, false, &collection))
#else
KAEvent* newev = new KAEvent(events[i]);
if (!cal->addEvent(newev, msgParent, false, resource))
#endif
{
#ifndef USE_AKONADI
delete newev;
#endif
status.setError(UPDATE_ERROR);
continue;
}
#ifndef USE_AKONADI
events[i] = *newev; // update event ID etc.
#endif
if (allowKOrgUpdate && events[i].copyToKOrganizer())
{
UpdateResult st = sendToKOrganizer(events[i]); // tell KOrganizer to show the event
status.korgUpdate(st);
}
#ifndef USE_AKONADI
// Update the window lists, but not yet which item is selected
EventListModel::alarms()->addEvent(newev);
// selectID = newev->id();
#endif
}
if (status.warnErr == events.count())
status.status = UPDATE_FAILED;
else if (!cal->save())
status.setError(SAVE_FAILED, events.count()); // everything failed
}
if (status.status != UPDATE_OK && msgParent)
displayUpdateError(msgParent, ERR_ADD, status, showKOrgErr);
return status.status;
}
/******************************************************************************
* Save the event in the archived calendar and adjust every main window instance.
* The event's ID is changed to an archived ID if necessary.
*/
#ifdef USE_AKONADI
bool addArchivedEvent(KAEvent& event, Collection* collection)
#else
bool addArchivedEvent(KAEvent& event, AlarmResource* resource)
#endif
{
kDebug() << event.id();
QString oldid = event.id();
bool archiving = (event.category() == CalEvent::ACTIVE);
if (archiving && !Preferences::archivedKeepDays())
return false; // expired alarms aren't being kept
AlarmCalendar* cal = AlarmCalendar::resources();
#ifdef USE_AKONADI
KAEvent newevent(event);
newevent.setItemId(-1); // invalidate the Akonadi item ID since it's a new item
KAEvent* const newev = &newevent;
#else
KAEvent* newev = new KAEvent(event);
#endif
if (archiving)
{
newev->setCategory(CalEvent::ARCHIVED); // this changes the event ID
newev->setCreatedDateTime(KDateTime::currentUtcDateTime()); // time stamp to control purging
}
// Note that archived resources are automatically saved after changes are made
#ifdef USE_AKONADI
if (!cal->addEvent(newevent, 0, false, collection))
return false;
#else
if (!cal->addEvent(newev, 0, false, resource))
{
delete newev; // failed to add to calendar - leave event in its original state
return false;
}
#endif
event = *newev; // update event ID etc.
#ifndef USE_AKONADI
// Update window lists.
// Note: updateEvent() is not used here since that doesn't trigger refiltering
// of the alarm list, resulting in the archived event still remaining visible
// even if archived events are supposed to be hidden.
if (archiving)
EventListModel::alarms()->removeEvent(oldid);
EventListModel::alarms()->addEvent(newev);
#endif
return true;
}
/******************************************************************************
* Add a new template.
* Save it in the calendar file and add it to every template list view.
* 'event' is updated with the actual event ID.
* Parameters: promptParent = parent widget for any calendar selection prompt.
*/
#ifdef USE_AKONADI
UpdateResult addTemplate(KAEvent& event, Collection* collection, QWidget* msgParent)
#else
UpdateResult addTemplate(KAEvent& event, AlarmResource* resource, QWidget* msgParent)
#endif
{
kDebug() << event.id();
UpdateStatusData status;
// Add the template to the calendar file
AlarmCalendar* cal = AlarmCalendar::resources();
#ifdef USE_AKONADI
KAEvent newev(event);
if (!cal->addEvent(newev, msgParent, false, collection))
status.status = UPDATE_FAILED;
#else
KAEvent* newev = new KAEvent(event);
if (!cal->addEvent(newev, msgParent, false, resource))
{
delete newev;
status.status = UPDATE_FAILED;
}
#endif
else
{
#ifdef USE_AKONADI
event = newev; // update event ID etc.
#else
event = *newev; // update event ID etc.
#endif
if (!cal->save())
status.status = SAVE_FAILED;
else
{
#ifndef USE_AKONADI
// Update the window lists
EventListModel::templates()->addEvent(newev);
#endif
return UpdateResult(UPDATE_OK);
}
}
if (msgParent)
displayUpdateError(msgParent, ERR_TEMPLATE, status);
return status.status;
}
/******************************************************************************
* Modify an active (non-archived) alarm in the calendar file and in every main
* window instance.
* The new event must have a different event ID from the old one.
*/
UpdateResult modifyEvent(KAEvent& oldEvent, KAEvent& newEvent, QWidget* msgParent, bool showKOrgErr)
{
kDebug() << oldEvent.id();
UpdateStatusData status;
if (!newEvent.isValid())
{
deleteEvent(oldEvent, true);
status.status = UPDATE_FAILED;
}
else
{
#ifdef USE_AKONADI
EventId oldId(oldEvent);
#else
QString oldId = oldEvent.id();
#endif
if (oldEvent.copyToKOrganizer())
{
// Tell KOrganizer to delete its old event.
// But ignore errors, because the user could have manually
// deleted it since KAlarm asked KOrganizer to set it up.
#ifdef USE_AKONADI
deleteFromKOrganizer(oldId.eventId());
#else
deleteFromKOrganizer(oldId);
#endif
}
#ifdef USE_AKONADI
// Update the event in the calendar file, and get the new event ID
AlarmCalendar* cal = AlarmCalendar::resources();
if (!cal->modifyEvent(oldId, newEvent))
status.status = UPDATE_FAILED;
#else
// Delete from the window lists to prevent the event's invalid
// pointer being accessed.
EventListModel::alarms()->removeEvent(oldId);
// Update the event in the calendar file, and get the new event ID
KAEvent* newev = new KAEvent(newEvent);
AlarmCalendar* cal = AlarmCalendar::resources();
if (!cal->modifyEvent(oldId, newev))
{
delete newev;
status.status = UPDATE_FAILED;
}
#endif
else
{
#ifndef USE_AKONADI
newEvent = *newev;
#endif
if (!cal->save())
status.status = SAVE_FAILED;
if (status.status == UPDATE_OK)
{
if (newEvent.copyToKOrganizer())
{
UpdateResult st = sendToKOrganizer(newEvent); // tell KOrganizer to show the new event
status.korgUpdate(st);
}
// Remove "Don't show error messages again" for the old alarm
setDontShowErrors(oldId);
#ifndef USE_AKONADI
// Update the window lists
EventListModel::alarms()->addEvent(newev);
#endif
}
}
}
if (status.status != UPDATE_OK && msgParent)
displayUpdateError(msgParent, ERR_MODIFY, status, showKOrgErr);
return status.status;
}
/******************************************************************************
* Update an active (non-archived) alarm from the calendar file and from every
* main window instance.
* The new event will have the same event ID as the old one.
* The event is not updated in KOrganizer, since this function is called when an
* existing alarm is rescheduled (due to recurrence or deferral).
*/
UpdateResult updateEvent(KAEvent& event, QWidget* msgParent, bool archiveOnDelete)
{
kDebug() << event.id();
if (!event.isValid())
deleteEvent(event, archiveOnDelete);
else
{
// Update the event in the calendar file.
AlarmCalendar* cal = AlarmCalendar::resources();
#ifdef USE_AKONADI
cal->updateEvent(event);
#else
KAEvent* newEvent = cal->updateEvent(event);
#endif
if (!cal->save())
{
if (msgParent)
displayUpdateError(msgParent, ERR_ADD, UpdateStatusData(SAVE_FAILED));
return UpdateResult(SAVE_FAILED);
}
#ifndef USE_AKONADI
// Update the window lists
EventListModel::alarms()->updateEvent(newEvent);
#endif
}
return UpdateResult(UPDATE_OK);
}
/******************************************************************************
* Update a template in the calendar file and in every template list view.
* If 'selectionView' is non-null, the selection highlight is moved to the
* updated event in that listView instance.
*/
UpdateResult updateTemplate(KAEvent& event, QWidget* msgParent)
{
AlarmCalendar* cal = AlarmCalendar::resources();
KAEvent* newEvent = cal->updateEvent(event);
UpdateStatus status = UPDATE_OK;
if (!newEvent)
status = UPDATE_FAILED;
else if (!cal->save())
status = SAVE_FAILED;
if (status != UPDATE_OK)
{
if (msgParent)
displayUpdateError(msgParent, ERR_TEMPLATE, UpdateStatusData(SAVE_FAILED));
return UpdateResult(status);
}
#ifndef USE_AKONADI
EventListModel::templates()->updateEvent(newEvent);
#endif
return UpdateResult(UPDATE_OK);
}
/******************************************************************************
* Delete alarms from the calendar file and from every main window instance.
* If the events are archived, the events' IDs are changed to archived IDs if necessary.
*/
UpdateResult deleteEvent(KAEvent& event, bool archive, QWidget* msgParent, bool showKOrgErr)
{
#ifdef USE_AKONADI
QVector<KAEvent> events(1, event);
#else
KAEvent::List events;
events += &event;
#endif
return deleteEvents(events, archive, msgParent, showKOrgErr);
}
#ifdef USE_AKONADI
UpdateResult deleteEvents(QVector<KAEvent>& events, bool archive, QWidget* msgParent, bool showKOrgErr)
#else
UpdateResult deleteEvents(KAEvent::List& events, bool archive, QWidget* msgParent, bool showKOrgErr)
#endif
{
kDebug() << events.count();
if (events.isEmpty())
return UpdateResult(UPDATE_OK);
UpdateStatusData status;
AlarmCalendar* cal = AlarmCalendar::resources();
bool deleteWakeFromSuspendAlarm = false;
QString wakeFromSuspendId = checkRtcWakeConfig().value(0);
for (int i = 0, end = events.count(); i < end; ++i)
{
// Save the event details in the calendar file, and get the new event ID
#ifdef USE_AKONADI
KAEvent* event = &events[i];
#else
KAEvent* event = events[i];
#endif
QString id = event->id();
#ifndef USE_AKONADI
// Update the window lists and clear stored command errors
EventListModel::alarms()->removeEvent(id);
event->setCommandError(KAEvent::CMD_NO_ERROR);
#endif
// Delete the event from the calendar file
if (event->category() != CalEvent::ARCHIVED)
{
if (event->copyToKOrganizer())
{
// The event was shown in KOrganizer, so tell KOrganizer to
// delete it. But ignore errors, because the user could have
// manually deleted it from KOrganizer since it was set up.
UpdateResult st = deleteFromKOrganizer(id);
status.korgUpdate(st);
}
if (archive && event->toBeArchived())
{
KAEvent ev(*event);
addArchivedEvent(ev); // this changes the event ID to an archived ID
}
}
#ifdef USE_AKONADI
if (!cal->deleteEvent(*event, false)) // don't save calendar after deleting
#else
if (!cal->deleteEvent(id, false)) // don't save calendar after deleting
#endif
status.setError(UPDATE_ERROR);
if (id == wakeFromSuspendId)
deleteWakeFromSuspendAlarm = true;
// Remove "Don't show error messages again" for this alarm
#ifdef USE_AKONADI
setDontShowErrors(EventId(*event));
#else
setDontShowErrors(id);
#endif
}
if (status.warnErr == events.count())
status.status = UPDATE_FAILED;
else if (!cal->save()) // save the calendars now
status.setError(SAVE_FAILED, events.count());
if (status.status != UPDATE_OK && msgParent)
displayUpdateError(msgParent, ERR_DELETE, status, showKOrgErr);
// Remove any wake-from-suspend scheduled for a deleted alarm
if (deleteWakeFromSuspendAlarm && !wakeFromSuspendId.isEmpty())
cancelRtcWake(msgParent, wakeFromSuspendId);
return status.status;
}
/******************************************************************************
* Delete templates from the calendar file and from every template list view.
*/
#ifdef USE_AKONADI
UpdateResult deleteTemplates(const KAEvent::List& events, QWidget* msgParent)
#else
UpdateResult deleteTemplates(const QStringList& eventIDs, QWidget* msgParent)
#endif
{
#ifdef USE_AKONADI
int count = events.count();
#else
int count = eventIDs.count();
#endif
kDebug() << count;
if (!count)
return UpdateResult(UPDATE_OK);
UpdateStatusData status;
AlarmCalendar* cal = AlarmCalendar::resources();
for (int i = 0, end = count; i < end; ++i)
{
// Update the window lists
#ifndef USE_AKONADI
QString id = eventIDs[i];
EventListModel::templates()->removeEvent(id);
#endif
// Delete the template from the calendar file
AlarmCalendar* cal = AlarmCalendar::resources();
#ifdef USE_AKONADI
if (!cal->deleteEvent(*events[i], false)) // don't save calendar after deleting
#else
if (!cal->deleteEvent(id, false)) // don't save calendar after deleting
#endif
status.setError(UPDATE_ERROR);
}
if (status.warnErr == count)
status.status = UPDATE_FAILED;
else if (!cal->save()) // save the calendars now
status.setError(SAVE_FAILED, count);
if (status.status != UPDATE_OK && msgParent)
displayUpdateError(msgParent, ERR_TEMPLATE, status);
return status.status;
}
/******************************************************************************
* Delete an alarm from the display calendar.
*/
void deleteDisplayEvent(const QString& eventID)
{
kDebug() << eventID;
AlarmCalendar* cal = AlarmCalendar::displayCalendarOpen();
if (cal)
#ifdef USE_AKONADI
cal->deleteDisplayEvent(eventID, true); // save calendar after deleting
#else
cal->deleteEvent(eventID, true); // save calendar after deleting
#endif
}
/******************************************************************************
* Undelete archived alarms, and update every main window instance.
* The archive bit is set to ensure that they get re-archived if deleted again.
* 'ineligibleIDs' is filled in with the IDs of any ineligible events.
*/
#ifdef USE_AKONADI
UpdateResult reactivateEvent(KAEvent& event, Collection* calendar, QWidget* msgParent, bool showKOrgErr)
#else
UpdateResult reactivateEvent(KAEvent& event, AlarmResource* calendar, QWidget* msgParent, bool showKOrgErr)
#endif
{
#ifdef USE_AKONADI
QVector<EventId> ids;
QVector<KAEvent> events(1, event);
#else
QStringList ids;
KAEvent::List events;
events += &event;
#endif
return reactivateEvents(events, ids, calendar, msgParent, showKOrgErr);
}
#ifdef USE_AKONADI
UpdateResult reactivateEvents(QVector<KAEvent>& events, QVector<EventId>& ineligibleIDs, Collection* col, QWidget* msgParent, bool showKOrgErr)
#else
UpdateResult reactivateEvents(KAEvent::List& events, QStringList& ineligibleIDs, AlarmResource* resource, QWidget* msgParent, bool showKOrgErr)
#endif
{
kDebug() << events.count();
ineligibleIDs.clear();
if (events.isEmpty())
return UpdateResult(UPDATE_OK);
UpdateStatusData status;
#ifdef USE_AKONADI
Collection collection;
if (col)
collection = *col;
if (!collection.isValid())
collection = CollectionControlModel::instance()->destination(CalEvent::ACTIVE, msgParent);
if (!collection.isValid())
#else
if (!resource)
resource = AlarmResources::instance()->destination(CalEvent::ACTIVE, msgParent);
if (!resource)
#endif
{
kDebug() << "No calendar";
status.setError(UPDATE_FAILED, events.count());
}
else
{
QString selectID;
int count = 0;
AlarmCalendar* cal = AlarmCalendar::resources();
KDateTime now = KDateTime::currentUtcDateTime();
for (int i = 0, end = events.count(); i < end; ++i)
{
// Delete the event from the archived resource
#ifdef USE_AKONADI
KAEvent* event = &events[i];
#else
KAEvent* event = events[i];
#endif
if (event->category() != CalEvent::ARCHIVED
|| !event->occursAfter(now, true))
{
#ifdef USE_AKONADI
ineligibleIDs += EventId(*event);
#else
ineligibleIDs += event->id();
#endif
continue;
}
++count;
#ifdef USE_AKONADI
KAEvent newevent(*event);
KAEvent* const newev = &newevent;
#else
KAEvent* newev = new KAEvent(*event);
QString oldid = event->id();
#endif
newev->setCategory(CalEvent::ACTIVE); // this changes the event ID
if (newev->recurs() || newev->repetition())
newev->setNextOccurrence(now); // skip any recurrences in the past
newev->setArchive(); // ensure that it gets re-archived if it is deleted
// Save the event details in the calendar file.
// This converts the event ID.
#ifdef USE_AKONADI
if (!cal->addEvent(newevent, msgParent, true, &collection))
#else
if (!cal->addEvent(newev, msgParent, true, resource))
#endif
{
#ifndef USE_AKONADI
delete newev;
#endif
status.setError(UPDATE_ERROR);
continue;
}
if (newev->copyToKOrganizer())
{
UpdateResult st = sendToKOrganizer(*newev); // tell KOrganizer to show the event
status.korgUpdate(st);
}
#ifndef USE_AKONADI
// Update the window lists
EventListModel::alarms()->updateEvent(oldid, newev);
// selectID = newev->id();
#endif
#ifdef USE_AKONADI
if (cal->event(EventId(*event)) // no error if event doesn't exist in archived resource
&& !cal->deleteEvent(*event, false)) // don't save calendar after deleting
#else
if (cal->event(oldid) // no error if event doesn't exist in archived resource
&& !cal->deleteEvent(oldid, false)) // don't save calendar after deleting
#endif
status.setError(UPDATE_ERROR);
#ifdef USE_AKONADI
events[i] = newevent;
#else
events[i] = newev;
#endif
}
if (status.warnErr == count)
status.status = UPDATE_FAILED;
// Save the calendars, even if all events failed, since more than one calendar was updated
if (!cal->save() && status.status != UPDATE_FAILED)
status.setError(SAVE_FAILED, count);
}
if (status.status != UPDATE_OK && msgParent)
displayUpdateError(msgParent, ERR_REACTIVATE, status, showKOrgErr);
return status.status;
}
/******************************************************************************
* Enable or disable alarms in the calendar file and in every main window instance.
* The new events will have the same event IDs as the old ones.
*/
#ifdef USE_AKONADI
UpdateResult enableEvents(QVector<KAEvent>& events, bool enable, QWidget* msgParent)
#else
UpdateResult enableEvents(KAEvent::List& events, bool enable, QWidget* msgParent)
#endif
{
kDebug() << events.count();
if (events.isEmpty())
return UpdateResult(UPDATE_OK);
UpdateStatusData status;
AlarmCalendar* cal = AlarmCalendar::resources();
bool deleteWakeFromSuspendAlarm = false;
QString wakeFromSuspendId = checkRtcWakeConfig().value(0);
for (int i = 0, end = events.count(); i < end; ++i)
{
#ifdef USE_AKONADI
KAEvent* event = &events[i];
#else
KAEvent* event = events[i];
#endif
if (event->category() == CalEvent::ACTIVE
&& enable != event->enabled())
{
event->setEnabled(enable);
if (!enable && event->id() == wakeFromSuspendId)
deleteWakeFromSuspendAlarm = true;
// Update the event in the calendar file
KAEvent* newev = cal->updateEvent(event);
if (!newev)
kError() << "Error updating event in calendar:" << event->id();
else
{
cal->disabledChanged(newev);
// If we're disabling a display alarm, close any message window
if (!enable && (event->actionTypes() & KAEvent::ACT_DISPLAY))
{
#ifdef USE_AKONADI
MessageWin* win = MessageWin::findEvent(EventId(*event));
#else
MessageWin* win = MessageWin::findEvent(event->id());
#endif
delete win;
}
#ifndef USE_AKONADI
// Update the window lists
EventListModel::alarms()->updateEvent(newev);
#endif
}
}
}
if (!cal->save())
status.setError(SAVE_FAILED, events.count());
if (status.status != UPDATE_OK && msgParent)
displayUpdateError(msgParent, ERR_ADD, status);
// Remove any wake-from-suspend scheduled for a disabled alarm
if (deleteWakeFromSuspendAlarm && !wakeFromSuspendId.isEmpty())
cancelRtcWake(msgParent, wakeFromSuspendId);
return status.status;
}
/******************************************************************************
* This method must only be called from the main KAlarm queue processing loop,
* to prevent asynchronous calendar operations interfering with one another.
*
* Purge all archived events from the default archived alarm resource whose end
* time is longer ago than 'purgeDays'. All events are deleted if 'purgeDays' is
* zero.
*/
void purgeArchive(int purgeDays)
{
if (purgeDays < 0)
return;
kDebug() << purgeDays;
QDate cutoff = KDateTime::currentLocalDate().addDays(-purgeDays);
#ifdef USE_AKONADI
Collection collection = CollectionControlModel::getStandard(CalEvent::ARCHIVED);
if (!collection.isValid())
return;
KAEvent::List events = AlarmCalendar::resources()->events(collection);
for (int i = 0; i < events.count(); )
{
if (purgeDays && events[i]->createdDateTime().date() >= cutoff)
events.remove(i);
else
++i;
}
#else
AlarmResource* resource = AlarmResources::instance()->getStandardResource(CalEvent::ARCHIVED);
if (!resource)
return;
KAEvent::List events = AlarmCalendar::resources()->events(resource);
for (int i = 0; i < events.count(); )
{
KAEvent* event = events[i];
Incidence* kcalIncidence = resource->incidence(event->id());
if (purgeDays && kcalIncidence && kcalIncidence->created().date() >= cutoff)
events.remove(i);
else
EventListModel::alarms()->removeEvent(events[i++]); // update the window lists
}
#endif
if (!events.isEmpty())
AlarmCalendar::resources()->purgeEvents(events); // delete the events and save the calendar
}
#ifdef USE_AKONADI
/******************************************************************************
* Display an error message about an error when saving an event.
* If 'model' is non-null, the AlarmListModel* which it points to is used; if
* that is null, it is created.
*/
QVector<KAEvent> getSortedActiveEvents(QObject* parent, AlarmListModel** model)
{
AlarmListModel* mdl = 0;
if (!model)
model = &mdl;
if (!*model)
{
*model = new AlarmListModel(parent);
(*model)->setEventTypeFilter(CalEvent::ACTIVE);
(*model)->sort(AlarmListModel::TimeColumn);
}
QVector<KAEvent> result;
for (int i = 0, count = (*model)->rowCount(); i < count; ++i)
{
KAEvent event = (*model)->event(i);
if (event.enabled() && !event.expired())
result += event;
}
return result;
}
#else
/******************************************************************************
* Display an error message about an error when saving an event.
*/
KAEvent::List getSortedActiveEvents(const KDateTime& startTime, const KDateTime& endTime)
{
KAEvent::List events;
if (endTime.isValid())
events = AlarmCalendar::resources()->events(startTime, endTime, CalEvent::ACTIVE);
else
events = AlarmCalendar::resources()->events(CalEvent::ACTIVE);
KAEvent::List result;
for (int i = 0, count = events.count(); i < count; ++i)
{
KAEvent* event = events[i];
if (event->enabled() && !event->expired())
result += event;
}
return result;
}
#endif
/******************************************************************************
* Display an error message corresponding to a specified alarm update error code.
*/
void displayKOrgUpdateError(QWidget* parent, UpdateError code, UpdateResult korgError, int nAlarms)
{
QString errmsg;
switch (code)
{
case ERR_ADD:
case ERR_REACTIVATE:
errmsg = (nAlarms > 1) ? i18nc("@info", "Unable to show alarms in KOrganizer")
: i18nc("@info", "Unable to show alarm in KOrganizer");
break;
case ERR_MODIFY:
errmsg = i18nc("@info", "Unable to update alarm in KOrganizer");
break;
case ERR_DELETE:
errmsg = (nAlarms > 1) ? i18nc("@info", "Unable to delete alarms from KOrganizer")
: i18nc("@info", "Unable to delete alarm from KOrganizer");
break;
case ERR_TEMPLATE:
return;
}
bool showDetail = !korgError.message.isEmpty();
QString msg;
switch (korgError.status)
{
case UPDATE_KORG_ERRINIT:
msg = i18nc("@info", "<para>%1</para><para>(Could not start KOrganizer)</para>", errmsg);
break;
case UPDATE_KORG_ERRSTART:
msg = i18nc("@info", "<para>%1</para><para>(KOrganizer not fully started)</para>", errmsg);
break;
case UPDATE_KORG_ERR:
msg = i18nc("@info", "<para>%1</para><para>(Error communicating with KOrganizer)</para>", errmsg);
break;
default:
msg = errmsg;
showDetail = false;
break;
}
if (showDetail)
KAMessageBox::detailedError(parent, msg, korgError.message);
else
KAMessageBox::error(parent, msg);
}
/******************************************************************************
* Execute a New Alarm dialog for the specified alarm type.
*/
void editNewAlarm(EditAlarmDlg::Type type, QWidget* parent)
{
execNewAlarmDlg(EditAlarmDlg::create(false, type, parent));
}
/******************************************************************************
* Execute a New Alarm dialog for the specified alarm type.
*/
void editNewAlarm(KAEvent::SubAction action, QWidget* parent, const AlarmText* text)
{
bool setAction = false;
EditAlarmDlg::Type type;
switch (action)
{
case KAEvent::MESSAGE:
case KAEvent::FILE:
type = EditAlarmDlg::DISPLAY;
setAction = true;
break;
case KAEvent::COMMAND:
type = EditAlarmDlg::COMMAND;
break;
case KAEvent::EMAIL:
type = EditAlarmDlg::EMAIL;
break;
case KAEvent::AUDIO:
type = EditAlarmDlg::AUDIO;
break;
default:
return;
}
EditAlarmDlg* editDlg = EditAlarmDlg::create(false, type, parent);
if (setAction || text)
editDlg->setAction(action, *text);
execNewAlarmDlg(editDlg);
}
/******************************************************************************
* Execute a New Alarm dialog, optionally either presetting it to the supplied
* event, or setting the action and text.
*/
void editNewAlarm(const KAEvent* preset, QWidget* parent)
{
execNewAlarmDlg(EditAlarmDlg::create(false, preset, true, parent));
}
/******************************************************************************
* Common code for editNewAlarm() variants.
*/
void execNewAlarmDlg(EditAlarmDlg* editDlg)
{
// Create a PrivateNewAlarmDlg parented by editDlg.
// It will be deleted when editDlg is closed.
new PrivateNewAlarmDlg(editDlg);
editDlg->show();
editDlg->raise();
editDlg->activateWindow();
}
PrivateNewAlarmDlg::PrivateNewAlarmDlg(EditAlarmDlg* dlg)
: QObject(dlg)
{
connect(dlg, SIGNAL(accepted()), SLOT(okClicked()));
connect(dlg, SIGNAL(rejected()), SLOT(cancelClicked()));
}
/******************************************************************************
* Called when the dialogue is accepted (e.g. by clicking the OK button).
* Creates the event specified in the instance's dialogue.
*/
void PrivateNewAlarmDlg::okClicked()
{
accept(static_cast<EditAlarmDlg*>(parent()));
}
/******************************************************************************
* Creates the event specified in a given dialogue.
*/
void PrivateNewAlarmDlg::accept(EditAlarmDlg* editDlg)
{
KAEvent event;
#ifdef USE_AKONADI
Collection calendar;
#else
AlarmResource* calendar;
#endif
editDlg->getEvent(event, calendar);
// Add the alarm to the displayed lists and to the calendar file
#ifdef USE_AKONADI
UpdateResult status = addEvent(event, &calendar, editDlg);
#else
UpdateResult status = addEvent(event, calendar, editDlg);
#endif
switch (status.status)
{
case UPDATE_FAILED:
return;
case UPDATE_KORG_ERR:
case UPDATE_KORG_ERRINIT:
case UPDATE_KORG_ERRSTART:
case UPDATE_KORG_FUNCERR:
displayKOrgUpdateError(editDlg, ERR_ADD, status);
break;
default:
break;
}
Undo::saveAdd(event, calendar);
outputAlarmWarnings(editDlg, &event);
editDlg->deleteLater();
}
/******************************************************************************
* Called when the dialogue is rejected (e.g. by clicking the Cancel button).
*/
void PrivateNewAlarmDlg::cancelClicked()
{
static_cast<EditAlarmDlg*>(parent())->deleteLater();
}
/******************************************************************************
* Display the alarm edit dialog to edit a new alarm, preset with a template.
*/
bool editNewAlarm(const QString& templateName, QWidget* parent)
{
if (!templateName.isEmpty())
{
KAEvent* templateEvent = AlarmCalendar::resources()->templateEvent(templateName);
if (templateEvent->isValid())
{
editNewAlarm(templateEvent, parent);
return true;
}
kWarning() << templateName << ": template not found";
}
return false;
}
/******************************************************************************
* Create a new template.
*/
void editNewTemplate(EditAlarmDlg::Type type, QWidget* parent)
{
::editNewTemplate(type, 0, parent);
}
/******************************************************************************
* Create a new template, based on an existing event or template.
*/
void editNewTemplate(const KAEvent* preset, QWidget* parent)
{
::editNewTemplate(EditAlarmDlg::Type(0), preset, parent);
}
/******************************************************************************
* Check the config as to whether there is a wake-on-suspend alarm pending, and
* if so, delete it from the config if it has expired.
* If 'checkExists' is true, the config entry will only be returned if the
* event exists.
* Reply = config entry: [0] = event's collection ID (Akonadi only),
* [1] = event ID,
* [2] = trigger time (time_t).
* = empty list if none or expired.
*/
QStringList checkRtcWakeConfig(bool checkEventExists)
{
KConfigGroup config(KGlobal::config(), "General");
QStringList params = config.readEntry("RtcWake", QStringList());
#ifdef USE_AKONADI
if (params.count() == 3 && params[2].toUInt() > KDateTime::currentUtcDateTime().toTime_t())
#else
if (params.count() == 2 && params[1].toUInt() > KDateTime::currentUtcDateTime().toTime_t())
#endif
{
#ifdef USE_AKONADI
if (checkEventExists && !AlarmCalendar::getEvent(EventId(params[0].toLongLong(), params[1])))
#else
if (checkEventExists && !AlarmCalendar::getEvent(params[0]))
#endif
return QStringList();
return params; // config entry is valid
}
if (!params.isEmpty())
{
config.deleteEntry("RtcWake"); // delete the expired config entry
config.sync();
}
return QStringList();
}
/******************************************************************************
* Delete any wake-on-suspend alarm from the config.
*/
void deleteRtcWakeConfig()
{
KConfigGroup config(KGlobal::config(), "General");
config.deleteEntry("RtcWake");
config.sync();
}
/******************************************************************************
* Delete any wake-on-suspend alarm, optionally only for a specified event.
*/
void cancelRtcWake(QWidget* msgParent, const QString& eventId)
{
QStringList wakeup = checkRtcWakeConfig();
if (!wakeup.isEmpty() && (eventId.isEmpty() || wakeup[0] == eventId))
{
Private::instance()->mMsgParent = msgParent ? msgParent : MainWindow::mainMainWindow();
QTimer::singleShot(0, Private::instance(), SLOT(cancelRtcWake()));
}
}
/******************************************************************************
* Delete any wake-on-suspend alarm.
*/
void Private::cancelRtcWake()
{
// setRtcWakeTime will only work with a parent window specified
setRtcWakeTime(0, mMsgParent);
deleteRtcWakeConfig();
KAMessageBox::information(mMsgParent, i18nc("info", "The scheduled Wake from Suspend has been cancelled."));
}
/******************************************************************************
* Set the wakeup time for the system.
* Set 'triggerTime' to zero to cancel the wakeup.
* Reply = true if successful.
*/
bool setRtcWakeTime(unsigned triggerTime, QWidget* parent)
{
QVariantMap args;
args[QLatin1String("time")] = triggerTime;
KAuth::Action action(QLatin1String("org.kde.kalarmrtcwake.settimer"));
action.setHelperID(QLatin1String("org.kde.kalarmrtcwake"));
action.setParentWidget(parent);
action.setArguments(args);
KAuth::ActionReply reply = action.execute();
if (reply.failed())
{
QString errmsg = reply.errorDescription();
kDebug() << "Error code=" << reply.errorCode() << errmsg;
if (errmsg.isEmpty())
{
int errcode = reply.errorCode();
switch (reply.type())
{
case KAuth::ActionReply::KAuthError:
kDebug() << "Authorisation error:" << errcode;
switch (errcode)
{
case KAuth::ActionReply::AuthorizationDenied:
case KAuth::ActionReply::UserCancelled:
return false; // the user should already know about this
default:
break;
}
break;
case KAuth::ActionReply::HelperError:
kDebug() << "Helper error:" << errcode;
errcode += 100; // make code distinguishable from KAuthError type
break;
default:
break;
}
errmsg = i18nc("@info", "Error obtaining authorization (%1)", errcode);
}
KAMessageBox::information(parent, errmsg);
return false;
}
return true;
}
} // namespace KAlarm
namespace
{
/******************************************************************************
* Create a new template.
* 'preset' is non-null to base it on an existing event or template; otherwise,
* the alarm type is set to 'type'.
*/
void editNewTemplate(EditAlarmDlg::Type type, const KAEvent* preset, QWidget* parent)
{
#ifdef USE_AKONADI
if (CollectionControlModel::enabledCollections(CalEvent::TEMPLATE, true).isEmpty())
#else
if (!AlarmResources::instance()->activeCount(CalEvent::TEMPLATE, true))
#endif
{
KAMessageBox::sorry(parent, i18nc("@info", "You must enable a template calendar to save the template in"));
return;
}
// Use AutoQPointer to guard against crash on application exit while
// the dialogue is still open. It prevents double deletion (both on
// deletion of parent, and on return from this function).
AutoQPointer<EditAlarmDlg> editDlg;
if (preset)
editDlg = EditAlarmDlg::create(true, preset, true, parent);
else
editDlg = EditAlarmDlg::create(true, type, parent);
if (editDlg->exec() == QDialog::Accepted)
{
KAEvent event;
#ifdef USE_AKONADI
Akonadi::Collection calendar;
#else
AlarmResource* calendar;
#endif
editDlg->getEvent(event, calendar);
// Add the template to the displayed lists and to the calendar file
#ifdef USE_AKONADI
KAlarm::addTemplate(event, &calendar, editDlg);
#else
KAlarm::addTemplate(event, calendar, editDlg);
#endif
Undo::saveAdd(event, calendar);
}
}
} // namespace
namespace KAlarm
{
/******************************************************************************
* Open the Edit Alarm dialog to edit the specified alarm.
* If the alarm is read-only or archived, the dialog is opened read-only.
*/
void editAlarm(KAEvent* event, QWidget* parent)
{
#ifdef USE_AKONADI
if (event->expired() || AlarmCalendar::resources()->eventReadOnly(event->itemId()))
#else
if (event->expired() || AlarmCalendar::resources()->eventReadOnly(event->id()))
#endif
{
viewAlarm(event, parent);
return;
}
#ifdef USE_AKONADI
EventId id(*event);
#else
QString id = event->id();
#endif
// Use AutoQPointer to guard against crash on application exit while
// the dialogue is still open. It prevents double deletion (both on
// deletion of parent, and on return from this function).
AutoQPointer<EditAlarmDlg> editDlg = EditAlarmDlg::create(false, event, false, parent, EditAlarmDlg::RES_USE_EVENT_ID);
if (editDlg->exec() == QDialog::Accepted)
{
if (!AlarmCalendar::resources()->event(id))
{
// Event has been deleted while the user was editing the alarm,
// so treat it as a new alarm.
PrivateNewAlarmDlg().accept(editDlg);
return;
}
KAEvent newEvent;
#ifdef USE_AKONADI
Collection calendar;
#else
AlarmResource* calendar;
#endif
bool changeDeferral = !editDlg->getEvent(newEvent, calendar);
// Update the event in the displays and in the calendar file
Undo::Event undo(*event, calendar);
if (changeDeferral)
{
// The only change has been to an existing deferral
if (updateEvent(newEvent, editDlg, true) != UPDATE_OK) // keep the same event ID
return; // failed to save event
}
else
{
UpdateResult status = modifyEvent(*event, newEvent, editDlg);
if (status.status != UPDATE_OK && status.status <= UPDATE_KORG_ERR)
displayKOrgUpdateError(editDlg, ERR_MODIFY, status);
}
Undo::saveEdit(undo, newEvent);
outputAlarmWarnings(editDlg, &newEvent);
}
}
/******************************************************************************
* Display the alarm edit dialog to edit the alarm with the specified ID.
* An error occurs if the alarm is not found, if there is more than one alarm
* with the same ID, or if it is read-only or expired.
*/
#ifdef USE_AKONADI
bool editAlarmById(const EventId& id, QWidget* parent)
#else
bool editAlarmById(const QString& eventID, QWidget* parent)
#endif
{
#ifdef USE_AKONADI
const QString eventID(id.eventId());
KAEvent* event = AlarmCalendar::resources()->event(id, true);
if (!event)
{
if (id.collectionId() != -1)
kWarning() << "Event ID not found, or duplicated:" << eventID;
else
kWarning() << "Event ID not found:" << eventID;
return false;
}
if (AlarmCalendar::resources()->eventReadOnly(event->itemId()))
#else
KAEvent* event = AlarmCalendar::resources()->event(eventID);
if (!event)
{
kError() << eventID << ": event ID not found";
return false;
}
if (AlarmCalendar::resources()->eventReadOnly(eventID))
#endif
{
kError() << eventID << ": read-only";
return false;
}
switch (event->category())
{
case CalEvent::ACTIVE:
case CalEvent::TEMPLATE:
break;
default:
kError() << eventID << ": event not active or template";
return false;
}
editAlarm(event, parent);
return true;
}
/******************************************************************************
* Open the Edit Alarm dialog to edit the specified template.
* If the template is read-only, the dialog is opened read-only.
*/
void editTemplate(KAEvent* event, QWidget* parent)
{
#ifdef USE_AKONADI
if (AlarmCalendar::resources()->eventReadOnly(event->itemId()))
#else
if (AlarmCalendar::resources()->eventReadOnly(event->id()))
#endif
{
// The template is read-only, so make the dialogue read-only.
// Use AutoQPointer to guard against crash on application exit while
// the dialogue is still open. It prevents double deletion (both on
// deletion of parent, and on return from this function).
AutoQPointer<EditAlarmDlg> editDlg = EditAlarmDlg::create(true, event, false, parent, EditAlarmDlg::RES_PROMPT, true);
editDlg->exec();
return;
}
// Use AutoQPointer to guard against crash on application exit while
// the dialogue is still open. It prevents double deletion (both on
// deletion of parent, and on return from this function).
AutoQPointer<EditAlarmDlg> editDlg = EditAlarmDlg::create(true, event, false, parent, EditAlarmDlg::RES_USE_EVENT_ID);
if (editDlg->exec() == QDialog::Accepted)
{
KAEvent newEvent;
#ifdef USE_AKONADI
Akonadi::Collection calendar;
#else
AlarmResource* calendar;
#endif
editDlg->getEvent(newEvent, calendar);
QString id = event->id();
newEvent.setEventId(id);
#ifdef USE_AKONADI
newEvent.setCollectionId(event->collectionId());
newEvent.setItemId(event->itemId());
#endif
// Update the event in the displays and in the calendar file
Undo::Event undo(*event, calendar);
updateTemplate(newEvent, editDlg);
Undo::saveEdit(undo, newEvent);
}
}
/******************************************************************************
* Open the Edit Alarm dialog to view the specified alarm (read-only).
*/
void viewAlarm(const KAEvent* event, QWidget* parent)
{
// Use AutoQPointer to guard against crash on application exit while
// the dialogue is still open. It prevents double deletion (both on
// deletion of parent, and on return from this function).
AutoQPointer<EditAlarmDlg> editDlg = EditAlarmDlg::create(false, event, false, parent, EditAlarmDlg::RES_PROMPT, true);
editDlg->exec();
}
/******************************************************************************
* Called when OK is clicked in the alarm edit dialog invoked by the Edit button
* in an alarm message window.
* Updates the alarm calendar and closes the dialog.
*/
#ifdef USE_AKONADI
void updateEditedAlarm(EditAlarmDlg* editDlg, KAEvent& event, Collection& calendar)
#else
void updateEditedAlarm(EditAlarmDlg* editDlg, KAEvent& event, AlarmResource* calendar)
#endif
{
kDebug();
KAEvent newEvent;
#ifdef USE_AKONADI
Akonadi::Collection cal;
#else
AlarmResource* cal;
#endif
editDlg->getEvent(newEvent, cal);
// Update the displayed lists and the calendar file
UpdateResult status;
#ifdef USE_AKONADI
if (AlarmCalendar::resources()->event(EventId(event)))
#else
if (AlarmCalendar::resources()->event(event.id()))
#endif
{
// The old alarm hasn't expired yet, so replace it
Undo::Event undo(event, calendar);
status = modifyEvent(event, newEvent, editDlg);
Undo::saveEdit(undo, newEvent);
}
else
{
// The old event has expired, so simply create a new one
#ifdef USE_AKONADI
status = addEvent(newEvent, &calendar, editDlg);
#else
status = addEvent(newEvent, calendar, editDlg);
#endif
Undo::saveAdd(newEvent, calendar);
}
if (status.status != UPDATE_OK && status.status <= UPDATE_KORG_ERR)
displayKOrgUpdateError(editDlg, ERR_MODIFY, status);
outputAlarmWarnings(editDlg, &newEvent);
editDlg->close();
}
/******************************************************************************
* Returns a list of all alarm templates.
* If shell commands are disabled, command alarm templates are omitted.
*/
KAEvent::List templateList()
{
KAEvent::List templates;
bool includeCmdAlarms = ShellProcess::authorised();
KAEvent::List events = AlarmCalendar::resources()->events(CalEvent::TEMPLATE);
for (int i = 0, end = events.count(); i < end; ++i)
{
KAEvent* event = events[i];
if (includeCmdAlarms || !(event->actionTypes() & KAEvent::ACT_COMMAND))
templates.append(event);
}
return templates;
}
/******************************************************************************
* To be called after an alarm has been edited.
* Prompt the user to re-enable alarms if they are currently disabled, and if
* it's an email alarm, warn if no 'From' email address is configured.
*/
void outputAlarmWarnings(QWidget* parent, const KAEvent* event)
{
if (event && event->actionTypes() == KAEvent::ACT_EMAIL
&& Preferences::emailAddress().isEmpty())
KAMessageBox::information(parent, i18nc("@info Please set the 'From' email address...",
"<para>%1</para><para>Please set it in the Configuration dialog.</para>", KAMail::i18n_NeedFromEmailAddress()));
if (!theApp()->alarmsEnabled())
{
if (KAMessageBox::warningYesNo(parent, i18nc("@info", "<para>Alarms are currently disabled.</para><para>Do you want to enable alarms now?</para>"),
QString(), KGuiItem(i18nc("@action:button", "Enable")), KGuiItem(i18nc("@action:button", "Keep Disabled")),
QLatin1String("EditEnableAlarms"))
== KMessageBox::Yes)
theApp()->setAlarmsEnabled(true);
}
}
/******************************************************************************
* Reload the calendar.
*/
void refreshAlarms()
{
kDebug();
if (!refreshAlarmsQueued)
{
refreshAlarmsQueued = true;
theApp()->processQueue();
}
}
/******************************************************************************
* This method must only be called from the main KAlarm queue processing loop,
* to prevent asynchronous calendar operations interfering with one another.
*
* If refreshAlarms() has been called, reload the calendars.
*/
void refreshAlarmsIfQueued()
{
if (refreshAlarmsQueued)
{
kDebug();
AlarmCalendar::resources()->reload();
// Close any message windows for alarms which are now disabled
KAEvent::List events = AlarmCalendar::resources()->events(CalEvent::ACTIVE);
for (int i = 0, end = events.count(); i < end; ++i)
{
KAEvent* event = events[i];
if (!event->enabled() && (event->actionTypes() & KAEvent::ACT_DISPLAY))
{
#ifdef USE_AKONADI
MessageWin* win = MessageWin::findEvent(EventId(*event));
#else
MessageWin* win = MessageWin::findEvent(event->id());
#endif
delete win;
}
}
MainWindow::refresh();
refreshAlarmsQueued = false;
}
}
/******************************************************************************
* Start KMail if it isn't already running, optionally minimised.
* Reply = reason for failure to run KMail (which may be the empty string)
* = null string if success.
*/
QString runKMail(bool minimise)
{
QDBusReply<bool> reply = QDBusConnection::sessionBus().interface()->isServiceRegistered(KMAIL_DBUS_SERVICE);
if (!reply.isValid() || !reply.value())
{
// Program is not already running, so start it
QString errmsg;
if (minimise && Private::startKMailMinimised())
return QString();
if (KToolInvocation::startServiceByDesktopName(QLatin1String("kmail"), QString(), &errmsg))
{
kError() << "Couldn't start KMail (" << errmsg << ")";
return i18nc("@info", "Unable to start <application>KMail</application><nl/>(<message>%1</message>)", errmsg);
}
}
return QString();
}
/******************************************************************************
* Start KMail, minimised.
* This code is taken from kstart in kdebase.
*/
bool Private::startKMailMinimised()
{
#ifdef Q_WS_X11
NETRootInfo i(QX11Info::display(), NET::Supported);
if (i.isSupported(NET::WM2KDETemporaryRules))
{
kDebug() << "using rules";
KXMessages msg;
QString message = QLatin1String("wmclass=kmail\nwmclassmatch=1\n" // 1 = exact match
"wmclasscomplete=false\n"
"minimize=true\nminimizerule=3\n"
"type=") + QString().setNum(NET::Normal) + QLatin1String("\ntyperule=2");
msg.broadcastMessage("_KDE_NET_WM_TEMPORARY_RULES", message, -1, false);
qApp->flush();
}
else
{
// Connect to window add to get the NEW windows
kDebug() << "connecting to window add";
connect(KWindowSystem::self(), SIGNAL(windowAdded(WId)), instance(), SLOT(windowAdded(WId)));
}
// Propagate the app startup notification info to the started app.
// We are not using KApplication, so the env remained set.
KStartupInfoId id = KStartupInfo::currentStartupIdEnv();
KProcess* proc = new KProcess;
(*proc) << QLatin1String("kmail");
int pid = proc->startDetached();
if (!pid)
{
KStartupInfo::sendFinish(id); // failed to start
return false;
}
KStartupInfoData data;
data.addPid(pid);
data.setName(QLatin1String("kmail"));
data.setBin(QLatin1String("kmail"));
KStartupInfo::sendChange(id, data);
return true;
#else
return false;
#endif
}
/******************************************************************************
* Called when a window is created, to minimise it.
* This code is taken from kstart in kdebase.
*/
void Private::windowAdded(WId w)
{
#ifdef Q_WS_X11
static const int SUPPORTED_TYPES = NET::NormalMask | NET::DesktopMask | NET::DockMask
| NET::ToolbarMask | NET::MenuMask | NET::DialogMask
| NET::OverrideMask | NET::TopMenuMask | NET::UtilityMask | NET::SplashMask;
KWindowInfo kwinfo = KWindowSystem::windowInfo(w, NET::WMWindowType | NET::WMName);
if (kwinfo.windowType(SUPPORTED_TYPES) == NET::TopMenu
|| kwinfo.windowType(SUPPORTED_TYPES) == NET::Toolbar
|| kwinfo.windowType(SUPPORTED_TYPES) == NET::Desktop)
return; // always ignore these window types
QX11Info qxinfo;
XWithdrawWindow(QX11Info::display(), w, qxinfo.screen());
QApplication::flush();
NETWinInfo info(QX11Info::display(), w, QX11Info::appRootWindow(), NET::WMState);
XWMHints* hints = XGetWMHints(QX11Info::display(), w);
if (hints)
{
hints->flags |= StateHint;
hints->initial_state = IconicState;
XSetWMHints(QX11Info::display(), w, hints);
XFree(hints);
}
info.setWindowType(NET::Normal);
XSync(QX11Info::display(), False);
XMapWindow(QX11Info::display(), w);
XSync(QX11Info::display(), False);
QApplication::flush();
#endif
}
/******************************************************************************
* The "Don't show again" option for error messages is personal to the user on a
* particular computer. For example, he may want to inhibit error messages only
* on his laptop. So the status is not stored in the alarm calendar, but in the
* user's local KAlarm data directory.
******************************************************************************/
/******************************************************************************
* Return the Don't-show-again error message tags set for a specified alarm ID.
*/
#ifdef USE_AKONADI
QStringList dontShowErrors(const EventId& eventId)
#else
QStringList dontShowErrors(const QString& eventId)
#endif
{
if (eventId.isEmpty())
return QStringList();
KConfig config(KStandardDirs::locateLocal("appdata", ALARM_OPTS_FILE));
KConfigGroup group(&config, DONT_SHOW_ERRORS_GROUP);
#ifdef USE_AKONADI
const QString id = QString::fromLatin1("%1:%2").arg(eventId.collectionId()).arg(eventId.eventId());
#else
const QString id(eventId);
#endif
return group.readEntry(id, QStringList());
}
/******************************************************************************
* Check whether the specified Don't-show-again error message tag is set for an
* alarm ID.
*/
#ifdef USE_AKONADI
bool dontShowErrors(const EventId& eventId, const QString& tag)
#else
bool dontShowErrors(const QString& eventId, const QString& tag)
#endif
{
if (tag.isEmpty())
return false;
QStringList tags = dontShowErrors(eventId);
return tags.indexOf(tag) >= 0;
}
/******************************************************************************
* Reset the Don't-show-again error message tags for an alarm ID.
* If 'tags' is empty, the config entry is deleted.
*/
#ifdef USE_AKONADI
void setDontShowErrors(const EventId& eventId, const QStringList& tags)
#else
void setDontShowErrors(const QString& eventId, const QStringList& tags)
#endif
{
if (eventId.isEmpty())
return;
KConfig config(KStandardDirs::locateLocal("appdata", ALARM_OPTS_FILE));
KConfigGroup group(&config, DONT_SHOW_ERRORS_GROUP);
#ifdef USE_AKONADI
const QString id = QString::fromLatin1("%1:%2").arg(eventId.collectionId()).arg(eventId.eventId());
#else
const QString id(eventId);
#endif
if (tags.isEmpty())
group.deleteEntry(id);
else
group.writeEntry(id, tags);
group.sync();
}
/******************************************************************************
* Set the specified Don't-show-again error message tag for an alarm ID.
* Existing tags are unaffected.
*/
#ifdef USE_AKONADI
void setDontShowErrors(const EventId& eventId, const QString& tag)
#else
void setDontShowErrors(const QString& eventId, const QString& tag)
#endif
{
if (eventId.isEmpty() || tag.isEmpty())
return;
KConfig config(KStandardDirs::locateLocal("appdata", ALARM_OPTS_FILE));
KConfigGroup group(&config, DONT_SHOW_ERRORS_GROUP);
#ifdef USE_AKONADI
const QString id = QString::fromLatin1("%1:%2").arg(eventId.collectionId()).arg(eventId.eventId());
#else
const QString id(eventId);
#endif
QStringList tags = group.readEntry(id, QStringList());
if (tags.indexOf(tag) < 0)
{
tags += tag;
group.writeEntry(id, tags);
group.sync();
}
}
/******************************************************************************
* Read the size for the specified window from the config file, for the
* current screen resolution.
* Reply = true if size set in the config file, in which case 'result' is set
* = false if no size is set, in which case 'result' is unchanged.
*/
bool readConfigWindowSize(const char* window, QSize& result, int* splitterWidth)
{
KConfigGroup config(KGlobal::config(), window);
QWidget* desktop = KApplication::desktop();
QSize s = QSize(config.readEntry(QString::fromLatin1("Width %1").arg(desktop->width()), (int)0),
config.readEntry(QString::fromLatin1("Height %1").arg(desktop->height()), (int)0));
if (s.isEmpty())
return false;
result = s;
if (splitterWidth)
*splitterWidth = config.readEntry(QString::fromLatin1("Splitter %1").arg(desktop->width()), -1);
return true;
}
/******************************************************************************
* Write the size for the specified window to the config file, for the
* current screen resolution.
*/
void writeConfigWindowSize(const char* window, const QSize& size, int splitterWidth)
{
KConfigGroup config(KGlobal::config(), window);
QWidget* desktop = KApplication::desktop();
config.writeEntry(QString::fromLatin1("Width %1").arg(desktop->width()), size.width());
config.writeEntry(QString::fromLatin1("Height %1").arg(desktop->height()), size.height());
if (splitterWidth >= 0)
config.writeEntry(QString::fromLatin1("Splitter %1").arg(desktop->width()), splitterWidth);
config.sync();
}
/******************************************************************************
* Check from its mime type whether a file appears to be a text or image file.
* If a text file, its type is distinguished.
* Reply = file type.
*/
FileType fileType(const KMimeType::Ptr& mimetype)
{
if (mimetype->is(QLatin1String("text/html")))
return TextFormatted;
if (mimetype->is(QLatin1String("application/x-executable")))
return TextApplication;
if (mimetype->is(QLatin1String("text/plain")))
return TextPlain;
if (mimetype->name().startsWith(QLatin1String("image/")))
return Image;
return Unknown;
}
/******************************************************************************
* Check that a file exists and is a plain readable file.
* Updates 'filename' and 'url' even if an error occurs, since 'filename' may
* be needed subsequently by showFileErrMessage().
*/
FileErr checkFileExists(QString& filename, KUrl& url)
{
url = KUrl();
FileErr err = FileErr_None;
QString file = filename;
QRegExp f(QLatin1String("^file:/+"));
if (f.indexIn(file) >= 0)
file = file.mid(f.matchedLength() - 1);
// Convert any relative file path to absolute
// (using home directory as the default)
int i = file.indexOf(QLatin1Char('/'));
if (i > 0 && file[i - 1] == QLatin1Char(':'))
{
url = file;
url.cleanPath();
filename = url.prettyUrl();
KIO::UDSEntry uds;
if (!KIO::NetAccess::stat(url, uds, MainWindow::mainMainWindow()))
err = FileErr_Nonexistent;
else
{
KFileItem fi(uds, url);
if (fi.isDir()) err = FileErr_Directory;
else if (!fi.isReadable()) err = FileErr_Unreadable;
}
}
else if (file.isEmpty())
err = FileErr_Blank; // blank file name
else
{
// It's a local file - convert to absolute path & check validity
QFileInfo info(file);
QDir::setCurrent(QDir::homePath());
filename = info.absoluteFilePath();
url.setPath(filename);
if (info.isDir()) err = FileErr_Directory;
else if (!info.exists()) err = FileErr_Nonexistent;
else if (!info.isReadable()) err = FileErr_Unreadable;
}
return err;
}
/******************************************************************************
* Display an error message appropriate to 'err'.
* Display a Continue/Cancel error message if 'errmsgParent' non-null.
* Reply = true to continue, false to cancel.
*/
bool showFileErrMessage(const QString& filename, FileErr err, FileErr blankError, QWidget* errmsgParent)
{
if (err != FileErr_None)
{
// If file is a local file, remove "file://" from name
QString file = filename;
QRegExp f(QLatin1String("^file:/+"));
if (f.indexIn(file) >= 0)
file = file.mid(f.matchedLength() - 1);
QString errmsg;
switch (err)
{
case FileErr_Blank:
if (blankError == FileErr_BlankDisplay)
errmsg = i18nc("@info", "Please select a file to display");
else if (blankError == FileErr_BlankPlay)
errmsg = i18nc("@info", "Please select a file to play");
else
kFatal() << "Program error";
KAMessageBox::sorry(errmsgParent, errmsg);
return false;
case FileErr_Directory:
KAMessageBox::sorry(errmsgParent, i18nc("@info", "<filename>%1</filename> is a folder", file));
return false;
case FileErr_Nonexistent: errmsg = i18nc("@info", "<filename>%1</filename> not found", file); break;
case FileErr_Unreadable: errmsg = i18nc("@info", "<filename>%1</filename> is not readable", file); break;
case FileErr_NotTextImage: errmsg = i18nc("@info", "<filename>%1</filename> appears not to be a text or image file", file); break;
default:
break;
}
if (KAMessageBox::warningContinueCancel(errmsgParent, errmsg)
== KMessageBox::Cancel)
return false;
}
return true;
}
/******************************************************************************
* If a url string is a local file, strip off the 'file:/' prefix.
*/
QString pathOrUrl(const QString& url)
{
static const QRegExp localfile(QLatin1String("^file:/+"));
return (localfile.indexIn(url) >= 0) ? url.mid(localfile.matchedLength() - 1) : url;
}
/******************************************************************************
* Display a modal dialog to choose an existing file, initially highlighting
* any specified file.
* @param initialFile The file to initially highlight - must be a full path name or URL.
* @param defaultDir The directory to start in if @p initialFile is empty. If empty,
* the user's home directory will be used. Updated to the
* directory containing the selected file, if a file is chosen.
* @param mode OR of KFile::Mode values, e.g. ExistingOnly, LocalOnly.
* Reply = URL selected.
* = empty, non-null string if no file was selected.
* = null string if dialogue was deleted while visible (indicating that
* the parent widget was probably also deleted).
*/
QString browseFile(const QString& caption, QString& defaultDir, const QString& initialFile,
const QString& filter, KFile::Modes mode, QWidget* parent)
{
QString initialDir = !initialFile.isEmpty() ? QString(initialFile).remove(QRegExp(QLatin1String("/[^/]*$")))
: !defaultDir.isEmpty() ? defaultDir
: QDir::homePath();
// Use AutoQPointer to guard against crash on application exit while
// the dialogue is still open. It prevents double deletion (both on
// deletion of parent, and on return from this function).
AutoQPointer<KFileDialog> fileDlg = new KFileDialog(initialDir, filter, parent);
fileDlg->setOperationMode(mode & KFile::ExistingOnly ? KFileDialog::Opening : KFileDialog::Saving);
fileDlg->setMode(KFile::File | mode);
fileDlg->setCaption(caption);
if (!initialFile.isEmpty())
fileDlg->setSelection(initialFile);
if (fileDlg->exec() != QDialog::Accepted)
return fileDlg ? QLatin1String("") : QString(); // return null only if dialog was deleted
KUrl url = fileDlg->selectedUrl();
if (url.isEmpty())
return QLatin1String(""); // return empty, non-null string
defaultDir = url.isLocalFile() ? url.upUrl().toLocalFile() : url.directory();
return (mode & KFile::LocalOnly) ? url.pathOrUrl() : url.prettyUrl();
}
/******************************************************************************
* Return a prompt string to ask the user whether to convert the calendar to the
* current format.
* If 'whole' is true, the whole calendar needs to be converted; else only some
* alarms may need to be converted.
*
* Note: This method is defined here to avoid duplicating the i18n string
* definition between the Akonadi and KResources code.
*/
QString conversionPrompt(const QString& calendarName, const QString& calendarVersion, bool whole)
{
QString msg = whole
? i18nc("@info", "Calendar <resource>%1</resource> is in an old format (<application>KAlarm</application> version %2), "
"and will be read-only unless you choose to update it to the current format.",
calendarName, calendarVersion)
: i18nc("@info", "Some or all of the alarms in calendar <resource>%1</resource> are in an old <application>KAlarm</application> format, "
"and will be read-only unless you choose to update them to the current format.",
calendarName);
return i18nc("@info", "<para>%1</para><para>"
"<warning>Do not update the calendar if it is also used with an older version of <application>KAlarm</application> "
"(e.g. on another computer). If you do so, the calendar may become unusable there.</warning></para>"
"<para>Do you wish to update the calendar?</para>", msg);
}
#ifndef NDEBUG
/******************************************************************************
* Set up KAlarm test conditions based on environment variables.
* KALARM_TIME: specifies current system time (format [[[yyyy-]mm-]dd-]hh:mm [TZ]).
*/
void setTestModeConditions()
{
const QByteArray newTime = qgetenv("KALARM_TIME");
if (!newTime.isEmpty())
{
KDateTime dt;
if (AlarmTime::convertTimeString(newTime, dt, KDateTime::realCurrentLocalDateTime(), true))
setSimulatedSystemTime(dt);
}
}
/******************************************************************************
* Set the simulated system time.
*/
void setSimulatedSystemTime(const KDateTime& dt)
{
KDateTime::setSimulatedSystemTime(dt);
kDebug() << "New time =" << qPrintable(KDateTime::currentLocalDateTime().toString(QLatin1String("%Y-%m-%d %H:%M %:Z")));
}
#endif
} // namespace KAlarm
namespace
{
/******************************************************************************
* Display an error message about an error when saving an event.
*/
void displayUpdateError(QWidget* parent, KAlarm::UpdateError code, const UpdateStatusData& status, bool showKOrgError)
{
QString errmsg;
if (status.status.status > KAlarm::UPDATE_KORG_ERR)
{
switch (code)
{
case KAlarm::ERR_ADD:
case KAlarm::ERR_MODIFY:
errmsg = (status.warnErr > 1) ? i18nc("@info", "Error saving alarms")
: i18nc("@info", "Error saving alarm");
break;
case KAlarm::ERR_DELETE:
errmsg = (status.warnErr > 1) ? i18nc("@info", "Error deleting alarms")
: i18nc("@info", "Error deleting alarm");
break;
case KAlarm::ERR_REACTIVATE:
errmsg = (status.warnErr > 1) ? i18nc("@info", "Error saving reactivated alarms")
: i18nc("@info", "Error saving reactivated alarm");
break;
case KAlarm::ERR_TEMPLATE:
errmsg = (status.warnErr > 1) ? i18nc("@info", "Error saving alarm templates")
: i18nc("@info", "Error saving alarm template");
break;
}
KAMessageBox::error(parent, errmsg);
}
else if (showKOrgError)
displayKOrgUpdateError(parent, code, status.status, status.warnKOrg);
}
/******************************************************************************
* Tell KOrganizer to put an alarm in its calendar.
* It will be held by KOrganizer as a simple event, without alarms - KAlarm
* is still responsible for alarming.
*/
KAlarm::UpdateResult sendToKOrganizer(const KAEvent& event)
{
#ifdef USE_AKONADI
Event::Ptr kcalEvent(new KCalCore::Event);
event.updateKCalEvent(kcalEvent, KAEvent::UID_IGNORE);
#else
Event* kcalEvent = AlarmCalendar::resources()->createKCalEvent(&event);
#endif
// Change the event ID to avoid duplicating the same unique ID as the original event
QString uid = uidKOrganizer(event.id());
kcalEvent->setUid(uid);
kcalEvent->clearAlarms();
QString userEmail;
switch (event.actionTypes())
{
case KAEvent::ACT_DISPLAY:
case KAEvent::ACT_COMMAND:
case KAEvent::ACT_DISPLAY_COMMAND:
kcalEvent->setSummary(event.cleanText());
userEmail = Preferences::emailAddress();
break;
case KAEvent::ACT_EMAIL:
{
QString from = event.emailFromId()
? Identities::identityManager()->identityForUoid(event.emailFromId()).fullEmailAddr()
: Preferences::emailAddress();
AlarmText atext;
atext.setEmail(event.emailAddresses(QLatin1String(", ")), from, QString(), QString(), event.emailSubject(), QString());
kcalEvent->setSummary(atext.displayText());
userEmail = from;
break;
}
case KAEvent::ACT_AUDIO:
kcalEvent->setSummary(event.audioFile());
break;
default:
break;
}
#ifdef USE_AKONADI
Person::Ptr person(new Person(QString(), userEmail));
kcalEvent->setOrganizer(person);
#else
kcalEvent->setOrganizer(KCal::Person(QString(), userEmail));
#endif
kcalEvent->setDuration(Duration(Preferences::kOrgEventDuration() * 60, Duration::Seconds));
// Translate the event into string format
ICalFormat format;
format.setTimeSpec(Preferences::timeZone(true));
QString iCal = format.toICalString(kcalEvent);
#ifndef USE_AKONADI
delete kcalEvent;
#endif
// Send the event to KOrganizer
KAlarm::UpdateResult status = runKOrganizer(); // start KOrganizer if it isn't already running, and create its D-Bus interface
if (status != KAlarm::UPDATE_OK)
return status;
QList<QVariant> args;
args << iCal;
QDBusReply<bool> reply = korgInterface->callWithArgumentList(QDBus::Block, QLatin1String("addIncidence"), args);
if (!reply.isValid())
{
if (reply.error().type() == QDBusError::UnknownObject)
{
status = KAlarm::UPDATE_KORG_ERRSTART;
kError() << "addIncidence() D-Bus error: still starting";
}
else
{
status.set(KAlarm::UPDATE_KORG_ERR, reply.error().message());
kError() << "addIncidence(" << uid << ") D-Bus call failed:" << status.message;
}
}
else if (!reply.value())
{
status = KAlarm::UPDATE_KORG_FUNCERR;
kDebug() << "addIncidence(" << uid << ") D-Bus call returned false";
}
else
kDebug() << uid << ": success";
return status;
}
/******************************************************************************
* Tell KOrganizer to delete an event from its calendar.
*/
KAlarm::UpdateResult deleteFromKOrganizer(const QString& eventID)
{
const QString newID = uidKOrganizer(eventID);
#if defined(USE_AKONADI) && KDE_IS_VERSION(4,12,4) // kdepimlibs/kdepim-runtime 4.12.4 are required
new CollectionSearch(KORG_MIME_TYPE, newID, true); // this auto-deletes when complete
// Ignore errors
return KAlarm::UpdateResult(KAlarm::UPDATE_OK);
#else
KAlarm::UpdateResult status = runKOrganizer(); // start KOrganizer if it isn't already running, and create its D-Bus interface
if (status != KAlarm::UPDATE_OK)
return status;
QList<QVariant> args;
args << newID << true;
QDBusReply<bool> reply = korgInterface->callWithArgumentList(QDBus::Block, QLatin1String("deleteIncidence"), args);
if (!reply.isValid())
{
if (reply.error().type() == QDBusError::UnknownObject)
{
kError() << "deleteIncidence() D-Bus error: still starting";
status = KAlarm::UPDATE_KORG_ERRSTART;
}
else
{
status.set(KAlarm::UPDATE_KORG_ERR, reply.error().message());
kError() << "deleteIncidence(" << newID << ") D-Bus call failed:" << status.message;
}
}
else if (!reply.value())
{
status = KAlarm::UPDATE_KORG_FUNCERR;
kDebug() << "deleteIncidence(" << newID << ") D-Bus call returned false";
}
else
kDebug() << newID << ": success";
return status;
#endif
}
/******************************************************************************
* Start KOrganizer if not already running, and create its D-Bus interface.
*/
KAlarm::UpdateResult runKOrganizer()
{
KAlarm::UpdateResult status;
QString error, dbusService;
int result = KDBusServiceStarter::self()->findServiceFor(QLatin1String("DBUS/Organizer"), QString(), &error, &dbusService);
if (result)
{
status.set(KAlarm::UPDATE_KORG_ERRINIT, error);
kWarning() << "Unable to start DBUS/Organizer:" << status.message;
return status;
}
// If Kontact is running, there is a load() method which needs to be called to
// load KOrganizer into Kontact. But if KOrganizer is running independently,
// the load() method doesn't exist.
QDBusInterface iface(KORG_DBUS_SERVICE, QLatin1String(KORG_DBUS_LOAD_PATH), QLatin1String("org.kde.KUniqueApplication"));
if (!iface.isValid())
{
status.set(KAlarm::UPDATE_KORG_ERR, iface.lastError().message());
kWarning() << "Unable to access " KORG_DBUS_LOAD_PATH " D-Bus interface:" << status.message;
return status;
}
QDBusReply<bool> reply = iface.call(QLatin1String("load"));
if ((!reply.isValid() || !reply.value())
&& iface.lastError().type() != QDBusError::UnknownMethod)
{
status.set(KAlarm::UPDATE_KORG_ERR, iface.lastError().message());
kWarning() << "Loading KOrganizer failed:" << status.message;
return status;
}
// KOrganizer has been started, but it may not have the necessary
// D-Bus interface available yet.
if (!korgInterface || !korgInterface->isValid())
{
delete korgInterface;
korgInterface = new QDBusInterface(KORG_DBUS_SERVICE, QLatin1String(KORG_DBUS_PATH), KORG_DBUS_IFACE);
if (!korgInterface->isValid())
{
status.set(KAlarm::UPDATE_KORG_ERRSTART, korgInterface->lastError().message());
kWarning() << "Unable to access " KORG_DBUS_PATH " D-Bus interface:" << status.message;
delete korgInterface;
korgInterface = 0;
}
}
return status;
}
/******************************************************************************
* Insert a KOrganizer string after the hyphen in the supplied event ID.
*/
QString uidKOrganizer(const QString& id)
{
QString result = id;
int i = result.lastIndexOf(QLatin1Char('-'));
if (i < 0)
i = result.length();
return result.insert(i, KORGANIZER_UID);
}
} // namespace
/******************************************************************************
* Case insensitive comparison for use by qSort().
*/
bool caseInsensitiveLessThan(const QString& s1, const QString& s2)
{
return s1.toLower() < s2.toLower();
}
// vim: et sw=4: