1 // CalDAV.h - CalDAV Connection Object header.
3 // (c) 2016 Xestia Software Development.
5 // This file is part of Xestia Calendar.
7 // Xestia Address Book is free software: you can redistribute it and/or modify
8 // it under the terms of the GNU General Public License as published by the
9 // Free Software Foundation, version 3 of the license.
11 // Xestia Address Book is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 // GNU General Public License for more details.
16 // You should have received a copy of the GNU General Public License along
17 // with Xestia Calendar. If not, see <http://www.gnu.org/licenses/>
19 #ifndef __OBJECTS_CALDAV_CALDAV_H__
20 #define __OBJECTS_CALDAV_CALDAV_H__
22 #include <curl/curl.h>
28 // CalDAVConnectionData: used for
29 // connecting to the server.
31 enum CalDAVQueryResult {
32 CALDAVQUERYRESULT_UNITTESTFAIL = -1,
34 CALDAVQUERYRESULT_NOTRUN,
35 CALDAVQUERYRESULT_SERVERERROR
38 struct CalDAVConnectionData{
50 // CalDAVStatusData: used for
51 // getting the current server
52 // settings for the CalDAV
66 // CalDAVServerResult: used for
67 // getting the result of the
68 // request made via the CalDAV
71 struct CalDAVServerResult{
73 CalDAVQueryResult Result = CALDAVQUERYRESULT_NOTRUN;
74 CURLcode Code = CURLE_OK;
82 CalDAVConnectionData ConnectionData;
83 CURL *ConnectionHandle = nullptr;
84 string ServerData = "";
85 string ServerHeader = "";
88 void SetupConnectionData(CalDAVConnectionData *ConnData);
89 CalDAVStatus GetConnectionData();
90 CalDAVServerResult Connect();
96 // Subroutines that are used with the
97 // CalDAVConnectionData struct.
99 bool CalDAVObjectValidSettings(CalDAVConnectionData *ConnData);
100 string BuildServerAddress(CalDAVConnectionData *ConnData, string URIAddress);