2019-11-22 03:32:41 +00:00
|
|
|
/*
|
2020-01-24 10:10:40 +00:00
|
|
|
* Copyright (c) 2018-2020 Atmosphère-NX
|
2019-11-22 03:32:41 +00:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
|
|
* under the terms and conditions of the GNU General Public License,
|
|
|
|
* version 2, as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope it will be useful, but WITHOUT
|
|
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
|
|
|
* more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
#include "set_mitm_service.hpp"
|
|
|
|
|
|
|
|
namespace ams::mitm::settings {
|
|
|
|
|
|
|
|
using namespace ams::settings;
|
|
|
|
|
|
|
|
Result SetMitmService::EnsureLocale() {
|
|
|
|
std::scoped_lock lk(this->lock);
|
|
|
|
|
2020-03-08 08:06:23 +00:00
|
|
|
const bool is_ns = this->client_info.program_id == ncm::SystemProgramId::Ns;
|
2019-11-22 03:32:41 +00:00
|
|
|
|
|
|
|
if (!this->got_locale) {
|
|
|
|
std::memset(&this->locale, 0xCC, sizeof(this->locale));
|
|
|
|
ncm::ProgramId program_id = this->client_info.program_id;
|
2020-03-08 08:06:23 +00:00
|
|
|
if (is_ns) {
|
2019-11-22 03:32:41 +00:00
|
|
|
/* When NS asks for a locale, refresh to get the current application locale. */
|
|
|
|
os::ProcessId application_process_id;
|
|
|
|
R_TRY(pm::dmnt::GetApplicationProcessId(&application_process_id));
|
|
|
|
R_TRY(pm::info::GetProgramId(&program_id, application_process_id));
|
|
|
|
}
|
|
|
|
this->locale = cfg::GetOverrideLocale(program_id);
|
|
|
|
this->got_locale = !is_ns;
|
|
|
|
}
|
|
|
|
|
|
|
|
return ResultSuccess();
|
|
|
|
}
|
|
|
|
|
|
|
|
Result SetMitmService::GetLanguageCode(sf::Out<settings::LanguageCode> out) {
|
|
|
|
this->EnsureLocale();
|
|
|
|
|
|
|
|
/* If there's no override locale, just use the actual one. */
|
|
|
|
R_UNLESS(settings::IsValidLanguageCode(this->locale.language_code), sm::mitm::ResultShouldForwardToSession());
|
|
|
|
|
|
|
|
out.SetValue(this->locale.language_code);
|
|
|
|
return ResultSuccess();
|
|
|
|
}
|
|
|
|
|
|
|
|
Result SetMitmService::GetRegionCode(sf::Out<settings::RegionCode> out) {
|
|
|
|
this->EnsureLocale();
|
|
|
|
|
|
|
|
/* If there's no override locale, just use the actual one. */
|
|
|
|
R_UNLESS(settings::IsValidRegionCode(this->locale.region_code), sm::mitm::ResultShouldForwardToSession());
|
|
|
|
|
|
|
|
out.SetValue(this->locale.region_code);
|
|
|
|
return ResultSuccess();
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|