Skip to content

Commit 866ff96

Browse files
authored
Update update_size.py
1 parent e265d91 commit 866ff96

File tree

1 file changed

+29
-7
lines changed

1 file changed

+29
-7
lines changed

.github/update_size.py

+29-7
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,53 @@
1-
import json
1+
import jstyleson
22
import glob
33
import os
44
import sys
55
import urllib.request
6+
from io import StringIO
67

78
from ignore_json import ignore
89

910
for filename in glob.glob(os.path.join('.', '*.json')):
1011
if filename not in ignore:
1112
print(f"Opening: {filename}")
12-
filecontent = open(filename, "r").read()
13-
modlist = json.loads(filecontent)
13+
14+
with open(filename, "r") as file:
15+
filecontent = file.read()
16+
17+
try:
18+
jstyleson.load(StringIO(filecontent))
19+
modlist = jstyleson.loads(filecontent)
20+
except Exception as err:
21+
print(f"❌ Error reading JSON file {filename}: {err}")
22+
sys.exit(os.EX_SOFTWARE)
23+
1424
for mod, data in modlist.items():
1525
url = data["download"].replace(" ", "%20")
1626
print(f"Download {mod}: {url}")
27+
1728
try:
1829
response = urllib.request.urlopen(url)
19-
except:
20-
print("Error: download failed!")
30+
print(f"✅ Download successful")
31+
except Exception as err:
32+
print(f"❌ Download failed: {err}")
2133
sys.exit(os.EX_SOFTWARE)
22-
filesize = round(len(response.read()) / 1024 / 1024, 3)
34+
35+
try:
36+
filecontent = response.read().decode("utf-8")
37+
jstyleson.load(StringIO(filecontent))
38+
print(f"✅ JSON valid")
39+
except Exception as err:
40+
print(f"❌ JSON invalid: {err}")
41+
sys.exit(os.EX_SOFTWARE)
42+
43+
filesize = round(len(filecontent.encode('utf-8')) / 1024 / 1024, 3)
2344
print(f"Size: {filesize}")
2445
data["downloadSize"] = filesize
2546

2647
resultcontent = json.dumps(modlist, indent='\t', separators=(',', ' : ')) + "\n"
2748

2849
if filecontent != resultcontent:
29-
open(filename, "w").write(resultcontent)
50+
with open(filename, "w") as file:
51+
file.write(resultcontent)
3052

3153
sys.exit(os.EX_OK)

0 commit comments

Comments
 (0)