summaryrefslogtreecommitdiffstats
path: root/examples/caldavresource/caldavresource.h
diff options
context:
space:
mode:
authorRémi Nicole <nicole@kolabsystems.com>2018-03-27 18:26:11 +0200
committerChristian Mollekopf <chrigi_1@fastmail.fm>2018-03-27 18:26:15 +0200
commit761328989492db9bd603c2d7f1134d20e485d2f6 (patch)
tree0e3b4517dd2000fb1cc2738bbb22a3e54dfffb6f /examples/caldavresource/caldavresource.h
parent80afd7070f2d8e57cab2fe55fef611623fdb75f0 (diff)
downloadsink-761328989492db9bd603c2d7f1134d20e485d2f6.tar.gz
sink-761328989492db9bd603c2d7f1134d20e485d2f6.zip
Add CalDAV support
Summary: Notes: - Add a `webdavcommon` folder for WebDAV generic resource code - Move `davresource` to `carddaveresource` and make it use the WebDAV code - For now it tests the CalDAV resource directly on KolabNow (to be changed) - Only synchronization, not adding / changing / removing WebDAV collections or items (to be implemented) - Only events are currently supported (todo, freebusy, etc. are to be implemented but should be straightforward) Fixes T8224 Reviewers: cmollekopf Tags: #sink Maniphest Tasks: T8224 Differential Revision: https://phabricator.kde.org/D11741
Diffstat (limited to 'examples/caldavresource/caldavresource.h')
-rw-r--r--examples/caldavresource/caldavresource.h46
1 files changed, 46 insertions, 0 deletions
diff --git a/examples/caldavresource/caldavresource.h b/examples/caldavresource/caldavresource.h
new file mode 100644
index 0000000..5822495
--- /dev/null
+++ b/examples/caldavresource/caldavresource.h
@@ -0,0 +1,46 @@
1/*
2 * Copyright (C) 2018 Christian Mollekopf <chrigi_1@fastmail.fm>
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the
16 * Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 */
19
20#pragma once
21
22#include "common/genericresource.h"
23
24/**
25 * A CalDAV resource.
26 */
27class CalDavResource : public Sink::GenericResource
28{
29public:
30 CalDavResource(const Sink::ResourceContext &);
31};
32
33class CalDavResourceFactory : public Sink::ResourceFactory
34{
35 Q_OBJECT
36 Q_PLUGIN_METADATA(IID "sink.caldav")
37 Q_INTERFACES(Sink::ResourceFactory)
38
39public:
40 CalDavResourceFactory(QObject *parent = nullptr);
41
42 Sink::Resource *createResource(const Sink::ResourceContext &context) Q_DECL_OVERRIDE;
43 void registerFacades(const QByteArray &resourceName, Sink::FacadeFactory &factory) Q_DECL_OVERRIDE;
44 void registerAdaptorFactories(const QByteArray &resourceName, Sink::AdaptorFactoryRegistry &registry) Q_DECL_OVERRIDE;
45 void removeDataFromDisk(const QByteArray &instanceIdentifier) Q_DECL_OVERRIDE;
46};