Implement client signals, add deconstructor + initial construction test
This commit is contained in:
parent
86a7d0a3aa
commit
eda0a2f690
@ -2189,6 +2189,49 @@ class AOClient : public QObject {
|
|||||||
* @param message The OOC message the client has sent.
|
* @param message The OOC message the client has sent.
|
||||||
*/
|
*/
|
||||||
void loginAttempt(QString message);
|
void loginAttempt(QString message);
|
||||||
|
|
||||||
|
signals:
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Signal connected to universal logger. Sends IC chat usage to the logger.
|
||||||
|
*/
|
||||||
|
void logIC(const QString& f_charName, const QString& f_oocName, const QString& f_ipid,
|
||||||
|
const QString& f_areaName, const QString &f_message);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Signal connected to universal logger. Sends OOC chat usage to the logger.
|
||||||
|
*/
|
||||||
|
void logOOC(const QString& f_charName, const QString& f_oocName, const QString& f_ipid,
|
||||||
|
const QString& f_areaName, const QString& f_message);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Signal connected to universal logger. Sends login attempt to the logger.
|
||||||
|
*/
|
||||||
|
void logLogin(const QString& f_charName, const QString& f_oocName, const QString& f_moderatorName,
|
||||||
|
const QString& f_ipid, const QString &f_areaName, const bool& f_success);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Signal connected to universal logger. Sends command usage to the logger.
|
||||||
|
*/
|
||||||
|
void logCMD(const QString& f_charName, const QString &f_ipid, const QString& f_oocName, const QString f_command,
|
||||||
|
const QStringList f_args, const QString f_areaName);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Signal connected to universal logger. Sends player kick information to the logger.
|
||||||
|
*/
|
||||||
|
void logKick(const QString& f_moderator, const QString& f_targetIPID, const QString& f_targetName, const QString f_targetOOCName);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Signal connected to universal logger. Sends ban information to the logger.
|
||||||
|
*/
|
||||||
|
void logBan(const QString& f_moderator, const QString& f_targetIPID, const QString& f_targetName, const QString f_targetOOCName,
|
||||||
|
const QString &f_duration);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Signal connected to universal logger. Sends modcall information to the logger, triggering a write of the buffer
|
||||||
|
* when modcall logging is used.
|
||||||
|
*/
|
||||||
|
void logModcall(const QString& f_charName, const QString &f_ipid, const QString& f_oocName, const QString& f_areaName);
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // AOCLIENT_H
|
#endif // AOCLIENT_H
|
||||||
|
@ -26,6 +26,7 @@
|
|||||||
#include "include/discord.h"
|
#include "include/discord.h"
|
||||||
#include "include/config_manager.h"
|
#include "include/config_manager.h"
|
||||||
#include "include/http_advertiser.h"
|
#include "include/http_advertiser.h"
|
||||||
|
#include "include/logger/u_logger.h"
|
||||||
|
|
||||||
#include <QCoreApplication>
|
#include <QCoreApplication>
|
||||||
#include <QDebug>
|
#include <QDebug>
|
||||||
@ -305,6 +306,11 @@ class Server : public QObject {
|
|||||||
*/
|
*/
|
||||||
QTimer* httpAdvertiserTimer;
|
QTimer* httpAdvertiserTimer;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Handles the universal log framework.
|
||||||
|
*/
|
||||||
|
ULogger* logger;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief The port through which the server will accept TCP connections.
|
* @brief The port through which the server will accept TCP connections.
|
||||||
*/
|
*/
|
||||||
|
@ -34,6 +34,21 @@ ULogger::ULogger(QObject* parent) :
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
ULogger::~ULogger()
|
||||||
|
{
|
||||||
|
switch (ConfigManager::loggingType()) {
|
||||||
|
case DataTypes::LogType::MODCALL :
|
||||||
|
writerModcall->deleteLater();
|
||||||
|
break;
|
||||||
|
case DataTypes::LogType::FULL :
|
||||||
|
writerFull->deleteLater();
|
||||||
|
break;
|
||||||
|
case DataTypes::LogType::SQL :
|
||||||
|
writerSQL->deleteLater();
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
void ULogger::logIC(const QString& f_charName, const QString& f_oocName, const QString& f_ipid,
|
void ULogger::logIC(const QString& f_charName, const QString& f_oocName, const QString& f_ipid,
|
||||||
const QString& f_areaName, const QString& f_message)
|
const QString& f_areaName, const QString& f_message)
|
||||||
{
|
{
|
||||||
|
@ -69,6 +69,8 @@ void Server::start()
|
|||||||
httpAdvertiserTimer->start(300000);
|
httpAdvertiserTimer->start(300000);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
logger = new ULogger(this);
|
||||||
|
|
||||||
proxy = new WSProxy(port, ws_port, this);
|
proxy = new WSProxy(port, ws_port, this);
|
||||||
if(ws_port != -1)
|
if(ws_port != -1)
|
||||||
proxy->start();
|
proxy->start();
|
||||||
|
Loading…
Reference in New Issue
Block a user