MultiMC5/launcher/minecraft/ParseUtils.cpp

35 lines
896 B
C++
Raw Normal View History

2014-05-09 23:53:32 +00:00
#include <QDateTime>
#include <QString>
#include "ParseUtils.h"
2016-03-02 02:03:44 +00:00
#include <QDebug>
#include <cstdlib>
2014-05-09 23:53:32 +00:00
QDateTime timeFromS3Time(QString str)
{
2018-07-15 12:51:05 +00:00
return QDateTime::fromString(str, Qt::ISODate);
2014-05-09 23:53:32 +00:00
}
2016-03-02 02:03:44 +00:00
QString timeToS3Time(QDateTime time)
2014-05-09 23:53:32 +00:00
{
2018-07-15 12:51:05 +00:00
// 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 02:03:44 +00:00
2018-07-15 12:51:05 +00:00
int offsetSeconds = offsetAbs % 60;
offsetAbs -= offsetSeconds;
2016-03-02 02:03:44 +00:00
2018-07-15 12:51:05 +00:00
int offsetMinutes = offsetAbs % 3600;
offsetAbs -= offsetMinutes;
offsetMinutes /= 60;
int offsetHours = offsetAbs / 3600;
2016-03-02 02:03:44 +00:00
2018-07-15 12:51:05 +00:00
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-09 23:53:32 +00:00
}