1 // frmNewAccount.cpp - New Account form (CardDAV2 account section).
3 // (c) 2012-2015 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 #include "frmNewAccount.h"
22 void frmNewAccount::RunCardDAV2Test( wxCommandEvent& event ){
24 NewAccountResult *ResultData = new NewAccountResult;
26 lblServerConnResult->SetLabel(_("Testing..."));
27 lblCardDAVSupportResult->SetLabel(_(""));
28 lblServerResponse->SetLabel(_(""));
29 lblServerSSLResult->SetLabel(_(""));
30 lblServerSSLValid->SetLabel(_(""));
31 lblAbleToLoginResult->SetLabel(_(""));
32 bool UsingSSLBypass = false;
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());
42 // Test the connection.
44 TestConnection.SetupConnectionObject();
45 COConnectResult TestConnectionResult = TestConnection.Connect(false);
47 // If server is using SSL, verify that the SSL connection is valid.
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"));
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());
74 // Connect again and fetch SSL certificate information.
76 TestConnection.BypassSSLVerification(true);
78 COConnectResult TestConnectionResult = TestConnection.Connect(false);
80 TestConnection.BypassSSLVerification(false);
82 SSLCertCollectionString CertData = TestConnection.BuildSSLCollection();
83 frmInvalidSSLCertificate *frmICPtr = new frmInvalidSSLCertificate(this);
85 frmICPtr->LoadDataNew(CertData, txtServerAddress->GetValue().ToStdString());
86 frmICPtr->ShowModal();
88 int SSLResult = frmICPtr->GetResult();
90 // Clean up before processing response.
95 // Process the response from the user.
99 // Accept the Certificate.
101 UsingSSLBypass = true;
102 TestConnection.BypassSSLVerification(true);
104 COConnectResult TestConnectionResult = TestConnection.Connect(true);
106 TestConnection.BypassSSLVerification(false);
108 } else if (SSLResult == 2){
110 // Reject the certificate, abort the task and mark as failed.
112 // TODO: Integrate into the code.
114 //lblConnectionResultText->SetLabel(_("An error occured whilst connnecting: ") + CardDAVConn.GetErrorMessage() + wxString::Format(wxT(" (%i)\n%s"), sslcode, CardDAVConn.GetErrorBuffer().mb_str()));
121 // Get the server prefix if the connection was successful.
123 if (TestConnectionResult == COCONNECT_OK){
125 if (UsingSSLBypass == true){
126 TestConnection.BypassSSLVerification(true);
129 std::string ReceivedServerPrefix;
130 COServerResponse PrefixRequestResult = TestConnection.GetDefaultPrefix(&ReceivedServerPrefix);
131 ServerPrefix = ReceivedServerPrefix;
133 if (UsingSSLBypass == true){
134 TestConnection.BypassSSLVerification(true);
139 TestConnectionResult == COCONNECT_OK ? ResultData->Connected = true : ResultData->Connected = false;
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();
148 // Post event back confirming the tests.
150 wxCommandEvent ResultsEvent(UPDATERESULTS);
151 ResultsEvent.SetClientData(ResultData);
152 wxPostEvent(this, ResultsEvent);