.oO SearXNG Developer Documentation Oo.
Loading...
Searching...
No Matches
hackernews.py
Go to the documentation of this file.
1# SPDX-License-Identifier: AGPL-3.0-or-later
2"""Hackernews
3"""
4
5from datetime import datetime
6from urllib.parse import urlencode
7from dateutil.relativedelta import relativedelta
8
9from flask_babel import gettext
10
11# Engine metadata
12about = {
13 "website": "https://news.ycombinator.com/",
14 "wikidata_id": "Q686797",
15 "official_api_documentation": "https://hn.algolia.com/api",
16 "use_official_api": True,
17 "require_api_key": False,
18 "results": "JSON",
19}
20
21# Engine configuration
22paging = True
23time_range_support = True
24categories = ["it"]
25results_per_page = 30
26
27# Search URL
28base_url = "https://hn.algolia.com/api/v1"
29
30
31def request(query, params):
32 search_type = 'search'
33 if not query:
34 # if search query is empty show results from HN's front page
35 search_type = 'search_by_date'
36 query_params = {
37 "tags": "front_page",
38 "page": (params["pageno"] - 1),
39 }
40 else:
41 query_params = {
42 "query": query,
43 "page": (params["pageno"] - 1),
44 "hitsPerPage": results_per_page,
45 "minWordSizefor1Typo": 4,
46 "minWordSizefor2Typos": 8,
47 "advancedSyntax": "true",
48 "ignorePlurals": "false",
49 "minProximity": 7,
50 "numericFilters": '[]',
51 "tagFilters": '["story",[]]',
52 "typoTolerance": "true",
53 "queryType": "prefixLast",
54 "restrictSearchableAttributes": '["title","comment_text","url","story_text","author"]',
55 "getRankingInfo": "true",
56 }
57
58 if params['time_range']:
59 search_type = 'search_by_date'
60 timestamp = (datetime.now() - relativedelta(**{f"{params['time_range']}s": 1})).timestamp()
61 query_params["numericFilters"] = f"created_at_i>{timestamp}"
62
63 params["url"] = f"{base_url}/{search_type}?{urlencode(query_params)}"
64 return params
65
66
67def response(resp):
68 results = []
69 data = resp.json()
70
71 for hit in data["hits"]:
72 object_id = hit["objectID"]
73 points = hit.get("points") or 0
74 num_comments = hit.get("num_comments") or 0
75
76 metadata = ""
77 if points != 0 or num_comments != 0:
78 metadata = f"{gettext('points')}: {points}" f" | {gettext('comments')}: {num_comments}"
79 results.append(
80 {
81 "title": hit.get("title") or f"{gettext('author')}: {hit['author']}",
82 "url": f"https://news.ycombinator.com/item?id={object_id}",
83 "content": hit.get("url") or hit.get("comment_text") or hit.get("story_text") or "",
84 "metadata": metadata,
85 "author": hit["author"],
86 "publishedDate": datetime.utcfromtimestamp(hit["created_at_i"]),
87 }
88 )
89
90 return results
request(query, params)
Definition hackernews.py:31