Home | News | Projects | Releases
Bugs | RFE | Repositories | Help
Added <iostream> to CalDAV.h
[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         
47 };
49 // CalDAVStatusData: used for
50 // getting the current server
51 // settings for the CalDAV
52 // object.
54 struct CalDAVStatus{
56         string Hostname;
57         int Port;
58         string Username;
59         string Prefix;
60         bool UseSSL;    
62 };
64 // CalDAVServerResult: used for
65 // getting the result of the
66 // request made via the CalDAV
67 // object.
69 struct CalDAVServerResult{
71         CalDAVQueryResult Result = CALDAVQUERYRESULT_NOTRUN;
72         CURLcode Code = CURLE_OK;
73         long HTTPCode = 0;
74         
75 };
77 class CalDAV{
79         private:
80                 CalDAVConnectionData ConnectionData;
81                 CURL *ConnectionHandle = nullptr;
82         
83         public:
84                 void SetupConnectionData(CalDAVConnectionData *ConnData);
85                 CalDAVStatus GetConnectionData();
86                 CalDAVServerResult Connect();
87                 CalDAV();
88                 ~CalDAV();
89         
90 };
92 // Subroutines that are used with the 
93 // CalDAVConnectionData struct.
95 bool CalDAVObjectValidSettings(CalDAVConnectionData *ConnData);
97 #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