.oO SearXNG Developer Documentation Oo.
Loading...
Searching...
No Matches
selfhst.py
Go to the documentation of this file.
1# SPDX-License-Identifier: AGPL-3.0-or-later
2"""selfh.st/icons - A collection of logos for self-hosted dashboards and
3documentation"""
4
5from dateutil import parser
6
7about = {
8 'website': 'https://selfh.st/icons/',
9 'official_api_documentation': 'https://selfh.st/icons-about/',
10 "use_official_api": True,
11 "require_api_key": False,
12 "results": 'JSON',
13}
14categories = ['images']
15
16
17icons_list_url = 'https://cdn.selfh.st/directory/icons.json'
18icons_cdn_base_url = 'https://cdn.jsdelivr.net'
19
20
21def request(query, params):
22 params['url'] = icons_list_url
23 params['query'] = query
24 return params
25
26
27def response(resp):
28 results = []
29
30 query_parts = resp.search_params['query'].lower().split(' ')
31 for item in resp.json():
32 keyword = item['Reference'].lower()
33 if not any(query_part in keyword for query_part in query_parts):
34 continue
35
36 img_format = None
37 for format_name in ('SVG', 'PNG', 'WebP'):
38 if item[format_name] == 'Yes':
39 img_format = format_name.lower()
40 break
41
42 img_src = f'{icons_cdn_base_url}/gh/selfhst/icons/{img_format}/{item["Reference"]}.{img_format}'
43 result = {
44 'template': 'images.html',
45 'url': img_src,
46 'title': item['Name'],
47 'content': '',
48 'img_src': img_src,
49 'img_format': img_format,
50 'publishedDate': parser.parse(item['CreatedAt']),
51 }
52 results.append(result)
53
54 return results
request(query, params)
Definition selfhst.py:21