-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathto_sources_jsons.py
More file actions
88 lines (73 loc) · 2.8 KB
/
to_sources_jsons.py
File metadata and controls
88 lines (73 loc) · 2.8 KB
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
83
84
85
86
87
88
"""
Creates the json files in the sources folder from the contributions.yaml file.
"""
import json
import pathlib
import shutil
from utils import get_valid_contributions
json_fields_library = [
'name', 'authors', 'url', 'categories', 'sentence', 'paragraph', 'imports',
'id', 'type'
]
json_fields_example = [
'name', 'authors', 'url', 'categories', 'sentence', 'modes', 'paragraph', 'imports',
'id', 'type'
]
json_fields_tool = [
'name', 'authors', 'url', 'categories', 'sentence', 'paragraph', 'imports',
'id', 'type'
]
json_fields_mode = [
'name', 'authors', 'url', 'sentence', 'paragraph', 'imports',
'id', 'type', 'categories'
]
json_package_fields_list = ['mode', 'minRevision', 'maxRevision', 'props', 'download']
def to_sources_dict(contribution_dict):
contribution_dict['props'] = contribution_dict.pop('source')
if contribution_dict['type'] == 'library':
sources_dict = {
field: contribution_dict[field]
for field in json_fields_library if field in contribution_dict
}
elif contribution_dict['type'] == 'examples':
sources_dict = {
field: contribution_dict[field]
for field in json_fields_example if field in contribution_dict
}
elif contribution_dict['type'] == 'tool':
sources_dict = {
field: contribution_dict[field]
for field in json_fields_tool if field in contribution_dict
}
else:
sources_dict = {
field: contribution_dict[field]
for field in json_fields_mode if field in contribution_dict
}
# put authors in list
sources_dict['authors'] = [sources_dict['authors']] if sources_dict['authors'] else sources_dict['authors']
sources_dict['packages'] = [
{
field:('java' if field == 'mode' else str(contribution_dict[field]))
for field in json_package_fields_list
}
]
return sources_dict
def write_json_for_each_contribution_in_list(all_contributions, folder_path):
for contribution in all_contributions:
if 'name' in contribution:
# output zero padded string for id
contribution['id'] = f"{contribution['id']:03}"
filename = contribution['name'].replace(':', '').replace('/', '').replace(' ', '_') + '.json'
this_filepath = folder_path / filename
with open(this_filepath, 'w') as f:
json.dump(to_sources_dict(contribution), f, indent=2)
if __name__ == "__main__":
sources_folder = pathlib.Path(__file__).parent.parent / 'sources/'
contributions_list = get_valid_contributions()
# remove sources folder if it already exists
if sources_folder.is_dir():
shutil.rmtree(sources_folder)
sources_folder.mkdir(parents=True, exist_ok=True)
# create a json file in the sources folder for each contribution
write_json_for_each_contribution_in_list(contributions_list, sources_folder)