Home | News | Projects | Releases
Bugs | RFE | Repositories | Help
Added code to build server address from subroutine and also unit tests.
[xestiacalendar/.git] / source / objects / CalDAV / CalDAV.h
1 // CalDAV.h - CalDAV Connection Object header.
2 //
3 // (c) 2016 Xestia Software Development.
4 //
5 // This file is part of Xestia Calendar.
6 //
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.
10 //
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.
15 //
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>
23 #include <string>
24 #include <iostream>
26 using namespace std;
28 // CalDAVConnectionData: used for
29 // connecting to the server.
31 enum CalDAVQueryResult {
32         CALDAVQUERYRESULT_UNITTESTFAIL = -1,
33         CALDAVQUERYRESULT_OK,
34         CALDAVQUERYRESULT_NOTRUN,
35         CALDAVQUERYRESULT_SERVERERROR
36 };
38 struct CalDAVConnectionData{
39         
40         string Hostname = "";
41         int Port = 8008;
42         string Username = "";
43         string Password = "";
44         string Prefix = "";
45         bool UseSSL = true;
46         int Timeout = 60;
47         
48 };
50 // CalDAVStatusData: used for
51 // getting the current server
52 // settings for the CalDAV
53 // object.
55 struct CalDAVStatus{
57         string Hostname;
58         int Port;
59         string Username;
60         string Prefix;
61         bool UseSSL;    
62         int Timeout;
64 };
66 // CalDAVServerResult: used for
67 // getting the result of the
68 // request made via the CalDAV
69 // object.
71 struct CalDAVServerResult{
73         CalDAVQueryResult Result = CALDAVQUERYRESULT_NOTRUN;
74         CURLcode Code = CURLE_OK;
75         long HTTPCode = 0;
76         
77 };
79 class CalDAV{
81         private:
82                 CalDAVConnectionData ConnectionData;
83                 CURL *ConnectionHandle = nullptr;
84                 string ServerData = "";
85                 string ServerHeader = "";
86         
87         public:
88                 void SetupConnectionData(CalDAVConnectionData *ConnData);
89                 CalDAVStatus GetConnectionData();
90                 CalDAVServerResult Connect();
91                 CalDAV();
92                 ~CalDAV();
93         
94 };
96 // Subroutines that are used with the 
97 // CalDAVConnectionData struct.
99 bool CalDAVObjectValidSettings(CalDAVConnectionData *ConnData);
100 string BuildServerAddress(CalDAVConnectionData *ConnData, string URIAddress);
102 #endif
Xestia Software Development
Yn Maystri
© 2006 - 2019 Xestia Software Development
Software

Xestia Address Book
Xestia Calendar
Development

Xestia Gelforn
Everything else

About
News
Privacy Policy