.oO SearXNG Developer Documentation Oo.
Loading...
Searching...
No Matches
searx.enginelib.traits.EngineTraits Class Reference
+ Inheritance diagram for searx.enginelib.traits.EngineTraits:

Public Member Functions

 get_language (self, str searxng_locale, default=None)
 
 get_region (self, str searxng_locale, default=None)
 
bool is_locale_supported (self, str searxng_locale)
 
 copy (self)
 
Union[ 'EngineTraits', None] fetch_traits (cls, Engine engine)
 
 set_traits (self, Engine engine)
 

Static Public Attributes

Dict regions = dataclasses.field(default_factory=dict)
 
Dict languages = dataclasses.field(default_factory=dict)
 
Optional all_locale = None
 
Literal data_type = 'traits_v1'
 
Dict custom = dataclasses.field(default_factory=dict)
 

Protected Member Functions

 _set_traits_v1 (self, Engine engine)
 

Detailed Description

The class is intended to be instantiated for each engine.

Definition at line 39 of file traits.py.

Member Function Documentation

◆ _set_traits_v1()

searx.enginelib.traits.EngineTraits._set_traits_v1 ( self,
Engine engine )
protected

Definition at line 164 of file traits.py.

164 def _set_traits_v1(self, engine: Engine):
165 # For an engine, when there is `language: ...` in the YAML settings the engine
166 # does support only this one language (region)::
167 #
168 # - name: google italian
169 # engine: google
170 # language: it
171 # region: it-IT # type: ignore
172
173 traits = self.copy()
174
175 _msg = "settings.yml - engine: '%s' / %s: '%s' not supported"
176
177 languages = traits.languages
178 if hasattr(engine, 'language'):
179 if engine.language not in languages:
180 raise ValueError(_msg % (engine.name, 'language', engine.language))
181 traits.languages = {engine.language: languages[engine.language]}
182
183 regions = traits.regions
184 if hasattr(engine, 'region'):
185 if engine.region not in regions:
186 raise ValueError(_msg % (engine.name, 'region', engine.region))
187 traits.regions = {engine.region: regions[engine.region]}
188
189 engine.language_support = bool(traits.languages or traits.regions)
190
191 # set the copied & modified traits in engine's namespace
192 engine.traits = traits
193
194

References copy().

Referenced by set_traits().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ copy()

searx.enginelib.traits.EngineTraits.copy ( self)
Create a copy of the dataclass object.

Definition at line 134 of file traits.py.

134 def copy(self):
135 """Create a copy of the dataclass object."""
136 return EngineTraits(**dataclasses.asdict(self))
137

Referenced by _set_traits_v1().

+ Here is the caller graph for this function:

◆ fetch_traits()

Union['EngineTraits', None] searx.enginelib.traits.EngineTraits.fetch_traits ( cls,
Engine engine )
Call a function ``fetch_traits(engine_traits)`` from engines namespace to fetch
and set properties from the origin engine in the object ``engine_traits``.  If
function does not exists, ``None`` is returned.

Reimplemented in searx.enginelib.traits.EngineTraitsMap.

Definition at line 139 of file traits.py.

139 def fetch_traits(cls, engine: Engine) -> Union['EngineTraits', None]:
140 """Call a function ``fetch_traits(engine_traits)`` from engines namespace to fetch
141 and set properties from the origin engine in the object ``engine_traits``. If
142 function does not exists, ``None`` is returned.
143 """
144
145 fetch_traits = getattr(engine, 'fetch_traits', None)
146 engine_traits = None
147
148 if fetch_traits:
149 engine_traits = cls()
150 fetch_traits(engine_traits)
151 return engine_traits
152

References fetch_traits().

Referenced by fetch_traits().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ get_language()

searx.enginelib.traits.EngineTraits.get_language ( self,
str searxng_locale,
default = None )
Return engine's language string that *best fits* to SearXNG's locale.

:param searxng_locale: SearXNG's internal representation of locale
  selected by the user.

:param default: engine's default language

The *best fits* rules are implemented in
:py:obj:`searx.locales.get_engine_locale`.  Except for the special value ``all``
which is determined from :py:obj:`EngineTraits.all_locale`.

Definition at line 89 of file traits.py.

