.oO SearXNG Developer Documentation Oo.
Loading...
Searching...
No Matches
searx.preferences.SearchLanguageSetting Class Reference
+ Inheritance diagram for searx.preferences.SearchLanguageSetting:
+ Collaboration diagram for searx.preferences.SearchLanguageSetting:

Public Member Functions

 parse (self, str data)
 
- Public Member Functions inherited from searx.preferences.EnumStringSetting
 __init__ (self, str default_value, Iterable[str] choices, locked=False)
 
- Public Member Functions inherited from searx.preferences.Setting
 __init__ (self, default_value, bool locked=False)
 
 get_value (self)
 
 save (self, str name, flask.Response resp)
 

Protected Member Functions

 _validate_selection (self, selection)
 

Additional Inherited Members

- Public Attributes inherited from searx.preferences.EnumStringSetting
 choices = choices
 
- Public Attributes inherited from searx.preferences.Setting
 value = default_value
 
 locked = locked
 

Detailed Description

Available choices may change, so user's value may not be in choices anymore

Definition at line 168 of file preferences.py.

Member Function Documentation

◆ _validate_selection()

searx.preferences.SearchLanguageSetting._validate_selection ( self,
selection )
protected

Reimplemented from searx.preferences.EnumStringSetting.

Definition at line 171 of file preferences.py.

171 def _validate_selection(self, selection):
172 if selection != '' and selection != 'auto' and not VALID_LANGUAGE_CODE.match(selection):
173 raise ValidationException('Invalid language code: "{0}"'.format(selection))
174

◆ parse()

searx.preferences.SearchLanguageSetting.parse ( self,
str data )
Parse and validate ``data`` and store the result at ``self.value``

Reimplemented from searx.preferences.EnumStringSetting.

Definition at line 175 of file preferences.py.

175 def parse(self, data: str):
176 """Parse and validate ``data`` and store the result at ``self.value``"""
177 if data not in self.choices and data != self.value:
178 # hack to give some backwards compatibility with old language cookies
179 data = str(data).replace('_', '-')
180 lang = data.split('-', maxsplit=1)[0]
181
182 if data in self.choices:
183 pass
184 elif lang in self.choices:
185 data = lang
186 else:
187 data = self.value
188 self._validate_selection(data)
189 self.value = data
190
191

References searx.preferences.EnumStringSetting.choices, and searx.preferences.Setting.value.


The documentation for this class was generated from the following file: