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>
37 class CardDAV2 : public ConnectionObject {
41 CardDAV2(std::string ServerAddress, int ServerPort, std::string ServerUser, std::string ServerPass, bool ServerSSL);
42 CardDAV2(std::string ServerAddress, int ServerPort, std::string ServerUser, std::string ServerPass, bool ServerSSL, std::string ServerPrefix, std::string ServerAccount);
48 // Functions from the ConnectionObject interface.
50 void SetupConnectionObject();
52 bool IsTaskCompleted();
54 COConnectResult Connect(bool DoAuthentication);
56 COServerResponse GetDefaultPrefix(std::string *ServerPrefix);
57 COServerResponse AddContact(std::string Location, std::string Data);
58 COServerResponse EditContact(std::string Location, std::string Data);
59 COServerResponse DeleteContact(std::string Location);
60 COServerResponse GetServerEntityTagValue(std::string Location);
61 COServerResponse GetContact(std::string Location, std::string *ContactData);
62 COContactList GetContactList(std::string SyncToken);
64 bool CanDoProcessing();
66 COSSLVerified SSLVerify();
68 bool HasValidResponse();
70 std::string GetErrorMessage();
72 #if defined(__APPLE__)
74 SecTrustRef BuildSSLCollection();
76 #elif defined(__WIN32__)
78 PCCERT_CONTEXT BuildSSLCollection();
81 SSLCertCollectionString BuildSSLCollection();
85 void BypassSSLVerification(bool EnableBypass);
87 struct CardDAV2PassObject {
88 CardDAV2 *CardDAV2Object = nullptr;
89 std::string *DataSetting = nullptr;
90 bool ServerUsingSSL = false;
91 CURL *ConnectionSessionObject = nullptr;
92 #if defined(__APPLE__)
93 SecTrustRef SSLContext = nullptr;
94 #elif defined(__WIN32__)
95 PCCERT_CONTEXT SSLContext = nullptr;
102 // Variables to set for the CardDAV2 class.
104 CURL *ConnectionSession = nullptr;
105 CURLcode SessionResult = CURLE_OK;
106 struct curl_slist *HeaderList = nullptr;
108 void SetupDefaultParametersNonSSL(bool DoAuthentication);
109 void SetupDefaultParametersSSL(bool DoAuthentication);
111 std::string PageData;
112 std::string PageHeader;
113 char SessionErrorBuffer[CURL_ERROR_SIZE];
115 CardDAV2PassObject PageDataObject;
116 CardDAV2PassObject PageHeaderObject;
118 static size_t WritebackFunc(char *ptr, size_t size, size_t nmemb, void *stream);
119 size_t WritebackFuncImplementation(char *ptr, size_t size, size_t nmemb, void *stream);
121 std::string BuildURL(std::string URI);
123 std::vector<std::string> GetDAVHeader();
124 std::string GetETagHeader();
125 std::string GetETagValue();
127 std::string GetUserPrincipalURI();
128 std::string GetAddressBookHomeURI();
129 std::string GetDefaultAddressBookURI();
130 void ProcessContactData(COContactList *ContactList);
132 #if defined(__APPLE__)
134 SecTrustRef CertificateData = nullptr;
136 #elif defined(__WIN32__)
138 PCCERT_CONTEXT CertificateData = nullptr;
143 void SetCertificateData();
145 bool EnableSSLBypass = false;