From d01aa921c9115ebe10e6cd1ce76ef1a4f3aeacca Mon Sep 17 00:00:00 2001 From: Jordan Date: Fri, 24 Dec 2021 17:07:20 -0700 Subject: add cgit-last-modified.py --- scripts/cgit-last-modified.py | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100755 scripts/cgit-last-modified.py diff --git a/scripts/cgit-last-modified.py b/scripts/cgit-last-modified.py new file mode 100755 index 0000000..5c95a9e --- /dev/null +++ b/scripts/cgit-last-modified.py @@ -0,0 +1,30 @@ +#!/usr/bin/env python3 + +import git +import os +from datetime import datetime, timezone, timedelta + +REPOS = "/var/www/git.jordan.im/repositories" + +for x in os.listdir(REPOS): + if not os.path.isdir(os.path.join(REPOS, x)): + continue + + print(f"processing {x}...") + + try: + repo = git.Repo(os.path.join(REPOS, x)) + for remote in repo.remotes: + remote.fetch() + md = repo.head.commit.committed_datetime + md = md.astimezone(timezone.utc).strftime("%Y-%m-%d %H:%M:%S") + except Exception as e: + print(e) + continue + + d = os.path.join(REPOS, x, "info/web/") + os.makedirs(d, exist_ok=True) + + f = open(os.path.join(d, "last-modified"), "w") + f.write(md) + f.close() -- cgit v1.2.3-54-g00ecf