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"
|
2015-02-02 06:44:14 +05:30
|
|
|
#include <QDebug>
|
2014-09-30 05:35:44 +05:30
|
|
|
|
|
|
|
TranslationDownloader::TranslationDownloader()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
void TranslationDownloader::downloadTranslations()
|
|
|
|
{
|
2015-02-02 06:44:14 +05:30
|
|
|
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()
|
|
|
|
{
|
2015-02-02 06:44:14 +05:30
|
|
|
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())
|
|
|
|
{
|
2015-01-31 21:29:03 +05:30
|
|
|
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();
|
|
|
|
}
|
|
|
|
void TranslationDownloader::dlFailed()
|
|
|
|
{
|
2015-02-02 06:44:14 +05:30
|
|
|
qCritical() << "Translations Download Failed!";
|
2014-09-30 05:35:44 +05:30
|
|
|
}
|
|
|
|
void TranslationDownloader::dlGood()
|
|
|
|
{
|
2015-02-02 06:44:14 +05:30
|
|
|
qDebug() << "Got translations!";
|
2014-09-30 05:35:44 +05:30
|
|
|
}
|
|
|
|
void TranslationDownloader::indexFailed()
|
|
|
|
{
|
2015-02-02 06:44:14 +05:30
|
|
|
qCritical() << "Translations Index Download Failed!";
|
2014-09-30 05:35:44 +05:30
|
|
|
}
|