mirror of https://github.com/searxng/searxng.git
Refactor search language preference.
This commit is contained in:
parent
f62ce21f50
commit
93233c786a
|
@ -59,18 +59,7 @@ class EnumStringSetting(Setting):
|
||||||
self._validate_selection(self.value)
|
self._validate_selection(self.value)
|
||||||
|
|
||||||
def parse(self, data):
|
def parse(self, data):
|
||||||
if data not in self.choices and data != self.value:
|
self._validate_selection(data)
|
||||||
# hack to give some backwards compatibility with old language cookies
|
|
||||||
data = str(data).replace('_', '-')
|
|
||||||
lang = data[:2]
|
|
||||||
if data in self.choices:
|
|
||||||
pass
|
|
||||||
elif lang in self.choices:
|
|
||||||
data = lang
|
|
||||||
elif data == 'ar-XA':
|
|
||||||
data = 'ar-SA'
|
|
||||||
else:
|
|
||||||
data = 'all'
|
|
||||||
self.value = data
|
self.value = data
|
||||||
|
|
||||||
|
|
||||||
|
@ -106,6 +95,25 @@ class MultipleChoiceSetting(EnumStringSetting):
|
||||||
resp.set_cookie(name, ','.join(self.value), max_age=COOKIE_MAX_AGE)
|
resp.set_cookie(name, ','.join(self.value), max_age=COOKIE_MAX_AGE)
|
||||||
|
|
||||||
|
|
||||||
|
class SearchLanguageSetting(EnumStringSetting):
|
||||||
|
"""Available choices may change, so user's value may not be in choices anymore"""
|
||||||
|
|
||||||
|
def parse(self, data):
|
||||||
|
if data not in self.choices and data != self.value:
|
||||||
|
# hack to give some backwards compatibility with old language cookies
|
||||||
|
data = str(data).replace('_', '-')
|
||||||
|
lang = data.split('-')[0]
|
||||||
|
if data in self.choices:
|
||||||
|
pass
|
||||||
|
elif lang in self.choices:
|
||||||
|
data = lang
|
||||||
|
elif data == 'ar-XA':
|
||||||
|
data = 'ar-SA'
|
||||||
|
else:
|
||||||
|
data = 'all'
|
||||||
|
self.value = data
|
||||||
|
|
||||||
|
|
||||||
class MapSetting(Setting):
|
class MapSetting(Setting):
|
||||||
"""Setting of a value that has to be translated in order to be storable"""
|
"""Setting of a value that has to be translated in order to be storable"""
|
||||||
|
|
||||||
|
@ -227,7 +235,7 @@ class Preferences(object):
|
||||||
super(Preferences, self).__init__()
|
super(Preferences, self).__init__()
|
||||||
|
|
||||||
self.key_value_settings = {'categories': MultipleChoiceSetting(['general'], choices=categories),
|
self.key_value_settings = {'categories': MultipleChoiceSetting(['general'], choices=categories),
|
||||||
'language': EnumStringSetting(settings['search']['language'],
|
'language': SearchLanguageSetting(settings['search']['language'],
|
||||||
choices=LANGUAGE_CODES),
|
choices=LANGUAGE_CODES),
|
||||||
'locale': EnumStringSetting(settings['ui']['default_locale'],
|
'locale': EnumStringSetting(settings['ui']['default_locale'],
|
||||||
choices=settings['locales'].keys() + ['']),
|
choices=settings['locales'].keys() + ['']),
|
||||||
|
|
Loading…
Reference in New Issue