139 lines
5.1 KiB
C++
139 lines
5.1 KiB
C++
#include "userinfobox.h"
|
|
#include "pixmapgenerator.h"
|
|
#include "abstractclient.h"
|
|
#include <QLabel>
|
|
#include <QDateTime>
|
|
#include <QGridLayout>
|
|
|
|
|
|
#include "pending_command.h"
|
|
#include "pb/session_commands.pb.h"
|
|
#include "pb/response_get_user_info.pb.h"
|
|
|
|
const qint64 SIXTY = 60;
|
|
const qint64 HOURS_IN_A_DAY = 24;
|
|
const qint64 DAYS_IN_A_YEAR = 365;
|
|
|
|
UserInfoBox::UserInfoBox(AbstractClient *_client, bool _fullInfo, QWidget *parent, Qt::WindowFlags flags)
|
|
: QWidget(parent, flags), client(_client), fullInfo(_fullInfo)
|
|
{
|
|
QFont nameFont = nameLabel.font();
|
|
nameFont.setBold(true);
|
|
nameFont.setPointSize(nameFont.pointSize() * 1.5);
|
|
nameLabel.setFont(nameFont);
|
|
|
|
QGridLayout *mainLayout = new QGridLayout;
|
|
mainLayout->addWidget(&avatarLabel, 0, 0, 1, 3, Qt::AlignCenter);
|
|
mainLayout->addWidget(&nameLabel, 1, 0, 1, 3);
|
|
mainLayout->addWidget(&realNameLabel1, 2, 0, 1, 1);
|
|
mainLayout->addWidget(&realNameLabel2, 2, 1, 1, 2);
|
|
mainLayout->addWidget(&genderLabel1, 3, 0, 1, 1);
|
|
mainLayout->addWidget(&genderLabel2, 3, 1, 1, 2);
|
|
mainLayout->addWidget(&countryLabel1, 4, 0, 1, 1);
|
|
mainLayout->addWidget(&countryLabel2, 4, 1, 1, 2);
|
|
mainLayout->addWidget(&countryLabel3, 4, 2, 1, 1);
|
|
mainLayout->addWidget(&userLevelLabel1, 5, 0, 1, 1);
|
|
mainLayout->addWidget(&userLevelLabel2, 5, 1, 1, 1);
|
|
mainLayout->addWidget(&userLevelLabel3, 5, 2, 1, 1);
|
|
mainLayout->addWidget(&accountAgeLebel1, 6, 0, 1, 1);
|
|
mainLayout->addWidget(&accountAgeLabel2, 6, 2, 1, 1);
|
|
mainLayout->setColumnStretch(2, 10);
|
|
|
|
setWindowTitle(tr("User information"));
|
|
setLayout(mainLayout);
|
|
retranslateUi();
|
|
}
|
|
|
|
void UserInfoBox::retranslateUi()
|
|
{
|
|
realNameLabel1.setText(tr("Real name:"));
|
|
genderLabel1.setText(tr("Gender:"));
|
|
countryLabel1.setText(tr("Location:"));
|
|
userLevelLabel1.setText(tr("User level:"));
|
|
accountAgeLebel1.setText(tr("Account Age:"));
|
|
}
|
|
|
|
void UserInfoBox::updateInfo(const ServerInfo_User &user)
|
|
{
|
|
const UserLevelFlags userLevel(user.user_level());
|
|
|
|
QPixmap avatarPixmap;
|
|
const std::string bmp = user.avatar_bmp();
|
|
if (!avatarPixmap.loadFromData((const uchar *) bmp.data(), bmp.size()))
|
|
avatarPixmap = UserLevelPixmapGenerator::generatePixmap(64, userLevel, false);
|
|
avatarLabel.setPixmap(avatarPixmap);
|
|
|
|
nameLabel.setText(QString::fromStdString(user.name()));
|
|
realNameLabel2.setText(QString::fromStdString(user.real_name()));
|
|
genderLabel2.setPixmap(GenderPixmapGenerator::generatePixmap(15, user.gender()));
|
|
QString country = QString::fromStdString(user.country());
|
|
|
|
if (country.length() != 0)
|
|
{
|
|
countryLabel2.setPixmap(CountryPixmapGenerator::generatePixmap(15, country));
|
|
countryLabel3.setText(QString("(%1)").arg(country.toUpper()));
|
|
}
|
|
else
|
|
{
|
|
countryLabel2.setText("");
|
|
countryLabel3.setText("");
|
|
}
|
|
|
|
userLevelLabel2.setPixmap(UserLevelPixmapGenerator::generatePixmap(15, userLevel, false));
|
|
QString userLevelText;
|
|
if (userLevel.testFlag(ServerInfo_User::IsAdmin))
|
|
userLevelText = tr("Administrator");
|
|
else if (userLevel.testFlag(ServerInfo_User::IsModerator))
|
|
userLevelText = tr("Moderator");
|
|
else if (userLevel.testFlag(ServerInfo_User::IsRegistered))
|
|
userLevelText = tr("Registered user");
|
|
else
|
|
userLevelText = tr("Unregistered user");
|
|
userLevelLabel3.setText(userLevelText);
|
|
|
|
QString accountAgeString = tr("Unregistered user");
|
|
if (userLevel.testFlag(ServerInfo_User::IsAdmin) || userLevel.testFlag(ServerInfo_User::IsModerator) || userLevel.testFlag(ServerInfo_User::IsRegistered)) {
|
|
if (user.accountage_secs() == 0)
|
|
accountAgeString = tr("Unknown");
|
|
else {
|
|
qint64 seconds = user.accountage_secs();
|
|
qint64 minutes = seconds / SIXTY;
|
|
qint64 hours = minutes / SIXTY;
|
|
qint64 days = hours / HOURS_IN_A_DAY;
|
|
qint64 years = days / DAYS_IN_A_YEAR;
|
|
qint64 daysMinusYears = days - (years * DAYS_IN_A_YEAR);
|
|
|
|
accountAgeString = "";
|
|
if (years >= 1) {
|
|
accountAgeString = QString::number(years);
|
|
accountAgeString.append(" ");
|
|
accountAgeString.append(years == 1 ? tr("Year") : tr("Years"));
|
|
accountAgeString.append(" ");
|
|
}
|
|
|
|
accountAgeString.append(QString::number(daysMinusYears));
|
|
accountAgeString.append(" ");
|
|
accountAgeString.append(days == 1 ? tr("Day") : tr("Days"));
|
|
}
|
|
}
|
|
accountAgeLabel2.setText(accountAgeString);
|
|
}
|
|
|
|
void UserInfoBox::updateInfo(const QString &userName)
|
|
{
|
|
Command_GetUserInfo cmd;
|
|
cmd.set_user_name(userName.toStdString());
|
|
|
|
PendingCommand *pend = client->prepareSessionCommand(cmd);
|
|
connect(pend, SIGNAL(finished(Response, CommandContainer, QVariant)), this, SLOT(processResponse(const Response &)));
|
|
|
|
client->sendCommand(pend);
|
|
}
|
|
|
|
void UserInfoBox::processResponse(const Response &r)
|
|
{
|
|
const Response_GetUserInfo &response = r.GetExtension(Response_GetUserInfo::ext);
|
|
updateInfo(response.user_info());
|
|
setFixedSize(sizeHint());
|
|
show();
|
|
}
|