1
0
Fork 0
mirror of https://github.com/HamletDuFromage/aio-switch-updater.git synced 2024-09-19 21:45:04 +01:00
AIO-switch-updater/source/list_download_tab.cpp

190 lines
7.4 KiB
C++
Raw Normal View History

2020-09-20 01:21:28 +01:00
#include "list_download_tab.hpp"
2021-02-10 16:28:47 +00:00
#include <string>
#include "download.hpp"
#include "extract.hpp"
#include "confirm_page.hpp"
#include "worker_page.hpp"
#include "current_cfw.hpp"
#include "utils.hpp"
#include "app_page.hpp"
#include <filesystem>
#include <fstream>
namespace i18n = brls::i18n;
using namespace i18n::literals;
2020-09-20 01:21:28 +01:00
ListDownloadTab::ListDownloadTab(archiveType type) :
brls::List()
{
2021-02-08 20:30:58 +00:00
std::vector<std::pair<std::string, std::string>> links;
std::vector<std::pair<std::string, std::string>> sxoslinks;
std::string operation = "menus/Getting"_i18n ;
std::string firmwareText("menus/firmware_text"_i18n);
std::string currentCheatsVer =
"menus/currentCeatsver"_i18n ;
2020-09-20 01:21:28 +01:00
this->description = new brls::Label(brls::LabelStyle::DESCRIPTION, "", true);
switch(type){
case sigpatches:
2021-02-08 20:30:58 +00:00
links = getLinks(SIGPATCHES_URL);
operation += "menus/operation_1"_i18n ;
2020-09-20 01:21:28 +01:00
this->description->setText(
"menus/list_sigpatches"_i18n
2020-09-20 01:21:28 +01:00
);
break;
case fw:
2021-02-08 20:30:58 +00:00
links = getLinks(FIRMWARE_URL);
operation += "menus/operation_2"_i18n ;
SetSysFirmwareVersion ver;
if (R_SUCCEEDED(setsysGetFirmwareVersion(&ver))) firmwareText += ver.display_version;
else firmwareText += "menus/list_not"_i18n ;
this->description->setText(firmwareText);
2020-09-20 01:21:28 +01:00
break;
case app:
2021-02-08 20:30:58 +00:00
links.push_back(std::make_pair("menus/list_latest"_i18n, APP_URL));
operation += "menus/list_app"_i18n ;
2020-09-20 01:21:28 +01:00
break;
case cfw:
2021-02-08 20:30:58 +00:00
links = getLinks(CFW_URL);
sxoslinks = getLinks(SXOS_URL);
links.insert(links.end(), sxoslinks.begin(), sxoslinks.end());
operation += "menus/list_cfw"_i18n ;
2020-09-20 01:21:28 +01:00
this->description->setText(
"menus/list_main"_i18n
2020-09-20 01:21:28 +01:00
);
break;
case cheats:
std::string cheatsVer = fetchTitle(CHEATS_RELEASE_URL);
if(cheatsVer != "-1"){
2021-02-10 16:28:47 +00:00
switch(running_cfw){
2020-09-20 01:21:28 +01:00
case sxos:
2021-02-08 20:30:58 +00:00
links.push_back(std::make_pair("menus/list_latest_ver"_i18n + cheatsVer + ")", CHEATS_URL_TITLES));
2020-09-20 01:21:28 +01:00
break;
case ams:
2021-02-08 20:30:58 +00:00
links.push_back(std::make_pair("menus/list_latest_ver"_i18n + cheatsVer + ")", CHEATS_URL_CONTENTS));
2020-09-20 01:21:28 +01:00
break;
case rnx:
2021-02-08 20:30:58 +00:00
links.push_back(std::make_pair("menus/list_latest_ver"_i18n + cheatsVer + ")", CHEATS_URL_CONTENTS));
2020-09-20 01:21:28 +01:00
break;
}
}
operation += "menus/list_cheats"_i18n ;
currentCheatsVer += readVersion(CHEATS_VERSION);
this->description->setText(currentCheatsVer);
2020-09-20 01:21:28 +01:00
break;
}
2020-09-20 01:21:28 +01:00
this->addView(description);
2021-02-06 18:42:14 +00:00
2021-02-08 20:30:58 +00:00
int nbLinks = links.size();
2021-02-06 18:42:14 +00: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 text("menus/list_down"_i18n + links[i].first + "menus/list_from"_i18n + url);
listItem = new brls::ListItem(links[i].first);
2021-02-06 18:42:14 +00:00
listItem->setHeight(LISTITEM_HEIGHT);
listItem->getClickEvent()->subscribe([&, text, url, type, operation](brls::View* view) {
brls::StagedAppletFrame* stagedFrame = new brls::StagedAppletFrame();
stagedFrame->setTitle(operation);
stagedFrame->addStage(
new ConfirmPage(stagedFrame, text)
);
stagedFrame->addStage(
new WorkerPage(stagedFrame, "menus/list_downing"_i18n , [url, type](){downloadArchive(url, type);})
);
stagedFrame->addStage(
new WorkerPage(stagedFrame, "menus/list_extracting"_i18n , [type](){extractArchive(type);})
);
stagedFrame->addStage(
new ConfirmPage(stagedFrame,
(type == sigpatches) ?
"menus/list_All"_i18n + "\n" + "menus/please_reboot"_i18n :
"menus/list_All"_i18n,
true)
2021-02-06 18:42:14 +00:00
);
brls::Application::pushView(stagedFrame);
});
this->addView(listItem);
}
}
2021-02-06 20:08:51 +00:00
else{
notFound = new brls::Label(
brls::LabelStyle::DESCRIPTION,
"menus/list_could_done"_i18n ,
true
);
notFound->setHorizontalAlign(NVG_ALIGN_CENTER);
this->addView(notFound);
}
if(type == cheats){
2021-02-06 18:42:14 +00:00
cheatSlipLabel = new brls::Label(
brls::LabelStyle::DESCRIPTION,
"menus/cheatslips_label"_i18n ,
true
);
this->addView(cheatSlipLabel);
cheatslipsItem = new brls::ListItem("menus/get_cheatslips"_i18n);
cheatslipsItem->setHeight(LISTITEM_HEIGHT);
cheatslipsItem->getClickEvent()->subscribe([&](brls::View* view) {
if(std::filesystem::exists(TOKEN_PATH)) {
brls::Application::pushView(new AppPage(true));
return true;
}
else {
SwkbdConfig kbd;
char usr[0x100] = {0};
char pwd[0x100] = {0};
Result rc = swkbdCreate(&kbd, 0);
if (R_SUCCEEDED(rc)) {
swkbdConfigMakePresetDefault(&kbd);
swkbdConfigSetOkButtonText(&kbd, "Submit");
swkbdConfigSetGuideText(&kbd, "www.cheatslips.com e-mail");
swkbdShow(&kbd, usr, sizeof(usr));
swkbdClose(&kbd);
rc = swkbdCreate(&kbd, 0);
if(R_SUCCEEDED(rc)){
swkbdConfigMakePresetPassword(&kbd);
swkbdConfigSetOkButtonText(&kbd, "Submit");
swkbdConfigSetGuideText(&kbd, "www.cheatslips.com password");
swkbdShow(&kbd, pwd, sizeof(pwd));
swkbdClose(&kbd);
}
}
std::string body = "{\"email\":\"" + std::string(usr)
+ "\",\"password\":\"" + std::string(pwd) + "\"}";
nlohmann::json token = getRequest(CHEATSLIPS_TOKEN_URL,
{"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(true));
return true;
}
else {
brls::Dialog* dialog = new brls::Dialog("menus/wrong_cheatslips_id"_i18n);
brls::GenericEvent::Callback callback = [dialog](brls::View* view) {
dialog->close();
};
dialog->addButton("menus/Ok_button"_i18n , callback);
dialog->setCancelable(true);
dialog->open();
return true;
}
}
});
this->addView(cheatslipsItem);
}
2020-09-20 01:21:28 +01:00
}
ListDownloadTab::~ListDownloadTab(){
}