mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-21 22:24:07 +01:00
f191de2514
In addition, all found errors (formatting & line ending) have been fixed in this PR.
67 lines
1.5 KiB
C++
67 lines
1.5 KiB
C++
#pragma once
|
|
|
|
#include <rapidjson/rapidjson.h>
|
|
#include <common/SignalVector.hpp>
|
|
|
|
#include "providers/irc/IrcChannel2.hpp"
|
|
#include "providers/irc/IrcServer.hpp"
|
|
|
|
class QAbstractTableModel;
|
|
|
|
namespace chatterino {
|
|
|
|
enum class IrcAuthType { Anonymous, Custom, Pass, Sasl };
|
|
|
|
struct IrcServerData {
|
|
QString host;
|
|
int port = 6697;
|
|
bool ssl = true;
|
|
|
|
QString user;
|
|
QString nick;
|
|
QString real;
|
|
|
|
IrcAuthType authType = IrcAuthType::Anonymous;
|
|
void getPassword(QObject *receiver,
|
|
std::function<void(const QString &)> &&onLoaded) const;
|
|
void setPassword(const QString &password);
|
|
|
|
QStringList connectCommands;
|
|
|
|
int id;
|
|
};
|
|
|
|
class Irc
|
|
{
|
|
public:
|
|
Irc();
|
|
|
|
static Irc &instance();
|
|
|
|
static inline void *const noEraseCredentialCaller =
|
|
reinterpret_cast<void *>(1);
|
|
|
|
SignalVector<IrcServerData> connections;
|
|
QAbstractTableModel *newConnectionModel(QObject *parent);
|
|
|
|
ChannelPtr getOrAddChannel(int serverId, QString name);
|
|
|
|
void save();
|
|
void load();
|
|
|
|
int uniqueId();
|
|
|
|
private:
|
|
int currentId_{};
|
|
bool loaded_{};
|
|
|
|
// Servers have a unique id.
|
|
// When a server gets changed it gets removed and then added again.
|
|
// So we store the channels of that server in abandonedChannels_ temporarily.
|
|
// Or if the server got removed permanently then it's still stored there.
|
|
std::unordered_map<int, std::unique_ptr<IrcServer>> servers_;
|
|
std::unordered_map<int, std::vector<std::weak_ptr<Channel>>>
|
|
abandonedChannels_;
|
|
};
|
|
|
|
} // namespace chatterino
|