////////////////////////////////////////////////////////////////////////////////////// // akashi - a server for Attorney Online 2 // // Copyright (C) 2020 scatterflower // // // // This program is free software: you can redistribute it and/or modify // // it under the terms of the GNU Affero General Public License as // // published by the Free Software Foundation, either version 3 of the // // License, or (at your option) any later version. // // // // This program is distributed in the hope that it will be useful, // // but WITHOUT ANY WARRANTY; without even the implied warranty of // // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // // GNU Affero General Public License for more details. // // // // You should have received a copy of the GNU Affero General Public License // // along with this program. If not, see . // ////////////////////////////////////////////////////////////////////////////////////// #ifndef DISCORD_H #define DISCORD_H #include #include #include "server.h" class Server; class Discord : public QObject { Q_OBJECT public: /** * @brief Creates an instance of the Discord class. * * @param p_server A pointer to the Server instance Discord is constructed by. * @param parent Qt-based parent, passed along to inherited constructor from QObject. */ Discord(Server* p_server, QObject* parent = nullptr) : QObject(parent), server(p_server) { }; public slots: /** * @brief Sends a modcall to a discord webhook. * * @param name The character or OOC name of the client who sent the modcall. * @param area The area name of the area the modcall was sent from. * @param reason The reason the client specified for the modcall. */ void postModcallWebhook(QString name, QString area, QString reason); private: /** * @brief A pointer to the Server. */ Server* server; private slots: /** * @brief Sends the reply to the POST request sent by Discord::postModcallWebhook. */ void onFinish(QNetworkReply *reply); }; #endif // DISCORD_H