about summary refs log tree commit diff
path: root/pkgs/tools/games/minecraft/optifine/update.py
blob: 999f688be2850ebfc88b6e319835ff462aec37a0 (plain) (blame)
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#!/usr/bin/env nix-shell
#!nix-shell -I nixpkgs=./. -i python3 -p python3.pkgs.requests python3.pkgs.lxml nix

from lxml import html
import json
import os.path
import re
import requests
import subprocess

def nix_prefetch_sha256(name):
    return subprocess.run(['nix-prefetch-url', '--type', 'sha256', 'https://optifine.net/download?f=' + name], capture_output=True, text=True).stdout.strip()

# fetch download page
sess = requests.session()
page = sess.get('https://optifine.net/downloads')
tree = html.fromstring(page.content)

# parse and extract main jar file names
href = tree.xpath('//tr[@class="downloadLine downloadLineMain"]/td[@class="colMirror"]/a/@href')
expr = re.compile('(OptiFine_)([0-9.]*)(.*)\.jar')
result = [ expr.search(x) for x in href ]

# format name, version and hash for each file
catalogue = {}
for i, r in enumerate(result):
    index = r.group(1).lower() + r.group(2).replace('.', '_')
    version = r.group(2) + r.group(3)
    catalogue[index] = {
        "version": version,
        "sha256": nix_prefetch_sha256(r.group(0))
    }

# latest version should be the first entry
if len(catalogue) > 0:
    catalogue['optifine-latest'] = list(catalogue.values())[0]

# read previous versions
d = os.path.dirname(os.path.abspath(__file__))
with open(os.path.join(d, 'versions.json'), 'r') as f:
    prev = json.load(f)

# `maintainers/scripts/update.py` will extract stdout to write commit message
# embed the commit message in json and print it
changes = [ { 'commitMessage': 'optifinePackages: update versions\n\n' } ]

# build a longest common subsequence, natural sorted by keys
for key, value in sorted({**prev, **catalogue}.items(), key=lambda item: [int(s) if s.isdigit() else s for s in re.split(r'(\d+)', item[0])]):
    if key not in prev:
        changes[0]['commitMessage'] += 'optifinePackages.{}: init at {}\n'.format(key, value['version'])
    elif value['version'] != prev[key]['version']:
        changes[0]['commitMessage'] += 'optifinePackages.{}: {} -> {}\n'.format(key, prev[key]['version'], value['version'])

# print the changes in stdout
print(json.dumps(changes))

# write catalogue to file
with open(os.path.join(d, 'versions.json'), 'w') as f:
    json.dump(catalogue, f, indent=4)
    f.write('\n')