2020-09-21 19:36:46 +01:00
|
|
|
#include "download_payload_page.hpp"
|
2021-02-10 16:28:47 +00:00
|
|
|
#include "utils.hpp"
|
|
|
|
#include "confirm_page.hpp"
|
|
|
|
#include "worker_page.hpp"
|
|
|
|
#include "download.hpp"
|
2020-10-05 23:53:12 +01:00
|
|
|
|
|
|
|
namespace i18n = brls::i18n;
|
|
|
|
using namespace i18n::literals;
|
2020-09-21 19:36:46 +01:00
|
|
|
DownloadPayloadPage::DownloadPayloadPage() : AppletFrame(true, true)
|
|
|
|
{
|
2021-03-10 20:54:17 +00:00
|
|
|
this->setTitle("menus/payloads/dl_payloads"_i18n);
|
2020-09-21 19:36:46 +01:00
|
|
|
list = new brls::List();
|
|
|
|
label = new brls::Label(
|
|
|
|
brls::LabelStyle::DESCRIPTION,
|
2021-03-10 20:54:17 +00:00
|
|
|
"menus/payloads/select"_i18n + std::string(BOOTLOADER_PL_PATH) + "." ,
|
2020-09-21 19:36:46 +01:00
|
|
|
true
|
|
|
|
);
|
|
|
|
list->addView(label);
|
2021-02-08 20:30:58 +00:00
|
|
|
|
|
|
|
auto links = getLinks(PAYLOAD_URL);
|
|
|
|
int nbLinks = links.size();
|
2020-09-21 19:36:46 +01:00
|
|
|
if(nbLinks){
|
|
|
|
for (int i = 0; i<nbLinks; i++){
|
2021-02-08 20:30:58 +00:00
|
|
|
std::string url = links[i].second;
|
|
|
|
std::string path = std::string(BOOTLOADER_PL_PATH) + links[i].first;
|
2021-03-10 20:54:17 +00:00
|
|
|
std::string text("menus/common/download"_i18n + links[i].first + "menus/common/from"_i18n + url);
|
2021-02-08 20:30:58 +00:00
|
|
|
listItem = new brls::ListItem(links[i].first);
|
|
|
|
listItem->getClickEvent()->subscribe([&, text, url, path](brls::View* view) {
|
2020-09-21 19:36:46 +01:00
|
|
|
createTree(BOOTLOADER_PL_PATH);
|
|
|
|
brls::StagedAppletFrame* stagedFrame = new brls::StagedAppletFrame();
|
2021-03-10 20:54:17 +00:00
|
|
|
stagedFrame->setTitle("menus/getting_paylaod"_i18n);
|
2020-09-21 19:36:46 +01:00
|
|
|
stagedFrame->addStage(
|
|
|
|
new ConfirmPage(stagedFrame, text)
|
|
|
|
);
|
|
|
|
stagedFrame->addStage(
|
2021-03-10 20:54:17 +00:00
|
|
|
new WorkerPage(stagedFrame, "menus/common/downloading"_i18n, [url, path](){downloadFile(url.c_str(), path.c_str(), OFF);})
|
2020-09-21 19:36:46 +01:00
|
|
|
);
|
|
|
|
stagedFrame->addStage(
|
2021-03-10 20:54:17 +00:00
|
|
|
new ConfirmPage(stagedFrame, "menus/common/downloadingload_all_done"_i18n, true)
|
2020-09-21 19:36:46 +01:00
|
|
|
);
|
|
|
|
brls::Application::pushView(stagedFrame);
|
|
|
|
});
|
2021-02-08 20:30:58 +00:00
|
|
|
list->addView(listItem);
|
2020-09-21 19:36:46 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
notFound = new brls::Label(
|
|
|
|
brls::LabelStyle::DESCRIPTION,
|
2021-03-10 20:54:17 +00:00
|
|
|
"menus/payloads/not_found"_i18n,
|
2020-09-21 19:36:46 +01:00
|
|
|
true
|
|
|
|
);
|
|
|
|
notFound->setHorizontalAlign(NVG_ALIGN_CENTER);
|
|
|
|
list->addView(notFound);
|
2021-03-10 20:54:17 +00:00
|
|
|
brls::ListItem* back = new brls::ListItem("menus/common/back"_i18n);
|
2020-09-23 12:21:05 +01:00
|
|
|
back->getClickEvent()->subscribe([&](brls::View* view) {
|
|
|
|
brls::Application::popView();
|
|
|
|
});
|
|
|
|
list->addView(back);
|
2020-09-21 19:36:46 +01:00
|
|
|
}
|
|
|
|
this->setContentView(list);
|
|
|
|
}
|