Class: Pindo::Command::Android::Keystore
- Inherits:
-
Pindo::Command::Android
- Object
- CLAide::Command
- Pindo::Command
- Pindo::Command::Android
- Pindo::Command::Android::Keystore
- Defined in:
- lib/pindo/command/android/keystore.rb
Constant Summary
Constants inherited from Pindo::Command
DEFAULT_OPTIONS, DEFAULT_ROOT_OPTIONS
Instance Attribute Summary
Attributes inherited from Pindo::Command
Class Method Summary collapse
-
.options ⇒ Object
命令选项.
Instance Method Summary collapse
-
#initialize(argv) ⇒ Keystore
constructor
A new instance of Keystore.
- #run ⇒ Object
Methods inherited from Pindo::Command
Methods included from Funlog::Mixin
Methods included from Pindoconfig::Mixin
Methods included from Githelper
#add_branch, #add_tag, #add_tag_with_check, #clone_clang_repo, #clone_devclang_repo, #clone_pindo_common_config_repo, #clone_pindo_env_config_repo, #clong_buildconfig_repo, #get_repo_base_name, #getcode_to_dir, #git_addpush_repo, #git_latest_commit_id, #git_root_directory, #is_git_directory?, #local_branch_exists?, #local_tag_exists?, #prepare_gitenv, #process_need_add_files, #remote_branch_exists?, #remote_tag_exists?, #remove_branch, #remove_tag
Methods included from Executable
capture_command, #executable, execute_command, which, which!
Constructor Details
#initialize(argv) ⇒ Keystore
Returns a new instance of Keystore.
47 48 49 50 51 52 53 54 55 56 57 58 59 |
# File 'lib/pindo/command/android/keystore.rb', line 47 def initialize(argv) @args_release_flag = argv.flag?('release', false) @upload_flag = argv.flag?('upload', false) @send_flag = argv.flag?('send', false) @proj_name = argv.option('proj') @args_dsign_flag = argv.flag?('dsign', false) if @send_flag @upload_flag = true end @args_direct_flag = argv.flag?('direct', false) super end |
Class Method Details
.options ⇒ Object
命令选项
40 41 42 43 44 45 |
# File 'lib/pindo/command/android/keystore.rb', line 40 def self. [ ['--adhoc', '使用adhoc模式'], ['--release', '使用release模式'], ].concat(super) end |
Instance Method Details
#run ⇒ Object
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 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 |
# File 'lib/pindo/command/android/keystore.rb', line 61 def run pindo_project_dir = Dir.pwd # # 如果设置了 dsign 标志,则执行签名文件获取并直接返回 # if @args_dsign_flag # Pindo::AndroidBuildHelper.share_instance.dsign(pindo_project_dir, !@args_release_flag) # return # end app_info_obj = nil workflow_info = nil if @upload_flag proj_name = @proj_name # 传入 package_type 获取 workflow_info app_info_obj, workflow_info = PgyerHelper.share_instace.prepare_upload( working_directory: Dir.pwd, proj_name: proj_name, package_type: 'apk' ) # ===== 使用 workflow 配置更新 Android 项目 ===== if workflow_info && workflow_info[:package_name] workflow_packname = workflow_info[:package_name] puts "\n使用工作流配置更新 Android 项目:" puts " Workflow Package Name: #{workflow_packname}" # 一次性更新 App Name、Application ID 和 URL Schemes Pindo::AndroidBuildConfigHelper.update_project_with_workflow( project_dir: pindo_project_dir, workflow_packname: workflow_packname ) # 添加基于 Application ID 的 Scheme(在 workflow 设置完成后) Pindo::AndroidBuildConfigHelper.add_application_id_based_scheme( project_dir: pindo_project_dir ) else raise Informative, "未获取到工作流信息" end end begin apk_path = Pindo::AndroidBuildHelper.share_instance.auto_build_apk(pindo_project_dir, !@args_release_flag, @args_direct_flag) ipa_file_upload = Dir.glob(apk_path).max_by {|f| File.mtime(f)} if !ipa_file_upload.nil? && !app_info_obj.nil? description = nil result_data = PgyerHelper.share_instace.start_upload( app_info_obj: app_info_obj, ipa_file_upload: ipa_file_upload, description: description, workflow_info: workflow_info ) if !result_data.nil? && !result_data["data"].nil? && !result_data["data"]["id"].nil? PgyerHelper.share_instace.print_app_version_info( app_info_obj: app_info_obj, app_version_info_obj: result_data["data"] ) if @send_flag # 始终发送给自己 PgyerHelper.share_instace.send_apptest_msg( app_info_obj: app_info_obj, app_version_info_obj: result_data["data"], receiveType: "self" ) # 额外发送到测试群 PgyerHelper.share_instace.send_apptest_msg( app_info_obj: app_info_obj, app_version_info_obj: result_data["data"], chatEnv: "DevTest", receiveType: "chat" ) end end end # 只在构建成功完成时弹出目标文件夹 puts "\e[32m构建完成!正在打开目标文件夹...\e[0m" system "open #{pindo_project_dir}" rescue => e puts "\e[31m构建失败: #{e.message}\e[0m" puts "\e[33m正在打开项目文件夹以便检查错误...\e[0m" system "open #{pindo_project_dir}" raise e end end |