identd: Cleanup
[quassel.git] / src / core / identserver.h
1 /***************************************************************************
2  *   Copyright (C) 2005-2018 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 #pragma once
22
23 #include <list>
24
25 #include <QHash>
26 #include <QObject>
27 #include <QString>
28 #include <QTcpServer>
29 #include <QTcpSocket>
30
31 #include "coreidentity.h"
32
33 struct Request
34 {
35     QTcpSocket *socket;
36     uint16_t localPort;
37     QString query;
38     qint64 transactionId;
39     qint64 requestId;
40
41     friend bool operator==(const Request &a, const Request &b);
42
43     void respondSuccess(const QString &user);
44     void respondError(const QString &error);
45 };
46
47
48 class IdentServer : public QObject
49 {
50     Q_OBJECT
51
52 public:
53     IdentServer(bool strict, QObject *parent = nullptr);
54
55     bool startListening();
56     void stopListening(const QString &msg);
57     qint64 addWaitingSocket();
58
59 public slots:
60     void addSocket(const CoreIdentity *identity, const QHostAddress &localAddress, quint16 localPort, const QHostAddress &peerAddress, quint16 peerPort, qint64 socketId);
61     void removeSocket(const CoreIdentity *identity, const QHostAddress &localAddress, quint16 localPort, const QHostAddress &peerAddress, quint16 peerPort, qint64 socketId);
62
63 private slots:
64     void incomingConnection();
65     void respond();
66
67 private:
68     bool responseAvailable(Request request) const;
69
70     qint64 lowestSocketId() const;
71
72     void processWaiting(qint64 socketId);
73
74     void removeWaitingSocket(qint64 socketId);
75
76     QTcpServer _server, _v6server;
77
78     bool _strict;
79
80     QHash<uint16_t, QString> _connections;
81     std::list<Request> _requestQueue;
82     std::list<qint64> _waiting;
83     qint64 _socketId{0};
84     qint64 _requestId{0};
85 };