pollymc/launcher/minecraft/ParseUtils.cpp

35 lines
896 B
C++
Raw Normal View History

2014-05-10 05:23:32 +05:30
#include <QDateTime>
#include <QString>
#include "ParseUtils.h"
2016-03-02 07:33:44 +05:30
#include <QDebug>
#include <cstdlib>
2014-05-10 05:23:32 +05:30
QDateTime timeFromS3Time(QString str)
{
2018-07-15 18:21:05 +05:30
return QDateTime::fromString(str, Qt::ISODate);
2014-05-10 05:23:32 +05:30
}
2016-03-02 07:33:44 +05:30
QString timeToS3Time(QDateTime time)
2014-05-10 05:23:32 +05:30
{
2018-07-15 18:21:05 +05:30
// this all because Qt can't format timestamps right.
int offsetRaw = time.offsetFromUtc();
bool negative = offsetRaw < 0;
int offsetAbs = std::abs(offsetRaw);
2016-03-02 07:33:44 +05:30
2018-07-15 18:21:05 +05:30
int offsetSeconds = offsetAbs % 60;
offsetAbs -= offsetSeconds;
2016-03-02 07:33:44 +05:30
2018-07-15 18:21:05 +05:30
int offsetMinutes = offsetAbs % 3600;
offsetAbs -= offsetMinutes;
offsetMinutes /= 60;
int offsetHours = offsetAbs / 3600;
2016-03-02 07:33:44 +05:30
2018-07-15 18:21:05 +05:30
QString raw = time.toString("yyyy-MM-ddTHH:mm:ss");
raw += (negative ? QChar('-') : QChar('+'));
raw += QString("%1").arg(offsetHours, 2, 10, QChar('0'));
raw += ":";
raw += QString("%1").arg(offsetMinutes, 2, 10, QChar('0'));
return raw;
2014-05-10 05:23:32 +05:30
}