mirror of
https://github.com/HamletDuFromage/aio-switch-updater.git
synced 2024-11-08 19:41:49 +00:00
217 lines
No EOL
8.8 KiB
C++
217 lines
No EOL
8.8 KiB
C++
#include "list_download_tab.hpp"
|
|
#include <string>
|
|
#include <filesystem>
|
|
#include <fstream>
|
|
#include "utils.hpp"
|
|
#include "fs.hpp"
|
|
#include "download.hpp"
|
|
#include "extract.hpp"
|
|
#include "confirm_page.hpp"
|
|
#include "worker_page.hpp"
|
|
#include "current_cfw.hpp"
|
|
#include "app_page.hpp"
|
|
|
|
namespace i18n = brls::i18n;
|
|
using namespace i18n::literals;
|
|
|
|
ListDownloadTab::ListDownloadTab(const archiveType type) :
|
|
brls::List()
|
|
{
|
|
//std::vector<std::pair<std::string, std::string>> links, sxoslinks;
|
|
std::vector<std::pair<std::string, std::string>> links;
|
|
std::string operation("menus/main/getting"_i18n);
|
|
std::string firmwareText("menus/main/firmware_text"_i18n);
|
|
|
|
std::string currentCheatsVer = "";
|
|
std::string newCheatsVer = "";
|
|
|
|
this->description = new brls::Label(brls::LabelStyle::DESCRIPTION, "", true);
|
|
switch(type){
|
|
case archiveType::ams_cfw:
|
|
case archiveType::sigpatches:
|
|
links = download::getLinks(SIGPATCHES_URL);
|
|
operation += "menus/main/sigpatches"_i18n;
|
|
this->description->setText(
|
|
"menus/main/sigpatches_text"_i18n
|
|
);
|
|
break;
|
|
case archiveType::fw:
|
|
links = download::getLinks(FIRMWARE_URL);
|
|
operation += "menus/main/firmware"_i18n;
|
|
SetSysFirmwareVersion ver;
|
|
if (R_SUCCEEDED(setsysGetFirmwareVersion(&ver))) firmwareText += ver.display_version;
|
|
else firmwareText += "menus/main/not_found"_i18n;
|
|
this->description->setText(firmwareText);
|
|
break;
|
|
case archiveType::app:
|
|
links.push_back(std::make_pair("menus/main/latest_cheats"_i18n, APP_URL));
|
|
operation += "menus/main/app"_i18n;
|
|
break;
|
|
case archiveType::cfw:
|
|
links = download::getLinks(CFW_URL);
|
|
// sxos is dead anyways
|
|
/* sxoslinks = download::getLinks(SXOS_URL);
|
|
links.insert(links.end(), sxoslinks.begin(), sxoslinks.end()); */
|
|
operation += "menus/main/cfw"_i18n;
|
|
this->description->setText(
|
|
"menus/main/bootloaders_text"_i18n
|
|
);
|
|
break;
|
|
case archiveType::cheats:
|
|
newCheatsVer = util::downloadFileToString(CHEATS_URL_VERSION);
|
|
if(newCheatsVer != ""){
|
|
switch(CurrentCfw::running_cfw){
|
|
case CFW::sxos:
|
|
links.push_back(std::make_pair("menus/main/get_cheats"_i18n + newCheatsVer + ")", CHEATS_URL_TITLES));
|
|
break;
|
|
case CFW::ams:
|
|
links.push_back(std::make_pair("menus/main/get_cheats"_i18n + newCheatsVer + ")", CHEATS_URL_CONTENTS));
|
|
break;
|
|
case CFW::rnx:
|
|
links.push_back(std::make_pair("menus/main/get_cheats"_i18n + newCheatsVer + ")", CHEATS_URL_CONTENTS));
|
|
break;
|
|
}
|
|
}
|
|
operation += "menus/main/cheats"_i18n;
|
|
currentCheatsVer = util::readVersion(CHEATS_VERSION);
|
|
this->description->setText("menus/main/cheats_text"_i18n + currentCheatsVer);
|
|
break;
|
|
}
|
|
|
|
this->addView(description);
|
|
|
|
this->size = links.size();
|
|
if(this->size){
|
|
for (const auto& link : links){
|
|
std::string url = link.second;
|
|
std::string text("menus/common/download"_i18n + link.first + "menus/common/from"_i18n + url);
|
|
listItem = new brls::ListItem(link.first);
|
|
listItem->setHeight(LISTITEM_HEIGHT);
|
|
listItem->getClickEvent()->subscribe([&, text, url, type, operation, newCheatsVer, currentCheatsVer](brls::View* view) {
|
|
brls::StagedAppletFrame* stagedFrame = new brls::StagedAppletFrame();
|
|
stagedFrame->setTitle(operation);
|
|
stagedFrame->addStage(
|
|
new ConfirmPage(stagedFrame, text)
|
|
);
|
|
if(type != archiveType::cheats || newCheatsVer != currentCheatsVer || !std::filesystem::exists(CHEATS_ZIP_PATH)) {
|
|
stagedFrame->addStage(
|
|
new WorkerPage(stagedFrame, "menus/common/downloading"_i18n, [url, type](){util::downloadArchive(url, type);})
|
|
);
|
|
}
|
|
stagedFrame->addStage(
|
|
new WorkerPage(stagedFrame, "menus/common/extracting"_i18n, [type](){util::extractArchive(type);})
|
|
);
|
|
std::string doneMsg = "menus/common/all_done"_i18n;
|
|
std::string contentsPath;
|
|
switch(type){
|
|
case archiveType::ams_cfw:
|
|
case archiveType::app:
|
|
case archiveType::cfw:
|
|
case archiveType::cheats:
|
|
case archiveType::fw:
|
|
contentsPath = util::getContentsPath();
|
|
for (const auto& tid : {"0100000000001000", "0100000000001007", "0100000000001013"}) {
|
|
if(std::filesystem::exists(contentsPath + tid) && !std::filesystem::is_empty(contentsPath + tid)) {
|
|
doneMsg += "\n" + "menus/main/theme_warning"_i18n;
|
|
break;
|
|
}
|
|
}
|
|
break;
|
|
case archiveType::sigpatches:
|
|
doneMsg += "\n" + "menus/sigpatches/reboot"_i18n;
|
|
break;
|
|
}
|
|
stagedFrame->addStage(
|
|
new ConfirmPage(stagedFrame, doneMsg, true)
|
|
);
|
|
brls::Application::pushView(stagedFrame);
|
|
});
|
|
this->addView(listItem);
|
|
}
|
|
}
|
|
|
|
else{
|
|
notFound = new brls::Label(
|
|
brls::LabelStyle::SMALL,
|
|
"menus/main/links_not_found"_i18n,
|
|
true
|
|
);
|
|
notFound->setHorizontalAlign(NVG_ALIGN_CENTER);
|
|
this->addView(notFound);
|
|
}
|
|
|
|
if(type == archiveType::cheats){
|
|
cheatsLabel = new brls::Label(
|
|
brls::LabelStyle::DESCRIPTION,
|
|
"menus/cheats/cheats_label"_i18n,
|
|
true
|
|
);
|
|
this->addView(cheatsLabel);
|
|
creategbatempItem();
|
|
createCheatSlipItem();
|
|
}
|
|
}
|
|
|
|
void ListDownloadTab::createCheatSlipItem() {
|
|
this->size += 1;
|
|
cheatslipsItem = new brls::ListItem("menus/cheats/get_cheatslips"_i18n);
|
|
cheatslipsItem->setHeight(LISTITEM_HEIGHT);
|
|
cheatslipsItem->getClickEvent()->subscribe([&](brls::View* view) {
|
|
if(std::filesystem::exists(TOKEN_PATH)) {
|
|
brls::Application::pushView(new AppPage_CheatSlips());
|
|
return true;
|
|
}
|
|
else {
|
|
std::string usr, pwd;
|
|
//Result rc = swkbdCreate(&kbd, 0);
|
|
brls::Swkbd::openForText([&](std::string text) { usr = text; }, "cheatslips.com e-mail", "", 64, "", 0, "Submit", "cheatslips.com e-mail");
|
|
brls::Swkbd::openForText([&](std::string text) { pwd = text; }, "cheatslips.com password", "", 64, "", 0, "Submit", "cheatslips.com password", true);
|
|
std::string body = "{\"email\":\"" + std::string(usr)
|
|
+ "\",\"password\":\"" + std::string(pwd) + "\"}";
|
|
nlohmann::ordered_json token;
|
|
download::getRequest(CHEATSLIPS_TOKEN_URL, token,
|
|
{"Accept: application/json",
|
|
"Content-Type: application/json",
|
|
"charset: utf-8"},
|
|
body);
|
|
if(token.find("token") != token.end()) {
|
|
std::ofstream tokenFile(TOKEN_PATH);
|
|
tokenFile << token.dump();
|
|
tokenFile.close();
|
|
brls::Application::pushView(new AppPage_CheatSlips());
|
|
return true;
|
|
}
|
|
else {
|
|
brls::Dialog* dialog = new brls::Dialog("menus/cheats/cheatslips_wrong_id"_i18n + "\n" + "menus/cheats/kb_error"_i18n);
|
|
brls::GenericEvent::Callback callback = [dialog](brls::View* view) {
|
|
dialog->close();
|
|
};
|
|
dialog->addButton("menus/common/ok"_i18n, callback);
|
|
dialog->setCancelable(true);
|
|
dialog->open();
|
|
return true;
|
|
}
|
|
}
|
|
});
|
|
this->addView(cheatslipsItem);
|
|
}
|
|
|
|
|
|
void ListDownloadTab::creategbatempItem() {
|
|
this->size += 1;
|
|
gbatempItem = new brls::ListItem("menus/cheats/get_gbatemp"_i18n);
|
|
gbatempItem->setHeight(LISTITEM_HEIGHT);
|
|
gbatempItem->getClickEvent()->subscribe([&](brls::View* view) {
|
|
brls::Application::pushView(new AppPage_Gbatemp());
|
|
return true;
|
|
});
|
|
this->addView(gbatempItem);
|
|
}
|
|
|
|
brls::View* ListDownloadTab::getDefaultFocus()
|
|
{
|
|
if(this->size)
|
|
return this->brls::List::getDefaultFocus();
|
|
else
|
|
return nullptr;
|
|
} |