mirror of
https://github.com/searxng/searxng.git
synced 2025-12-22 19:50:00 +00:00
[feat] engines: add lucide icons (#5503)
This commit is contained in:
69
searx/engines/lucide.py
Normal file
69
searx/engines/lucide.py
Normal file
@@ -0,0 +1,69 @@
|
|||||||
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
||||||
|
"""Browse one of the largest collections of copyleft icons
|
||||||
|
that can be used for own projects (e.g. apps, websites).
|
||||||
|
|
||||||
|
.. _Website: https://lucide.dev
|
||||||
|
|
||||||
|
"""
|
||||||
|
|
||||||
|
import typing as t
|
||||||
|
|
||||||
|
from searx.result_types import EngineResults
|
||||||
|
|
||||||
|
if t.TYPE_CHECKING:
|
||||||
|
from extended_types import SXNG_Response
|
||||||
|
from search.processors.online import OnlineParams
|
||||||
|
|
||||||
|
|
||||||
|
about = {
|
||||||
|
"website": "https://lucide.dev/",
|
||||||
|
"wikidata_id": None,
|
||||||
|
"official_api_documentation": None,
|
||||||
|
"use_official_api": True,
|
||||||
|
"results": "JSON",
|
||||||
|
}
|
||||||
|
|
||||||
|
cdn_base_url = "https://cdn.jsdelivr.net/npm/lucide-static"
|
||||||
|
categories = ["images", "icons"]
|
||||||
|
|
||||||
|
|
||||||
|
def request(query: str, params: "OnlineParams"):
|
||||||
|
params["url"] = f"{cdn_base_url}/tags.json"
|
||||||
|
params['query'] = query
|
||||||
|
return params
|
||||||
|
|
||||||
|
|
||||||
|
def response(resp: "SXNG_Response") -> EngineResults:
|
||||||
|
res = EngineResults()
|
||||||
|
query_parts = resp.search_params["query"].lower().split(" ")
|
||||||
|
|
||||||
|
def is_result_match(result: tuple[str, list[str]]) -> bool:
|
||||||
|
icon_name, tags = result
|
||||||
|
|
||||||
|
for part in query_parts:
|
||||||
|
if part in icon_name:
|
||||||
|
return True
|
||||||
|
|
||||||
|
for tag in tags:
|
||||||
|
if part in tag:
|
||||||
|
return True
|
||||||
|
|
||||||
|
return False
|
||||||
|
|
||||||
|
filtered_results = filter(is_result_match, resp.json().items())
|
||||||
|
for icon_name, tags in filtered_results:
|
||||||
|
img_src = f"{cdn_base_url}/icons/{icon_name}.svg"
|
||||||
|
res.add(
|
||||||
|
res.types.LegacyResult(
|
||||||
|
{
|
||||||
|
"template": "images.html",
|
||||||
|
"url": img_src,
|
||||||
|
"title": icon_name,
|
||||||
|
"content": ", ".join(tags),
|
||||||
|
"img_src": img_src,
|
||||||
|
"img_format": "SVG",
|
||||||
|
}
|
||||||
|
)
|
||||||
|
)
|
||||||
|
|
||||||
|
return res
|
||||||
@@ -1293,6 +1293,11 @@ engines:
|
|||||||
require_api_key: false
|
require_api_key: false
|
||||||
results: HTML
|
results: HTML
|
||||||
|
|
||||||
|
- name: lucide
|
||||||
|
engine: lucide
|
||||||
|
shortcut: luc
|
||||||
|
timeout: 3.0
|
||||||
|
|
||||||
- name: marginalia
|
- name: marginalia
|
||||||
engine: marginalia
|
engine: marginalia
|
||||||
shortcut: mar
|
shortcut: mar
|
||||||
|
|||||||
Reference in New Issue
Block a user