X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fcore%2Feventstringifier.cpp;h=c7da8d78b5279beecdfdf69bfec90977d3ff14d2;hb=4cf9c160f318a71400b032ea6d3031b9e6628a56;hp=b15545af9bcd24c1d9aadb2c8784876fdc843d86;hpb=68878dc8366f2f4a0afe132847aad9a51a80cdbf;p=quassel.git diff --git a/src/core/eventstringifier.cpp b/src/core/eventstringifier.cpp index b15545af..c7da8d78 100644 --- a/src/core/eventstringifier.cpp +++ b/src/core/eventstringifier.cpp @@ -365,10 +365,11 @@ void EventStringifier::processIrcEventPart(IrcEvent *e) void EventStringifier::processIrcEventPong(IrcEvent *e) { - QString timestamp = e->params().at(1); - QTime sendTime = QTime::fromString(timestamp, "hh:mm:ss.zzz"); - if (!sendTime.isValid()) - displayMsg(e, Message::Server, "PONG " + e->params().join(" "), e->prefix()); + // CoreSessionEventProcessor will flag automated PONG replies as EventManager::Silent. There's + // no need to handle that specially here. + + // Format the PONG reply for display + displayMsg(e, Message::Server, "PONG " + e->params().join(" "), e->prefix()); } @@ -449,11 +450,13 @@ void EventStringifier::processIrcEvent301(IrcEvent *e) target = nick; IrcUser *ircuser = e->network()->ircUser(nick); if (ircuser) { - int now = QDateTime::currentDateTime().toTime_t(); + QDateTime now = QDateTime::currentDateTime(); + now.setTimeSpec(Qt::UTC); + // Don't print "user is away" messages more often than this const int silenceTime = 60; - if (ircuser->lastAwayMessage() + silenceTime >= now) + if (ircuser->lastAwayMessageTime().addSecs(silenceTime) >= now) send = false; - ircuser->setLastAwayMessage(now); + ircuser->setLastAwayMessageTime(now); } } if (send) @@ -542,7 +545,16 @@ void EventStringifier::processIrcEvent317(IrcEvent *e) int idleSecs = e->params()[1].toInt(); if (e->params().count() > 3) { // if we have more then 3 params we have the above mentioned "real life" situation - QDateTime loginTime = QDateTime::fromTime_t(e->params()[2].toInt()).toUTC(); + // Time in IRC protocol is defined as seconds. Convert from seconds instead. + // See https://doc.qt.io/qt-5/qdatetime.html#fromSecsSinceEpoch +#if QT_VERSION >= 0x050800 + QDateTime loginTime = QDateTime::fromSecsSinceEpoch(e->params()[2].toLongLong()).toUTC(); +#else + // fromSecsSinceEpoch() was added in Qt 5.8. Manually downconvert to seconds for now. + // See https://doc.qt.io/qt-5/qdatetime.html#fromMSecsSinceEpoch + QDateTime loginTime = QDateTime::fromMSecsSinceEpoch( + (qint64)(e->params()[2].toLongLong() * 1000)).toUTC(); +#endif displayMsg(e, Message::Server, tr("[Whois] %1 is logged in since %2") .arg(e->params()[0], loginTime.toString("yyyy-MM-dd hh:mm:ss UTC"))); } @@ -645,12 +657,21 @@ void EventStringifier::processIrcEvent329(IrcEvent *e) return; QString channel = e->params()[0]; - uint unixtime = e->params()[1].toUInt(); + // Allow for 64-bit time + qint64 unixtime = e->params()[1].toLongLong(); if (!unixtime) { qWarning() << Q_FUNC_INFO << "received invalid timestamp:" << e->params()[1]; return; } - QDateTime time = QDateTime::fromTime_t(unixtime).toUTC(); + // Time in IRC protocol is defined as seconds. Convert from seconds instead. + // See https://doc.qt.io/qt-5/qdatetime.html#fromSecsSinceEpoch +#if QT_VERSION >= 0x050800 + QDateTime time = QDateTime::fromSecsSinceEpoch(unixtime).toUTC(); +#else + // fromSecsSinceEpoch() was added in Qt 5.8. Manually downconvert to seconds for now. + // See https://doc.qt.io/qt-5/qdatetime.html#fromMSecsSinceEpoch + QDateTime time = QDateTime::fromMSecsSinceEpoch((qint64)(unixtime * 1000)).toUTC(); +#endif displayMsg(e, Message::Topic, tr("Channel %1 created on %2") .arg(channel, time.toString("yyyy-MM-dd hh:mm:ss UTC")), QString(), channel); @@ -696,7 +717,16 @@ void EventStringifier::processIrcEvent333(IrcEvent *e) return; QString channel = e->params().first(); - QDateTime topicSetTime = QDateTime::fromTime_t(e->params()[2].toInt()).toUTC(); + // Time in IRC protocol is defined as seconds. Convert from seconds instead. + // See https://doc.qt.io/qt-5/qdatetime.html#fromSecsSinceEpoch +#if QT_VERSION >= 0x050800 + QDateTime topicSetTime = QDateTime::fromSecsSinceEpoch(e->params()[2].toLongLong()).toUTC(); +#else + // fromSecsSinceEpoch() was added in Qt 5.8. Manually downconvert to seconds for now. + // See https://doc.qt.io/qt-5/qdatetime.html#fromMSecsSinceEpoch + QDateTime topicSetTime = QDateTime::fromMSecsSinceEpoch( + (qint64)(e->params()[2].toLongLong() * 1000)).toUTC(); +#endif displayMsg(e, Message::Topic, tr("Topic set by %1 on %2") .arg(e->params()[1], topicSetTime.toString("yyyy-MM-dd hh:mm:ss UTC")), QString(), channel);