2014-05-16 02:02:54 +05:30
|
|
|
#include "ServerStatus.h"
|
2014-05-17 19:53:48 +05:30
|
|
|
#include "LineSeparator.h"
|
|
|
|
#include "IconLabel.h"
|
2014-05-16 02:02:54 +05:30
|
|
|
#include "logic/status/StatusChecker.h"
|
|
|
|
|
|
|
|
#include "MultiMC.h"
|
|
|
|
|
|
|
|
#include <QHBoxLayout>
|
|
|
|
#include <QFrame>
|
|
|
|
#include <QLabel>
|
|
|
|
#include <QMap>
|
|
|
|
#include <QToolButton>
|
2014-05-17 19:53:48 +05:30
|
|
|
#include <QAction>
|
2014-05-16 02:02:54 +05:30
|
|
|
|
2014-05-17 19:53:48 +05:30
|
|
|
ServerStatus::ServerStatus(QWidget *parent, Qt::WindowFlags f) : QWidget(parent, f)
|
2014-05-16 02:02:54 +05:30
|
|
|
{
|
2014-05-17 19:53:48 +05:30
|
|
|
layout = new QHBoxLayout(this);
|
|
|
|
layout->setContentsMargins(0, 0, 0, 0);
|
|
|
|
goodIcon = QIcon::fromTheme("status-good");
|
|
|
|
badIcon = QIcon::fromTheme("status-bad");
|
|
|
|
|
|
|
|
addStatus("minecraft.net", tr("Web"));
|
|
|
|
addLine();
|
|
|
|
addStatus("account.mojang.com", tr("Account"));
|
|
|
|
addLine();
|
|
|
|
addStatus("skins.minecraft.net", tr("Skins"));
|
|
|
|
addLine();
|
|
|
|
addStatus("authserver.mojang.com", tr("Auth"));
|
|
|
|
addLine();
|
|
|
|
addStatus("sessionserver.mojang.com", tr("Session"));
|
|
|
|
|
2014-05-16 02:02:54 +05:30
|
|
|
m_statusRefresh = new QToolButton(this);
|
|
|
|
m_statusRefresh->setCheckable(true);
|
|
|
|
m_statusRefresh->setToolButtonStyle(Qt::ToolButtonIconOnly);
|
|
|
|
m_statusRefresh->setIcon(QIcon::fromTheme("refresh"));
|
2014-05-17 19:53:48 +05:30
|
|
|
layout->addWidget(m_statusRefresh);
|
|
|
|
|
|
|
|
setLayout(layout);
|
|
|
|
|
2014-05-16 02:02:54 +05:30
|
|
|
// Start status checker
|
|
|
|
{
|
2014-05-17 19:53:48 +05:30
|
|
|
auto reloader = MMC->statusChecker().get();
|
|
|
|
connect(reloader, &StatusChecker::statusChanged, this, &ServerStatus::StatusChanged);
|
|
|
|
connect(reloader, &StatusChecker::statusLoading, this, &ServerStatus::StatusReloading);
|
2014-05-16 02:02:54 +05:30
|
|
|
connect(m_statusRefresh, &QAbstractButton::clicked, this, &ServerStatus::reloadStatus);
|
2014-05-17 19:53:48 +05:30
|
|
|
MMC->statusChecker()->startTimer(60000);
|
2014-05-16 02:02:54 +05:30
|
|
|
reloadStatus();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-05-17 19:53:48 +05:30
|
|
|
ServerStatus::~ServerStatus()
|
2014-05-16 02:02:54 +05:30
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2014-05-17 19:53:48 +05:30
|
|
|
void ServerStatus::reloadStatus()
|
2014-05-16 02:02:54 +05:30
|
|
|
{
|
2014-05-17 19:53:48 +05:30
|
|
|
MMC->statusChecker()->reloadStatus();
|
2014-05-16 02:02:54 +05:30
|
|
|
}
|
|
|
|
|
2014-05-17 19:53:48 +05:30
|
|
|
void ServerStatus::addLine()
|
2014-05-16 02:02:54 +05:30
|
|
|
{
|
2014-05-17 19:53:48 +05:30
|
|
|
layout->addWidget(new LineSeparator(this));
|
2014-05-16 02:02:54 +05:30
|
|
|
}
|
|
|
|
|
2014-05-17 19:53:48 +05:30
|
|
|
void ServerStatus::addStatus(QString key, QString name)
|
2014-05-16 02:02:54 +05:30
|
|
|
{
|
|
|
|
{
|
2014-05-17 19:53:48 +05:30
|
|
|
auto label = new IconLabel(this, badIcon, QSize(16, 16));
|
|
|
|
label->setToolTip(key);
|
|
|
|
serverLabels[key] = label;
|
|
|
|
layout->addWidget(label);
|
|
|
|
}
|
|
|
|
{
|
|
|
|
auto label = new QLabel(this);
|
|
|
|
label->setText(name);
|
|
|
|
label->setToolTip(key);
|
|
|
|
layout->addWidget(label);
|
2014-05-16 02:02:54 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-05-17 19:53:48 +05:30
|
|
|
void ServerStatus::setStatus(QString key, bool value)
|
2014-05-16 02:02:54 +05:30
|
|
|
{
|
2014-05-17 19:53:48 +05:30
|
|
|
if (!serverLabels.contains(key))
|
|
|
|
return;
|
|
|
|
IconLabel *label = serverLabels[key];
|
|
|
|
label->setIcon(value ? goodIcon : badIcon);
|
2014-05-16 02:02:54 +05:30
|
|
|
}
|
|
|
|
|
2014-05-17 19:53:48 +05:30
|
|
|
void ServerStatus::StatusChanged(const QMap<QString, QString> statusEntries)
|
2014-05-16 02:02:54 +05:30
|
|
|
{
|
2014-05-17 19:53:48 +05:30
|
|
|
auto convertStatus = [&](QString status)->bool
|
|
|
|
{
|
|
|
|
if (status == "green")
|
|
|
|
return true;
|
|
|
|
else if (status == "yellow")
|
|
|
|
return false;
|
|
|
|
else if (status == "red")
|
|
|
|
return false;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
;
|
|
|
|
auto iter = statusEntries.begin();
|
|
|
|
while (iter != statusEntries.end())
|
|
|
|
{
|
|
|
|
QString key = iter.key();
|
|
|
|
bool value = convertStatus(iter.value());
|
|
|
|
setStatus(key, value);
|
|
|
|
iter++;
|
|
|
|
}
|
2014-05-16 02:02:54 +05:30
|
|
|
}
|
|
|
|
|
2014-05-17 19:53:48 +05:30
|
|
|
void ServerStatus::StatusReloading(bool is_reloading)
|
2014-05-16 02:02:54 +05:30
|
|
|
{
|
2014-05-17 19:53:48 +05:30
|
|
|
m_statusRefresh->setChecked(is_reloading);
|
2014-05-16 02:02:54 +05:30
|
|
|
}
|