Changed: downloadData and downloadClient methods

This commit is contained in:
kervala 2016-05-16 14:49:18 +02:00
parent 40cb337c68
commit a75d70b8bc
2 changed files with 31 additions and 3 deletions

View file

@ -97,7 +97,7 @@ void COperationDialog::processNextStep()
break;
case CConfigFile::DownloadData:
m_downloader->prepareFile(config->expandVariables(server.dataDownloadUrl), config->getInstallationDirectory() + "/" + config->expandVariables(server.dataDownloadFilename) + ".part");
downloadData();
break;
case CConfigFile::ExtractDownloadedData:
@ -105,7 +105,7 @@ void COperationDialog::processNextStep()
break;
case CConfigFile::DownloadClient:
m_downloader->prepareFile(config->expandVariables(server.clientDownloadUrl), config->getInstallationDirectory() + "/" + config->expandVariables(server.clientDownloadFilename) + ".part");
downloadClient();
break;
case CConfigFile::ExtractDownloadedClient:
@ -248,7 +248,33 @@ void COperationDialog::onProgressFail(const QString &error)
void COperationDialog::onDone()
{
processNextStep();
if (!operationShouldStop()) processNextStep();
}
void COperationDialog::downloadData()
{
CConfigFile *config = CConfigFile::getInstance();
// default server
const CServer &server = config->getServer();
m_currentOperation = QApplication::tr("Download data required for server %1").arg(server.name);
m_currentOperationProgressFormat = QApplication::tr("Downloading %1...");
m_downloader->prepareFile(config->expandVariables(server.dataDownloadUrl), config->getInstallationDirectory() + "/" + config->expandVariables(server.dataDownloadFilename) + ".part");
}
void COperationDialog::downloadClient()
{
CConfigFile *config = CConfigFile::getInstance();
// default server
const CServer &server = config->getServer();
m_currentOperation = QApplication::tr("Download client required for server %1").arg(server.name);
m_currentOperationProgressFormat = QApplication::tr("Downloading %1...");
m_downloader->prepareFile(config->expandVariables(server.clientDownloadUrl), config->getInstallationDirectory() + "/" + config->expandVariables(server.clientDownloadFilename) + ".part");
}
void COperationDialog::copyServerFiles()

View file

@ -82,6 +82,8 @@ protected:
void processNextStep();
// operations
void downloadData();
void downloadClient();
void copyServerFiles();
void copyProfileFiles();
void extractBnpClient();