1#!/usr/bin/env python3 2# -*- coding: utf-8 -*- 3# Copyright (c) 2023 Huawei Device Co., Ltd. 4# Licensed under the Apache License, Version 2.0 (the "License"); 5# you may not use this file except in compliance with the License. 6# You may obtain a copy of the License at 7# 8# http://www.apache.org/licenses/LICENSE-2.0 9# 10# Unless required by applicable law or agreed to in writing, software 11# distributed under the License is distributed on an "AS IS" BASIS, 12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13# See the License for the specific language governing permissions and 14# limitations under the License. 15 16 17import subprocess 18import argparse 19import os 20import sys 21 22from util import build_utils 23from util import file_utils 24 25 26def parse_args(args): 27 parser = argparse.ArgumentParser() 28 build_utils.add_depfile_option(parser) 29 30 parser.add_argument('--keyPwd', help='') 31 parser.add_argument('--sign-algo', help='') 32 parser.add_argument('--keyalias', help='') 33 parser.add_argument('--keystoreFile', help='') 34 parser.add_argument('--keystorePwd', help='') 35 parser.add_argument('--profileFile', help='') 36 parser.add_argument('--hapsigner', help='') 37 parser.add_argument('--unsigned-hap-path-list', help='') 38 parser.add_argument('--compatible_version', help='compatible_version') 39 parser.add_argument('--hap-out-dir', help='') 40 parser.add_argument('--inFile', help='') 41 parser.add_argument('--outFile', help='') 42 parser.add_argument('--profileSigned', help='') 43 parser.add_argument('--inForm', help='') 44 parser.add_argument('--certificate-file', help='') 45 parser.add_argument('--hap-name', help='') 46 options = parser.parse_args(args) 47 return options 48 49 50def sign_app(options, unsigned_hap_path: str, signed_hap_path: str): 51 cmd = ['java', '-jar', options.hapsigner, 'sign-app'] 52 cmd.extend(['-mode', 'localsign']) 53 cmd.extend(['-signAlg', options.sign_algo]) 54 cmd.extend(['-keyAlias', options.keyalias]) 55 cmd.extend(['-inFile', unsigned_hap_path]) 56 cmd.extend(['-outFile', signed_hap_path]) 57 cmd.extend(['-profileFile', options.profileFile]) 58 cmd.extend(['-keystoreFile', options.keystoreFile]) 59 cmd.extend(['-keystorePwd', options.keystorePwd]) 60 cmd.extend(['-keyPwd', options.keyPwd]) 61 cmd.extend(['-appCertFile', options.certificate_file]) 62 cmd.extend(['-profileSigned', (options.profileSigned or '1')]) 63 cmd.extend(['-inForm', (options.inForm or 'zip')]) 64 child = subprocess.Popen(cmd, 65 stdout=subprocess.PIPE, 66 stderr=subprocess.PIPE) 67 stdout, stderr = child.communicate() 68 if child.returncode: 69 print(stdout.decode(), stderr.decode()) 70 raise Exception("Failed to sign hap") 71 72 73def main(args): 74 options = parse_args(args) 75 if not options.hap_out_dir: 76 sign_app(options, options.inFile, options.outFile) 77 else: 78 if not os.path.exists(options.hap_out_dir): 79 os.makedirs(options.hap_out_dir, exist_ok=True) 80 unsigned_hap_path_list = file_utils.read_json_file(options.unsigned_hap_path_list) 81 for unsigned_hap_path in unsigned_hap_path_list.get('unsigned_hap_path_list'): 82 signed_hap_path = unsigned_hap_path.replace('unsigned', 'signed') 83 output_hap_name = f'{options.hap_name}-{os.path.basename(signed_hap_path)}' 84 if len(unsigned_hap_path_list.get('unsigned_hap_path_list')) == 1 and options.hap_name: 85 if unsigned_hap_path_list.get('unsigned_hap_path_list')[0].endswith('.hsp'): 86 output_hap_name = f'{options.hap_name}.hsp' 87 else: 88 output_hap_name = f'{options.hap_name}.hap' 89 output_hap = os.path.join(options.hap_out_dir, output_hap_name) 90 sign_app(options, unsigned_hap_path, output_hap) 91 92 93if __name__ == '__main__': 94 sys.exit(main(sys.argv[1:])) 95