# lumbung.space hashtag publishing bot # © 2021 roel roscam abbing agplv3 # Makes Hugo posts out of hashtag feeds on Mastodon. # Requires an account on the Mastodon instance configured. # Currently does not do any thread recreation and only handles images import os import shutil from pathlib import Path import jinja2 import requests from mastodon import Mastodon # Which instance to login to instance = "https://social.lumbung.space" # n.b. if it is the first time you use this script # You need to register the app: # https://mastodonpy.readthedocs.io/en/stable/#module-mastodon # Login credentials for bot account email = "" password = "" # Which hashtags to publish hashtags = ["jalansesama"] # your Hugo content directory output_dir = os.environ.get("OUTPUT_DIR", "path/to/hugo/content") def login_mastodon_bot(): mastodon = Mastodon( client_id="publishbot_clientcred.secret", api_base_url=instance, ) mastodon.log_in( email, password, to_file="publishbot_usercred.secret", scopes=["read"], ) return mastodon def create_frontmatter(post_metadata): """ Parse post metadata and return it as HUGO frontmatter """ frontmatter = "" return frontmatter def download_media(post_directory, media_attachments): """ Download media attached to posts. N.b. currently only images See: https://mastodonpy.readthedocs.io/en/stable/#media-dicts """ for item in media_attachments: if item["type"] == "image": image = localize_media_url(item["url"]) # TODO check whether this needs to handle delete & redraft with different images if not os.path.exists(os.path.join(post_directory, image)): # download image response = requests.get(item["url"], stream=True) with open(os.path.join(post_directory, image), "wb") as img_file: shutil.copyfileobj(response.raw, img_file) print("Downloaded cover image", image) def create_post(post_directory, post_metadata): """ Create Hugo posts based on Toots/posts retuned in timeline. See: https://mastodonpy.readthedocs.io/en/stable/#toot-dicts """ if not os.path.exists(post_directory): os.mkdir(post_directory) with open(os.path.join(post_directory, "index.html"), "w") as f: post = template.render(post_metadata=post_metadata) f.write(post) download_media(post_directory, post_metadata["media_attachments"]) def localize_media_url(url): """ Returns the filename, used also as custom jinja filter """ return url.split("/")[-1] def filter_mastodon_urls(content): """ Filters out Mastodon generated URLS for tags e.g.