LEFT | RIGHT |
1 # This Source Code Form is subject to the terms of the Mozilla Public | 1 # This Source Code Form is subject to the terms of the Mozilla Public |
2 # License, v. 2.0. If a copy of the MPL was not distributed with this | 2 # License, v. 2.0. If a copy of the MPL was not distributed with this |
3 # file, You can obtain one at http://mozilla.org/MPL/2.0/. | 3 # file, You can obtain one at http://mozilla.org/MPL/2.0/. |
4 | 4 |
5 import errno | 5 import errno |
6 import glob | 6 import glob |
7 import io | 7 import io |
8 import json | 8 import json |
9 import os | 9 import os |
10 import re | 10 import re |
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
94 # ... = icon-19.png icon-38.png popup.html | 94 # ... = icon-19.png icon-38.png popup.html |
95 popup = icons.pop() | 95 popup = icons.pop() |
96 icon = makeIcons(files, icons) | 96 icon = makeIcons(files, icons) |
97 else: | 97 else: |
98 # ... = icon-16.png icon-32.png icon-48.png | 98 # ... = icon-16.png icon-32.png icon-48.png |
99 icon = makeIcons(files, icons) | 99 icon = makeIcons(files, icons) |
100 popup = None | 100 popup = None |
101 | 101 |
102 templateData[opt] = {'icon': icon, 'popup': popup} | 102 templateData[opt] = {'icon': icon, 'popup': popup} |
103 | 103 |
104 # Generate templatedataa which does not need special processing | |
105 templateData.update({'extra': metadata.as_json_object('manifest')}) | |
106 | |
107 if metadata.has_option('general', 'icons'): | 104 if metadata.has_option('general', 'icons'): |
108 templateData['icons'] = makeIcons(files, | 105 templateData['icons'] = makeIcons(files, |
109 metadata.get('general', 'icons').split
()) | 106 metadata.get('general', 'icons').split
()) |
110 | 107 |
111 if metadata.has_option('general', 'backgroundScripts'): | 108 if metadata.has_option('general', 'backgroundScripts'): |
112 templateData['backgroundScripts'] = metadata.get( | 109 templateData['backgroundScripts'] = metadata.get( |
113 'general', 'backgroundScripts').split() | 110 'general', 'backgroundScripts').split() |
114 if params['devenv']: | 111 if params['devenv']: |
115 templateData['backgroundScripts'].append('devenvPoller__.js') | 112 templateData['backgroundScripts'].append('devenvPoller__.js') |
116 | 113 |
(...skipping 13 matching lines...) Expand all Loading... |
130 if params['type'] == 'gecko': | 127 if params['type'] == 'gecko': |
131 templateData['app_id'] = get_app_id(params['releaseBuild'], metadata) | 128 templateData['app_id'] = get_app_id(params['releaseBuild'], metadata) |
132 | 129 |
133 manifest = template.render(templateData) | 130 manifest = template.render(templateData) |
134 | 131 |
135 # Normalize JSON structure | 132 # Normalize JSON structure |
136 licenseComment = re.compile(r'/\*.*?\*/', re.S) | 133 licenseComment = re.compile(r'/\*.*?\*/', re.S) |
137 data = json.loads(re.sub(licenseComment, '', manifest, 1)) | 134 data = json.loads(re.sub(licenseComment, '', manifest, 1)) |
138 if '_dummy' in data: | 135 if '_dummy' in data: |
139 del data['_dummy'] | 136 del data['_dummy'] |
| 137 |
| 138 metadata.serialize_section_if_present('manifest', data) |
140 manifest = json.dumps(data, sort_keys=True, indent=2) | 139 manifest = json.dumps(data, sort_keys=True, indent=2) |
141 | 140 |
142 return manifest.encode('utf-8') | 141 return manifest.encode('utf-8') |
143 | 142 |
144 | 143 |
145 def toJson(data): | 144 def toJson(data): |
146 return json.dumps( | 145 return json.dumps( |
147 data, ensure_ascii=False, sort_keys=True, | 146 data, ensure_ascii=False, sort_keys=True, |
148 indent=2, separators=(',', ': ') | 147 indent=2, separators=(',', ': ') |
149 ).encode('utf-8') + '\n' | 148 ).encode('utf-8') + '\n' |
(...skipping 238 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
388 if devenv: | 387 if devenv: |
389 add_devenv_requirements(files, metadata, params) | 388 add_devenv_requirements(files, metadata, params) |
390 | 389 |
391 zipdata = files.zipToString() | 390 zipdata = files.zipToString() |
392 signature = None | 391 signature = None |
393 pubkey = None | 392 pubkey = None |
394 if keyFile != None: | 393 if keyFile != None: |
395 signature = signBinary(zipdata, keyFile) | 394 signature = signBinary(zipdata, keyFile) |
396 pubkey = getPublicKey(keyFile) | 395 pubkey = getPublicKey(keyFile) |
397 writePackage(outFile, pubkey, signature, zipdata) | 396 writePackage(outFile, pubkey, signature, zipdata) |
LEFT | RIGHT |