Home | News | Projects | Releases
Bugs | RFE | Repositories | Help
Initial work started on using ConnectionObject on Win32 systems
[xestiaab/.git] / source / frmNewAccount-CardDAV2.cpp
1 // frmNewAccount.cpp - New Account form (CardDAV2 account section).
2 //
3 // (c) 2012-2015 Xestia Software Development.
4 //
5 // This file is part of Xestia Address Book.
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 Address Book. If not, see <http://www.gnu.org/licenses/> 
19 #include "frmNewAccount.h"
20 #include <iostream>
22 void frmNewAccount::RunCardDAV2Test( wxCommandEvent& event ){
23         
24         NewAccountResult *ResultData = new NewAccountResult;
25         
26         lblServerConnResult->SetLabel(_("Testing..."));
27         lblCardDAVSupportResult->SetLabel(_(""));
28         lblServerResponse->SetLabel(_(""));
29         lblServerSSLResult->SetLabel(_(""));
30         lblServerSSLValid->SetLabel(_(""));
31         lblAbleToLoginResult->SetLabel(_(""));
32         bool UsingSSLBypass = false;
33         
34         // Setup a CardDAV2 connection object for testing.
36         CardDAV2 TestConnection(txtServerAddress->GetValue().ToStdString(),
37                 wxAtoi(txtServerPort->GetValue()),
38                 txtUsername->GetValue().ToStdString(),
39                 txtPassword->GetValue().ToStdString(),
40                 chkUseSSL->GetValue());
41         
42         // Test the connection.
43         
44         TestConnection.SetupConnectionObject();
45         COConnectResult TestConnectionResult = TestConnection.Connect(false);
46         
47         // If server is using SSL, verify that the SSL connection is valid.
48         
49         if (TestConnection.SSLVerify() == COSSL_UNABLETOVERIFY){
50 #if defined(__APPLE__)
51 #elif defined(__WIN32__)
53                 BOOL ModifiedCertificateData = false;
55                 CRYPTUI_VIEWCERTIFICATE_STRUCTW CertificateDialogData = BuildCertificateData(&TestConnection, (HWND)this->GetHandle());
57                 if (!CryptUIDlgViewCertificate(&CertificateDialogData, &ModifiedCertificateData)){
58                         wxMessageBox(_("An error occured while trying to open the certificate dialog."), _("Error opening Certificate Information dialog"));
59                 }
61                 if (ModifiedCertificateData = false){
63                         lblServerConnResult->SetLabel(_("Failed"));
64                         lblServerResponse->SetLabel(_("Not applicable"));
65                         lblServerSSLResult->SetLabel(_("Used"));
66                         lblServerSSLValid->SetLabel(_("No"));
67                         lblConnectionResultText->SetLabel(_("An error occured whilst connnecting: ") + TestConnection.GetErrorMessage());
68                         return;
70                 }
72 #else
73         
74                 // Connect again and fetch SSL certificate information.
75                 
76                 TestConnection.BypassSSLVerification(true);
77                 
78                 COConnectResult TestConnectionResult = TestConnection.Connect(false);
79                 
80                 TestConnection.BypassSSLVerification(false);
82                 SSLCertCollectionString CertData = TestConnection.BuildSSLCollection();
83                 frmInvalidSSLCertificate *frmICPtr = new frmInvalidSSLCertificate(this);
84                 
85                 frmICPtr->LoadDataNew(CertData, txtServerAddress->GetValue().ToStdString());
86                 frmICPtr->ShowModal();
87                                                                 
88                 int SSLResult = frmICPtr->GetResult();
89                                                         
90                 // Clean up before processing response.
91                                 
92                 delete frmICPtr;
93                 frmICPtr = NULL;
94                                                         
95                 // Process the response from the user.
96                                                         
97                 if (SSLResult == 1){
98                                                                 
99                         // Accept the Certificate.
100                         
101                         UsingSSLBypass = true;
102                         TestConnection.BypassSSLVerification(true);
103                 
104                         COConnectResult TestConnectionResult = TestConnection.Connect(true);
105                 
106                         TestConnection.BypassSSLVerification(false);
107                                                                 
108                 } else if (SSLResult == 2){
109                                                                 
110                         // Reject the certificate, abort the task and mark as failed.
112                         // TODO: Integrate into the code.
113                         
114                         //lblConnectionResultText->SetLabel(_("An error occured whilst connnecting: ") + CardDAVConn.GetErrorMessage() + wxString::Format(wxT(" (%i)\n%s"), sslcode, CardDAVConn.GetErrorBuffer().mb_str()));
115                                                                 
116                 }               
117                 
118 #endif
119         }
120         
121         // Get the server prefix if the connection was successful.
122         
123         if (TestConnectionResult == COCONNECT_OK){
125                 if (UsingSSLBypass == true){
126                         TestConnection.BypassSSLVerification(true);                     
127                 }
128                 
129                 std::string ReceivedServerPrefix;
130                 COServerResponse PrefixRequestResult = TestConnection.GetDefaultPrefix(&ReceivedServerPrefix);
131                 ServerPrefix = ReceivedServerPrefix;
132                 
133                 if (UsingSSLBypass == true){
134                         TestConnection.BypassSSLVerification(true);                     
135                 }
136                 
137         }
138         
139         TestConnectionResult == COCONNECT_OK ? ResultData->Connected = true : ResultData->Connected = false;
140         
141         ResultData->SSLStatus = TestConnection.CanDoSSL();
142         ResultData->SSLVerified = TestConnection.SSLVerify();
143         ResultData->ValidResponse = TestConnection.HasValidResponse();
144         ResultData->AuthPassed = TestConnection.AbleToLogin();
145         ResultData->CanProcess = TestConnection.CanDoProcessing();
146         ResultData->ErrorMessage = TestConnection.GetErrorMessage();
147         
148         // Post event back confirming the tests.
149         
150         wxCommandEvent ResultsEvent(UPDATERESULTS);
151         ResultsEvent.SetClientData(ResultData);
152         wxPostEvent(this, ResultsEvent);
153         
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