| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 | # SPDX-License-Identifier: AGPL-3.0-or-later# lint: pylint"""Mastodon_ is an open source alternative to large social media platforms likeTwitter/X, Facebook, ...Since it's federated and self-hostable, there's a large amount of availableinstances, which can be chosen instead by modifying ``base_url``.We use their official API_ for searching, but unfortunately, their Search API_forbids pagination without OAuth.That's why we use tootfinder.ch for finding posts, which doesn't support searchingfor users, accounts or other types of content on Mastodon however... _Mastodon: https://mastodon.social.. _API: https://docs.joinmastodon.org/api/"""from urllib.parse import urlencodefrom datetime import datetimeabout = {    "website": 'https://joinmastodon.org/',    "wikidata_id": 'Q27986619',    "official_api_documentation": 'https://docs.joinmastodon.org/api/',    "use_official_api": True,    "require_api_key": False,    "results": 'JSON',}categories = ['social media']base_url = "https://mastodon.social"mastodon_type = "accounts"# https://github.com/searxng/searxng/pull/2857#issuecomment-1741713999page_size = 40def request(query, params):    args = {        'q': query,        'resolve': 'false',        'type': mastodon_type,        'limit': page_size,    }    params['url'] = f"{base_url}/api/v2/search?{urlencode(args)}"    return paramsdef response(resp):    results = []    json = resp.json()    for result in json[mastodon_type]:        if mastodon_type == "accounts":            results.append(                {                    'url': result['uri'],                    'title': result['username'] + f" ({result['followers_count']} followers)",                    'content': result['note'],                    'thumbnail': result.get('avatar'),                    'publishedDate': datetime.strptime(result['created_at'][:10], "%Y-%m-%d"),                }            )        elif mastodon_type == "hashtags":            uses_count = sum(int(entry['uses']) for entry in result['history'])            user_count = sum(int(entry['accounts']) for entry in result['history'])            results.append(                {                    'url': result['url'],                    'title': result['name'],                    'content': f"Hashtag has been used {uses_count} times by {user_count} different users",                }            )        else:            raise ValueError(f"Unsupported mastodon type: {mastodon_type}")    return results
 |