Home | News | Projects | Releases
Bugs | RFE | Repositories | Help
Set the connection results after attempting to fetch data in GetServerSupport.
[xestiacalendar/.git] / source / objects / CalDAV / CalDAV.h
index 31e5c3b..d527541 100644 (file)
@@ -21,6 +21,9 @@
 
 #include <curl/curl.h>
 #include <string>
+#include <iostream>
+#include <vector>
+#include <stdexcept>
 
 using namespace std;
 
@@ -29,17 +32,20 @@ using namespace std;
 
 enum CalDAVQueryResult {
        CALDAVQUERYRESULT_UNITTESTFAIL = -1,
-       CALDAVQUERYRESULT_OK
+       CALDAVQUERYRESULT_OK,
+       CALDAVQUERYRESULT_NOTRUN,
+       CALDAVQUERYRESULT_SERVERERROR
 };
 
 struct CalDAVConnectionData{
        
-       string Hostname;
-       int Port;
-       string Username;
-       string Password;
-       string Prefix;
-       bool UseSSL;
+       string Hostname = "";
+       int Port = 8008;
+       string Username = "";
+       string Password = "";
+       string Prefix = "";
+       bool UseSSL = true;
+       int Timeout = 60;
        
 };
 
@@ -55,9 +61,22 @@ struct CalDAVStatus{
        string Username;
        string Prefix;
        bool UseSSL;    
+       int Timeout;
 
 };
 
+// CalDAVServerSupport: used for
+// getting what the server supports
+// from the CalDAV specification.
+
+struct CalDAVServerSupport{
+       
+       // Variable name.                          Name in CalDAV header.
+       
+       bool BasicSupport = false;              // calendar-access
+       
+};
+
 // CalDAVServerResult: used for
 // getting the result of the
 // request made via the CalDAV
@@ -65,13 +84,27 @@ struct CalDAVStatus{
 
 struct CalDAVServerResult{
 
+       CalDAVQueryResult Result = CALDAVQUERYRESULT_NOTRUN;
+       CURLcode Code = CURLE_OK;
+       long HTTPCode = 0;
        
-
 };
 
 class CalDAV{
 
+       private:
+               CalDAVConnectionData ConnectionData;
+               CURL *ConnectionHandle = nullptr;
+               string ServerData = "";
+               string ServerHeader = "";
        
+       public:
+               void SetupConnectionData(CalDAVConnectionData *ConnData);
+               CalDAVStatus GetConnectionData();
+               CalDAVServerResult Connect();
+               CalDAVServerSupport GetServerSupport();
+               CalDAV();
+               ~CalDAV();
        
 };
 
@@ -79,5 +112,6 @@ class CalDAV{
 // CalDAVConnectionData struct.
 
 bool CalDAVObjectValidSettings(CalDAVConnectionData *ConnData);
+string BuildServerAddress(CalDAVConnectionData *ConnData, string URIAddress);
 
 #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