summaryrefslogtreecommitdiff
path: root/scripts/cgit-last-modified.py
blob: 5c95a9ec72b82c603c61a09423f99e33cccea256 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
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()