.oO SearXNG Developer Documentation Oo.
Loading...
Searching...
No Matches
searx.engines.peertube Namespace Reference

Functions

 request (query, params)
 
 response (resp)
 
 video_response (resp)
 
 fetch_traits (EngineTraits engine_traits)
 

Variables

dict about
 
list categories = ["videos"]
 
bool paging = True
 
str base_url = "https://peer.tube"
 
bool time_range_support = True
 
dict time_range_table
 
bool safesearch = True
 
dict safesearch_table = {0: 'both', 1: 'false', 2: 'false'}
 

Detailed Description

Peertube and :py:obj:`SepiaSearch <searx.engines.sepiasearch>` do share
(more or less) the same REST API and the schema of the JSON result is identical.

Function Documentation

◆ fetch_traits()

searx.engines.peertube.fetch_traits ( EngineTraits engine_traits)
Fetch languages from peertube's search-index source code.

See videoLanguages_ in commit `8ed5c729 - Refactor and redesign client`_

.. _8ed5c729 - Refactor and redesign client:
   https://framagit.org/framasoft/peertube/search-index/-/commit/8ed5c729
.. _videoLanguages:
   https://framagit.org/framasoft/peertube/search-index/-/commit/8ed5c729#3d8747f9a60695c367c70bb64efba8f403721fad_0_291

Definition at line 137 of file peertube.py.

137def fetch_traits(engine_traits: EngineTraits):
138 """Fetch languages from peertube's search-index source code.
139
140 See videoLanguages_ in commit `8ed5c729 - Refactor and redesign client`_
141
142 .. _8ed5c729 - Refactor and redesign client:
143 https://framagit.org/framasoft/peertube/search-index/-/commit/8ed5c729
144 .. _videoLanguages:
145 https://framagit.org/framasoft/peertube/search-index/-/commit/8ed5c729#3d8747f9a60695c367c70bb64efba8f403721fad_0_291
146 """
147
148 resp = get(
149 'https://framagit.org/framasoft/peertube/search-index/-/raw/master/client/src/components/Filters.vue',
150 # the response from search-index repository is very slow
151 timeout=60,
152 )
153
154 if not resp.ok: # type: ignore
155 print("ERROR: response from peertube is not OK.")
156 return
157
158 js_lang = re.search(r"videoLanguages \‍(\‍)[^\n]+(.*?)\]", resp.text, re.DOTALL) # type: ignore
159 if not js_lang:
160 print("ERROR: can't determine languages from peertube")
161 return
162
163 for lang in re.finditer(r"\{ id: '([a-z]+)', label:", js_lang.group(1)):
164 eng_tag = lang.group(1)
165 if eng_tag == 'oc':
166 # Occitanis not known by babel, its closest relative is Catalan
167 # but 'ca' is already in the list of engine_traits.languages -->
168 # 'oc' will be ignored.
169 continue
170 try:
171 sxng_tag = language_tag(babel.Locale.parse(eng_tag))
172 except babel.UnknownLocaleError:
173 print("ERROR: %s is unknown by babel" % eng_tag)
174 continue
175
176 conflict = engine_traits.languages.get(sxng_tag)
177 if conflict:
178 if conflict != eng_tag:
179 print("CONFLICT: babel %s --> %s, %s" % (sxng_tag, conflict, eng_tag))
180 continue
181 engine_traits.languages[sxng_tag] = eng_tag
182
183 engine_traits.languages['zh_Hans'] = 'zh'
184 engine_traits.languages['zh_Hant'] = 'zh'

◆ request()

searx.engines.peertube.request ( query,
params )
Assemble request for the Peertube API

Definition at line 53 of file peertube.py.

