Home | News | Projects | Releases
Bugs | RFE | Repositories | Help
Added the CalDAVSendData struct and added more subroutines to the CalDAV object
[xestiacalendar/.git] / source / objects / CalDAV / CalDAV.h
index 5e8622d..da3b58c 100644 (file)
 #define __OBJECTS_CALDAV_CALDAV_H__
 
 #include <curl/curl.h>
+#include <libxml/parser.h>
+#include <libxml/tree.h>
 #include <string>
+#include <iostream>
+#include <vector>
+#include <stdexcept>
 
 using namespace std;
 
@@ -34,6 +39,10 @@ enum CalDAVQueryResult {
        CALDAVQUERYRESULT_SERVERERROR
 };
 
+struct CalDAVCalendarList {
+       
+};
+
 struct CalDAVConnectionData{
        
        string Hostname = "";
@@ -42,6 +51,7 @@ struct CalDAVConnectionData{
        string Password = "";
        string Prefix = "";
        bool UseSSL = true;
+       int Timeout = 60;
        
 };
 
@@ -57,7 +67,20 @@ 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
@@ -73,18 +96,40 @@ struct CalDAVServerResult{
        
 };
 
+// CalDAVSendData: used for
+// sending data to the CaLDAV
+// server.
+
+struct CalDAVSendData{
+       string *readptr;
+       long sizeleft;
+       int seek = 0;
+};
+
 class CalDAV{
 
        private:
+               string ProcessXMLUserPrincipal();
+               bool MatchXMLName(xmlNodePtr *NodePtr, string NodeName);
+               string FetchXMLData(xmlNodePtr *NodePtr);
+       
                CalDAVConnectionData ConnectionData;
+               CalDAVServerResult ConnectionServerResult;
                CURL *ConnectionHandle = nullptr;
+               string ServerData = "";
+               string ServerHeader = "";
        
        public:
+               CalDAV();
+               ~CalDAV();
                void SetupConnectionData(CalDAVConnectionData *ConnData);
                CalDAVStatus GetConnectionData();
                CalDAVServerResult Connect();
-               CalDAV();
-               ~CalDAV();
+               CalDAVServerResult GetServerResult();
+               CalDAVServerSupport GetServerSupport();
+               CalDAVCalendarList GetCalendars();
+       
+               string GetUserPrincipal();
        
 };
 
@@ -92,5 +137,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