Awoo-Installer/source/ui/netInstPage.cpp

181 lines
8.7 KiB
C++
Raw Normal View History

2019-10-18 19:01:51 +00:00
#include <filesystem>
#include <switch.h>
2019-10-18 19:01:51 +00:00
#include "ui/MainApplication.hpp"
#include "ui/mainPage.hpp"
#include "ui/netInstPage.hpp"
#include "util/util.hpp"
2019-11-14 01:01:35 +00:00
#include "util/config.hpp"
#include "util/curl.hpp"
#include "util/lang.hpp"
2019-10-18 19:01:51 +00:00
#include "netInstall.hpp"
#define COLOR(hex) pu::ui::Color::FromHex(hex)
namespace inst::ui {
extern MainApplication *mainApp;
2019-11-15 16:41:29 +00:00
std::string lastUrl = "https://";
std::string lastFileID = "";
2019-11-30 17:06:49 +00:00
std::string sourceString = "";
2019-10-18 19:01:51 +00:00
netInstPage::netInstPage() : Layout::Layout() {
this->SetBackgroundColor(COLOR("#670000FF"));
2019-11-19 18:08:37 +00:00
if (std::filesystem::exists(inst::config::appDir + "/background.png")) this->SetBackgroundImage(inst::config::appDir + "/background.png");
else this->SetBackgroundImage("romfs:/images/background.jpg");
this->topRect = Rectangle::New(0, 0, 1280, 94, COLOR("#170909FF"));
this->infoRect = Rectangle::New(0, 95, 1280, 60, COLOR("#17090980"));
this->botRect = Rectangle::New(0, 660, 1280, 60, COLOR("#17090980"));
this->titleImage = Image::New(0, 0, "romfs:/images/logo.png");
2019-11-14 01:23:30 +00:00
this->appVersionText = TextBlock::New(480, 49, "v" + inst::config::appVersion, 22);
this->appVersionText->SetColor(COLOR("#FFFFFFFF"));
this->pageInfoText = TextBlock::New(10, 109, "", 30);
2019-10-18 19:01:51 +00:00
this->pageInfoText->SetColor(COLOR("#FFFFFFFF"));
this->butText = TextBlock::New(10, 678, "", 24);
this->butText->SetColor(COLOR("#FFFFFFFF"));
this->menu = pu::ui::elm::Menu::New(0, 156, 1280, COLOR("#FFFFFF00"), 84, (506 / 84));
this->menu->SetOnFocusColor(COLOR("#00000033"));
this->menu->SetScrollbarColor(COLOR("#17090980"));
this->infoImage = Image::New(453, 292, "romfs:/images/icons/lan-connection-waiting.png");
this->Add(this->topRect);
this->Add(this->infoRect);
this->Add(this->botRect);
this->Add(this->titleImage);
2019-11-14 01:23:30 +00:00
this->Add(this->appVersionText);
this->Add(this->butText);
2019-10-18 19:01:51 +00:00
this->Add(this->pageInfoText);
this->Add(this->menu);
2019-11-25 02:48:17 +00:00
this->Add(this->infoImage);
2019-10-18 19:01:51 +00:00
}
void netInstPage::drawMenuItems(bool clearItems) {
2019-11-22 17:26:34 +00:00
if (clearItems) this->selectedUrls = {};
if (clearItems) this->alternativeNames = {};
this->menu->ClearItems();
2019-11-22 17:26:34 +00:00
for (auto& url: this->ourUrls) {
2019-12-30 06:22:44 +00:00
std::string itm = inst::util::shortenString(inst::util::formatUrlString(url), 56, true);
auto ourEntry = pu::ui::elm::MenuItem::New(itm);
ourEntry->SetColor(COLOR("#FFFFFFFF"));
ourEntry->SetIcon("romfs:/images/icons/checkbox-blank-outline.png");
2019-11-22 17:26:34 +00:00
for (long unsigned int i = 0; i < this->selectedUrls.size(); i++) {
if (this->selectedUrls[i] == url) {
ourEntry->SetIcon("romfs:/images/icons/check-box-outline.png");
}
}
this->menu->AddItem(ourEntry);
}
}
2019-11-30 16:12:45 +00:00
void netInstPage::selectTitle(int selectedIndex) {
if (this->menu->GetItems()[selectedIndex]->GetIcon() == "romfs:/images/icons/check-box-outline.png") {
2019-11-22 17:26:34 +00:00
for (long unsigned int i = 0; i < this->selectedUrls.size(); i++) {
if (this->selectedUrls[i] == this->ourUrls[selectedIndex]) this->selectedUrls.erase(this->selectedUrls.begin() + i);
}
2019-11-22 17:26:34 +00:00
} else this->selectedUrls.push_back(this->ourUrls[selectedIndex]);
this->drawMenuItems(false);
}
void netInstPage::startNetwork() {
this->butText->SetText("inst.net.buttons"_lang);
this->menu->SetVisible(false);
this->menu->ClearItems();
2019-11-25 02:48:17 +00:00
this->infoImage->SetVisible(true);
mainApp->LoadLayout(mainApp->netinstPage);
2019-11-22 17:26:34 +00:00
this->ourUrls = netInstStuff::OnSelected();
if (!this->ourUrls.size()) {
2019-10-24 19:53:54 +00:00
mainApp->LoadLayout(mainApp->mainPage);
return;
2019-11-22 17:26:34 +00:00
} else if (this->ourUrls[0] == "supplyUrl") {
2019-11-14 01:01:35 +00:00
std::string keyboardResult;
switch (mainApp->CreateShowDialog("inst.net.src.title"_lang, "common.cancel_desc"_lang, {"inst.net.src.opt0"_lang, "inst.net.src.opt1"_lang}, false)) {
2019-11-14 01:01:35 +00:00
case 0:
keyboardResult = inst::util::softwareKeyboard("inst.net.url.hint"_lang, lastUrl, 500);
2019-11-14 01:01:35 +00:00
if (keyboardResult.size() > 0) {
2019-11-15 16:41:29 +00:00
lastUrl = keyboardResult;
2019-11-14 01:01:35 +00:00
if (inst::util::formatUrlString(keyboardResult) == "" || keyboardResult == "https://" || keyboardResult == "http://") {
mainApp->CreateShowDialog("inst.net.url.invalid"_lang, "", {"common.ok"_lang}, false);
2019-11-14 01:01:35 +00:00
break;
}
sourceString = "inst.net.url.source_string"_lang;
2019-11-22 17:26:34 +00:00
this->selectedUrls = {keyboardResult};
this->startInstall(true);
2019-10-31 16:07:04 +00:00
return;
}
2019-11-14 01:01:35 +00:00
break;
case 1:
2019-12-21 20:14:21 +00:00
keyboardResult = inst::util::softwareKeyboard("inst.net.gdrive.hint"_lang, lastFileID, 50);
2019-11-14 01:01:35 +00:00
if (keyboardResult.size() > 0) {
2019-11-15 16:41:29 +00:00
lastFileID = keyboardResult;
2019-11-14 01:01:35 +00:00
std::string fileName = inst::util::getDriveFileName(keyboardResult);
2019-11-22 17:26:34 +00:00
if (fileName.size() > 0) this->alternativeNames = {fileName};
else this->alternativeNames = {"inst.net.gdrive.alt_name"_lang};
sourceString = "inst.net.gdrive.source_string"_lang;
2019-11-22 17:26:34 +00:00
this->selectedUrls = {"https://www.googleapis.com/drive/v3/files/" + keyboardResult + "?key=" + inst::config::gAuthKey + "&alt=media"};
this->startInstall(true);
2019-11-14 01:01:35 +00:00
return;
}
break;
}
2019-11-22 17:26:34 +00:00
this->startNetwork();
2019-11-14 01:01:35 +00:00
return;
} else {
mainApp->CallForRender(); // If we re-render a few times during this process the main screen won't flicker
sourceString = "inst.net.source_string"_lang;
this->pageInfoText->SetText("inst.net.top_info"_lang);
2020-01-03 16:35:31 +00:00
this->butText->SetText("inst.net.buttons1"_lang);
2019-11-22 17:26:34 +00:00
this->drawMenuItems(true);
this->menu->SetSelectedIndex(0);
mainApp->CallForRender();
this->infoImage->SetVisible(false);
this->menu->SetVisible(true);
}
return;
}
void netInstPage::startInstall(bool urlMode) {
int dialogResult = -1;
2019-11-22 17:26:34 +00:00
if (this->selectedUrls.size() == 1) {
2019-11-14 01:01:35 +00:00
std::string ourUrlString;
2019-11-22 17:26:34 +00:00
if (this->alternativeNames.size() > 0) ourUrlString = inst::util::shortenString(this->alternativeNames[0], 32, true);
else ourUrlString = inst::util::shortenString(inst::util::formatUrlString(this->selectedUrls[0]), 32, true);
dialogResult = mainApp->CreateShowDialog("inst.target.desc0"_lang + ourUrlString + "inst.target.desc1"_lang, "common.cancel_desc"_lang, {"inst.target.opt0"_lang, "inst.target.opt1"_lang}, false);
} else dialogResult = mainApp->CreateShowDialog("inst.target.desc00"_lang + std::to_string(this->selectedUrls.size()) + "inst.target.desc01"_lang, "common.cancel_desc"_lang, {"inst.target.opt0"_lang, "inst.target.opt1"_lang}, false);
if (dialogResult == -1 && !urlMode) return;
else if (dialogResult == -1 && urlMode) {
2019-11-22 17:26:34 +00:00
this->startNetwork();
return;
}
2019-11-30 17:06:49 +00:00
netInstStuff::installTitleNet(this->selectedUrls, dialogResult, this->alternativeNames, sourceString);
return;
}
2019-10-18 19:01:51 +00:00
void netInstPage::onInput(u64 Down, u64 Up, u64 Held, pu::ui::Touch Pos) {
if (Down & KEY_B) {
mainApp->LoadLayout(mainApp->mainPage);
}
2019-10-31 15:42:40 +00:00
if ((Down & KEY_A) || (Up & KEY_TOUCH)) {
2019-11-30 16:12:45 +00:00
this->selectTitle(this->menu->GetSelectedIndex());
2019-11-22 17:26:34 +00:00
if (this->menu->GetItems().size() == 1 && this->selectedUrls.size() == 1) {
this->startInstall(false);
}
}
if ((Down & KEY_Y)) {
2019-11-22 17:26:34 +00:00
if (this->selectedUrls.size() == this->menu->GetItems().size()) this->drawMenuItems(true);
else {
for (long unsigned int i = 0; i < this->menu->GetItems().size(); i++) {
if (this->menu->GetItems()[i]->GetIcon() == "romfs:/images/icons/check-box-outline.png") continue;
2019-11-30 16:12:45 +00:00
else this->selectTitle(i);
}
2019-11-22 17:26:34 +00:00
this->drawMenuItems(false);
}
}
if (Down & KEY_PLUS) {
2019-11-22 17:26:34 +00:00
if (this->selectedUrls.size() == 0) {
2019-11-30 16:12:45 +00:00
this->selectTitle(this->menu->GetSelectedIndex());
2019-11-22 17:26:34 +00:00
this->startInstall(false);
return;
}
2019-11-22 17:26:34 +00:00
this->startInstall(false);
}
2019-10-18 19:01:51 +00:00
}
}