53def request(query, params):
54 """Assemble request for the Peertube API"""
55
56 if not query:
57 return False
58
59 # eng_region = traits.get_region(params['searxng_locale'], 'en_US')
60 eng_lang = traits.get_language(params['searxng_locale'], None)
61
62 params['url'] = (
63 base_url.rstrip("/")
64 + "/api/v1/search/videos?"
65 + urlencode(
66 {
67 'search': query,
68 'searchTarget': 'search-index', # Vidiversum
69 'resultType': 'videos',
70 'start': (params['pageno'] - 1) * 10,
71 'count': 10,
72 # -createdAt: sort by date ascending / createdAt: date descending
73 'sort': '-match', # sort by *match descending*
74 'nsfw': safesearch_table[params['safesearch']],
75 }
76 )
77 )
78
79 if eng_lang is not None:
80 params['url'] += '&languageOneOf[]=' + eng_lang
81 params['url'] += '&boostLanguages[]=' + eng_lang
82
83 if params['time_range'] in time_range_table:
84 time = datetime.now().date() + time_range_table[params['time_range']]
85 params['url'] += '&startDate=' + time.isoformat()
86
87 return params
88
89

◆ response()

searx.engines.peertube.response ( resp)

Definition at line 90 of file peertube.py.

90def response(resp):
91 return video_response(resp)
92
93

References video_response().

+ Here is the call graph for this function:

◆ video_response()

searx.engines.peertube.video_response ( resp)
Parse video response from SepiaSearch and Peertube instances.

Definition at line 94 of file peertube.py.

94def video_response(resp):
95 """Parse video response from SepiaSearch and Peertube instances."""
96 results = []
97
98 json_data = resp.json()
99
100 if 'data' not in json_data:
101 return []
102
103 for result in json_data['data']:
104 metadata = [
105 x
106 for x in [
107 result.get('channel', {}).get('displayName'),
108 result.get('channel', {}).get('name') + '@' + result.get('channel', {}).get('host'),
109 ', '.join(result.get('tags', [])),
110 ]
111 if x
112 ]
113
114 duration = result.get('duration')
115 if duration:
116 duration = timedelta(seconds=duration)
117
118 results.append(
119 {
120 'url': result['url'],
121 'title': result['name'],
122 'content': html_to_text(result.get('description') or ''),
123 'author': result.get('account', {}).get('displayName'),
124 'length': duration,
125 'views': humanize_number(result['views']),
126 'template': 'videos.html',
127 'publishedDate': parse(result['publishedAt']),
128 'iframe_src': result.get('embedUrl'),
129 'thumbnail': result.get('thumbnailUrl') or result.get('previewUrl'),
130 'metadata': ' | '.join(metadata),
131 }
132 )
133
134 return results
135
136

Referenced by response().

+ Here is the caller graph for this function:

Variable Documentation

◆ about

dict searx.engines.peertube.about
Initial value:
1= {
2 # pylint: disable=line-too-long
3 "website": 'https://joinpeertube.org',
4 "wikidata_id": 'Q50938515',
5 "official_api_documentation": 'https://docs.joinpeertube.org/api-rest-reference.html#tag/Search/operation/searchVideos',
6 "use_official_api": True,
7 "require_api_key": False,
8 "results": 'JSON',
9}

Definition at line 22 of file peertube.py.

◆ base_url

str searx.engines.peertube.base_url = "https://peer.tube"

Definition at line 35 of file peertube.py.

◆ categories

list searx.engines.peertube.categories = ["videos"]

Definition at line 33 of file peertube.py.

◆ paging

bool searx.engines.peertube.paging = True

Definition at line 34 of file peertube.py.

◆ safesearch

bool searx.engines.peertube.safesearch = True

Definition at line 49 of file peertube.py.

◆ safesearch_table

dict searx.engines.peertube.safesearch_table = {0: 'both', 1: 'false', 2: 'false'}

Definition at line 50 of file peertube.py.

◆ time_range_support

bool searx.engines.peertube.time_range_support = True

Definition at line 41 of file peertube.py.

◆ time_range_table

dict searx.engines.peertube.time_range_table
Initial value:
1= {
2 'day': relativedelta(),
3 'week': relativedelta(weeks=-1),
4 'month': relativedelta(months=-1),
5 'year': relativedelta(years=-1),
6}

Definition at line 42 of file peertube.py.