/usr/include/KF5/akonadi/calendar/freebusymanager.h is in libkf5akonadicalendar-dev 4:17.12.3-0ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 | /*
Requires the Qt and KDE widget libraries, available at no cost at
http://www.trolltech.com and http://www.kde.org respectively
Copyright (c) 2002-2004 Klarälvdalens Datakonsult AB
<info@klaralvdalens-datakonsult.se>
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.
*/
#ifndef AKONADI_FREEBUSYMANAGER_H
#define AKONADI_FREEBUSYMANAGER_H
#include "akonadi-calendar_export.h"
#include "etmcalendar.h"
#include <kcalcore/freebusycache.h>
//TODO: document
namespace Akonadi
{
class FreeBusyManagerPrivate;
class FreeBusyManagerStatic;
class AKONADI_CALENDAR_EXPORT FreeBusyManager : public QObject, public KCalCore::FreeBusyCache
{
Q_OBJECT
public:
/**
* Returns the FreeBusyManager
*/
static FreeBusyManager *self();
void setCalendar(const Akonadi::ETMCalendar::Ptr &calendar);
/**
Publishes the owners freebusy information from the current calendar
starting from the current date/time to current date/time + freeBusyPublishDays.
If an upload is already in progress nothing happens.
@see KCalPrefBase::freeBusyPublishUrl()
@see KCalPrefBase::freeBusyPublishDays();
*/
void publishFreeBusy(QWidget *parentWidget = nullptr);
/**
Mail the freebusy information.
*/
void mailFreeBusy(int daysToPublish = 30, QWidget *parentWidget = nullptr);
/**
Retrieve the freebusy information of somebody else, i.e. it will not try
to download our own freebusy information.
This method will first try to find Akonadi resource that have the
'FreeBusyProvider' capablity set. If none is found then there is a fallback
on the URL mechanism (see below). If at least one is found then it will
be first queried over D-Bus to know if it can handle free-busy information
for that email address. If true then it will be queried for the free-busy
data for a period ranging from today to today plus 14 days, defined in
FreeBusyManagerPrivate::FreeBusyProvidersRequestsQueue::FreeBusyProvidersRequestsQueue()
as hard-coded magic value. If the Akonadi resource responds successfully
(still over D-Bus) then the freeBusyRetrieved signal is emitted. If any
of those steps then the URL mechanism will be used as a fallback.
The URL mechanism makes use of a local cache, if the information
for a given email is already downloaded it will return the information
from the cache. The free-busy information must be accessible using HTTP
and the URL is build dynamically from the email address and the global
groupware settings.
The call is asynchronous, a download is started in the background (if
needed) and freeBusyRetrieved will be emitted when the download is finished.
@see KCalPrefs::thatIsMe( const QString &email );
@see Akonadi::FreeBusyProviderBase
@param email Address of the person for which the F/B list should be
retrieved.
@param forceDownload Set to true to trigger a download even when automatic
retrieval of freebusy information is disabled in the configuration.
@return true if a download is initiated, and false otherwise
*/
bool retrieveFreeBusy(const QString &email, bool forceDownload,
QWidget *parentWidget = nullptr);
/**
Clears the retrieval queue, i.e. all retrieval request that are not started
yet will not start at all. The freebusy retrieval that currently is
downloading (if one) will not be canceled.
@see retrieveFreeBusy
*/
void cancelRetrieval();
/**
Load freebusy information belonging to an email. The information is loaded
from a local file. If the file does not exists or doesn't contain valid
information 0 is returned. In that case the information should be retrieved
again by calling retrieveFreeBusy.
Implements KCalCore::FreeBusyCache::loadFreeBusy
@param email is a QString containing a email string in the
"FirstName LastName <emailaddress>" format.
*/
KCalCore::FreeBusy::Ptr loadFreeBusy(const QString &email) override;
/**
Save freebusy information belonging to an email.
Implements KCalCore::FreeBusyCache::saveFreeBusy
@param freebusy is a pointer to a valid FreeBusy instance.
@param person is a valid Person instance.
*/
bool saveFreeBusy(const KCalCore::FreeBusy::Ptr &freebusy,
const KCalCore::Person::Ptr &person) override;
Q_SIGNALS:
/**
This signal is emitted to return results of free/busy requests.
*/
void freeBusyRetrieved(const KCalCore::FreeBusy::Ptr &fb,
const QString &email);
protected:
/** React on timer events, used for delayed freebusy list uploading */
void timerEvent(QTimerEvent *event) override;
private:
/**
Creates a new FreeBusyManager, private because FreeBusyManager is a
Singleton
*/
FreeBusyManager();
~FreeBusyManager();
private:
friend class FreeBusyManagerStatic;
FreeBusyManagerPrivate *const d_ptr;
Q_DECLARE_PRIVATE(FreeBusyManager)
Q_DISABLE_COPY(FreeBusyManager)
Q_PRIVATE_SLOT(d_ptr, void checkFreeBusyUrl())
Q_PRIVATE_SLOT(d_ptr, void processFreeBusyDownloadResult(KJob *))
Q_PRIVATE_SLOT(d_ptr, void processFreeBusyUploadResult(KJob *))
Q_PRIVATE_SLOT(d_ptr, void processRetrieveQueue())
Q_PRIVATE_SLOT(d_ptr, void uploadFreeBusy())
};
}
#endif
|