#include "net_page.hpp" #include #include #include #include #include #include #include "constants.hpp" #include "main_frame.hpp" #include "fs.hpp" namespace i18n = brls::i18n; using namespace i18n::literals; using json = nlohmann::json; NetPage::NetPage() : AppletFrame(true, true) { this->setTitle("menus/net/title"_i18n); nifmInitialize(NifmServiceType_User); NifmNetworkProfileData profile; nifmGetCurrentNetworkProfile (&profile); nifmExit(); int uuid = std::accumulate(profile.uuid.uuid, profile.uuid.uuid + 16, 0); std::string labelText = ""; if(uuid){ if(profile.ip_setting_data.ip_address_setting.is_automatic){ labelText += "IP Adress: Automatic"; } else{ labelText = "IP Adress: " + ipToString(profile.ip_setting_data.ip_address_setting.current_addr.addr) +"\nSubnet Mask: " + ipToString(profile.ip_setting_data.ip_address_setting.subnet_mask.addr) +"\nGateway: " + ipToString(profile.ip_setting_data.ip_address_setting.gateway.addr); } struct in_addr addr = {(in_addr_t) gethostid()}; labelText += "\nLocal IP addr" + std::string(inet_ntoa(addr)); labelText += "\nMTU: " + std::to_string(unsigned(profile.ip_setting_data.mtu)); if(profile.ip_setting_data.dns_setting.is_automatic){ labelText += "\nDNS: Automatic"; } else{ labelText += "\nPrimary DNS: " + ipToString(profile.ip_setting_data.dns_setting.primary_dns_server.addr) +"\nSecondary DNS: "+ ipToString(profile.ip_setting_data.dns_setting.secondary_dns_server.addr); } } else{ labelText = "Please connect to internet to use this feature."; } list = new brls::List(); label = new brls::Label(brls::LabelStyle::DESCRIPTION, labelText, true); list->addView(label); //ip_addr //subnet_mask //gateway //dns1 //dns2 //mtu //ip_auto //dns_auto if(uuid){ json profiles = fs::parseJsonFile(INTERNET_JSON); if(profiles.empty()) { profiles = json::array(); } profiles.push_back(json::object({ {"name", "90DNS (Europe)"}, {"dns1", "163.172.141.219"}, {"dns2", "207.246.121.77"} })); profiles.push_back(json::object({ {"name", "90DNS (USA)"}, {"dns1", "207.246.121.77"}, {"dns2", "163.172.141.219"} })); profiles.push_back(json::object({ {"name", "Google DNS"}, {"dns1", "8.8.8.8"}, {"dns2", "8.8.4.4"} })); profiles.push_back(json::object({ {"name", "Automatic IP Address"}, {"ip_auto", true} })); profiles.push_back(json::object({ {"name", "Automatic DNS"}, {"dns_auto", true} })); profiles.push_back(json::object({ {"ip_addr", "10.13.111.111"}, {"subnet_mask", "255.255.0.0"}, {"gateway", "10.13.37.1"}, {"mtu", 1500}, {"name", "ACNH lan-play"} })); int iter = 0; for (const auto& p : profiles.items()){ json values = p.value(); if(values.find("name") != values.end()) listItem = new brls::ListItem(values["name"]); else listItem = new brls::ListItem("Unnamed"); listItem->getClickEvent()->subscribe([&, values](brls::View* view){ brls::Dialog* dialog = new brls::Dialog(values.dump(0).substr(1, values.dump(0).size() - 2)); brls::GenericEvent::Callback callbackOk = [&, dialog, values](brls::View* view) { nifmInitialize(NifmServiceType_Admin); NifmNetworkProfileData profile; nifmGetCurrentNetworkProfile (&profile); unsigned char buf[sizeof(struct in6_addr)]; if(values.find("ip_addr") != values.end()){ if(inet_pton(AF_INET, std::string(values["ip_addr"]).c_str(), buf)){ profile.ip_setting_data.ip_address_setting.is_automatic = u8(0); stringToIp(std::string(values["ip_addr"]), profile.ip_setting_data.ip_address_setting.current_addr.addr); } } if(values.find("subnet_mask") != values.end()){ if(inet_pton(AF_INET, std::string(values["subnet_mask"]).c_str(), buf)){ stringToIp(std::string(values["subnet_mask"]), profile.ip_setting_data.ip_address_setting.subnet_mask.addr); } } if(values.find("gateway") != values.end()){ if(inet_pton(AF_INET, std::string(values["gateway"]).c_str(), buf)){ stringToIp(std::string(values["gateway"]), profile.ip_setting_data.ip_address_setting.gateway.addr); } } if(values.find("dns1") != values.end()){ if(inet_pton(AF_INET, std::string(values["dns1"]).c_str(), buf)){ profile.ip_setting_data.dns_setting.is_automatic = u8(0); stringToIp(std::string(values["dns1"]), profile.ip_setting_data.dns_setting.primary_dns_server.addr); } } if(values.find("dns2") != values.end()){ if(inet_pton(AF_INET, std::string(values["dns2"]).c_str(), buf)){ profile.ip_setting_data.dns_setting.is_automatic = u8(0); stringToIp(std::string(values["dns2"]), profile.ip_setting_data.dns_setting.secondary_dns_server.addr); } } if(values.find("mtu") != values.end()){ profile.ip_setting_data.mtu = u16(values["mtu"]); } if(values.find("ip_auto") != values.end()){ profile.ip_setting_data.ip_address_setting.is_automatic = u8(values["ip_auto"]); } if(values.find("dns_auto") != values.end()){ profile.ip_setting_data.dns_setting.is_automatic = u8(values["dns_auto"]); } nifmSetNetworkProfile(&profile, &profile.uuid); nifmSetWirelessCommunicationEnabled(true); nifmExit(); usleep(2500000); //Wait to avoid crashes when leaving too fast dialog->close(); }; brls::GenericEvent::Callback callbackNo = [dialog](brls::View* view) { dialog->close(); }; dialog->addButton("menus/common/confirm"_i18n, callbackOk); dialog->addButton("menus/common/cancel"_i18n, callbackNo); dialog->setCancelable(false); dialog->open(); }); list->addView(listItem); iter++; } } else{ cancel = new brls::ListItem("menus/common/go_back"_i18n); cancel->getClickEvent()->subscribe([&](brls::View* view){ brls::Application::pushView(new MainFrame()); }); list->addView(cancel); } this->setContentView(list); } std::string NetPage::ipToString(u8* ip){ std::string res = ""; for (size_t i = 0; i < 3; i++){ res += std::to_string(unsigned(ip[i])); res += "."; } res += std::to_string(unsigned(ip[4])); return res; } int NetPage::stringToIp(const std::string& ip, u8 *out){ size_t start; size_t end = 0; int i = 0; while ((start = ip.find_first_not_of(".", end)) != std::string::npos) { end = ip.find(".", start); out[i] = u8(std::stoi(ip.substr(start, end - start))); i++; } return 0; }