X-Git-Url: http://Server1/repobrowser/?a=blobdiff_plain;f=source%2Fconnobject%2FConnectionObject.h;h=ab479e34eb81e0a070653dd5808f7d9d1afb4ea1;hb=3a02a0ffe62a3813b75e061252434de658929b1d;hp=c8d1466ef626cb029df3cd3e303a5123234c3b3e;hpb=4990d9a3913f961e2978c06ba97a8ea79622aa7a;p=xestiaab%2F.git diff --git a/source/connobject/ConnectionObject.h b/source/connobject/ConnectionObject.h index c8d1466..ab479e3 100644 --- a/source/connobject/ConnectionObject.h +++ b/source/connobject/ConnectionObject.h @@ -16,16 +16,58 @@ // You should have received a copy of the GNU General Public License along // with Xestia Address Book. If not, see +#ifndef __CONNOBJECT_CONNECTIONOBJECT_H__ +#define __CONNOBJECT_CONNECTIONOBJECT_H__ + #include +#include +#include +#include "../common/sslcertstructs.h" enum COConnectResult { COCONNECT_UNITTESTFAIL = -1, COCONNECT_OK, + COCONNECT_SSLFAIL, COCONNECT_INVALID, COCONNECT_TIMEOUT, COCONNECT_AUTHFAIL }; +enum CORequestResult { + COREQUEST_UNITTESTFAIL = -1, + COREQUEST_OK, + COREQUEST_ERROR_NOTCONNECTED, + COREQUEST_ERROR_SERVER, +}; + +enum COSSLVerified { + COSSL_UNITTESTFAIL = -1, + COSSL_VERIFIED, + COSSL_VERIFIED_USER, + COSSL_UNABLETOVERIFY, + COSSL_NOTAPPLICABLE, + COSSL_NORESULT +}; + +struct COServerResponse { + CORequestResult RequestResult; + std::string EntityTag; + int SessionCode; + int ResultCode; + std::string ResultMessage; +}; + +struct COContactData { + std::string Location; + std::string Data; +}; + +struct COContactList { + COServerResponse ServerResponse; + std::vector ListData; + std::string SyncToken; +}; + class ConnectionObject{ public: @@ -34,19 +76,46 @@ class ConnectionObject{ // Virtual functions to be setup by the inheriting classes. - virtual void SetupConnectionObject() {}; - virtual ~ConnectionObject() {}; + virtual void SetupConnectionObject() { }; + //virtual ~ConnectionObject() {}; + + virtual bool IsTaskCompleted() {}; + + virtual COConnectResult Connect(bool DoAuthentication) {}; + virtual void BypassSSLVerification(bool EnableBypass) {}; - virtual COConnectResult Connect() {}; + virtual COServerResponse GetDefaultPrefix(std::string *ServerPrefix) {}; + virtual COServerResponse AddContact(std::string Location, std::string Data) {}; + virtual COServerResponse EditContact(std::string Location, std::string Data) {}; + virtual COServerResponse DeleteContact(std::string Location) {}; + virtual COServerResponse GetServerEntityTagValue(std::string Location) {}; + virtual COServerResponse GetContact(std::string Location, std::string *PageData) {}; + virtual COContactList GetContactList(std::string SyncToken) {}; virtual bool CanDoProcessing() {}; virtual bool CanDoSSL() {}; - virtual bool SSLVerify() {}; + virtual COSSLVerified SSLVerify() {}; virtual bool AbleToLogin() {}; virtual bool HasValidResponse() {}; virtual bool IsSelfSigned() {}; + virtual std::string GetErrorMessage() {}; + + // OS specific functions. + +#if defined(__APPLE__) +#elif defined(__WIN32__) +#else + SSLCertCollectionString BuildSSLCollection() {}; + +#endif protected: + // Test Mode. + + bool TestMode = false; + + // Server variables. + std::string ServerAddress = ""; unsigned int ServerPort = 8080; std::string ServerUser = ""; @@ -55,8 +124,19 @@ class ConnectionObject{ std::string ServerAccount = ""; bool ServerSSL = true; std::string ErrorMessage = ""; - std::string ErrorBufferMessage = ""; - bool TestMode = false; + + // Connect results. + + bool SSLStatus = false; + COSSLVerified SSLVerified = COSSL_NORESULT; + bool ValidResponse = false; + bool AuthPassed = false; + bool CanProcess = false; + bool SSLSelfSigned = false; + bool TaskCompleted = false; + private: -}; \ No newline at end of file +}; + +#endif \ No newline at end of file