ca4faae7b1119ddd537d812bd7a34842f5c5dc2f
[quassel.git] / src / qtui / coreinfodlg.cpp
1 /***************************************************************************
2  *   Copyright (C) 2005-2016 by the Quassel Project                        *
3  *   devel@quassel-irc.org                                                 *
4  *                                                                         *
5  *   This program is free software; you can redistribute it and/or modify  *
6  *   it under the terms of the GNU General Public License as published by  *
7  *   the Free Software Foundation; either version 2 of the License, or     *
8  *   (at your option) version 3.                                           *
9  *                                                                         *
10  *   This program is distributed in the hope that it will be useful,       *
11  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
12  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
13  *   GNU General Public License for more details.                          *
14  *                                                                         *
15  *   You should have received a copy of the GNU General Public License     *
16  *   along with this program; if not, write to the                         *
17  *   Free Software Foundation, Inc.,                                       *
18  *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.         *
19  ***************************************************************************/
20
21 #include "coreinfodlg.h"
22
23 #include <QDateTime>
24
25 #include "client.h"
26 #include "signalproxy.h"
27 #include "bufferwidget.h"
28 #include "coresessionwidget.h"
29
30 CoreInfoDlg::CoreInfoDlg(QWidget *parent)
31     : QDialog(parent),
32     _coreInfo(this)
33 {
34     ui.setupUi(this);
35     connect(&_coreInfo, SIGNAL(initDone()), this, SLOT(coreInfoAvailable()));
36     Client::signalProxy()->synchronize(&_coreInfo);
37 }
38
39
40 void CoreInfoDlg::coreInfoAvailable()
41 {
42     ui.labelCoreVersion->setText(_coreInfo["quasselVersion"].toString());
43     ui.labelCoreVersionDate->setText(_coreInfo["quasselBuildDate"].toString()); // "BuildDate" for compatibility
44     ui.labelClientCount->setNum(_coreInfo["sessionConnectedClients"].toInt());
45
46     qWarning() << _coreInfo["sessionConnectedClientData"];
47
48     for (const auto &peerData : _coreInfo["sessionConnectedClientData"].toList()) {
49         auto coreSessionWidget = new CoreSessionWidget(ui.coreSessionScrollContainer);
50         coreSessionWidget->setData(peerData.toMap());
51         ui.coreSessionContainer->addWidget(coreSessionWidget);
52         connect(coreSessionWidget, SIGNAL(disconnectClicked(int)), this, SLOT(disconnectClicked(int)));
53     }
54
55     ui.coreSessionContainer->addStretch(1);
56
57     updateUptime();
58     startTimer(1000);
59 }
60
61
62 void CoreInfoDlg::updateUptime()
63 {
64     QDateTime startTime = _coreInfo["startTime"].toDateTime();
65
66     int uptime = startTime.secsTo(QDateTime::currentDateTime().toUTC());
67     int updays = uptime / 86400; uptime %= 86400;
68     int uphours = uptime / 3600; uptime %= 3600;
69     int upmins = uptime / 60; uptime %= 60;
70
71     QString uptimeText = tr("%n Day(s)", "", updays)
72                          + tr(" %1:%2:%3 (since %4)").arg(uphours, 2, 10, QChar('0')).arg(upmins, 2, 10, QChar('0')).arg(uptime, 2, 10, QChar('0')).arg(startTime.toLocalTime().toString(Qt::TextDate));
73     ui.labelUptime->setText(uptimeText);
74 }
75 void CoreInfoDlg::disconnectClicked(int peerId)
76 {
77     Client::kickClient(peerId);
78 }