Files
fundor333.com/make-post.py
fundor333 c97a6ad286 Adds cover image generation to post creation
Implements cover image generation using PIL for newly created posts, photos and micro posts.

Removes micro-pub syndication from archetypes as it's not longer needed.
2025-05-18 19:33:32 +02:00

83 lines
2.0 KiB
Python

import datetime
import os
import re
from PIL import Image, ImageDraw
WIDTH = 1200
HEIGHT = 630
def generate_img(message: str, path: str):
img = Image.new("RGB", (WIDTH, HEIGHT), color="blue")
imgDraw = ImageDraw.Draw(img)
imgDraw.text((10, 10), message, fill=(255, 255, 0))
img.save("content/" + path + "/cover.png")
def name_cleaning(name: str) -> str:
title = re.sub("[^A-Za-z0-9 ]+", " ", name)
title = title.replace(" ", " ")
title = title.replace(" ", "-")
title = title.lower()
return title
def post_photo():
# get the current year as variable
year = str(datetime.datetime.now().year)
name = input("Give me the title\n")
title = name_cleaning(name)
os.system(f"hugo new photos/{year}/{title}/index.md")
generate_img(name, f"photos/{year}/{title}")
def post_redirect():
# get the current year as variable
name = input("Give me the title\n")
title = name_cleaning(name)
os.system(f"hugo new redirect/{title}/index.md")
def post_fc():
# get the current year as variable
year = str(datetime.datetime.now().year)
name = input("Give me the title\n")
title = name_cleaning(name)
os.system(f"hugo new post/{year}/{title}/index.md")
generate_img(name, f"post/{year}/{title}")
def micro_fc():
print("Make a micro")
name = input("Give me the title\n")
year = str(datetime.datetime.now().year)
month = str(datetime.datetime.now().month)
title = name_cleaning(name)
generated = f"{year.rjust(4, "0")}/{month.rjust(2, "0")}/{title}"
os.system(f"hugo new micro/{generated}/index.md")
print(f"Generated {generated}/index.md")
generate_img(name, f"micro/{title}")
ANSWER = {
"post": post_fc,
"micro": micro_fc,
"photo": post_photo,
"redirect": post_redirect,
}
def main_checker():
text = input("You need a new [post], a new [photo] or a new [micro]\n") # Python 3
# text = "post"
ANSWER.get(text, main_checker)()
if __name__ == "__main__":
main_checker()