pollymc/logic/trans/TranslationDownloader.cpp

54 lines
1.7 KiB
C++
Raw Normal View History

2014-09-30 05:35:44 +05:30
#include "TranslationDownloader.h"
2015-02-09 06:21:14 +05:30
#include "net/NetJob.h"
#include "net/CacheDownload.h"
#include "net/URLConstants.h"
#include "Env.h"
#include <QDebug>
2014-09-30 05:35:44 +05:30
TranslationDownloader::TranslationDownloader()
{
}
void TranslationDownloader::downloadTranslations()
{
qDebug() << "Downloading Translations Index...";
2014-09-30 05:35:44 +05:30
m_index_job.reset(new NetJob("Translations Index"));
m_index_task = ByteArrayDownload::make(QUrl("http://files.multimc.org/translations/index"));
m_index_job->addNetAction(m_index_task);
connect(m_index_job.get(), &NetJob::failed, this, &TranslationDownloader::indexFailed);
connect(m_index_job.get(), &NetJob::succeeded, this, &TranslationDownloader::indexRecieved);
m_index_job->start();
}
void TranslationDownloader::indexRecieved()
{
qDebug() << "Got translations index!";
2014-09-30 05:35:44 +05:30
m_dl_job.reset(new NetJob("Translations"));
QList<QByteArray> lines = m_index_task->m_data.split('\n');
for (const auto line : lines)
{
if (!line.isEmpty())
{
MetaEntryPtr entry = ENV.metacache()->resolveEntry("translations", "mmc_" + line);
2014-10-05 21:06:56 +05:30
entry->stale = true;
2014-09-30 05:35:44 +05:30
CacheDownloadPtr dl = CacheDownload::make(
QUrl(URLConstants::TRANSLATIONS_BASE_URL + line),
2014-10-05 21:06:56 +05:30
entry);
2014-09-30 05:35:44 +05:30
m_dl_job->addNetAction(dl);
}
}
connect(m_dl_job.get(), &NetJob::succeeded, this, &TranslationDownloader::dlGood);
connect(m_dl_job.get(), &NetJob::failed, this, &TranslationDownloader::dlFailed);
m_dl_job->start();
}
2015-04-27 02:34:50 +05:30
void TranslationDownloader::dlFailed(QString reason)
2014-09-30 05:35:44 +05:30
{
2015-04-27 02:34:50 +05:30
qCritical() << "Translations Download Failed:" << reason;
2014-09-30 05:35:44 +05:30
}
void TranslationDownloader::dlGood()
{
qDebug() << "Got translations!";
2014-09-30 05:35:44 +05:30
}
2015-04-27 02:34:50 +05:30
void TranslationDownloader::indexFailed(QString reason)
2014-09-30 05:35:44 +05:30
{
2015-04-27 02:34:50 +05:30
qCritical() << "Translations Index Download Failed:" << reason;
2014-09-30 05:35:44 +05:30
}