-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcreate_index.py
82 lines (50 loc) · 2.15 KB
/
create_index.py
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
@author: mustafa
"""
index_file_name = "index.json"
# a new index.json is created for all individual templates
supported_versions = [1]
# the script will raise an error if these keys are not found in the individual template index.json.
keys_required = ["name", "version"]
import os
import json
def checkFileExists(filePath:str):
if not os.path.isfile(filePath):
raise Exception(f"This file is missing {filePath}")
def process_directory(path: str, templates):
with open(path+"/index.json", 'r') as index_file:
manifest = json.load(index_file)
if not "version" in manifest:
return
if (int(manifest["version"]) < 2):
return # ignore versions less than 2 they belong to old app not supported or listed in github readme
# This is a template project folder....
checkFileExists(path + "/thumbnail.png");
checkFileExists(path + "/template.ioz");
checkFileExists(path + "/README.md");
if (os.path.basename(path) != manifest["name"]):
raise Exception("Folder name and index.json name must match" + os.path.basename(path) + " != " + manifest["name"] + " for folder: " + path);
for key in keys_required:
if not key in manifest or manifest[key] is None:
raise Exception(f"Key {key} is required but not present in {path}/index.json")
folder = os.sep.join(path.split(os.sep)[1:])
aTemplate = {}
for manifestKey in manifest:
aTemplate[manifestKey] = manifest[manifestKey]
templates.append(aTemplate)
templates = []
for root, dirs, files in os.walk("./"):
path = root.split(os.sep)
for file in files:
if file == "index.json":
process_directory(root, templates)
mainIndexJson = []
with open('./index.json', 'r') as f:
mainIndexJson = json.load(f)
def get_templateName(t):
return t["name"]
with open(index_file_name, 'w') as index_file:
templates.sort(key=get_templateName)
json.dump({"list": templates, "templates": mainIndexJson["templates"], "categories": {}}, index_file, indent=4)