1/***************************************************************************
2 * Copyright (C) 2005-2014 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 "peerfactory.h"
26#include "remotepeer.h"
27#include "types.h"
28
29class CoreAuthHandler : public AuthHandler
30{
31 Q_OBJECT
32
33public:
34 CoreAuthHandler(QTcpSocket *socket, QObject *parent = 0);
35
36signals:
37 void handshakeComplete(RemotePeer *peer, UserId uid);
38
39private:
40 using AuthHandler::handle;
41
42 void handle(const Protocol::RegisterClient &msg);
43 void handle(const Protocol::SetupData &msg);
44 void handle(const Protocol::Login &msg);
45
46 void setPeer(RemotePeer *peer);
47 void startSsl();
48
49 bool checkClientRegistered();
50
51private slots:
52 void onReadyRead();
53
54#ifdef HAVE_SSL
55 void onSslErrors();
56#endif
57
58 // only in legacy mode
59 void onProtocolVersionMismatch(int actual, int expected);
60
61private:
62 RemotePeer *_peer;
63
64 bool _magicReceived;
65 bool _legacy;
66 bool _clientRegistered;
67 quint8 _connectionFeatures;
68 QVector<PeerFactory::ProtoDescriptor> _supportedProtos;
69};
70
71#endif
72