Abstract away the protocol handshake code
[quassel.git] / src / core / coreauthhandler.h
1 /***************************************************************************
2  *   Copyright (C) 2005-2013 by the Quassel Project                        *
3  *   devel@quassel-irc.org                                                 *
4  *                                                                         *
5  *   This program is free software; you can redistribute it and/or modify  *
6  *   it under the terms of the GNU General Public License as published by  *
7  *   the Free Software Foundation; either version 2 of the License, or     *
8  *   (at your option) version 3.                                           *
9  *                                                                         *
10  *   This program is distributed in the hope that it will be useful,       *
11  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
12  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
13  *   GNU General Public License for more details.                          *
14  *                                                                         *
15  *   You should have received a copy of the GNU General Public License     *
16  *   along with this program; if not, write to the                         *
17  *   Free Software Foundation, Inc.,                                       *
18  *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.         *
19  ***************************************************************************/
20
21 #ifndef COREAUTHHANDLER_H
22 #define COREAUTHHANDLER_H
23
24 #include "authhandler.h"
25 #include "remotepeer.h"
26 #include "types.h"
27
28 class CoreAuthHandler : public AuthHandler
29 {
30     Q_OBJECT
31
32 public:
33     CoreAuthHandler(QTcpSocket *socket, QObject *parent = 0);
34
35 signals:
36     void handshakeComplete(RemotePeer *peer, UserId uid);
37
38 private:
39     using AuthHandler::handle;
40
41     void handle(const Protocol::RegisterClient &msg);
42     void handle(const Protocol::SetupData &msg);
43     void handle(const Protocol::Login &msg);
44
45     bool checkClientRegistered();
46
47 private slots:
48     void startSsl();
49 #ifdef HAVE_SSL
50     void onSslErrors();
51 #endif
52
53     // only in compat mode
54     void onProtocolVersionMismatch(int actual, int expected);
55
56 private:
57     RemotePeer *_peer;
58
59     bool _clientRegistered;
60 };
61
62 #endif