Indexable within masto api

main
Bob Mottram 2023-10-02 11:48:22 +01:00
parent f7ad0e6ed5
commit 02ad578772
1 changed files with 6 additions and 1 deletions

View File

@ -68,6 +68,10 @@ def _get_masto_api_v1account(base_dir: str, nickname: str, domain: str) -> {}:
joined_date = "2016-10-05T10:30:00Z" joined_date = "2016-10-05T10:30:00Z"
if account_json.get('published'): if account_json.get('published'):
joined_date = account_json['published'] joined_date = account_json['published']
noindex = True
if 'indexable' in account_json:
if account_json['indexable'] is True:
noindex = False
masto_account_json = { masto_account_json = {
"id": get_masto_api_v1id_from_nickname(nickname), "id": get_masto_api_v1id_from_nickname(nickname),
"username": nickname, "username": nickname,
@ -83,7 +87,8 @@ def _get_masto_api_v1account(base_dir: str, nickname: str, domain: str) -> {}:
"avatar": avatar_url, "avatar": avatar_url,
"avatar_static": avatar_url, "avatar_static": avatar_url,
"header": image_url, "header": image_url,
"header_static": image_url "header_static": image_url,
"noindex": noindex
} }
return masto_account_json return masto_account_json