X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fcommon%2Fprotocol.h;h=499d36e3f5747f8189bea8021db29727c8d176e3;hb=4e3b9ea041c45aba5eaea14e4aafd46ee3ed044a;hp=89625f44ab144b5b678b519f3ee1fa412ad90fc8;hpb=9dfc807d8f60135976d4ea0ed31022304fad8f4c;p=quassel.git diff --git a/src/common/protocol.h b/src/common/protocol.h index 89625f44..499d36e3 100644 --- a/src/common/protocol.h +++ b/src/common/protocol.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-2013 by the Quassel Project * + * Copyright (C) 2005-2018 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -18,25 +18,172 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * ***************************************************************************/ -#ifndef PROTOCOL_H_ -#define PROTOCOL_H_ +#pragma once #include #include #include +#include "quassel.h" + namespace Protocol { -enum Handler { - SignalProxy +const quint32 magic = 0x42b33f00; + +enum Type { + InternalProtocol = 0x00, + LegacyProtocol = 0x01, + DataStreamProtocol = 0x02 +}; + + +enum Feature { + Encryption = 0x01, + Compression = 0x02 +}; + + +enum class Handler { + SignalProxy, + AuthHandler +}; + + +/*** Handshake, handled by AuthHandler ***/ + +struct HandshakeMessage { + inline Handler handler() const { return Handler::AuthHandler; } +}; + + +struct RegisterClient : public HandshakeMessage +{ + inline RegisterClient(Quassel::Features clientFeatures, const QString &clientVersion, const QString &buildDate, bool sslSupported = false) + : features(std::move(clientFeatures)) + , clientVersion(clientVersion) + , buildDate(buildDate) + , sslSupported(sslSupported) + {} + + Quassel::Features features; + QString clientVersion; + QString buildDate; + + // this is only used by the LegacyProtocol in compat mode + bool sslSupported; +}; + + +struct ClientDenied : public HandshakeMessage +{ + inline ClientDenied(const QString &errorString) + : errorString(errorString) {} + + QString errorString; +}; + + +struct ClientRegistered : public HandshakeMessage +{ + inline ClientRegistered(Quassel::Features coreFeatures, bool coreConfigured, const QVariantList &backendInfo, const QVariantList &authenticatorInfo, bool sslSupported) + : features(std::move(coreFeatures)) + , coreConfigured(coreConfigured) + , backendInfo(backendInfo) + , authenticatorInfo(authenticatorInfo) + , sslSupported(sslSupported) + {} + + Quassel::Features features; + bool coreConfigured; + QVariantList backendInfo; // TODO: abstract this better + + // The authenticatorInfo should be optional! + QVariantList authenticatorInfo; + + // this is only used by the LegacyProtocol in compat mode + bool sslSupported; +}; + + +struct SetupData : public HandshakeMessage +{ + inline SetupData(const QString &adminUser, const QString &adminPassword, const QString &backend, + const QVariantMap &setupData, const QString &authenticator = QString(), + const QVariantMap &authSetupData = QVariantMap()) + : adminUser(adminUser) + , adminPassword(adminPassword) + , backend(backend) + , setupData(setupData) + , authenticator(authenticator) + , authSetupData(authSetupData) + {} + + QString adminUser; + QString adminPassword; + QString backend; + QVariantMap setupData; + QString authenticator; + QVariantMap authSetupData; }; +struct SetupFailed : public HandshakeMessage +{ + inline SetupFailed(const QString &errorString) + : errorString(errorString) {} + + QString errorString; +}; + + +struct SetupDone : public HandshakeMessage +{ + inline SetupDone() {} +}; + + +struct Login : public HandshakeMessage +{ + inline Login(const QString &user, const QString &password) + : user(user), password(password) {} + + QString user; + QString password; +}; + + +struct LoginFailed : public HandshakeMessage +{ + inline LoginFailed(const QString &errorString) + : errorString(errorString) {} + + QString errorString; +}; + + +struct LoginSuccess : public HandshakeMessage +{ + inline LoginSuccess() {} +}; + + +// TODO: more generic format +struct SessionState : public HandshakeMessage +{ + inline SessionState() {} // needed for QMetaType (for the mono client) + inline SessionState(const QVariantList &identities, const QVariantList &bufferInfos, const QVariantList &networkIds) + : identities(identities), bufferInfos(bufferInfos), networkIds(networkIds) {} + + QVariantList identities; + QVariantList bufferInfos; + QVariantList networkIds; +}; + /*** handled by SignalProxy ***/ struct SignalProxyMessage { - inline Handler handler() const { return SignalProxy; } + inline Handler handler() const { return Handler::SignalProxy; } }; @@ -102,5 +249,3 @@ struct HeartBeatReply }; - -#endif