Left: | ||
Right: |
OLD | NEW |
---|---|
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 base64 | 5 import base64 |
6 import hashlib | 6 import hashlib |
7 import json | 7 import json |
8 import mimetypes | 8 import mimetypes |
9 import os | 9 import os |
10 import zipfile | 10 import zipfile |
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
78 | 78 |
79 def create_appx_manifest(params, files, release_build=False): | 79 def create_appx_manifest(params, files, release_build=False): |
80 """Create AppxManifest.xml.""" | 80 """Create AppxManifest.xml.""" |
81 params = dict(params) | 81 params = dict(params) |
82 metadata = params['metadata'] | 82 metadata = params['metadata'] |
83 w = params['windows_version'] = {} | 83 w = params['windows_version'] = {} |
84 w['min'], w['max'] = metadata.get('compat', 'windows').split('/') | 84 w['min'], w['max'] = metadata.get('compat', 'windows').split('/') |
85 params.update(metadata.items('general')) | 85 params.update(metadata.items('general')) |
86 params['version'] = pad_version(params['version']) | 86 params['version'] = pad_version(params['version']) |
87 | 87 |
88 metadata_id_suffix = 'release' if release_build else 'devbuild' | 88 metadata_id_suffix = 'release' if release_build else 'devbuild' |
Sebastian Noack
2017/02/08 07:17:16
Nit: Perhaps, call this variable just "metadata_su
Oleksandr
2017/02/08 07:47:31
Done.
| |
89 metadata_id = 'extension_id_' + metadata_id_suffix | 89 app_extension_id = 'extension_id_' + metadata_id_suffix |
90 if metadata.has_option('general', metadata_id): | 90 if metadata.has_option('general', app_extension_id): |
91 params['app_extension_id'] = metadata.get('general', metadata_id) | 91 params['app_extension_id'] = metadata.get('general', app_extension_id) |
92 else: | 92 else: |
93 params['app_extension_id'] = 'EdgeExtension' | 93 params['app_extension_id'] = 'EdgeExtension' |
94 | 94 |
95 app_id = 'app_id_' + metadata_id_suffix | |
96 if not metadata.has_option('general', app_id): | |
97 raise KeyError(app_id + ' key not found') | |
Sebastian Noack
2017/02/08 07:17:16
Do we even need to specifically handle that case?
Oleksandr
2017/02/08 07:47:31
Done.
| |
98 params['app_id'] = metadata.get('general', app_id) | |
99 | |
95 translation = load_translation(files, defaultLocale) | 100 translation = load_translation(files, defaultLocale) |
96 name_key = 'name' if release_build else 'name_devbuild' | 101 name_key = 'name' if release_build else 'name_devbuild' |
97 params['display_name'] = translation[name_key]['message'] | 102 params['display_name'] = translation[name_key]['message'] |
98 params['description'] = translation['description']['message'] | 103 params['description'] = translation['description']['message'] |
99 | 104 |
100 for size in ['44', '50', '150']: | 105 for size in ['44', '50', '150']: |
101 path = '{}/logo_{}.png'.format(ASSETS_DIR, size) | 106 path = '{}/logo_{}.png'.format(ASSETS_DIR, size) |
102 if path not in files: | 107 if path not in files: |
103 raise KeyError(path + ' is not found in files') | 108 raise KeyError(path + ' is not found in files') |
104 params['logo_' + size] = path.replace('/', '\\') | 109 params['logo_' + size] = path.replace('/', '\\') |
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
188 if metadata.has_section('appx_assets'): | 193 if metadata.has_section('appx_assets'): |
189 for name, path in metadata.items('appx_assets'): | 194 for name, path in metadata.items('appx_assets'): |
190 path = os.path.join(baseDir, path) | 195 path = os.path.join(baseDir, path) |
191 files.read(path, '{}/{}'.format(ASSETS_DIR, name)) | 196 files.read(path, '{}/{}'.format(ASSETS_DIR, name)) |
192 | 197 |
193 files[MANIFEST] = create_appx_manifest(params, files, releaseBuild) | 198 files[MANIFEST] = create_appx_manifest(params, files, releaseBuild) |
194 files[BLOCKMAP] = create_appx_blockmap(files) | 199 files[BLOCKMAP] = create_appx_blockmap(files) |
195 files[CONTENT_TYPES] = create_content_types_map(files.keys() + [BLOCKMAP]) | 200 files[CONTENT_TYPES] = create_content_types_map(files.keys() + [BLOCKMAP]) |
196 | 201 |
197 files.zip(outfile, compression=zipfile.ZIP_STORED) | 202 files.zip(outfile, compression=zipfile.ZIP_STORED) |
OLD | NEW |