collect.py: support multiple paths/files as command line argument
[web/firmware-selector-openwrt-org.git] / misc / collect.py
1 #!/usr/bin/env python3
2
3 from pathlib import Path
4 import argparse
5 import json
6 import sys
7 import os
8
9 parser = argparse.ArgumentParser()
10 parser.add_argument("input_path", nargs='+',
11 help="Input folder that is traversed for OpenWrt JSON device files.")
12 parser.add_argument('--url', action="store", default="",
13 help="Link to get the image from. May contain {target}, {version} and {commit}")
14 parser.add_argument('--formatted', action="store_true",
15 help="Output formatted JSON data.")
16 parser.add_argument('--change-prefix',
17 help="Change the openwrt- file name prefix.")
18
19 args = parser.parse_args()
20
21 SUPPORTED_METADATA_VERSION = 1
22
23 def change_prefix(images, old_prefix, new_prefix):
24 for image in images:
25 if image['name'].startswith(old_prefix):
26 image['name'] = new_prefix + image['name'][len(old_prefix):]
27
28 # OpenWrt JSON device files
29 paths = []
30
31 # json output data
32 output = {}
33
34 for path in args.input_path:
35 if os.path.isdir(path):
36 for file in Path(path).rglob('*.json'):
37 paths.append(file)
38 else:
39 if not path.ends_with('.json'):
40 sys.stderr.write("Folder does not exists: {}\n".format(path))
41 exit(1)
42 paths.append(path)
43
44 def get_title_name(title):
45 if 'title' in title:
46 return title['title']
47 else:
48 return "{} {} {}".format(title.get('vendor', ''), title['model'], title.get('variant', '')).strip()
49
50 def add_profile(id, target, profile):
51 images = []
52 for image in profile['images']:
53 images.append({'name': image['name'], 'type': image['type']})
54
55 if args.change_prefix:
56 change_prefix(images, 'openwrt-', args.change_prefix)
57
58 for title in profile['titles']:
59 name = get_title_name(title)
60
61 if len(name) == 0:
62 sys.stderr.write("Empty title. Skip title in {}\n".format(path))
63 continue
64
65 output['models'][name] = {'id': id, 'target': target, 'images': images}
66
67 for path in paths:
68 with open(path, "r") as file:
69 obj = json.load(file)
70
71 if obj['metadata_version'] != SUPPORTED_METADATA_VERSION:
72 sys.stderr.write('{} has unsupported metadata version: {} => skip\n'.format(path, obj['metadata_version']))
73 continue
74
75 code = obj.get('version_code', obj.get('version_commit'))
76
77 if not 'version_code' in output:
78 output = {
79 'version_code': code,
80 'url': args.url,
81 'models' : {}
82 }
83
84 # only support a version_number with images of a single version_commit
85 if output['version_code'] != code:
86 sys.stderr.write('mixed revisions for a release ({} and {}) => abort\n'.format(output['version_code'], commit))
87 exit(1)
88
89 try:
90 if 'profiles' in obj:
91 for id in obj['profiles']:
92 add_profile(id, obj['target'], obj['profiles'][id])
93 else:
94 add_profile(obj['id'], obj['target'], obj)
95 except json.decoder.JSONDecodeError as e:
96 sys.stderr.write("Skip {}\n {}\n".format(path, e))
97 except KeyError as e:
98 sys.stderr.write("Abort on {}\n Missing key {}\n".format(path, e))
99 exit(1)
100
101 if args.formatted:
102 json.dump(output, sys.stdout, indent=" ", sort_keys = True)
103 else:
104 json.dump(output, sys.stdout, sort_keys = True)