Compare commits

..

3 Commits

Author SHA1 Message Date
Tanner f4ec74e63d Ignore praw.ini 2026-06-13 16:35:38 -06:00
tanner a958ca3614 refactor: Adapt Meilisearch integration to v1.29.0 API
Co-authored-by: aider (gemini/gemini-2.5-pro) <aider@aider.chat>
2026-06-13 11:58:08 -06:00
tanner 1caf4248d2 feat: Add MeiliSearch API key authentication 2026-06-13 11:58:08 -06:00
2 changed files with 12 additions and 16 deletions
+1
View File
@@ -111,3 +111,4 @@ data.db.bak
data/archive/* data/archive/*
data/backup/* data/backup/*
qotnews.sqlite qotnews.sqlite
praw.ini
+11 -16
View File
@@ -10,6 +10,7 @@ SEARCH_ENABLED = bool(settings.MEILI_URL)
def meili_api(method, route, json=None, params=None, parse_json=True): def meili_api(method, route, json=None, params=None, parse_json=True):
try: try:
headers = {'Authorization': 'Bearer ' + settings.MEILI_API_KEY}
r = method(settings.MEILI_URL + route, json=json, params=params, timeout=4) r = method(settings.MEILI_URL + route, json=json, params=params, timeout=4)
if r.status_code > 299: if r.status_code > 299:
raise Exception('Bad response code ' + str(r.status_code)) raise Exception('Bad response code ' + str(r.status_code))
@@ -28,24 +29,20 @@ def create_index():
json = dict(uid='qotnews', primaryKey='id') json = dict(uid='qotnews', primaryKey='id')
return meili_api(requests.post, 'indexes', json=json) return meili_api(requests.post, 'indexes', json=json)
def update_rankings(): def update_settings():
json = ['typo', 'words', 'proximity', 'date:desc', 'exactness'] json = {
return meili_api(requests.post, 'indexes/qotnews/settings/ranking-rules', json=json) 'rankingRules': ['typo', 'words', 'proximity', 'date:desc', 'exactness'],
'searchableAttributes': ['title', 'url', 'author'],
def update_attributes(): 'displayedAttributes': ['id', 'ref', 'source', 'author', 'author_link', 'score', 'date', 'title', 'link', 'url', 'num_comments'],
json = ['title', 'url', 'author'] }
r = meili_api(requests.post, 'indexes/qotnews/settings/searchable-attributes', json=json) return meili_api(requests.post, 'indexes/qotnews/settings', json=json)
json = ['id', 'ref', 'source', 'author', 'author_link', 'score', 'date', 'title', 'link', 'url', 'num_comments']
r = meili_api(requests.post, 'indexes/qotnews/settings/displayed-attributes', json=json)
return r
def init(): def init():
if not SEARCH_ENABLED: if not SEARCH_ENABLED:
logging.info('Search is not enabled, skipping init.') logging.info('Search is not enabled, skipping init.')
return return
print(create_index()) print(create_index())
update_rankings() update_settings()
update_attributes()
def put_story(story): def put_story(story):
if not SEARCH_ENABLED: return if not SEARCH_ENABLED: return
@@ -53,13 +50,11 @@ def put_story(story):
def search(q): def search(q):
if not SEARCH_ENABLED: return [] if not SEARCH_ENABLED: return []
params = dict(q=q, limit=settings.FEED_LENGTH) json = dict(q=q, limit=settings.FEED_LENGTH)
r = meili_api(requests.get, 'indexes/qotnews/search', params=params, parse_json=False) r = meili_api(requests.post, 'indexes/qotnews/search', json=json, parse_json=False)
return r return r
if __name__ == '__main__': if __name__ == '__main__':
init() init()
print(update_rankings())
print(search('facebook')) print(search('facebook'))