From 16fd57e591f24994989dbdadc6a729c577ac0085 Mon Sep 17 00:00:00 2001 From: Salanto <62221668+Salanto@users.noreply.github.com> Date: Wed, 25 Aug 2021 02:33:19 +0200 Subject: [PATCH] Hookup new clients to logger, test logger construction and log writing to buffer --- core/include/logger/u_logger.h | 2 +- core/include/server.h | 13 +++++++++++++ core/src/logger.cpp | 3 +++ core/src/logger/u_logger.cpp | 6 +++--- core/src/server.cpp | 22 ++++++++++++++++++++++ 5 files changed, 42 insertions(+), 4 deletions(-) diff --git a/core/include/logger/u_logger.h b/core/include/logger/u_logger.h index deb1014..ce35c3e 100644 --- a/core/include/logger/u_logger.h +++ b/core/include/logger/u_logger.h @@ -90,7 +90,7 @@ public slots: /** * @brief Logs any connection attempt to the server, wether sucessful or not. */ - void logConnectionAttempt(const QString &f_ip_address, const QString &f_ipid, const QString &f_hdid); + void logConnectionAttempt(const QString &f_ip_address, const QString &f_ipid); private: diff --git a/core/include/server.h b/core/include/server.h index 1eab686..52d6690 100644 --- a/core/include/server.h +++ b/core/include/server.h @@ -278,7 +278,20 @@ class Server : public QObject { */ void banWebhookRequest(const QString& f_ipid, const QString& f_moderator, const QString& f_duration, const QString& f_reason, const int& f_banID); + /** + * @brief Signal connected to universal logger. Logs a client connection attempt. + * @param f_ip_address The IP Address of the incoming connection. + * @param f_ipid The IPID of the incoming connection. + * @param f_hdid The HDID of the incoming connection. + */ + void logConnectionAttempt(const QString& f_ip_address, const QString& f_ipid); + private: + /** + * @brief Connects new AOClient to the logger. + **/ + void hookupLogger(AOClient* client); + /** * @brief The proxy used for WebSocket connections. * diff --git a/core/src/logger.cpp b/core/src/logger.cpp index cde57e4..27710f9 100644 --- a/core/src/logger.cpp +++ b/core/src/logger.cpp @@ -99,6 +99,9 @@ void Logger::flush() break; case DataTypes::LogType::FULL: l_logfile.setFileName(QString("logs/%1.log").arg(QDate::currentDate().toString("yyyy-MM-dd"))); + break; + case DataTypes::LogType::SQL: + break; } diff --git a/core/src/logger/u_logger.cpp b/core/src/logger/u_logger.cpp index 94648a3..5f95009 100644 --- a/core/src/logger/u_logger.cpp +++ b/core/src/logger/u_logger.cpp @@ -131,11 +131,11 @@ void ULogger::logModcall(const QString &f_charName, const QString &f_ipid, const } } -void ULogger::logConnectionAttempt(const QString& f_ip_address, const QString& f_ipid, const QString& f_hdid) +void ULogger::logConnectionAttempt(const QString& f_ip_address, const QString& f_ipid) { QString l_time = QDateTime::currentDateTime().toString("ddd MMMM d yyyy | hh:mm:ss"); - QString l_logEntry = QStringLiteral("[%1][CONNECT][%2][%3][%4]\n") - .arg(l_time, f_ip_address, f_ipid, f_hdid); + QString l_logEntry = QStringLiteral("[%1][CONNECT][%2][%3]\n") + .arg(l_time, f_ip_address, f_ipid); updateAreaBuffer("SERVER",l_logEntry); } diff --git a/core/src/server.cpp b/core/src/server.cpp index 74adad0..dc6b0d3 100644 --- a/core/src/server.cpp +++ b/core/src/server.cpp @@ -70,6 +70,8 @@ void Server::start() } logger = new ULogger(this); + connect(this, &Server::logConnectionAttempt, + logger, &ULogger::logConnectionAttempt); proxy = new WSProxy(port, ws_port, this); if(ws_port != -1) @@ -171,6 +173,8 @@ void Server::clientConnected() // tsuserver4. It should disable fantacrypt // completely in any client 2.4.3 or newer client->sendPacket(decryptor); + hookupLogger(client); + emit logConnectionAttempt(client->remote_ip.toString(), client->getIpid()); #ifdef NET_DEBUG qDebug() << client->remote_ip.toString() << "connected"; #endif @@ -308,6 +312,24 @@ void Server::handleDiscordIntegration() return; } +void Server::hookupLogger(AOClient* client) +{ + connect(client, &AOClient::logIC, + logger, &ULogger::logIC); + connect(client, &AOClient::logOOC, + logger, &ULogger::logOOC); + connect(client, &AOClient::logLogin, + logger, &ULogger::logLogin); + connect(client, &AOClient::logCMD, + logger, &ULogger::logCMD); + connect(client, &AOClient::logBan, + logger, &ULogger::logBan); + connect(client, &AOClient::logKick, + logger, &ULogger::logKick); + connect(client, &AOClient::logModcall, + logger, &ULogger::logModcall); +} + Server::~Server() { for (AOClient* client : qAsConst(clients)) {