hyperion.ng/libsrc/webserver/QtHttpServer.cpp

163 lines
3.8 KiB
C++
Raw Normal View History

#include "QtHttpServer.h"
#include "QtHttpRequest.h"
#include "QtHttpReply.h"
#include "QtHttpClientWrapper.h"
#include <QUrlQuery>
const QString & QtHttpServer::HTTP_VERSION = QStringLiteral ("HTTP/1.1");
QtHttpServerWrapper::QtHttpServerWrapper (QObject * parent)
2018-12-31 15:48:29 +01:00
: QTcpServer (parent)
, m_useSsl (false)
{
}
2018-12-31 15:48:29 +01:00
QtHttpServerWrapper::~QtHttpServerWrapper (void)
{
}
void QtHttpServerWrapper::setUseSecure (const bool ssl) {
2018-12-31 15:48:29 +01:00
m_useSsl = ssl;
}
2018-12-31 15:48:29 +01:00
void QtHttpServerWrapper::incomingConnection (qintptr handle)
{
QTcpSocket * sock = (m_useSsl
? new QSslSocket (this)
: new QTcpSocket (this));
(sock->setSocketDescriptor (handle))
? addPendingConnection (sock)
: delete sock;
}
QtHttpServer::QtHttpServer (QObject * parent)
2018-12-31 15:48:29 +01:00
: QObject (parent)
, m_useSsl (false)
, m_serverName (QStringLiteral ("The Qt5 HTTP Server"))
{
2018-12-31 15:48:29 +01:00
m_sockServer = new QtHttpServerWrapper (this);
connect (m_sockServer, &QtHttpServerWrapper::newConnection, this, &QtHttpServer::onClientConnected);
}
2018-12-31 15:48:29 +01:00
const QString & QtHttpServer::getServerName (void) const
{
return m_serverName;
}
2018-12-31 15:48:29 +01:00
quint16 QtHttpServer::getServerPort (void) const
{
return m_sockServer->serverPort ();
}
2018-12-31 15:48:29 +01:00
QString QtHttpServer::getErrorString (void) const
{
return m_sockServer->errorString ();
}
2018-12-31 15:48:29 +01:00
void QtHttpServer::start (quint16 port)
{
2018-12-27 23:11:32 +01:00
if(!m_sockServer->isListening())
2018-12-31 15:48:29 +01:00
(m_sockServer->listen (QHostAddress::Any, port))
? emit started (m_sockServer->serverPort ())
: emit error (m_sockServer->errorString ());
}
void QtHttpServer::stop (void)
{
if (m_sockServer->isListening ())
2018-12-27 23:11:32 +01:00
{
2018-12-31 15:48:29 +01:00
m_sockServer->close ();
// disconnect clients
const QList<QTcpSocket*> socks = m_socksClientsHash.keys();
for(auto sock : socks)
{
sock->close();
2018-12-27 23:11:32 +01:00
}
2018-12-31 15:48:29 +01:00
emit stopped ();
}
}
2018-12-31 15:48:29 +01:00
void QtHttpServer::setServerName (const QString & serverName)
{
m_serverName = serverName;
}
2018-12-31 15:48:29 +01:00
void QtHttpServer::setUseSecure (const bool ssl)
{
m_useSsl = ssl;
m_sockServer->setUseSecure (m_useSsl);
}
2018-12-31 15:48:29 +01:00
void QtHttpServer::setPrivateKey (const QSslKey & key)
{
m_sslKey = key;
}
2018-12-31 15:48:29 +01:00
void QtHttpServer::setCertificates (const QList<QSslCertificate> & certs)
{
m_sslCerts = certs;
}
2018-12-31 15:48:29 +01:00
void QtHttpServer::onClientConnected (void)
{
while (m_sockServer->hasPendingConnections ())
{
if (QTcpSocket * sock = m_sockServer->nextPendingConnection ())
{
2018-12-27 23:11:32 +01:00
connect (sock, &QTcpSocket::disconnected, this, &QtHttpServer::onClientDisconnected);
2018-12-31 15:48:29 +01:00
if (m_useSsl)
{
if (QSslSocket * ssl = qobject_cast<QSslSocket *> (sock))
{
2018-12-27 23:11:32 +01:00
connect (ssl, SslErrorSignal (&QSslSocket::sslErrors), this, &QtHttpServer::onClientSslErrors);
2018-12-31 15:48:29 +01:00
connect (ssl, &QSslSocket::encrypted, this, &QtHttpServer::onClientSslEncrypted);
connect (ssl, &QSslSocket::peerVerifyError, this, &QtHttpServer::onClientSslPeerVerifyError);
connect (ssl, &QSslSocket::modeChanged, this, &QtHttpServer::onClientSslModeChanged);
2018-12-27 23:11:32 +01:00
ssl->setLocalCertificateChain (m_sslCerts);
ssl->setPrivateKey (m_sslKey);
ssl->setPeerVerifyMode (QSslSocket::AutoVerifyPeer);
ssl->startServerEncryption ();
}
}
QtHttpClientWrapper * wrapper = new QtHttpClientWrapper (sock, this);
m_socksClientsHash.insert (sock, wrapper);
emit clientConnected (wrapper->getGuid ());
2018-12-31 15:48:29 +01:00
}
}
}
2018-12-31 15:48:29 +01:00
void QtHttpServer::onClientSslEncrypted (void)
{
}
2018-12-31 15:48:29 +01:00
void QtHttpServer::onClientSslPeerVerifyError (const QSslError & err)
{
Q_UNUSED (err)
}
2018-12-31 15:48:29 +01:00
void QtHttpServer::onClientSslErrors (const QList<QSslError> & errors)
{
Q_UNUSED (errors)
}
2018-12-31 15:48:29 +01:00
void QtHttpServer::onClientSslModeChanged (QSslSocket::SslMode mode)
{
Q_UNUSED (mode)
}
2018-12-31 15:48:29 +01:00
void QtHttpServer::onClientDisconnected (void)
{
if (QTcpSocket * sockClient = qobject_cast<QTcpSocket *> (sender ()))
{
if (QtHttpClientWrapper * wrapper = m_socksClientsHash.value (sockClient, Q_NULLPTR))
{
emit clientDisconnected (wrapper->getGuid ());
wrapper->deleteLater ();
m_socksClientsHash.remove (sockClient);
}
}
}