1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
|
/*
* Copyright (C) 2005-2018 Team Kodi
* This file is part of Kodi - https://kodi.tv
*
* SPDX-License-Identifier: GPL-2.0-or-later
* See LICENSES/README.md for more information.
*/
#include "LanguageResource.h"
#include "LangInfo.h"
#include "ServiceBroker.h"
#include "addons/AddonManager.h"
#include "dialogs/GUIDialogKaiToast.h"
#include "guilib/GUIWindowManager.h"
#include "settings/Settings.h"
#include "utils/StringUtils.h"
#include "utils/Variant.h"
#include "messaging/helpers/DialogHelper.h"
#include "Skin.h"
using namespace KODI::MESSAGING;
using KODI::MESSAGING::HELPERS::DialogResponse;
#define LANGUAGE_ADDON_PREFIX "resource.language."
namespace ADDON
{
std::unique_ptr<CLanguageResource> CLanguageResource::FromExtension(CAddonInfo addonInfo, const cp_extension_t* ext)
{
// parse <extension> attributes
CLocale locale = CLocale::FromString(CServiceBroker::GetAddonMgr().GetExtValue(ext->configuration, "@locale"));
// parse <charsets>
std::string charsetGui;
bool forceUnicodeFont(false);
std::string charsetSubtitle;
cp_cfg_element_t *charsetsElement = CServiceBroker::GetAddonMgr().GetExtElement(ext->configuration, "charsets");
if (charsetsElement != NULL)
{
charsetGui = CServiceBroker::GetAddonMgr().GetExtValue(charsetsElement, "gui");
forceUnicodeFont = CServiceBroker::GetAddonMgr().GetExtValue(charsetsElement, "gui@unicodefont") == "true";
charsetSubtitle = CServiceBroker::GetAddonMgr().GetExtValue(charsetsElement, "subtitle");
}
// parse <dvd>
std::string dvdLanguageMenu;
std::string dvdLanguageAudio;
std::string dvdLanguageSubtitle;
cp_cfg_element_t *dvdElement = CServiceBroker::GetAddonMgr().GetExtElement(ext->configuration, "dvd");
if (dvdElement != NULL)
{
dvdLanguageMenu = CServiceBroker::GetAddonMgr().GetExtValue(dvdElement, "menu");
dvdLanguageAudio = CServiceBroker::GetAddonMgr().GetExtValue(dvdElement, "audio");
dvdLanguageSubtitle = CServiceBroker::GetAddonMgr().GetExtValue(dvdElement, "subtitle");
}
// fall back to the language of the addon if a DVD language is not defined
if (dvdLanguageMenu.empty())
dvdLanguageMenu = locale.GetLanguageCode();
if (dvdLanguageAudio.empty())
dvdLanguageAudio = locale.GetLanguageCode();
if (dvdLanguageSubtitle.empty())
dvdLanguageSubtitle = locale.GetLanguageCode();
// parse <sorttokens>
std::set<std::string> sortTokens;
cp_cfg_element_t *sorttokensElement = CServiceBroker::GetAddonMgr().GetExtElement(ext->configuration, "sorttokens");
if (sorttokensElement != NULL)
{
for (size_t i = 0; i < sorttokensElement->num_children; ++i)
{
cp_cfg_element_t &tokenElement = sorttokensElement->children[i];
if (tokenElement.name != NULL && strcmp(tokenElement.name, "token") == 0 &&
tokenElement.value != NULL)
{
std::string token(tokenElement.value);
std::string separators = CServiceBroker::GetAddonMgr().GetExtValue(&tokenElement, "@separators");
if (separators.empty())
separators = " ._";
for (std::string::const_iterator separator = separators.begin(); separator != separators.end(); ++separator)
sortTokens.insert(token + *separator);
}
}
}
return std::unique_ptr<CLanguageResource>(new CLanguageResource(
std::move(addonInfo),
locale,
charsetGui,
forceUnicodeFont,
charsetSubtitle,
dvdLanguageMenu,
dvdLanguageAudio,
dvdLanguageSubtitle,
sortTokens));
}
CLanguageResource::CLanguageResource(
CAddonInfo addonInfo,
const CLocale& locale,
const std::string& charsetGui,
bool forceUnicodeFont,
const std::string& charsetSubtitle,
const std::string& dvdLanguageMenu,
const std::string& dvdLanguageAudio,
const std::string& dvdLanguageSubtitle,
const std::set<std::string>& sortTokens)
: CResource(std::move(addonInfo)),
m_locale(locale),
m_charsetGui(charsetGui),
m_forceUnicodeFont(forceUnicodeFont),
m_charsetSubtitle(charsetSubtitle),
m_dvdLanguageMenu(dvdLanguageMenu),
m_dvdLanguageAudio(dvdLanguageAudio),
m_dvdLanguageSubtitle(dvdLanguageSubtitle),
m_sortTokens(sortTokens)
{ }
bool CLanguageResource::IsInUse() const
{
return StringUtils::EqualsNoCase(CServiceBroker::GetSettings()->GetString(CSettings::SETTING_LOCALE_LANGUAGE), ID());
}
void CLanguageResource::OnPostInstall(bool update, bool modal)
{
if (!g_SkinInfo)
return;
if (IsInUse() ||
(!update && !modal &&
(HELPERS::ShowYesNoDialogText(CVariant{Name()}, CVariant{24132}) == DialogResponse::YES)))
{
if (IsInUse())
g_langInfo.SetLanguage(ID());
else
CServiceBroker::GetSettings()->SetString(CSettings::SETTING_LOCALE_LANGUAGE, ID());
}
}
bool CLanguageResource::IsAllowed(const std::string &file) const
{
return file.empty() ||
StringUtils::EqualsNoCase(file.c_str(), "langinfo.xml") ||
StringUtils::EqualsNoCase(file.c_str(), "strings.po") ||
StringUtils::EqualsNoCase(file.c_str(), "strings.xml");
}
std::string CLanguageResource::GetAddonId(const std::string& locale)
{
if (locale.empty())
return "";
std::string addonId = locale;
if (!StringUtils::StartsWith(addonId, LANGUAGE_ADDON_PREFIX))
addonId = LANGUAGE_ADDON_PREFIX + locale;
StringUtils::ToLower(addonId);
return addonId;
}
bool CLanguageResource::FindLegacyLanguage(const std::string &locale, std::string &legacyLanguage)
{
if (locale.empty())
return false;
std::string addonId = GetAddonId(locale);
AddonPtr addon;
if (!CServiceBroker::GetAddonMgr().GetAddon(addonId, addon, ADDON_RESOURCE_LANGUAGE, true))
return false;
legacyLanguage = addon->Name();
return true;
}
}
|