X-Git-Url: http://Server1/repobrowser/?a=blobdiff_plain;f=source%2Fconnobject%2FConnectionObject.h;h=8e5221f246de60bf2ffb49a534d4e6805803939c;hb=a578ed436123242f807cb59eae02fcf6c22e2458;hp=4ba84b87d06dc059b891675d77b0a5c521bc33aa;hpb=207230fecdee2390ca3bfa41fc9ec33ea0e7886b;p=xestiaab%2F.git diff --git a/source/connobject/ConnectionObject.h b/source/connobject/ConnectionObject.h index 4ba84b8..8e5221f 100644 --- a/source/connobject/ConnectionObject.h +++ b/source/connobject/ConnectionObject.h @@ -22,6 +22,17 @@ #include #include #include +#include "../common/sslcertstructs.h" + +#if defined (__WIN32__) +#include +#include +#include +#include +#include +#include +#include +#endif enum COConnectResult { COCONNECT_UNITTESTFAIL = -1, @@ -36,7 +47,7 @@ enum CORequestResult { COREQUEST_UNITTESTFAIL = -1, COREQUEST_OK, COREQUEST_ERROR_NOTCONNECTED, - COREQUEST_ERROR_SERVER + COREQUEST_ERROR_SERVER, }; enum COSSLVerified { @@ -48,6 +59,12 @@ enum COSSLVerified { COSSL_NORESULT }; +enum COContactStatus { + COCS_UNKNOWN, + COCS_UPDATED, + COCS_DELETED +}; + struct COServerResponse { CORequestResult RequestResult; std::string EntityTag; @@ -59,6 +76,7 @@ struct COServerResponse { struct COContactData { std::string Location; std::string Data; + COContactStatus Status = COCS_UNKNOWN; }; struct COContactList { @@ -72,31 +90,44 @@ class ConnectionObject{ public: ConnectionObject(std::string ServerAddress, int ServerPort, std::string ServerUser, std::string ServerPass, bool ServerSSL); ConnectionObject(std::string ServerAddress, int ServerPort, std::string ServerUser, std::string ServerPass, bool ServerSSL, std::string ServerPrefix, std::string ServerAccount); - + // Virtual functions to be setup by the inheriting classes. - virtual void SetupConnectionObject() { }; + virtual void SetupConnectionObject() = 0; //virtual ~ConnectionObject() {}; - virtual bool IsTaskCompleted() {}; + virtual bool IsTaskCompleted() = 0; - virtual COConnectResult Connect(bool DoAuthentication) {}; + virtual COConnectResult Connect(bool DoAuthentication) = 0; + virtual void BypassSSLVerification(bool EnableBypass) = 0; - virtual std::string GetDefaultPrefix() {}; - virtual COServerResponse AddContact(std::string Location, std::string Data) {}; - virtual COServerResponse EditContact(std::string Location, std::string Data) {}; - virtual COServerResponse DeleteContact(std::string Location, std::string EntityTag) {}; - virtual COServerResponse GetServerEntityTagValue(std::string Location) {}; - virtual COServerResponse GetContact(std::string Location) {}; - virtual COContactList GetContactList(std::string SyncToken) {}; + virtual COServerResponse GetDefaultPrefix(std::string *ServerPrefix) = 0; + virtual COServerResponse AddContact(std::string Location, std::string Data) = 0; + virtual COServerResponse EditContact(std::string Location, std::string Data) = 0; + virtual COServerResponse DeleteContact(std::string Location) = 0; + virtual COServerResponse GetServerEntityTagValue(std::string Location) = 0; + virtual COServerResponse GetContact(std::string Location, std::string *PageData) = 0; + virtual COContactList GetContactList(std::string SyncToken) = 0; - virtual bool CanDoProcessing() {}; - virtual bool CanDoSSL() {}; - virtual COSSLVerified SSLVerify() {}; - virtual bool AbleToLogin() {}; - virtual bool HasValidResponse() {}; - virtual bool IsSelfSigned() {}; - virtual std::string GetErrorMessage() {}; + virtual bool CanDoProcessing() = 0; + virtual bool CanDoSSL() = 0; + virtual COSSLVerified SSLVerify() = 0; + virtual bool AbleToLogin() = 0; + virtual bool HasValidResponse() = 0; + virtual bool IsSelfSigned() = 0; + virtual std::string GetErrorMessage() = 0; + + // OS specific functions. + +#if defined(__APPLE__) +#elif defined(__WIN32__) + + virtual PCCERT_CONTEXT BuildSSLCollection() = 0; + +#else + virtual SSLCertCollectionString BuildSSLCollection() = 0; + +#endif protected: // Test Mode.