89 def get_language(self, searxng_locale: str, default=None):
90 """Return engine's language string that *best fits* to SearXNG's locale.
91
92 :param searxng_locale: SearXNG's internal representation of locale
93 selected by the user.
94
95 :param default: engine's default language
96
97 The *best fits* rules are implemented in
98 :py:obj:`searx.locales.get_engine_locale`. Except for the special value ``all``
99 which is determined from :py:obj:`EngineTraits.all_locale`.
100 """
101 if searxng_locale == 'all' and self.all_locale is not None:
102 return self.all_locale
103 return locales.get_engine_locale(searxng_locale, self.languages, default=default)
104

References all_locale, and languages.

Referenced by is_locale_supported().

+ Here is the caller graph for this function:

◆ get_region()

searx.enginelib.traits.EngineTraits.get_region ( self,
str searxng_locale,
default = None )
Return engine's region string that best fits to SearXNG's locale.

:param searxng_locale: SearXNG's internal representation of locale
  selected by the user.

:param default: engine's default region

The *best fits* rules are implemented in
:py:obj:`searx.locales.get_engine_locale`.  Except for the special value ``all``
which is determined from :py:obj:`EngineTraits.all_locale`.

Definition at line 105 of file traits.py.

105 def get_region(self, searxng_locale: str, default=None):
106 """Return engine's region string that best fits to SearXNG's locale.
107
108 :param searxng_locale: SearXNG's internal representation of locale
109 selected by the user.
110
111 :param default: engine's default region
112
113 The *best fits* rules are implemented in
114 :py:obj:`searx.locales.get_engine_locale`. Except for the special value ``all``
115 which is determined from :py:obj:`EngineTraits.all_locale`.
116 """
117 if searxng_locale == 'all' and self.all_locale is not None:
118 return self.all_locale
119 return locales.get_engine_locale(searxng_locale, self.regions, default=default)
120

References all_locale, and regions.

Referenced by is_locale_supported().

+ Here is the caller graph for this function:

◆ is_locale_supported()

bool searx.enginelib.traits.EngineTraits.is_locale_supported ( self,
str searxng_locale )
A *locale* (SearXNG's internal representation) is considered to be
supported by the engine if the *region* or the *language* is supported
by the engine.

For verification the functions :py:func:`EngineTraits.get_region` and
:py:func:`EngineTraits.get_language` are used.

Definition at line 121 of file traits.py.

121 def is_locale_supported(self, searxng_locale: str) -> bool:
122 """A *locale* (SearXNG's internal representation) is considered to be
123 supported by the engine if the *region* or the *language* is supported
124 by the engine.
125
126 For verification the functions :py:func:`EngineTraits.get_region` and
127 :py:func:`EngineTraits.get_language` are used.
128 """
129 if self.data_type == 'traits_v1':
130 return bool(self.get_region(searxng_locale) or self.get_language(searxng_locale))
131
132 raise TypeError('engine traits of type %s is unknown' % self.data_type)
133

References data_type, get_language(), and get_region().

+ Here is the call graph for this function:

◆ set_traits()

searx.enginelib.traits.EngineTraits.set_traits ( self,
Engine engine )
Set traits from self object in a :py:obj:`.Engine` namespace.

:param engine: engine instance build by :py:func:`searx.engines.load_engine`

Reimplemented in searx.enginelib.traits.EngineTraitsMap.

Definition at line 153 of file traits.py.

153 def set_traits(self, engine: Engine):
154 """Set traits from self object in a :py:obj:`.Engine` namespace.
155
156 :param engine: engine instance build by :py:func:`searx.engines.load_engine`
157 """
158
159 if self.data_type == 'traits_v1':
160 self._set_traits_v1(engine)
161 else:
162 raise TypeError('engine traits of type %s is unknown' % self.data_type)
163

References _set_traits_v1(), and data_type.

+ Here is the call graph for this function:

Member Data Documentation

◆ all_locale

Optional searx.enginelib.traits.EngineTraits.all_locale = None
static

Definition at line 76 of file traits.py.

Referenced by get_language(), and get_region().

◆ custom

Dict searx.enginelib.traits.EngineTraits.custom = dataclasses.field(default_factory=dict)
static

Definition at line 85 of file traits.py.

◆ data_type

searx.enginelib.traits.EngineTraits.data_type = 'traits_v1'
static

Definition at line 81 of file traits.py.

Referenced by is_locale_supported(), and set_traits().

◆ languages

searx.enginelib.traits.EngineTraits.languages = dataclasses.field(default_factory=dict)
static

◆ regions

searx.enginelib.traits.EngineTraits.regions = dataclasses.field(default_factory=dict)
static

Definition at line 42 of file traits.py.

Referenced by get_region().


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