1 // CardDAV2.h - CardDAV v2 class header
3 // (c) 2012-2016 Xestia Software Development.
5 // This file is part of Xestia Address Book.
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 Address Book. If not, see <http://www.gnu.org/licenses/>
19 #ifndef __CARDDAV2_CARDDAV2_H__
20 #define __CARDDAV2_CARDDAV2_H__
22 #include "../connobject/ConnectionObject.h"
23 #include "../version.h"
24 #include "../common/sslcertstructs.h"
25 #include "../common/dirs.h"
27 #include <curl/curl.h>
28 #include <wx/tokenzr.h>
30 #include <libxml/parser.h>
31 #include <libxml/tree.h>
36 class CardDAV2 : public ConnectionObject {
40 using ConnectionObject::ConnectionObject;
46 // Functions from the ConnectionObject interface.
48 void SetupConnectionObject();
50 bool IsTaskCompleted();
52 COConnectResult Connect(bool DoAuthentication);
54 COServerResponse GetDefaultPrefix(std::string *ServerPrefix);
55 COServerResponse AddContact(std::string Location, std::string Data);
56 COServerResponse EditContact(std::string Location, std::string Data);
57 COServerResponse DeleteContact(std::string Location, std::string EntityTag);
58 COServerResponse GetServerEntityTagValue(std::string Location);
59 COServerResponse GetContact(std::string Location);
60 COContactList GetContactList(std::string SyncToken);
62 bool CanDoProcessing();
64 COSSLVerified SSLVerify();
66 bool HasValidResponse();
68 std::string GetErrorMessage();
70 void BypassSSLVerification(bool EnableBypass);
72 #if defined(__APPLE__)
73 #elif defined(__WIN32__)
75 SSLCertCollectionString BuildSSLCollection();
82 // Variables to set for the CardDAV2 class.
84 CURL *ConnectionSession = nullptr;
85 CURLcode SessionResult = CURLE_OK;
86 struct curl_slist *HeaderList = nullptr;
88 void SetupDefaultParametersNonSSL(bool DoAuthentication);
89 void SetupDefaultParametersSSL(bool DoAuthentication);
92 std::string PageHeader;
93 char SessionErrorBuffer[CURL_ERROR_SIZE];
95 static size_t WritebackFunc(char *ptr, size_t size, size_t nmemb, void *stream);
96 size_t WritebackFuncImplementation(char *ptr, size_t size, size_t nmemb, void *stream);
98 std::string BuildURL(std::string URI);
100 std::vector<std::string> GetDAVHeader();
101 std::string GetETagHeader();
103 std::string GetUserPrincipalURI();
104 std::string GetAddressBookHomeURI();
105 std::string GetDefaultAddressBookURI();
107 #if defined(__APPLE__)
108 #elif defined(__WIN32__)
110 bool EnableSSLBypass = false;