fastlane_iac_publish 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.yardopts +1 -0
- data/LICENSE +21 -0
- data/README.md +195 -0
- data/bin/bin-proxy +19 -0
- data/bin/fastlane +23 -0
- data/cert/README.md +17 -0
- data/cert/lib/cert.rb +4 -0
- data/cert/lib/cert/commands_generator.rb +59 -0
- data/cert/lib/cert/module.rb +14 -0
- data/cert/lib/cert/options.rb +92 -0
- data/cert/lib/cert/runner.rb +203 -0
- data/credentials_manager/README.md +64 -0
- data/credentials_manager/lib/credentials_manager.rb +7 -0
- data/credentials_manager/lib/credentials_manager/account_manager.rb +157 -0
- data/credentials_manager/lib/credentials_manager/appfile_config.rb +192 -0
- data/credentials_manager/lib/credentials_manager/cli.rb +67 -0
- data/deliver/README.md +17 -0
- data/deliver/lib/assets/DeliverfileDefault +3 -0
- data/deliver/lib/assets/DeliverfileDefault.swift +13 -0
- data/deliver/lib/assets/ScreenshotsHelp +7 -0
- data/deliver/lib/assets/summary.html.erb +299 -0
- data/deliver/lib/deliver.rb +15 -0
- data/deliver/lib/deliver/app_screenshot.rb +352 -0
- data/deliver/lib/deliver/commands_generator.rb +186 -0
- data/deliver/lib/deliver/detect_values.rb +93 -0
- data/deliver/lib/deliver/download_screenshots.rb +49 -0
- data/deliver/lib/deliver/generate_summary.rb +13 -0
- data/deliver/lib/deliver/html_generator.rb +71 -0
- data/deliver/lib/deliver/loader.rb +56 -0
- data/deliver/lib/deliver/module.rb +16 -0
- data/deliver/lib/deliver/options.rb +419 -0
- data/deliver/lib/deliver/runner.rb +202 -0
- data/deliver/lib/deliver/setup.rb +135 -0
- data/deliver/lib/deliver/submit_for_review.rb +122 -0
- data/deliver/lib/deliver/upload_assets.rb +27 -0
- data/deliver/lib/deliver/upload_metadata.rb +391 -0
- data/deliver/lib/deliver/upload_price_tier.rb +23 -0
- data/deliver/lib/deliver/upload_screenshots.rb +158 -0
- data/fastlane/README.md +11 -0
- data/fastlane/lib/assets/ActionDetails.md.erb +106 -0
- data/fastlane/lib/assets/Actions.md.erb +43 -0
- data/fastlane/lib/assets/AppfileTemplate +6 -0
- data/fastlane/lib/assets/AppfileTemplate.swift +7 -0
- data/fastlane/lib/assets/AppfileTemplateAndroid +2 -0
- data/fastlane/lib/assets/DefaultFastfileTemplate +20 -0
- data/fastlane/lib/assets/DefaultFastfileTemplate.swift +13 -0
- data/fastlane/lib/assets/completions/completion.bash +23 -0
- data/fastlane/lib/assets/completions/completion.fish +39 -0
- data/fastlane/lib/assets/completions/completion.sh +12 -0
- data/fastlane/lib/assets/completions/completion.zsh +23 -0
- data/fastlane/lib/assets/custom_action_template.rb +82 -0
- data/fastlane/lib/assets/mailgun_html_template.erb +142 -0
- data/fastlane/lib/assets/report_template.xml.erb +15 -0
- data/fastlane/lib/assets/s3_html_template.erb +105 -0
- data/fastlane/lib/assets/s3_plist_template.erb +31 -0
- data/fastlane/lib/assets/s3_version_template.erb +4 -0
- data/fastlane/lib/fastlane.rb +50 -0
- data/fastlane/lib/fastlane/action.rb +198 -0
- data/fastlane/lib/fastlane/action_collector.rb +35 -0
- data/fastlane/lib/fastlane/actions/README.md +3 -0
- data/fastlane/lib/fastlane/actions/actions_helper.rb +162 -0
- data/fastlane/lib/fastlane/actions/adb.rb +78 -0
- data/fastlane/lib/fastlane/actions/adb_devices.rb +71 -0
- data/fastlane/lib/fastlane/actions/add_extra_platforms.rb +45 -0
- data/fastlane/lib/fastlane/actions/add_git_tag.rb +122 -0
- data/fastlane/lib/fastlane/actions/app_store_build_number.rb +193 -0
- data/fastlane/lib/fastlane/actions/appaloosa.rb +266 -0
- data/fastlane/lib/fastlane/actions/appetize.rb +188 -0
- data/fastlane/lib/fastlane/actions/appetize_viewing_url_generator.rb +146 -0
- data/fastlane/lib/fastlane/actions/appium.rb +206 -0
- data/fastlane/lib/fastlane/actions/appledoc.rb +226 -0
- data/fastlane/lib/fastlane/actions/appstore.rb +14 -0
- data/fastlane/lib/fastlane/actions/apteligent.rb +105 -0
- data/fastlane/lib/fastlane/actions/artifactory.rb +157 -0
- data/fastlane/lib/fastlane/actions/automatic_code_signing.rb +220 -0
- data/fastlane/lib/fastlane/actions/backup_file.rb +41 -0
- data/fastlane/lib/fastlane/actions/backup_xcarchive.rb +135 -0
- data/fastlane/lib/fastlane/actions/badge.rb +155 -0
- data/fastlane/lib/fastlane/actions/build_and_upload_to_appetize.rb +107 -0
- data/fastlane/lib/fastlane/actions/build_android_app.rb +14 -0
- data/fastlane/lib/fastlane/actions/build_app.rb +14 -0
- data/fastlane/lib/fastlane/actions/build_ios_app.rb +151 -0
- data/fastlane/lib/fastlane/actions/bundle_install.rb +156 -0
- data/fastlane/lib/fastlane/actions/capture_android_screenshots.rb +63 -0
- data/fastlane/lib/fastlane/actions/capture_ios_screenshots.rb +61 -0
- data/fastlane/lib/fastlane/actions/capture_screenshots.rb +14 -0
- data/fastlane/lib/fastlane/actions/carthage.rb +215 -0
- data/fastlane/lib/fastlane/actions/cert.rb +14 -0
- data/fastlane/lib/fastlane/actions/changelog_from_git_commits.rb +197 -0
- data/fastlane/lib/fastlane/actions/chatwork.rb +94 -0
- data/fastlane/lib/fastlane/actions/check_app_store_metadata.rb +53 -0
- data/fastlane/lib/fastlane/actions/clean_build_artifacts.rb +68 -0
- data/fastlane/lib/fastlane/actions/clean_cocoapods_cache.rb +52 -0
- data/fastlane/lib/fastlane/actions/clear_derived_data.rb +70 -0
- data/fastlane/lib/fastlane/actions/clipboard.rb +52 -0
- data/fastlane/lib/fastlane/actions/cloc.rb +89 -0
- data/fastlane/lib/fastlane/actions/cocoapods.rb +148 -0
- data/fastlane/lib/fastlane/actions/commit_github_file.rb +186 -0
- data/fastlane/lib/fastlane/actions/commit_version_bump.rb +301 -0
- data/fastlane/lib/fastlane/actions/copy_artifacts.rb +114 -0
- data/fastlane/lib/fastlane/actions/crashlytics.rb +203 -0
- data/fastlane/lib/fastlane/actions/create_app_on_managed_play_store.rb +174 -0
- data/fastlane/lib/fastlane/actions/create_app_online.rb +75 -0
- data/fastlane/lib/fastlane/actions/create_keychain.rb +173 -0
- data/fastlane/lib/fastlane/actions/create_pull_request.rb +190 -0
- data/fastlane/lib/fastlane/actions/danger.rb +124 -0
- data/fastlane/lib/fastlane/actions/debug.rb +32 -0
- data/fastlane/lib/fastlane/actions/default_platform.rb +47 -0
- data/fastlane/lib/fastlane/actions/delete_keychain.rb +68 -0
- data/fastlane/lib/fastlane/actions/deliver.rb +14 -0
- data/fastlane/lib/fastlane/actions/deploygate.rb +210 -0
- data/fastlane/lib/fastlane/actions/device_grid/README.md +157 -0
- data/fastlane/lib/fastlane/actions/docs/build_ios_app.md +245 -0
- data/fastlane/lib/fastlane/actions/docs/capture_android_screenshots.md +259 -0
- data/fastlane/lib/fastlane/actions/docs/capture_ios_screenshots.md +363 -0
- data/fastlane/lib/fastlane/actions/docs/check_app_store_metadata.md +103 -0
- data/fastlane/lib/fastlane/actions/docs/create_app_online.md +282 -0
- data/fastlane/lib/fastlane/actions/docs/frame_screenshots.md +330 -0
- data/fastlane/lib/fastlane/actions/docs/get_certificates.md +86 -0
- data/fastlane/lib/fastlane/actions/docs/get_provisioning_profile.md +223 -0
- data/fastlane/lib/fastlane/actions/docs/get_push_certificate.md +134 -0
- data/fastlane/lib/fastlane/actions/docs/run_tests.md +151 -0
- data/fastlane/lib/fastlane/actions/docs/sync_code_signing.md +479 -0
- data/fastlane/lib/fastlane/actions/docs/upload_to_app_store.md.erb +730 -0
- data/fastlane/lib/fastlane/actions/docs/upload_to_play_store.md +162 -0
- data/fastlane/lib/fastlane/actions/docs/upload_to_testflight.md +231 -0
- data/fastlane/lib/fastlane/actions/dotgpg_environment.rb +57 -0
- data/fastlane/lib/fastlane/actions/download.rb +76 -0
- data/fastlane/lib/fastlane/actions/download_dsyms.rb +266 -0
- data/fastlane/lib/fastlane/actions/download_from_play_store.rb +61 -0
- data/fastlane/lib/fastlane/actions/dsym_zip.rb +93 -0
- data/fastlane/lib/fastlane/actions/echo.rb +14 -0
- data/fastlane/lib/fastlane/actions/ensure_bundle_exec.rb +59 -0
- data/fastlane/lib/fastlane/actions/ensure_git_branch.rb +69 -0
- data/fastlane/lib/fastlane/actions/ensure_git_status_clean.rb +81 -0
- data/fastlane/lib/fastlane/actions/ensure_no_debug_code.rb +135 -0
- data/fastlane/lib/fastlane/actions/ensure_xcode_version.rb +97 -0
- data/fastlane/lib/fastlane/actions/environment_variable.rb +77 -0
- data/fastlane/lib/fastlane/actions/erb.rb +88 -0
- data/fastlane/lib/fastlane/actions/fastlane_version.rb +15 -0
- data/fastlane/lib/fastlane/actions/flock.rb +82 -0
- data/fastlane/lib/fastlane/actions/frame_screenshots.rb +63 -0
- data/fastlane/lib/fastlane/actions/frameit.rb +14 -0
- data/fastlane/lib/fastlane/actions/gcovr.rb +163 -0
- data/fastlane/lib/fastlane/actions/get_build_number.rb +106 -0
- data/fastlane/lib/fastlane/actions/get_build_number_repository.rb +120 -0
- data/fastlane/lib/fastlane/actions/get_certificates.rb +76 -0
- data/fastlane/lib/fastlane/actions/get_github_release.rb +163 -0
- data/fastlane/lib/fastlane/actions/get_info_plist_value.rb +78 -0
- data/fastlane/lib/fastlane/actions/get_ipa_info_plist_value.rb +82 -0
- data/fastlane/lib/fastlane/actions/get_managed_play_store_publishing_rights.rb +120 -0
- data/fastlane/lib/fastlane/actions/get_provisioning_profile.rb +100 -0
- data/fastlane/lib/fastlane/actions/get_push_certificate.rb +87 -0
- data/fastlane/lib/fastlane/actions/get_version_number.rb +170 -0
- data/fastlane/lib/fastlane/actions/git_add.rb +93 -0
- data/fastlane/lib/fastlane/actions/git_branch.rb +58 -0
- data/fastlane/lib/fastlane/actions/git_commit.rb +80 -0
- data/fastlane/lib/fastlane/actions/git_pull.rb +53 -0
- data/fastlane/lib/fastlane/actions/git_submodule_update.rb +52 -0
- data/fastlane/lib/fastlane/actions/git_tag_exists.rb +74 -0
- data/fastlane/lib/fastlane/actions/github_api.rb +262 -0
- data/fastlane/lib/fastlane/actions/google_play_track_version_codes.rb +73 -0
- data/fastlane/lib/fastlane/actions/gradle.rb +249 -0
- data/fastlane/lib/fastlane/actions/gym.rb +14 -0
- data/fastlane/lib/fastlane/actions/hg_add_tag.rb +48 -0
- data/fastlane/lib/fastlane/actions/hg_commit_version_bump.rb +183 -0
- data/fastlane/lib/fastlane/actions/hg_ensure_clean_status.rb +53 -0
- data/fastlane/lib/fastlane/actions/hg_push.rb +64 -0
- data/fastlane/lib/fastlane/actions/hipchat.rb +200 -0
- data/fastlane/lib/fastlane/actions/hockey.rb +406 -0
- data/fastlane/lib/fastlane/actions/ifttt.rb +96 -0
- data/fastlane/lib/fastlane/actions/import.rb +49 -0
- data/fastlane/lib/fastlane/actions/import_certificate.rb +77 -0
- data/fastlane/lib/fastlane/actions/import_from_git.rb +71 -0
- data/fastlane/lib/fastlane/actions/increment_build_number.rb +117 -0
- data/fastlane/lib/fastlane/actions/increment_version_number.rb +177 -0
- data/fastlane/lib/fastlane/actions/install_on_device.rb +95 -0
- data/fastlane/lib/fastlane/actions/install_provisioning_profile.rb +58 -0
- data/fastlane/lib/fastlane/actions/install_xcode_plugin.rb +91 -0
- data/fastlane/lib/fastlane/actions/installr.rb +132 -0
- data/fastlane/lib/fastlane/actions/ipa.rb +246 -0
- data/fastlane/lib/fastlane/actions/is_ci.rb +51 -0
- data/fastlane/lib/fastlane/actions/jazzy.rb +56 -0
- data/fastlane/lib/fastlane/actions/jira.rb +115 -0
- data/fastlane/lib/fastlane/actions/lane_context.rb +60 -0
- data/fastlane/lib/fastlane/actions/last_git_commit.rb +58 -0
- data/fastlane/lib/fastlane/actions/last_git_tag.rb +51 -0
- data/fastlane/lib/fastlane/actions/latest_testflight_build_number.rb +134 -0
- data/fastlane/lib/fastlane/actions/lcov.rb +102 -0
- data/fastlane/lib/fastlane/actions/mailgun.rb +197 -0
- data/fastlane/lib/fastlane/actions/make_changelog_from_jenkins.rb +81 -0
- data/fastlane/lib/fastlane/actions/match.rb +14 -0
- data/fastlane/lib/fastlane/actions/min_fastlane_version.rb +57 -0
- data/fastlane/lib/fastlane/actions/modify_services.rb +173 -0
- data/fastlane/lib/fastlane/actions/nexus_upload.rb +230 -0
- data/fastlane/lib/fastlane/actions/notification.rb +75 -0
- data/fastlane/lib/fastlane/actions/notify.rb +40 -0
- data/fastlane/lib/fastlane/actions/number_of_commits.rb +75 -0
- data/fastlane/lib/fastlane/actions/oclint.rb +269 -0
- data/fastlane/lib/fastlane/actions/onesignal.rb +156 -0
- data/fastlane/lib/fastlane/actions/opt_out_crash_reporting.rb +33 -0
- data/fastlane/lib/fastlane/actions/opt_out_usage.rb +40 -0
- data/fastlane/lib/fastlane/actions/pem.rb +14 -0
- data/fastlane/lib/fastlane/actions/pilot.rb +14 -0
- data/fastlane/lib/fastlane/actions/pod_lib_lint.rb +183 -0
- data/fastlane/lib/fastlane/actions/pod_push.rb +145 -0
- data/fastlane/lib/fastlane/actions/podio_item.rb +217 -0
- data/fastlane/lib/fastlane/actions/precheck.rb +14 -0
- data/fastlane/lib/fastlane/actions/println.rb +14 -0
- data/fastlane/lib/fastlane/actions/produce.rb +14 -0
- data/fastlane/lib/fastlane/actions/prompt.rb +119 -0
- data/fastlane/lib/fastlane/actions/push_git_tags.rb +76 -0
- data/fastlane/lib/fastlane/actions/push_to_git_remote.rb +127 -0
- data/fastlane/lib/fastlane/actions/puts.rb +68 -0
- data/fastlane/lib/fastlane/actions/read_podspec.rb +90 -0
- data/fastlane/lib/fastlane/actions/recreate_schemes.rb +46 -0
- data/fastlane/lib/fastlane/actions/register_device.rb +110 -0
- data/fastlane/lib/fastlane/actions/register_devices.rb +160 -0
- data/fastlane/lib/fastlane/actions/reset_git_repo.rb +121 -0
- data/fastlane/lib/fastlane/actions/reset_simulator_contents.rb +92 -0
- data/fastlane/lib/fastlane/actions/resign.rb +132 -0
- data/fastlane/lib/fastlane/actions/restore_file.rb +44 -0
- data/fastlane/lib/fastlane/actions/rocket.rb +83 -0
- data/fastlane/lib/fastlane/actions/rsync.rb +74 -0
- data/fastlane/lib/fastlane/actions/ruby_version.rb +56 -0
- data/fastlane/lib/fastlane/actions/run_tests.rb +131 -0
- data/fastlane/lib/fastlane/actions/s3.rb +460 -0
- data/fastlane/lib/fastlane/actions/say.rb +56 -0
- data/fastlane/lib/fastlane/actions/scan.rb +14 -0
- data/fastlane/lib/fastlane/actions/scp.rb +114 -0
- data/fastlane/lib/fastlane/actions/screengrab.rb +14 -0
- data/fastlane/lib/fastlane/actions/set_build_number_repository.rb +76 -0
- data/fastlane/lib/fastlane/actions/set_changelog.rb +172 -0
- data/fastlane/lib/fastlane/actions/set_github_release.rb +274 -0
- data/fastlane/lib/fastlane/actions/set_info_plist_value.rb +92 -0
- data/fastlane/lib/fastlane/actions/set_pod_key.rb +78 -0
- data/fastlane/lib/fastlane/actions/setup_ci.rb +121 -0
- data/fastlane/lib/fastlane/actions/setup_circle_ci.rb +58 -0
- data/fastlane/lib/fastlane/actions/setup_jenkins.rb +193 -0
- data/fastlane/lib/fastlane/actions/setup_travis.rb +57 -0
- data/fastlane/lib/fastlane/actions/sh.rb +71 -0
- data/fastlane/lib/fastlane/actions/sigh.rb +14 -0
- data/fastlane/lib/fastlane/actions/skip_docs.rb +52 -0
- data/fastlane/lib/fastlane/actions/slack.rb +288 -0
- data/fastlane/lib/fastlane/actions/slather.rb +314 -0
- data/fastlane/lib/fastlane/actions/snapshot.rb +14 -0
- data/fastlane/lib/fastlane/actions/sonar.rb +138 -0
- data/fastlane/lib/fastlane/actions/spaceship_logs.rb +135 -0
- data/fastlane/lib/fastlane/actions/splunkmint.rb +156 -0
- data/fastlane/lib/fastlane/actions/spm.rb +123 -0
- data/fastlane/lib/fastlane/actions/ssh.rb +162 -0
- data/fastlane/lib/fastlane/actions/supply.rb +14 -0
- data/fastlane/lib/fastlane/actions/swiftlint.rb +182 -0
- data/fastlane/lib/fastlane/actions/sync_code_signing.rb +103 -0
- data/fastlane/lib/fastlane/actions/team_id.rb +42 -0
- data/fastlane/lib/fastlane/actions/team_name.rb +42 -0
- data/fastlane/lib/fastlane/actions/testfairy.rb +263 -0
- data/fastlane/lib/fastlane/actions/testflight.rb +14 -0
- data/fastlane/lib/fastlane/actions/tryouts.rb +149 -0
- data/fastlane/lib/fastlane/actions/twitter.rb +89 -0
- data/fastlane/lib/fastlane/actions/typetalk.rb +93 -0
- data/fastlane/lib/fastlane/actions/unlock_keychain.rb +132 -0
- data/fastlane/lib/fastlane/actions/update_app_group_identifiers.rb +91 -0
- data/fastlane/lib/fastlane/actions/update_app_identifier.rb +124 -0
- data/fastlane/lib/fastlane/actions/update_fastlane.rb +177 -0
- data/fastlane/lib/fastlane/actions/update_icloud_container_identifiers.rb +99 -0
- data/fastlane/lib/fastlane/actions/update_info_plist.rb +143 -0
- data/fastlane/lib/fastlane/actions/update_plist.rb +80 -0
- data/fastlane/lib/fastlane/actions/update_project_code_signing.rb +76 -0
- data/fastlane/lib/fastlane/actions/update_project_provisioning.rb +173 -0
- data/fastlane/lib/fastlane/actions/update_project_team.rb +95 -0
- data/fastlane/lib/fastlane/actions/update_urban_airship_configuration.rb +91 -0
- data/fastlane/lib/fastlane/actions/update_url_schemes.rb +123 -0
- data/fastlane/lib/fastlane/actions/upload_symbols_to_crashlytics.rb +244 -0
- data/fastlane/lib/fastlane/actions/upload_symbols_to_sentry.rb +165 -0
- data/fastlane/lib/fastlane/actions/upload_to_app_store.rb +65 -0
- data/fastlane/lib/fastlane/actions/upload_to_play_store.rb +80 -0
- data/fastlane/lib/fastlane/actions/upload_to_testflight.rb +107 -0
- data/fastlane/lib/fastlane/actions/validate_play_store_json_key.rb +104 -0
- data/fastlane/lib/fastlane/actions/verify_build.rb +199 -0
- data/fastlane/lib/fastlane/actions/verify_pod_keys.rb +67 -0
- data/fastlane/lib/fastlane/actions/verify_xcode.rb +152 -0
- data/fastlane/lib/fastlane/actions/version_bump_podspec.rb +105 -0
- data/fastlane/lib/fastlane/actions/version_get_podspec.rb +71 -0
- data/fastlane/lib/fastlane/actions/xcode_install.rb +105 -0
- data/fastlane/lib/fastlane/actions/xcode_select.rb +63 -0
- data/fastlane/lib/fastlane/actions/xcode_server_get_assets.rb +312 -0
- data/fastlane/lib/fastlane/actions/xcodebuild.rb +641 -0
- data/fastlane/lib/fastlane/actions/xcov.rb +66 -0
- data/fastlane/lib/fastlane/actions/xctool.rb +55 -0
- data/fastlane/lib/fastlane/actions/xcversion.rb +55 -0
- data/fastlane/lib/fastlane/actions/zip.rb +120 -0
- data/fastlane/lib/fastlane/auto_complete.rb +82 -0
- data/fastlane/lib/fastlane/boolean.rb +5 -0
- data/fastlane/lib/fastlane/cli_tools_distributor.rb +185 -0
- data/fastlane/lib/fastlane/command_line_handler.rb +49 -0
- data/fastlane/lib/fastlane/commands_generator.rb +350 -0
- data/fastlane/lib/fastlane/configuration_helper.rb +26 -0
- data/fastlane/lib/fastlane/core_ext/bundler_monkey_patch.rb +14 -0
- data/fastlane/lib/fastlane/documentation/actions_list.rb +214 -0
- data/fastlane/lib/fastlane/documentation/docs_generator.rb +89 -0
- data/fastlane/lib/fastlane/documentation/markdown_docs_generator.rb +228 -0
- data/fastlane/lib/fastlane/environment_printer.rb +297 -0
- data/fastlane/lib/fastlane/erb_template_helper.rb +30 -0
- data/fastlane/lib/fastlane/fast_file.rb +351 -0
- data/fastlane/lib/fastlane/fastlane_require.rb +75 -0
- data/fastlane/lib/fastlane/features.rb +4 -0
- data/fastlane/lib/fastlane/helper/README.md +29 -0
- data/fastlane/lib/fastlane/helper/adb_helper.rb +52 -0
- data/fastlane/lib/fastlane/helper/crashlytics_helper.rb +151 -0
- data/fastlane/lib/fastlane/helper/dotenv_helper.rb +50 -0
- data/fastlane/lib/fastlane/helper/gem_helper.rb +26 -0
- data/fastlane/lib/fastlane/helper/git_helper.rb +135 -0
- data/fastlane/lib/fastlane/helper/gradle_helper.rb +62 -0
- data/fastlane/lib/fastlane/helper/podspec_helper.rb +75 -0
- data/fastlane/lib/fastlane/helper/sh_helper.rb +134 -0
- data/fastlane/lib/fastlane/helper/xcodeproj_helper.rb +12 -0
- data/fastlane/lib/fastlane/helper/xcversion_helper.rb +25 -0
- data/fastlane/lib/fastlane/junit_generator.rb +27 -0
- data/fastlane/lib/fastlane/lane.rb +97 -0
- data/fastlane/lib/fastlane/lane_list.rb +137 -0
- data/fastlane/lib/fastlane/lane_manager.rb +140 -0
- data/fastlane/lib/fastlane/lane_manager_base.rb +92 -0
- data/fastlane/lib/fastlane/markdown_table_formatter.rb +62 -0
- data/fastlane/lib/fastlane/new_action.rb +47 -0
- data/fastlane/lib/fastlane/one_off.rb +45 -0
- data/fastlane/lib/fastlane/other_action.rb +29 -0
- data/fastlane/lib/fastlane/plugins/plugin_fetcher.rb +55 -0
- data/fastlane/lib/fastlane/plugins/plugin_generator.rb +86 -0
- data/fastlane/lib/fastlane/plugins/plugin_generator_ui.rb +19 -0
- data/fastlane/lib/fastlane/plugins/plugin_info.rb +49 -0
- data/fastlane/lib/fastlane/plugins/plugin_info_collector.rb +159 -0
- data/fastlane/lib/fastlane/plugins/plugin_manager.rb +387 -0
- data/fastlane/lib/fastlane/plugins/plugin_search.rb +46 -0
- data/fastlane/lib/fastlane/plugins/plugin_update_manager.rb +70 -0
- data/fastlane/lib/fastlane/plugins/plugins.rb +12 -0
- data/fastlane/lib/fastlane/plugins/template/%gem_name%.gemspec.erb +35 -0
- data/fastlane/lib/fastlane/plugins/template/.circleci/config.yml +43 -0
- data/fastlane/lib/fastlane/plugins/template/.gitignore +12 -0
- data/fastlane/lib/fastlane/plugins/template/.rspec +5 -0
- data/fastlane/lib/fastlane/plugins/template/.rubocop.yml +180 -0
- data/fastlane/lib/fastlane/plugins/template/.travis.yml +4 -0
- data/fastlane/lib/fastlane/plugins/template/Gemfile +6 -0
- data/fastlane/lib/fastlane/plugins/template/LICENSE.erb +21 -0
- data/fastlane/lib/fastlane/plugins/template/README.md.erb +52 -0
- data/fastlane/lib/fastlane/plugins/template/Rakefile +9 -0
- data/fastlane/lib/fastlane/plugins/template/fastlane/Fastfile.erb +3 -0
- data/fastlane/lib/fastlane/plugins/template/fastlane/Pluginfile.erb +1 -0
- data/fastlane/lib/fastlane/plugins/template/lib/fastlane/plugin/%plugin_name%.rb.erb +16 -0
- data/fastlane/lib/fastlane/plugins/template/lib/fastlane/plugin/%plugin_name%/actions/%plugin_name%_action.rb.erb +47 -0
- data/fastlane/lib/fastlane/plugins/template/lib/fastlane/plugin/%plugin_name%/helper/%plugin_name%_helper.rb.erb +16 -0
- data/fastlane/lib/fastlane/plugins/template/lib/fastlane/plugin/%plugin_name%/version.rb.erb +5 -0
- data/fastlane/lib/fastlane/plugins/template/spec/%plugin_name%_action_spec.rb.erb +9 -0
- data/fastlane/lib/fastlane/plugins/template/spec/spec_helper.rb.erb +15 -0
- data/fastlane/lib/fastlane/runner.rb +371 -0
- data/fastlane/lib/fastlane/server/action_command.rb +61 -0
- data/fastlane/lib/fastlane/server/action_command_return.rb +14 -0
- data/fastlane/lib/fastlane/server/command_executor.rb +7 -0
- data/fastlane/lib/fastlane/server/command_parser.rb +44 -0
- data/fastlane/lib/fastlane/server/control_command.rb +23 -0
- data/fastlane/lib/fastlane/server/json_return_value_processor.rb +72 -0
- data/fastlane/lib/fastlane/server/socket_server.rb +232 -0
- data/fastlane/lib/fastlane/server/socket_server_action_command_executor.rb +101 -0
- data/fastlane/lib/fastlane/setup/setup.rb +355 -0
- data/fastlane/lib/fastlane/setup/setup_android.rb +97 -0
- data/fastlane/lib/fastlane/setup/setup_ios.rb +504 -0
- data/fastlane/lib/fastlane/shells.rb +6 -0
- data/fastlane/lib/fastlane/supported_platforms.rb +28 -0
- data/fastlane/lib/fastlane/swift_fastlane_api_generator.rb +383 -0
- data/fastlane/lib/fastlane/swift_fastlane_function.rb +320 -0
- data/fastlane/lib/fastlane/swift_lane_manager.rb +304 -0
- data/fastlane/lib/fastlane/swift_runner_upgrader.rb +206 -0
- data/fastlane/lib/fastlane/tools.rb +33 -0
- data/fastlane/lib/fastlane/version.rb +6 -0
- data/fastlane/swift/Appfile.swift +17 -0
- data/fastlane/swift/ArgumentProcessor.swift +93 -0
- data/fastlane/swift/ControlCommand.swift +76 -0
- data/fastlane/swift/Deliverfile.swift +21 -0
- data/fastlane/swift/DeliverfileProtocol.swift +129 -0
- data/fastlane/swift/Fastfile.swift +12 -0
- data/fastlane/swift/Fastlane.swift +4396 -0
- data/fastlane/swift/FastlaneSwiftRunner/FastlaneSwiftRunner.xcodeproj/project.pbxproj +425 -0
- data/fastlane/swift/FastlaneSwiftRunner/FastlaneSwiftRunner.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
- data/fastlane/swift/FastlaneSwiftRunner/FastlaneSwiftRunner.xcodeproj/xcshareddata/xcschemes/FastlaneRunner.xcscheme +103 -0
- data/fastlane/swift/FastlaneSwiftRunner/README.txt +10 -0
- data/fastlane/swift/Gymfile.swift +21 -0
- data/fastlane/swift/GymfileProtocol.swift +87 -0
- data/fastlane/swift/LaneFileProtocol.swift +140 -0
- data/fastlane/swift/Matchfile.swift +21 -0
- data/fastlane/swift/MatchfileProtocol.swift +61 -0
- data/fastlane/swift/Precheckfile.swift +21 -0
- data/fastlane/swift/PrecheckfileProtocol.swift +24 -0
- data/fastlane/swift/RubyCommand.swift +141 -0
- data/fastlane/swift/RubyCommandable.swift +44 -0
- data/fastlane/swift/Runner.swift +200 -0
- data/fastlane/swift/RunnerArgument.swift +24 -0
- data/fastlane/swift/Scanfile.swift +21 -0
- data/fastlane/swift/ScanfileProtocol.swift +117 -0
- data/fastlane/swift/Screengrabfile.swift +21 -0
- data/fastlane/swift/ScreengrabfileProtocol.swift +48 -0
- data/fastlane/swift/Snapshotfile.swift +21 -0
- data/fastlane/swift/SnapshotfileProtocol.swift +75 -0
- data/fastlane/swift/SocketClient.swift +305 -0
- data/fastlane/swift/SocketClientDelegateProtocol.swift +25 -0
- data/fastlane/swift/SocketResponse.swift +85 -0
- data/fastlane/swift/main.swift +52 -0
- data/fastlane/swift/upgrade_manifest.json +1 -0
- data/fastlane_core/README.md +79 -0
- data/fastlane_core/lib/assets/XMLTemplate.xml.erb +12 -0
- data/fastlane_core/lib/fastlane_core.rb +46 -0
- data/fastlane_core/lib/fastlane_core/analytics/action_completion_context.rb +34 -0
- data/fastlane_core/lib/fastlane_core/analytics/action_launch_context.rb +38 -0
- data/fastlane_core/lib/fastlane_core/analytics/analytics_event_builder.rb +23 -0
- data/fastlane_core/lib/fastlane_core/analytics/analytics_ingester_client.rb +54 -0
- data/fastlane_core/lib/fastlane_core/analytics/analytics_session.rb +71 -0
- data/fastlane_core/lib/fastlane_core/analytics/app_identifier_guesser.rb +64 -0
- data/fastlane_core/lib/fastlane_core/android_package_name_guesser.rb +79 -0
- data/fastlane_core/lib/fastlane_core/build_watcher.rb +80 -0
- data/fastlane_core/lib/fastlane_core/cert_checker.rb +116 -0
- data/fastlane_core/lib/fastlane_core/command_executor.rb +99 -0
- data/fastlane_core/lib/fastlane_core/configuration/commander_generator.rb +103 -0
- data/fastlane_core/lib/fastlane_core/configuration/config_item.rb +314 -0
- data/fastlane_core/lib/fastlane_core/configuration/configuration.rb +332 -0
- data/fastlane_core/lib/fastlane_core/configuration/configuration_file.rb +182 -0
- data/fastlane_core/lib/fastlane_core/core_ext/cfpropertylist.rb +23 -0
- data/fastlane_core/lib/fastlane_core/core_ext/shellwords.rb +63 -0
- data/fastlane_core/lib/fastlane_core/core_ext/string.rb +17 -0
- data/fastlane_core/lib/fastlane_core/device_manager.rb +331 -0
- data/fastlane_core/lib/fastlane_core/env.rb +9 -0
- data/fastlane_core/lib/fastlane_core/fastlane_folder.rb +72 -0
- data/fastlane_core/lib/fastlane_core/fastlane_pty.rb +57 -0
- data/fastlane_core/lib/fastlane_core/feature/feature.rb +51 -0
- data/fastlane_core/lib/fastlane_core/features.rb +4 -0
- data/fastlane_core/lib/fastlane_core/globals.rb +27 -0
- data/fastlane_core/lib/fastlane_core/helper.rb +414 -0
- data/fastlane_core/lib/fastlane_core/ios_app_identifier_guesser.rb +112 -0
- data/fastlane_core/lib/fastlane_core/ipa_file_analyser.rb +63 -0
- data/fastlane_core/lib/fastlane_core/ipa_upload_package_builder.rb +52 -0
- data/fastlane_core/lib/fastlane_core/itunes_transporter.rb +520 -0
- data/fastlane_core/lib/fastlane_core/keychain_importer.rb +74 -0
- data/fastlane_core/lib/fastlane_core/languages.rb +16 -0
- data/fastlane_core/lib/fastlane_core/module.rb +31 -0
- data/fastlane_core/lib/fastlane_core/pkg_file_analyser.rb +44 -0
- data/fastlane_core/lib/fastlane_core/pkg_upload_package_builder.rb +48 -0
- data/fastlane_core/lib/fastlane_core/print_table.rb +131 -0
- data/fastlane_core/lib/fastlane_core/project.rb +481 -0
- data/fastlane_core/lib/fastlane_core/provisioning_profile.rb +111 -0
- data/fastlane_core/lib/fastlane_core/string_filters.rb +51 -0
- data/fastlane_core/lib/fastlane_core/swag.rb +85 -0
- data/fastlane_core/lib/fastlane_core/tag_version.rb +31 -0
- data/fastlane_core/lib/fastlane_core/test_parser.rb +107 -0
- data/fastlane_core/lib/fastlane_core/ui/disable_colors.rb +17 -0
- data/fastlane_core/lib/fastlane_core/ui/errors.rb +1 -0
- data/fastlane_core/lib/fastlane_core/ui/errors/fastlane_common_error.rb +19 -0
- data/fastlane_core/lib/fastlane_core/ui/errors/fastlane_crash.rb +11 -0
- data/fastlane_core/lib/fastlane_core/ui/errors/fastlane_error.rb +25 -0
- data/fastlane_core/lib/fastlane_core/ui/errors/fastlane_exception.rb +19 -0
- data/fastlane_core/lib/fastlane_core/ui/errors/fastlane_shell_error.rb +11 -0
- data/fastlane_core/lib/fastlane_core/ui/fastlane_runner.rb +294 -0
- data/fastlane_core/lib/fastlane_core/ui/github_issue_inspector_reporter.rb +62 -0
- data/fastlane_core/lib/fastlane_core/ui/implementations/shell.rb +158 -0
- data/fastlane_core/lib/fastlane_core/ui/interface.rb +205 -0
- data/fastlane_core/lib/fastlane_core/ui/ui.rb +26 -0
- data/fastlane_core/lib/fastlane_core/update_checker/changelog.rb +37 -0
- data/fastlane_core/lib/fastlane_core/update_checker/update_checker.rb +109 -0
- data/frameit/README.md +17 -0
- data/frameit/lib/assets/empty.png +0 -0
- data/frameit/lib/frameit.rb +13 -0
- data/frameit/lib/frameit/commands_generator.rb +114 -0
- data/frameit/lib/frameit/config_parser.rb +114 -0
- data/frameit/lib/frameit/dependency_checker.rb +22 -0
- data/frameit/lib/frameit/device_types.rb +18 -0
- data/frameit/lib/frameit/editor.rb +563 -0
- data/frameit/lib/frameit/frame_downloader.rb +85 -0
- data/frameit/lib/frameit/mac_editor.rb +35 -0
- data/frameit/lib/frameit/module.rb +42 -0
- data/frameit/lib/frameit/offsets.rb +21 -0
- data/frameit/lib/frameit/options.rb +82 -0
- data/frameit/lib/frameit/runner.rb +82 -0
- data/frameit/lib/frameit/screenshot.rb +137 -0
- data/frameit/lib/frameit/strings_parser.rb +46 -0
- data/frameit/lib/frameit/template_finder.rb +42 -0
- data/frameit/lib/frameit/trim_box.rb +35 -0
- data/gym/README.md +17 -0
- data/gym/lib/assets/GymfileTemplate +13 -0
- data/gym/lib/assets/GymfileTemplate.swift +13 -0
- data/gym/lib/assets/wrap_xcodebuild/xcbuild-safe.sh +61 -0
- data/gym/lib/gym.rb +9 -0
- data/gym/lib/gym/code_signing_mapping.rb +181 -0
- data/gym/lib/gym/commands_generator.rb +78 -0
- data/gym/lib/gym/detect_values.rb +171 -0
- data/gym/lib/gym/error_handler.rb +306 -0
- data/gym/lib/gym/generators/README.md +1 -0
- data/gym/lib/gym/generators/build_command_generator.rb +143 -0
- data/gym/lib/gym/generators/package_command_generator.rb +56 -0
- data/gym/lib/gym/generators/package_command_generator_xcode7.rb +193 -0
- data/gym/lib/gym/manager.rb +22 -0
- data/gym/lib/gym/module.rb +36 -0
- data/gym/lib/gym/options.rb +262 -0
- data/gym/lib/gym/runner.rb +264 -0
- data/gym/lib/gym/xcode.rb +27 -0
- data/gym/lib/gym/xcodebuild_fixes/README.md +9 -0
- data/gym/lib/gym/xcodebuild_fixes/generic_archive_fix.rb +35 -0
- data/match/README.md +17 -0
- data/match/lib/assets/MatchfileTemplate +11 -0
- data/match/lib/assets/MatchfileTemplate.swift +9 -0
- data/match/lib/assets/READMETemplate.md +56 -0
- data/match/lib/match.rb +13 -0
- data/match/lib/match/change_password.rb +70 -0
- data/match/lib/match/commands_generator.rb +175 -0
- data/match/lib/match/encryption.rb +45 -0
- data/match/lib/match/encryption/interface.rb +17 -0
- data/match/lib/match/encryption/openssl.rb +161 -0
- data/match/lib/match/generator.rb +91 -0
- data/match/lib/match/migrate.rb +98 -0
- data/match/lib/match/module.rb +27 -0
- data/match/lib/match/nuke.rb +260 -0
- data/match/lib/match/options.rb +198 -0
- data/match/lib/match/runner.rb +333 -0
- data/match/lib/match/setup.rb +40 -0
- data/match/lib/match/spaceship_ensure.rb +83 -0
- data/match/lib/match/storage.rb +42 -0
- data/match/lib/match/storage/git_storage.rb +214 -0
- data/match/lib/match/storage/google_cloud_storage.rb +265 -0
- data/match/lib/match/storage/interface.rb +110 -0
- data/match/lib/match/table_printer.rb +51 -0
- data/match/lib/match/utils.rb +75 -0
- data/pem/README.md +17 -0
- data/pem/lib/pem.rb +4 -0
- data/pem/lib/pem/commands_generator.rb +46 -0
- data/pem/lib/pem/manager.rb +112 -0
- data/pem/lib/pem/module.rb +19 -0
- data/pem/lib/pem/options.rb +103 -0
- data/pilot/README.md +17 -0
- data/pilot/lib/pilot.rb +9 -0
- data/pilot/lib/pilot/build_manager.rb +453 -0
- data/pilot/lib/pilot/commands_generator.rb +174 -0
- data/pilot/lib/pilot/features.rb +0 -0
- data/pilot/lib/pilot/manager.rb +80 -0
- data/pilot/lib/pilot/module.rb +11 -0
- data/pilot/lib/pilot/options.rb +266 -0
- data/pilot/lib/pilot/tester_exporter.rb +58 -0
- data/pilot/lib/pilot/tester_importer.rb +53 -0
- data/pilot/lib/pilot/tester_manager.rb +168 -0
- data/pilot/lib/pilot/tester_util.rb +0 -0
- data/precheck/README.md +17 -0
- data/precheck/lib/assets/PrecheckfileTemplate +27 -0
- data/precheck/lib/assets/PrecheckfileTemplate.swift +19 -0
- data/precheck/lib/precheck.rb +3 -0
- data/precheck/lib/precheck/commands_generator.rb +74 -0
- data/precheck/lib/precheck/item_to_check.rb +58 -0
- data/precheck/lib/precheck/module.rb +21 -0
- data/precheck/lib/precheck/options.rb +79 -0
- data/precheck/lib/precheck/rule.rb +171 -0
- data/precheck/lib/precheck/rule_check_result.rb +19 -0
- data/precheck/lib/precheck/rule_processor.rb +231 -0
- data/precheck/lib/precheck/rules/abstract_text_match_rule.rb +80 -0
- data/precheck/lib/precheck/rules/all.rb +1 -0
- data/precheck/lib/precheck/rules/copyright_date_rule.rb +37 -0
- data/precheck/lib/precheck/rules/curse_words_rule.rb +62 -0
- data/precheck/lib/precheck/rules/custom_text_rule.rb +35 -0
- data/precheck/lib/precheck/rules/free_stuff_iap_rule.rb +31 -0
- data/precheck/lib/precheck/rules/future_functionality_rule.rb +33 -0
- data/precheck/lib/precheck/rules/negative_apple_sentiment_rule.rb +37 -0
- data/precheck/lib/precheck/rules/other_platforms_rule.rb +43 -0
- data/precheck/lib/precheck/rules/placeholder_words_rule.rb +31 -0
- data/precheck/lib/precheck/rules/rules_data/curse_word_hashes/en_us.txt +349 -0
- data/precheck/lib/precheck/rules/test_words_rule.rb +30 -0
- data/precheck/lib/precheck/rules/unreachable_urls_rule.rb +47 -0
- data/precheck/lib/precheck/runner.rb +176 -0
- data/produce/README.md +17 -0
- data/produce/lib/produce.rb +6 -0
- data/produce/lib/produce/available_default_languages.rb +51 -0
- data/produce/lib/produce/cloud_container.rb +82 -0
- data/produce/lib/produce/commands_generator.rb +235 -0
- data/produce/lib/produce/developer_center.rb +134 -0
- data/produce/lib/produce/group.rb +90 -0
- data/produce/lib/produce/itunes_connect.rb +92 -0
- data/produce/lib/produce/manager.rb +15 -0
- data/produce/lib/produce/merchant.rb +121 -0
- data/produce/lib/produce/module.rb +14 -0
- data/produce/lib/produce/options.rb +172 -0
- data/produce/lib/produce/service.rb +313 -0
- data/scan/README.md +17 -0
- data/scan/lib/assets/ScanfileTemplate +16 -0
- data/scan/lib/assets/ScanfileTemplate.swift +13 -0
- data/scan/lib/scan.rb +10 -0
- data/scan/lib/scan/commands_generator.rb +78 -0
- data/scan/lib/scan/detect_values.rb +219 -0
- data/scan/lib/scan/error_handler.rb +52 -0
- data/scan/lib/scan/manager.rb +21 -0
- data/scan/lib/scan/module.rb +32 -0
- data/scan/lib/scan/options.rb +390 -0
- data/scan/lib/scan/runner.rb +173 -0
- data/scan/lib/scan/slack_poster.rb +60 -0
- data/scan/lib/scan/test_command_generator.rb +160 -0
- data/scan/lib/scan/test_result_parser.rb +26 -0
- data/scan/lib/scan/xcpretty_reporter_options_generator.rb +85 -0
- data/screengrab/README.md +17 -0
- data/screengrab/lib/assets/ScreengrabfileTemplate +15 -0
- data/screengrab/lib/assets/ScreengrabfileTemplate.swift +15 -0
- data/screengrab/lib/screengrab.rb +7 -0
- data/screengrab/lib/screengrab/android_environment.rb +91 -0
- data/screengrab/lib/screengrab/commands_generator.rb +70 -0
- data/screengrab/lib/screengrab/dependency_checker.rb +58 -0
- data/screengrab/lib/screengrab/detect_values.rb +16 -0
- data/screengrab/lib/screengrab/module.rb +24 -0
- data/screengrab/lib/screengrab/options.rb +135 -0
- data/screengrab/lib/screengrab/page.html.erb +190 -0
- data/screengrab/lib/screengrab/reports_generator.rb +36 -0
- data/screengrab/lib/screengrab/runner.rb +379 -0
- data/screengrab/lib/screengrab/setup.rb +24 -0
- data/sigh/README.md +17 -0
- data/sigh/lib/assets/resign.sh +888 -0
- data/sigh/lib/sigh.rb +4 -0
- data/sigh/lib/sigh/commands_generator.rb +153 -0
- data/sigh/lib/sigh/download_all.rb +45 -0
- data/sigh/lib/sigh/local_manage.rb +145 -0
- data/sigh/lib/sigh/manager.rb +47 -0
- data/sigh/lib/sigh/module.rb +16 -0
- data/sigh/lib/sigh/options.rb +160 -0
- data/sigh/lib/sigh/repair.rb +34 -0
- data/sigh/lib/sigh/resign.rb +220 -0
- data/sigh/lib/sigh/runner.rb +285 -0
- data/snapshot/README.md +17 -0
- data/snapshot/lib/assets/SnapfileTemplate +34 -0
- data/snapshot/lib/assets/SnapfileTemplate.swift +41 -0
- data/snapshot/lib/assets/SnapshotHelper.swift +303 -0
- data/snapshot/lib/assets/SnapshotHelperXcode8.swift +172 -0
- data/snapshot/lib/snapshot.rb +19 -0
- data/snapshot/lib/snapshot/collector.rb +140 -0
- data/snapshot/lib/snapshot/commands_generator.rb +115 -0
- data/snapshot/lib/snapshot/dependency_checker.rb +69 -0
- data/snapshot/lib/snapshot/detect_values.rb +71 -0
- data/snapshot/lib/snapshot/error_handler.rb +24 -0
- data/snapshot/lib/snapshot/fixes/README.md +5 -0
- data/snapshot/lib/snapshot/fixes/hardware_keyboard_fix.rb +27 -0
- data/snapshot/lib/snapshot/fixes/simulator_zoom_fix.rb +27 -0
- data/snapshot/lib/snapshot/latest_os_version.rb +34 -0
- data/snapshot/lib/snapshot/module.rb +44 -0
- data/snapshot/lib/snapshot/options.rb +223 -0
- data/snapshot/lib/snapshot/page.html.erb +285 -0
- data/snapshot/lib/snapshot/reports_generator.rb +125 -0
- data/snapshot/lib/snapshot/reset_simulators.rb +122 -0
- data/snapshot/lib/snapshot/runner.rb +146 -0
- data/snapshot/lib/snapshot/screenshot_flatten.rb +20 -0
- data/snapshot/lib/snapshot/screenshot_rotate.rb +36 -0
- data/snapshot/lib/snapshot/setup.rb +58 -0
- data/snapshot/lib/snapshot/simulator_launchers/launcher_configuration.rb +54 -0
- data/snapshot/lib/snapshot/simulator_launchers/simulator_launcher.rb +215 -0
- data/snapshot/lib/snapshot/simulator_launchers/simulator_launcher_base.rb +143 -0
- data/snapshot/lib/snapshot/simulator_launchers/simulator_launcher_xcode_8.rb +113 -0
- data/snapshot/lib/snapshot/test_command_generator.rb +102 -0
- data/snapshot/lib/snapshot/test_command_generator_base.rb +117 -0
- data/snapshot/lib/snapshot/test_command_generator_xcode_8.rb +67 -0
- data/snapshot/lib/snapshot/update.rb +36 -0
- data/spaceship/README.md +183 -0
- data/spaceship/lib/assets/displayFamilies.json +181 -0
- data/spaceship/lib/assets/languageMapping.json +306 -0
- data/spaceship/lib/assets/languageMappingReadable.json +30 -0
- data/spaceship/lib/spaceship.rb +26 -0
- data/spaceship/lib/spaceship/babosa_fix.rb +30 -0
- data/spaceship/lib/spaceship/base.rb +310 -0
- data/spaceship/lib/spaceship/client.rb +892 -0
- data/spaceship/lib/spaceship/commands_generator.rb +52 -0
- data/spaceship/lib/spaceship/connect_api.rb +47 -0
- data/spaceship/lib/spaceship/connect_api/client.rb +178 -0
- data/spaceship/lib/spaceship/connect_api/model.rb +152 -0
- data/spaceship/lib/spaceship/connect_api/models/app.rb +97 -0
- data/spaceship/lib/spaceship/connect_api/models/beta_app_localization.rb +28 -0
- data/spaceship/lib/spaceship/connect_api/models/beta_app_review_detail.rb +32 -0
- data/spaceship/lib/spaceship/connect_api/models/beta_app_review_submission.rb +26 -0
- data/spaceship/lib/spaceship/connect_api/models/beta_build_localization.rb +20 -0
- data/spaceship/lib/spaceship/connect_api/models/beta_build_metric.rb +24 -0
- data/spaceship/lib/spaceship/connect_api/models/beta_group.rb +41 -0
- data/spaceship/lib/spaceship/connect_api/models/beta_tester.rb +56 -0
- data/spaceship/lib/spaceship/connect_api/models/beta_tester_metric.rb +43 -0
- data/spaceship/lib/spaceship/connect_api/models/build.rb +144 -0
- data/spaceship/lib/spaceship/connect_api/models/build_beta_detail.rb +56 -0
- data/spaceship/lib/spaceship/connect_api/models/build_delivery.rb +36 -0
- data/spaceship/lib/spaceship/connect_api/models/bundle_id.rb +46 -0
- data/spaceship/lib/spaceship/connect_api/models/bundle_id_capability.rb +37 -0
- data/spaceship/lib/spaceship/connect_api/models/certificate.rb +48 -0
- data/spaceship/lib/spaceship/connect_api/models/device.rb +53 -0
- data/spaceship/lib/spaceship/connect_api/models/pre_release_version.rb +20 -0
- data/spaceship/lib/spaceship/connect_api/models/profile.rb +60 -0
- data/spaceship/lib/spaceship/connect_api/models/user.rb +50 -0
- data/spaceship/lib/spaceship/connect_api/provisioning/client.rb +59 -0
- data/spaceship/lib/spaceship/connect_api/provisioning/provisioning.rb +48 -0
- data/spaceship/lib/spaceship/connect_api/response.rb +67 -0
- data/spaceship/lib/spaceship/connect_api/testflight/client.rb +33 -0
- data/spaceship/lib/spaceship/connect_api/testflight/testflight.rb +322 -0
- data/spaceship/lib/spaceship/connect_api/token.rb +56 -0
- data/spaceship/lib/spaceship/connect_api/users/client.rb +33 -0
- data/spaceship/lib/spaceship/connect_api/users/users.rb +16 -0
- data/spaceship/lib/spaceship/du/du_client.rb +134 -0
- data/spaceship/lib/spaceship/du/upload_file.rb +58 -0
- data/spaceship/lib/spaceship/du/utilities.rb +99 -0
- data/spaceship/lib/spaceship/errors.rb +79 -0
- data/spaceship/lib/spaceship/globals.rb +12 -0
- data/spaceship/lib/spaceship/helper/net_http_generic_request.rb +14 -0
- data/spaceship/lib/spaceship/helper/plist_middleware.rb +16 -0
- data/spaceship/lib/spaceship/helper/rels_middleware.rb +28 -0
- data/spaceship/lib/spaceship/launcher.rb +99 -0
- data/spaceship/lib/spaceship/module.rb +8 -0
- data/spaceship/lib/spaceship/playground.rb +75 -0
- data/spaceship/lib/spaceship/portal/app.rb +192 -0
- data/spaceship/lib/spaceship/portal/app_group.rb +73 -0
- data/spaceship/lib/spaceship/portal/app_service.rb +87 -0
- data/spaceship/lib/spaceship/portal/certificate.rb +351 -0
- data/spaceship/lib/spaceship/portal/cloud_container.rb +74 -0
- data/spaceship/lib/spaceship/portal/device.rb +191 -0
- data/spaceship/lib/spaceship/portal/invite.rb +53 -0
- data/spaceship/lib/spaceship/portal/key.rb +101 -0
- data/spaceship/lib/spaceship/portal/legacy_wrapper.rb +21 -0
- data/spaceship/lib/spaceship/portal/merchant.rb +86 -0
- data/spaceship/lib/spaceship/portal/passbook.rb +78 -0
- data/spaceship/lib/spaceship/portal/person.rb +62 -0
- data/spaceship/lib/spaceship/portal/persons.rb +67 -0
- data/spaceship/lib/spaceship/portal/portal.rb +17 -0
- data/spaceship/lib/spaceship/portal/portal_base.rb +16 -0
- data/spaceship/lib/spaceship/portal/portal_client.rb +848 -0
- data/spaceship/lib/spaceship/portal/provisioning_profile.rb +559 -0
- data/spaceship/lib/spaceship/portal/provisioning_profile_template.rb +52 -0
- data/spaceship/lib/spaceship/portal/spaceship.rb +154 -0
- data/spaceship/lib/spaceship/portal/ui/select_team.rb +116 -0
- data/spaceship/lib/spaceship/portal/website_push.rb +88 -0
- data/spaceship/lib/spaceship/provider.rb +13 -0
- data/spaceship/lib/spaceship/spaceauth_runner.rb +74 -0
- data/spaceship/lib/spaceship/test_flight.rb +10 -0
- data/spaceship/lib/spaceship/test_flight/app_test_info.rb +40 -0
- data/spaceship/lib/spaceship/test_flight/base.rb +39 -0
- data/spaceship/lib/spaceship/test_flight/beta_review_info.rb +19 -0
- data/spaceship/lib/spaceship/test_flight/build.rb +239 -0
- data/spaceship/lib/spaceship/test_flight/build_trains.rb +46 -0
- data/spaceship/lib/spaceship/test_flight/client.rb +361 -0
- data/spaceship/lib/spaceship/test_flight/export_compliance.rb +12 -0
- data/spaceship/lib/spaceship/test_flight/group.rb +131 -0
- data/spaceship/lib/spaceship/test_flight/test_info.rb +56 -0
- data/spaceship/lib/spaceship/test_flight/tester.rb +136 -0
- data/spaceship/lib/spaceship/tunes/app_analytics.rb +168 -0
- data/spaceship/lib/spaceship/tunes/app_details.rb +147 -0
- data/spaceship/lib/spaceship/tunes/app_image.rb +51 -0
- data/spaceship/lib/spaceship/tunes/app_ratings.rb +58 -0
- data/spaceship/lib/spaceship/tunes/app_review.rb +55 -0
- data/spaceship/lib/spaceship/tunes/app_review_attachment.rb +49 -0
- data/spaceship/lib/spaceship/tunes/app_screenshot.rb +12 -0
- data/spaceship/lib/spaceship/tunes/app_status.rb +63 -0
- data/spaceship/lib/spaceship/tunes/app_submission.rb +161 -0
- data/spaceship/lib/spaceship/tunes/app_trailer.rb +64 -0
- data/spaceship/lib/spaceship/tunes/app_version.rb +961 -0
- data/spaceship/lib/spaceship/tunes/app_version_common.rb +35 -0
- data/spaceship/lib/spaceship/tunes/app_version_generated_promocodes.rb +28 -0
- data/spaceship/lib/spaceship/tunes/app_version_history.rb +52 -0
- data/spaceship/lib/spaceship/tunes/app_version_promocodes.rb +27 -0
- data/spaceship/lib/spaceship/tunes/app_version_ref.rb +15 -0
- data/spaceship/lib/spaceship/tunes/app_version_states_history.rb +27 -0
- data/spaceship/lib/spaceship/tunes/application.rb +448 -0
- data/spaceship/lib/spaceship/tunes/availability.rb +132 -0
- data/spaceship/lib/spaceship/tunes/b2b_user.rb +30 -0
- data/spaceship/lib/spaceship/tunes/build.rb +263 -0
- data/spaceship/lib/spaceship/tunes/build_details.rb +42 -0
- data/spaceship/lib/spaceship/tunes/build_train.rb +181 -0
- data/spaceship/lib/spaceship/tunes/developer_response.rb +23 -0
- data/spaceship/lib/spaceship/tunes/device_type.rb +17 -0
- data/spaceship/lib/spaceship/tunes/display_family.rb +84 -0
- data/spaceship/lib/spaceship/tunes/errors.rb +17 -0
- data/spaceship/lib/spaceship/tunes/iap.rb +151 -0
- data/spaceship/lib/spaceship/tunes/iap_detail.rb +243 -0
- data/spaceship/lib/spaceship/tunes/iap_families.rb +57 -0
- data/spaceship/lib/spaceship/tunes/iap_family_details.rb +73 -0
- data/spaceship/lib/spaceship/tunes/iap_family_list.rb +28 -0
- data/spaceship/lib/spaceship/tunes/iap_list.rb +76 -0
- data/spaceship/lib/spaceship/tunes/iap_status.rb +52 -0
- data/spaceship/lib/spaceship/tunes/iap_subscription_pricing_info.rb +46 -0
- data/spaceship/lib/spaceship/tunes/iap_subscription_pricing_tier.rb +25 -0
- data/spaceship/lib/spaceship/tunes/iap_type.rb +45 -0
- data/spaceship/lib/spaceship/tunes/language_converter.rb +65 -0
- data/spaceship/lib/spaceship/tunes/language_item.rb +61 -0
- data/spaceship/lib/spaceship/tunes/legacy_wrapper.rb +13 -0
- data/spaceship/lib/spaceship/tunes/member.rb +84 -0
- data/spaceship/lib/spaceship/tunes/members.rb +35 -0
- data/spaceship/lib/spaceship/tunes/pricing_info.rb +42 -0
- data/spaceship/lib/spaceship/tunes/pricing_tier.rb +25 -0
- data/spaceship/lib/spaceship/tunes/sandbox_tester.rb +74 -0
- data/spaceship/lib/spaceship/tunes/spaceship.rb +39 -0
- data/spaceship/lib/spaceship/tunes/territory.rb +39 -0
- data/spaceship/lib/spaceship/tunes/transit_app_file.rb +23 -0
- data/spaceship/lib/spaceship/tunes/tunes.rb +35 -0
- data/spaceship/lib/spaceship/tunes/tunes_base.rb +17 -0
- data/spaceship/lib/spaceship/tunes/tunes_client.rb +1572 -0
- data/spaceship/lib/spaceship/tunes/user_detail.rb +15 -0
- data/spaceship/lib/spaceship/tunes/version_set.rb +26 -0
- data/spaceship/lib/spaceship/two_step_or_factor_client.rb +287 -0
- data/spaceship/lib/spaceship/ui.rb +27 -0
- data/supply/README.md +17 -0
- data/supply/lib/supply.rb +30 -0
- data/supply/lib/supply/apk_listing.rb +14 -0
- data/supply/lib/supply/client.rb +458 -0
- data/supply/lib/supply/commands_generator.rb +66 -0
- data/supply/lib/supply/languages.rb +88 -0
- data/supply/lib/supply/listing.rb +32 -0
- data/supply/lib/supply/options.rb +266 -0
- data/supply/lib/supply/reader.rb +25 -0
- data/supply/lib/supply/setup.rb +112 -0
- data/supply/lib/supply/uploader.rb +349 -0
- metadata +1772 -0
@@ -0,0 +1,64 @@
|
|
1
|
+
require_relative 'tunes_base'
|
2
|
+
|
3
|
+
module Spaceship
|
4
|
+
module Tunes
|
5
|
+
# Represents a preview video hosted on App Store Connect. Used for icons, screenshots, etc
|
6
|
+
class AppTrailer < TunesBase
|
7
|
+
attr_accessor :video_asset_token
|
8
|
+
|
9
|
+
attr_accessor :picture_asset_token
|
10
|
+
|
11
|
+
attr_accessor :descriptionXML
|
12
|
+
|
13
|
+
attr_accessor :preview_frame_time_code
|
14
|
+
|
15
|
+
attr_accessor :video_url
|
16
|
+
|
17
|
+
attr_accessor :preview_image_url
|
18
|
+
|
19
|
+
attr_accessor :full_sized_preview_image_url
|
20
|
+
|
21
|
+
attr_accessor :device_type
|
22
|
+
|
23
|
+
attr_accessor :language
|
24
|
+
|
25
|
+
attr_mapping(
|
26
|
+
'videoAssetToken' => :video_asset_token,
|
27
|
+
'pictureAssetToken' => :picture_asset_token,
|
28
|
+
'descriptionXML' => :descriptionXML,
|
29
|
+
'previewFrameTimeCode' => :preview_frame_time_code,
|
30
|
+
'isPortrait' => :is_portrait,
|
31
|
+
'videoUrl' => :video_url,
|
32
|
+
'previewImageUrl' => :preview_image_url,
|
33
|
+
'fullSizedPreviewImageUrl' => :full_sized_preview_image_url,
|
34
|
+
'contentType' => :content_type,
|
35
|
+
'videoStatus' => :video_status
|
36
|
+
)
|
37
|
+
|
38
|
+
def reset!(attrs = {})
|
39
|
+
update_raw_data!({
|
40
|
+
video_asset_token: nil,
|
41
|
+
picture_asset_token: nil,
|
42
|
+
descriptionXML: nil,
|
43
|
+
preview_frame_time_code: nil,
|
44
|
+
is_portrait: nil,
|
45
|
+
video_url: nil,
|
46
|
+
preview_image_url: nil,
|
47
|
+
full_sized_preview_image_url: nil,
|
48
|
+
content_type: nil,
|
49
|
+
video_status: nil,
|
50
|
+
device_type: nil,
|
51
|
+
language: nil
|
52
|
+
}.merge(attrs))
|
53
|
+
end
|
54
|
+
|
55
|
+
private
|
56
|
+
|
57
|
+
def update_raw_data!(hash)
|
58
|
+
hash.each do |k, v|
|
59
|
+
self.send("#{k}=", v)
|
60
|
+
end
|
61
|
+
end
|
62
|
+
end
|
63
|
+
end
|
64
|
+
end
|
@@ -0,0 +1,961 @@
|
|
1
|
+
|
2
|
+
require_relative 'tunes_client'
|
3
|
+
require_relative 'app_trailer'
|
4
|
+
require_relative 'app_screenshot'
|
5
|
+
require_relative 'app_image'
|
6
|
+
require_relative 'display_family'
|
7
|
+
require_relative 'app_version_generated_promocodes'
|
8
|
+
require_relative 'language_item'
|
9
|
+
require_relative 'transit_app_file'
|
10
|
+
require_relative 'build'
|
11
|
+
require_relative 'app_status'
|
12
|
+
require_relative 'app_review_attachment'
|
13
|
+
|
14
|
+
module Spaceship
|
15
|
+
module Tunes
|
16
|
+
# Represents an editable version of an App Store Connect Application
|
17
|
+
# This can either be the live or the edit version retrieved via the app
|
18
|
+
# rubocop:disable Metrics/ClassLength
|
19
|
+
class AppVersion < TunesBase
|
20
|
+
# @return (Spaceship::Tunes::Application) A reference to the application
|
21
|
+
# this version is for
|
22
|
+
attr_accessor :application
|
23
|
+
|
24
|
+
# @return (String) The platform value of this version.
|
25
|
+
attr_accessor :platform
|
26
|
+
|
27
|
+
# @return (String) The version number of this version
|
28
|
+
attr_accessor :version
|
29
|
+
|
30
|
+
# @return (String) The copyright information of this app
|
31
|
+
attr_accessor :copyright
|
32
|
+
|
33
|
+
# @return (String) The appType number of this version
|
34
|
+
attr_accessor :app_type
|
35
|
+
|
36
|
+
# @return (Spaceship::Tunes::AppStatus) What's the current status of this app
|
37
|
+
# e.g. Waiting for Review, Ready for Sale, ...
|
38
|
+
attr_reader :app_status
|
39
|
+
|
40
|
+
# @return (Bool) Is that the version that's currently available in the App Store?
|
41
|
+
attr_accessor :is_live
|
42
|
+
|
43
|
+
# @return (String) App Status (e.g. 'readyForSale'). You should use `app_status` instead
|
44
|
+
attr_accessor :raw_status
|
45
|
+
|
46
|
+
# @return (String) Build Version
|
47
|
+
attr_accessor :build_version
|
48
|
+
|
49
|
+
# @return (Bool)
|
50
|
+
attr_accessor :can_reject_version
|
51
|
+
|
52
|
+
# @return (Bool)
|
53
|
+
attr_accessor :can_prepare_for_upload
|
54
|
+
|
55
|
+
# @return (Bool)
|
56
|
+
attr_accessor :can_send_version_live
|
57
|
+
|
58
|
+
# @return (Bool) Should the app automatically be released once it's approved?
|
59
|
+
attr_accessor :release_on_approval
|
60
|
+
|
61
|
+
# @return (Fixnum) Milliseconds for releasing in GMT (e.g. 1480435200000 = Tue, 29 Nov 2016 16:00:00 GMT).
|
62
|
+
# Use nil to unset. Setting this will supercede the release_on_approval field, so this field must be nil
|
63
|
+
# for release_on_approval to be used.
|
64
|
+
attr_accessor :auto_release_date
|
65
|
+
|
66
|
+
# @return (Bool) Should the rating of the app be reset?
|
67
|
+
attr_accessor :ratings_reset
|
68
|
+
|
69
|
+
# @return (Bool)
|
70
|
+
attr_accessor :can_beta_test
|
71
|
+
|
72
|
+
# @return (Bool) Does the binary contain a watch binary?
|
73
|
+
attr_accessor :supports_apple_watch
|
74
|
+
|
75
|
+
# @return (Spaceship::Tunes::AppImage) the structure containing information about the large app icon (1024x1024)
|
76
|
+
attr_accessor :large_app_icon
|
77
|
+
|
78
|
+
# @return (Spaceship::Tunes::AppImage) the structure containing information about the large watch icon (1024x1024)
|
79
|
+
attr_accessor :watch_app_icon
|
80
|
+
|
81
|
+
# @return (Integer) a unqiue ID for this version generated by App Store Connect
|
82
|
+
attr_accessor :version_id
|
83
|
+
|
84
|
+
# @return (Spaceship::Tunes::AppReviewAttachment) the structure containing information about the review attachment file
|
85
|
+
attr_accessor :review_attachment_file
|
86
|
+
|
87
|
+
####
|
88
|
+
# GeoJson
|
89
|
+
####
|
90
|
+
# @return (Spaceship::Tunes::TransitAppFile) the structure containing information about the geo json. Can be nil
|
91
|
+
attr_accessor :transit_app_file
|
92
|
+
|
93
|
+
####
|
94
|
+
# Trade Representative Contact Information
|
95
|
+
####
|
96
|
+
# @return (String) Trade Representative Contact Information Trade Name. This attribute isn't editable
|
97
|
+
attr_accessor :trade_representative_trade_name
|
98
|
+
|
99
|
+
# @return (String) Trade Representative Contact Information First Name
|
100
|
+
attr_accessor :trade_representative_first_name
|
101
|
+
|
102
|
+
# @return (String) Trade Representative Contact Information Last Name
|
103
|
+
attr_accessor :trade_representative_last_name
|
104
|
+
|
105
|
+
# @return (String) Trade Representative Contact Information Address Line 1
|
106
|
+
attr_accessor :trade_representative_address_line_1
|
107
|
+
|
108
|
+
# @return (String) Trade Representative Contact Information Address Line 2
|
109
|
+
attr_accessor :trade_representative_address_line_2
|
110
|
+
|
111
|
+
# @return (String) Trade Representative Contact Information Address Line 3
|
112
|
+
attr_accessor :trade_representative_address_line_3
|
113
|
+
|
114
|
+
# @return (String) Trade Representative Contact Information City Name
|
115
|
+
attr_accessor :trade_representative_city_name
|
116
|
+
|
117
|
+
# @return (String) Trade Representative Contact Information State
|
118
|
+
attr_accessor :trade_representative_state
|
119
|
+
|
120
|
+
# @return (String) Trade Representative Contact Information Country
|
121
|
+
attr_accessor :trade_representative_country
|
122
|
+
|
123
|
+
# @return (String) Trade Representative Contact Information Postal Code
|
124
|
+
attr_accessor :trade_representative_postal_code
|
125
|
+
|
126
|
+
# @return (String) Trade Representative Contact Information Phone Number
|
127
|
+
attr_accessor :trade_representative_phone_number
|
128
|
+
|
129
|
+
# @return (String) Trade Representative Contact Information Email Address
|
130
|
+
attr_accessor :trade_representative_email
|
131
|
+
|
132
|
+
# @return (Boolean) Display Trade Representative Contact Information on the Korean App Store or not
|
133
|
+
attr_accessor :trade_representative_is_displayed_on_app_store
|
134
|
+
|
135
|
+
####
|
136
|
+
# App Review Information
|
137
|
+
####
|
138
|
+
# @return (String) App Review Information First Name
|
139
|
+
attr_accessor :review_first_name
|
140
|
+
|
141
|
+
# @return (String) App Review Information Last Name
|
142
|
+
attr_accessor :review_last_name
|
143
|
+
|
144
|
+
# @return (String) App Review Information Phone Number
|
145
|
+
attr_accessor :review_phone_number
|
146
|
+
|
147
|
+
# @return (String) App Review Information Email Address
|
148
|
+
attr_accessor :review_email
|
149
|
+
|
150
|
+
# @return (Boolean) The checkbox that indiciates if a demo account
|
151
|
+
# is needed. Is set automatically depending on if a user and pass
|
152
|
+
# are set
|
153
|
+
attr_reader :review_user_needed
|
154
|
+
|
155
|
+
# @return (String) App Review Information Demo Account User Name
|
156
|
+
attr_accessor :review_demo_user
|
157
|
+
|
158
|
+
# @return (String) App Review Information Demo Account Password
|
159
|
+
attr_accessor :review_demo_password
|
160
|
+
|
161
|
+
# @return (String) App Review Information Notes
|
162
|
+
attr_accessor :review_notes
|
163
|
+
|
164
|
+
####
|
165
|
+
# Localized values
|
166
|
+
####
|
167
|
+
|
168
|
+
# @return (Array) Raw access the all available languages. You shouldn't use it probably
|
169
|
+
attr_accessor :languages
|
170
|
+
|
171
|
+
# @return (Hash) A hash representing the keywords in all languages
|
172
|
+
attr_reader :keywords
|
173
|
+
|
174
|
+
# @return (Hash) A hash representing the promotionalText in all languages
|
175
|
+
attr_reader :promotional_text
|
176
|
+
|
177
|
+
# @return (Hash) A hash representing the description in all languages
|
178
|
+
attr_reader :description
|
179
|
+
|
180
|
+
# @return (Hash) The changelog
|
181
|
+
attr_reader :release_notes
|
182
|
+
|
183
|
+
# @return (Hash) A hash representing the support url in all languages
|
184
|
+
attr_reader :support_url
|
185
|
+
|
186
|
+
# @return (Hash) A hash representing the marketing url in all languages
|
187
|
+
attr_reader :marketing_url
|
188
|
+
|
189
|
+
# @return (Hash) Represents the screenshots of this app version (read-only)
|
190
|
+
attr_reader :screenshots
|
191
|
+
|
192
|
+
# @return (Hash) Represents the trailers of this app version (read-only)
|
193
|
+
attr_reader :trailers
|
194
|
+
|
195
|
+
# @return (Hash) Represents the phased_release hash (read-only)
|
196
|
+
# For now, please use the `toggle_phased_release` method and call `.save!`
|
197
|
+
# as the API will probably change in the future
|
198
|
+
attr_reader :phased_release
|
199
|
+
|
200
|
+
# Currently phased_release doesn't seem to have all the features enabled
|
201
|
+
#
|
202
|
+
# => {"state"=>{"value"=>"NOT_STARTED", "isEditable"=>true, "isRequired"=>false, "errorKeys"=>nil},
|
203
|
+
# "startDate"=>nil,
|
204
|
+
# "lastPaused"=>nil,
|
205
|
+
# "pausedDuration"=>nil,
|
206
|
+
# "totalPauseDays"=>30,
|
207
|
+
# "currentDayNumber"=>nil,
|
208
|
+
# "dayPercentageMap"=>{"1"=>1, "2"=>2, "3"=>5, "4"=>10, "5"=>20, "6"=>50, "7"=>100},
|
209
|
+
# "isEnabled"=>true}
|
210
|
+
#
|
211
|
+
def toggle_phased_release(enabled: false)
|
212
|
+
state = (enabled ? "INACTIVE" : "NOT_STARTED")
|
213
|
+
|
214
|
+
self.phased_release["state"]["value"] = state
|
215
|
+
end
|
216
|
+
|
217
|
+
attr_mapping({
|
218
|
+
'appType' => :app_type,
|
219
|
+
'platform' => :platform,
|
220
|
+
'canBetaTest' => :can_beta_test,
|
221
|
+
'canPrepareForUpload' => :can_prepare_for_upload,
|
222
|
+
'canRejectVersion' => :can_reject_version,
|
223
|
+
'canSendVersionLive' => :can_send_version_live,
|
224
|
+
'copyright.value' => :copyright,
|
225
|
+
'details.value' => :languages,
|
226
|
+
'largeAppIcon.value.originalFileName' => :app_icon_original_name,
|
227
|
+
'largeAppIcon.value.url' => :app_icon_url,
|
228
|
+
'releaseOnApproval.value' => :release_on_approval,
|
229
|
+
'autoReleaseDate.value' => :auto_release_date,
|
230
|
+
'ratingsReset.value' => :ratings_reset,
|
231
|
+
'status' => :raw_status,
|
232
|
+
'preReleaseBuild.buildVersion' => :build_version,
|
233
|
+
'supportsAppleWatch' => :supports_apple_watch,
|
234
|
+
'versionId' => :version_id,
|
235
|
+
'version.value' => :version,
|
236
|
+
'phasedRelease' => :phased_release,
|
237
|
+
|
238
|
+
# GeoJson
|
239
|
+
# 'transitAppFile.value' => :transit_app_file
|
240
|
+
|
241
|
+
# Trade Representative Contact Information
|
242
|
+
|
243
|
+
'appStoreInfo.tradeName.value' => :trade_representative_trade_name,
|
244
|
+
'appStoreInfo.firstName.value' => :trade_representative_first_name,
|
245
|
+
'appStoreInfo.lastName.value' => :trade_representative_last_name,
|
246
|
+
'appStoreInfo.addressLine1.value' => :trade_representative_address_line_1,
|
247
|
+
'appStoreInfo.addressLine2.value' => :trade_representative_address_line_2,
|
248
|
+
'appStoreInfo.addressLine3.value' => :trade_representative_address_line_3,
|
249
|
+
'appStoreInfo.cityName.value' => :trade_representative_city_name,
|
250
|
+
'appStoreInfo.state.value' => :trade_representative_state,
|
251
|
+
'appStoreInfo.country.value' => :trade_representative_country,
|
252
|
+
'appStoreInfo.postalCode.value' => :trade_representative_postal_code,
|
253
|
+
'appStoreInfo.phoneNumber.value' => :trade_representative_phone_number,
|
254
|
+
'appStoreInfo.emailAddress.value' => :trade_representative_email,
|
255
|
+
'appStoreInfo.shouldDisplayInStore.value' => :trade_representative_is_displayed_on_app_store,
|
256
|
+
|
257
|
+
# App Review Information
|
258
|
+
'appReviewInfo.firstName.value' => :review_first_name,
|
259
|
+
'appReviewInfo.lastName.value' => :review_last_name,
|
260
|
+
'appReviewInfo.phoneNumber.value' => :review_phone_number,
|
261
|
+
'appReviewInfo.emailAddress.value' => :review_email,
|
262
|
+
'appReviewInfo.reviewNotes.value' => :review_notes,
|
263
|
+
'appReviewInfo.accountRequired.value' => :review_user_needed,
|
264
|
+
'appReviewInfo.userName.value' => :review_demo_user,
|
265
|
+
'appReviewInfo.password.value' => :review_demo_password
|
266
|
+
})
|
267
|
+
|
268
|
+
class << self
|
269
|
+
# Create a new object based on a hash.
|
270
|
+
# This is used to create a new object based on the server response.
|
271
|
+
def factory(attrs)
|
272
|
+
obj = self.new(attrs)
|
273
|
+
obj.unfold_languages
|
274
|
+
|
275
|
+
return obj
|
276
|
+
end
|
277
|
+
|
278
|
+
# @param application (Spaceship::Tunes::Application) The app this version is for
|
279
|
+
# @param app_id (String) The unique Apple ID of this app
|
280
|
+
# @param is_live (Boolean)
|
281
|
+
def find(application, app_id, is_live, platform: nil)
|
282
|
+
# we only support applications
|
283
|
+
raise "We do not support BUNDLE types right now" if application.type == 'BUNDLE'
|
284
|
+
|
285
|
+
# too bad the "id" field is empty, it forces us to make more requests to the server
|
286
|
+
# these could also be cached
|
287
|
+
attrs = client.app_version(app_id, is_live, platform: platform)
|
288
|
+
return nil unless attrs
|
289
|
+
|
290
|
+
attrs[:application] = application
|
291
|
+
attrs[:is_live] = is_live
|
292
|
+
|
293
|
+
return self.factory(attrs)
|
294
|
+
end
|
295
|
+
end
|
296
|
+
|
297
|
+
# @return (Bool) Is that version currently available in the App Store?
|
298
|
+
def is_live?
|
299
|
+
is_live
|
300
|
+
end
|
301
|
+
|
302
|
+
def review_user_needed
|
303
|
+
(self.review_demo_user.to_s + self.review_demo_password.to_s).length > 0
|
304
|
+
end
|
305
|
+
|
306
|
+
# Call this method to make sure the given languages are available for this app
|
307
|
+
# You should call this method before accessing the name, description and other localized values
|
308
|
+
# This will create the new language if it's not available yet and do nothing if everything's there
|
309
|
+
# Important: Due to a bug you have to fetch the `edit_version` again, as it doesn't get refreshed immediately
|
310
|
+
def create_languages(languages)
|
311
|
+
languages = [languages] if languages.kind_of?(String)
|
312
|
+
raise "Please pass an array" unless languages.kind_of?(Array)
|
313
|
+
|
314
|
+
copy_from = self.languages.find { |a| a['language'] == 'en-US' } || self.languages.first
|
315
|
+
|
316
|
+
languages.each do |language|
|
317
|
+
# First, see if it's already available
|
318
|
+
found = self.languages.find do |local|
|
319
|
+
local['language'] == language
|
320
|
+
end
|
321
|
+
next if found
|
322
|
+
|
323
|
+
new_language = copy_from.clone
|
324
|
+
new_language['language'] = language
|
325
|
+
|
326
|
+
self.languages << new_language
|
327
|
+
end
|
328
|
+
nil
|
329
|
+
end
|
330
|
+
|
331
|
+
def current_build_number
|
332
|
+
if self.is_live?
|
333
|
+
build_version
|
334
|
+
else
|
335
|
+
if candidate_builds.length > 0
|
336
|
+
candidate_builds.sort_by(&:upload_date).last.build_version
|
337
|
+
end
|
338
|
+
end
|
339
|
+
end
|
340
|
+
|
341
|
+
# Returns an array of all builds that can be sent to review
|
342
|
+
def candidate_builds
|
343
|
+
res = client.candidate_builds(self.application.apple_id, self.version_id)
|
344
|
+
builds = []
|
345
|
+
res.each do |attrs|
|
346
|
+
next unless attrs["type"] == "BUILD" # I don't know if it can be something else.
|
347
|
+
attrs[:apple_id] = self.application.apple_id
|
348
|
+
builds << Tunes::Build.factory(attrs)
|
349
|
+
end
|
350
|
+
return builds
|
351
|
+
end
|
352
|
+
|
353
|
+
# Select a build to be submitted for Review.
|
354
|
+
# You have to pass a build you got from - candidate_builds
|
355
|
+
# Don't forget to call save! after calling this method
|
356
|
+
def select_build(build)
|
357
|
+
raw_data.set(['preReleaseBuildVersionString', 'value'], build.build_version)
|
358
|
+
raw_data.set(['preReleaseBuildTrainVersionString'], build.train_version)
|
359
|
+
raw_data.set(['preReleaseBuildUploadDate'], build.upload_date)
|
360
|
+
true
|
361
|
+
end
|
362
|
+
|
363
|
+
# Set the age restriction rating
|
364
|
+
# Call it like this:
|
365
|
+
# v.update_rating({
|
366
|
+
# 'CARTOON_FANTASY_VIOLENCE' => 0,
|
367
|
+
# 'MATURE_SUGGESTIVE' => 2,
|
368
|
+
# 'UNRESTRICTED_WEB_ACCESS' => 0,
|
369
|
+
# 'GAMBLING_CONTESTS' => 0
|
370
|
+
# })
|
371
|
+
#
|
372
|
+
# Available Values
|
373
|
+
# https://docs.fastlane.tools/actions/deliver/#reference
|
374
|
+
def update_rating(hash)
|
375
|
+
raise "Must be a hash" unless hash.kind_of?(Hash)
|
376
|
+
|
377
|
+
hash.each do |key, value|
|
378
|
+
to_edit = self.raw_data['ratings']['nonBooleanDescriptors'].find do |current|
|
379
|
+
current['name'].include?(key)
|
380
|
+
end
|
381
|
+
|
382
|
+
if to_edit
|
383
|
+
to_set = "NONE" if value == 0
|
384
|
+
to_set = "INFREQUENT_MILD" if value == 1
|
385
|
+
to_set = "FREQUENT_INTENSE" if value == 2
|
386
|
+
raise "Invalid value '#{value}' for '#{key}', must be 0-2" unless to_set
|
387
|
+
to_edit['level'] = "ITC.apps.ratings.level.#{to_set}"
|
388
|
+
else
|
389
|
+
# Maybe it's a boolean descriptor?
|
390
|
+
to_edit = self.raw_data['ratings']['booleanDescriptors'].find do |current|
|
391
|
+
current['name'].include?(key)
|
392
|
+
end
|
393
|
+
|
394
|
+
if to_edit
|
395
|
+
to_set = "NO"
|
396
|
+
to_set = "YES" if value.to_i > 0
|
397
|
+
to_edit['level'] = "ITC.apps.ratings.level.#{to_set}"
|
398
|
+
else
|
399
|
+
raise "Could not find option '#{key}' in the list of available options"
|
400
|
+
end
|
401
|
+
end
|
402
|
+
end
|
403
|
+
true
|
404
|
+
end
|
405
|
+
|
406
|
+
# Push all changes that were made back to App Store Connect
|
407
|
+
def save!
|
408
|
+
client.update_app_version!(application.apple_id, self.version_id, raw_data)
|
409
|
+
end
|
410
|
+
|
411
|
+
# @return (String) An URL to this specific resource. You can enter this URL into your browser
|
412
|
+
def url
|
413
|
+
url = "https://appstoreconnect.apple.com/WebObjects/iTunesConnect.woa/ra/ng/app/#{application.apple_id}/#{self.platform}/versioninfo/"
|
414
|
+
url += "deliverable" if self.is_live?
|
415
|
+
return url
|
416
|
+
end
|
417
|
+
|
418
|
+
# Private methods
|
419
|
+
def setup
|
420
|
+
status = raw_data['status']
|
421
|
+
@app_status = Tunes::AppStatus.get_from_string(status)
|
422
|
+
|
423
|
+
setup_large_app_icon
|
424
|
+
setup_watch_app_icon
|
425
|
+
setup_review_attachment_file if supports_review_attachment_file?
|
426
|
+
setup_transit_app_file if supports_app_transit?
|
427
|
+
setup_screenshots
|
428
|
+
setup_trailers
|
429
|
+
end
|
430
|
+
|
431
|
+
# This method will generate the required keys/values
|
432
|
+
# for App Store Connect to validate the uploaded image
|
433
|
+
def generate_image_metadata(image_data, original_file_name)
|
434
|
+
{
|
435
|
+
assetToken: image_data["token"],
|
436
|
+
originalFileName: original_file_name,
|
437
|
+
size: image_data["length"],
|
438
|
+
height: image_data["height"],
|
439
|
+
width: image_data["width"],
|
440
|
+
checksum: image_data["md5"]
|
441
|
+
}
|
442
|
+
end
|
443
|
+
|
444
|
+
# This method will generate the required keys/values
|
445
|
+
# for App Store Connect to validate the review attachment file
|
446
|
+
def generate_review_attachment_file(review_attachment_data, review_attachment_file)
|
447
|
+
{
|
448
|
+
assetToken: review_attachment_data["token"],
|
449
|
+
name: File.basename(review_attachment_file),
|
450
|
+
fileType: Utilities.content_type(review_attachment_file),
|
451
|
+
url: nil
|
452
|
+
}
|
453
|
+
end
|
454
|
+
|
455
|
+
# Uploads or removes the large icon
|
456
|
+
# @param icon_path (String): The path to the icon. Use nil to remove it
|
457
|
+
def upload_large_icon!(icon_path)
|
458
|
+
unless icon_path
|
459
|
+
@large_app_icon.reset!
|
460
|
+
return
|
461
|
+
end
|
462
|
+
upload_image = UploadFile.from_path(icon_path)
|
463
|
+
image_data = client.upload_large_icon(self, upload_image)
|
464
|
+
|
465
|
+
raw_data["largeAppIcon"]["value"] = generate_image_metadata(image_data, upload_image.file_name)
|
466
|
+
end
|
467
|
+
|
468
|
+
# Uploads or removes the watch icon
|
469
|
+
# @param icon_path (String): The path to the icon. Use nil to remove it
|
470
|
+
def upload_watch_icon!(icon_path)
|
471
|
+
unless icon_path
|
472
|
+
@watch_app_icon.reset!
|
473
|
+
return
|
474
|
+
end
|
475
|
+
upload_image = UploadFile.from_path(icon_path)
|
476
|
+
image_data = client.upload_watch_icon(self, upload_image)
|
477
|
+
|
478
|
+
raw_data["watchAppIcon"]["value"] = generate_image_metadata(image_data, upload_image.file_name)
|
479
|
+
end
|
480
|
+
|
481
|
+
# Uploads or removes the transit app file
|
482
|
+
# @param icon_path (String): The path to the geojson file. Use nil to remove it
|
483
|
+
def upload_geojson!(geojson_path)
|
484
|
+
unless geojson_path
|
485
|
+
raw_data["transitAppFile"]["value"] = nil
|
486
|
+
@transit_app_file = nil
|
487
|
+
return
|
488
|
+
end
|
489
|
+
upload_file = UploadFile.from_path(geojson_path)
|
490
|
+
geojson_data = client.upload_geojson(self, upload_file)
|
491
|
+
|
492
|
+
@transit_app_file = Tunes::TransitAppFile.factory({}) if @transit_app_file.nil?
|
493
|
+
@transit_app_file .url = nil # response.headers['Location']
|
494
|
+
@transit_app_file.asset_token = geojson_data["token"]
|
495
|
+
@transit_app_file.name = upload_file.file_name
|
496
|
+
@transit_app_file.time_stamp = Time.now.to_i * 1000 # works without but...
|
497
|
+
end
|
498
|
+
|
499
|
+
# Uploads or removes a screenshot
|
500
|
+
# @param icon_path (String): The path to the screenshot. Use nil to remove it
|
501
|
+
# @param sort_order (Fixnum): The sort_order, from 1 to 5
|
502
|
+
# @param language (String): The language for this screenshot
|
503
|
+
# @param device (string): The device for this screenshot
|
504
|
+
# @param is_messages (Bool): True if the screenshot is for iMessage
|
505
|
+
def upload_screenshot!(screenshot_path, sort_order, language, device, is_messages)
|
506
|
+
raise "sort_order must be higher than 0" unless sort_order > 0
|
507
|
+
raise "sort_order must not be > 10" if sort_order > 10
|
508
|
+
# this will also check both language and device parameters
|
509
|
+
device_lang_screenshots = screenshots_data_for_language_and_device(language, device, is_messages)["value"]
|
510
|
+
|
511
|
+
existing_sort_orders = device_lang_screenshots.map { |s| s["value"]["sortOrder"] }
|
512
|
+
if screenshot_path # adding / replacing
|
513
|
+
upload_file = UploadFile.from_path(screenshot_path)
|
514
|
+
screenshot_data = client.upload_screenshot(self, upload_file, device, is_messages)
|
515
|
+
|
516
|
+
# Since October 2016 we also need to pass the size, height, width and checksum
|
517
|
+
# otherwise App Store Connect validation will fail at a later point
|
518
|
+
new_screenshot = {
|
519
|
+
"value" => {
|
520
|
+
"assetToken" => screenshot_data["token"],
|
521
|
+
"sortOrder" => sort_order,
|
522
|
+
"originalFileName" => upload_file.file_name,
|
523
|
+
"size" => screenshot_data["length"],
|
524
|
+
"height" => screenshot_data["height"],
|
525
|
+
"width" => screenshot_data["width"],
|
526
|
+
"checksum" => screenshot_data["md5"]
|
527
|
+
}
|
528
|
+
}
|
529
|
+
|
530
|
+
# We disable "scaling" for this device type / language combination
|
531
|
+
# We only set this, if we actually successfully uploaded a new screenshot
|
532
|
+
# for this device / language combination
|
533
|
+
# if this value is not set, iTC will fallback to another device type for screenshots
|
534
|
+
language_details = raw_data_details.find { |d| d["language"] == language }["displayFamilies"]["value"]
|
535
|
+
device_language_details = language_details.find { |display_family| display_family['name'] == device }
|
536
|
+
scaled_key = is_messages ? "messagesScaled" : "scaled"
|
537
|
+
device_language_details[scaled_key]["value"] = false
|
538
|
+
|
539
|
+
if existing_sort_orders.include?(sort_order) # replace
|
540
|
+
device_lang_screenshots[existing_sort_orders.index(sort_order)] = new_screenshot
|
541
|
+
else # add
|
542
|
+
device_lang_screenshots << new_screenshot
|
543
|
+
end
|
544
|
+
else # removing
|
545
|
+
raise "cannot remove screenshot with non existing sort_order" unless existing_sort_orders.include?(sort_order)
|
546
|
+
device_lang_screenshots.delete_at(existing_sort_orders.index(sort_order))
|
547
|
+
end
|
548
|
+
setup_screenshots
|
549
|
+
end
|
550
|
+
|
551
|
+
# Uploads, removes a trailer video
|
552
|
+
#
|
553
|
+
# A preview image for the video is required by ITC and is usually automatically extracted by your browser.
|
554
|
+
# This method will either automatically extract it from the video (using `ffmpeg`) or allow you
|
555
|
+
# to specify it using +preview_image_path+.
|
556
|
+
# If the preview image is specified, `ffmpeg` will not be used. The image resolution will be checked against
|
557
|
+
# expectations (which might be different from the trailer resolution.
|
558
|
+
#
|
559
|
+
# It is recommended to extract the preview image using the spaceship related tools in order to ensure
|
560
|
+
# the appropriate format and resolution are used.
|
561
|
+
#
|
562
|
+
# Note: to extract its resolution and a screenshot preview, the `ffmpeg` tool will be used
|
563
|
+
#
|
564
|
+
# @param trailer_path (String): The path to the trailer. Use nil to remove it
|
565
|
+
# @param sort_order (Fixnum): The sort_order, from 1 to 5
|
566
|
+
# @param language (String): The language for this screenshot
|
567
|
+
# @param device (String): The device for this screenshot
|
568
|
+
# @param timestamp (String): The optional timestamp of the screenshot to grab
|
569
|
+
# @param preview_image_path (String): The optional image path for the video preview
|
570
|
+
def upload_trailer!(trailer_path, sort_order, language, device, timestamp = "05.00", preview_image_path = nil)
|
571
|
+
raise "No app trailer supported for iphone35" if device == 'iphone35'
|
572
|
+
raise "sort_order must be higher than 0" unless sort_order > 0
|
573
|
+
raise "sort_order must not be > 3" if sort_order > 3
|
574
|
+
|
575
|
+
device_lang_trailers = trailer_data_for_language_and_device(language, device)["value"]
|
576
|
+
existing_sort_orders = device_lang_trailers.map { |s| s["value"]["sortPosition"] }
|
577
|
+
|
578
|
+
if trailer_path # adding / replacing trailer
|
579
|
+
raise "Invalid timestamp #{timestamp}" if (timestamp =~ /^[0-9][0-9].[0-9][0-9]$/).nil?
|
580
|
+
|
581
|
+
if preview_image_path
|
582
|
+
check_preview_screenshot_resolution(preview_image_path, device)
|
583
|
+
video_preview_path = preview_image_path
|
584
|
+
else
|
585
|
+
# IDEA: optimization, we could avoid fetching the screenshot if the timestamp hasn't changed
|
586
|
+
video_preview_resolution = video_preview_resolution_for(device, trailer_path)
|
587
|
+
|
588
|
+
# Keep a reference of the video_preview here to avoid Ruby getting rid of the Tempfile in the meanwhile
|
589
|
+
video_preview = Utilities.grab_video_preview(trailer_path, timestamp, video_preview_resolution)
|
590
|
+
video_preview_path = video_preview.path
|
591
|
+
end
|
592
|
+
video_preview_file = UploadFile.from_path(video_preview_path)
|
593
|
+
video_preview_data = client.upload_trailer_preview(self, video_preview_file, device)
|
594
|
+
|
595
|
+
upload_file = UploadFile.from_path(trailer_path)
|
596
|
+
trailer_data = client.upload_trailer(self, upload_file)
|
597
|
+
|
598
|
+
ts = "00:00:#{timestamp}"
|
599
|
+
ts[8] = ':'
|
600
|
+
|
601
|
+
new_trailer = {
|
602
|
+
"value" => {
|
603
|
+
"videoAssetToken" => trailer_data["responses"][0]["token"],
|
604
|
+
"descriptionXML" => trailer_data["responses"][0]["descriptionDoc"],
|
605
|
+
"contentType" => upload_file.content_type,
|
606
|
+
"sortPosition" => sort_order,
|
607
|
+
"size" => video_preview_data["length"],
|
608
|
+
"width" => video_preview_data["width"],
|
609
|
+
"height" => video_preview_data["height"],
|
610
|
+
"checksum" => video_preview_data["md5"],
|
611
|
+
"pictureAssetToken" => video_preview_data["token"],
|
612
|
+
"previewFrameTimeCode" => ts.to_s,
|
613
|
+
"isPortrait" => Utilities.portrait?(video_preview_path)
|
614
|
+
}
|
615
|
+
}
|
616
|
+
|
617
|
+
if existing_sort_orders.include?(sort_order) # replace
|
618
|
+
device_lang_trailers[existing_sort_orders.index(sort_order)] = new_trailer
|
619
|
+
else # add
|
620
|
+
device_lang_trailers << new_trailer
|
621
|
+
end
|
622
|
+
else # removing trailer
|
623
|
+
raise "cannot remove trailer with non existing sort_order" unless existing_sort_orders.include?(sort_order)
|
624
|
+
device_lang_trailers.delete_at(existing_sort_orders.index(sort_order))
|
625
|
+
end
|
626
|
+
setup_trailers
|
627
|
+
end
|
628
|
+
|
629
|
+
# Uploads, app review attachments
|
630
|
+
#
|
631
|
+
# while submitting for review, ITC allow developers to attach file.
|
632
|
+
#
|
633
|
+
# Following list can be found at https://appstoreconnect.apple.com
|
634
|
+
# on iOS app edit version, above the attachment label/button there is
|
635
|
+
# a question mark if it is press the a dialog is shown which has the list.
|
636
|
+
#
|
637
|
+
# File types allowed by Apple are: pdf, doc, docx, rtf, pages, xls, xlsx, numbers
|
638
|
+
# zip, rar, plist, crash, jpg, png, mp4 or avi.
|
639
|
+
#
|
640
|
+
#
|
641
|
+
# @param review_attachment_path (String): The path to the attachment file.
|
642
|
+
def upload_review_attachment!(review_attachment_path)
|
643
|
+
raise 'cannot upload review attachment for live edition.' if self.is_live?
|
644
|
+
|
645
|
+
if !review_attachment_path || review_attachment_path.size < 1
|
646
|
+
@review_attachment_file.reset!
|
647
|
+
return
|
648
|
+
end
|
649
|
+
|
650
|
+
raise "cannot find file: #{review_attachment_path}." unless File.exist?(review_attachment_path)
|
651
|
+
|
652
|
+
review_attachment_file = UploadFile.from_path(review_attachment_path)
|
653
|
+
review_attachment_data = client.upload_app_review_attachment(self, review_attachment_file)
|
654
|
+
raw_data["appReviewInfo"]["attachmentFiles"]["value"] = generate_review_attachment_file(review_attachment_data, review_attachment_path)
|
655
|
+
end
|
656
|
+
|
657
|
+
# Prefill name, keywords, etc...
|
658
|
+
def unfold_languages
|
659
|
+
{
|
660
|
+
keywords: :keywords,
|
661
|
+
description: :description,
|
662
|
+
supportUrl: :support_url,
|
663
|
+
marketingUrl: :marketing_url,
|
664
|
+
releaseNotes: :release_notes,
|
665
|
+
promotionalText: :promotional_text
|
666
|
+
}.each do |json, attribute|
|
667
|
+
instance_variable_set("@#{attribute}".to_sym, LanguageItem.new(json, languages))
|
668
|
+
end
|
669
|
+
end
|
670
|
+
|
671
|
+
def release!
|
672
|
+
client.release!(self.application.apple_id, self.version_id)
|
673
|
+
end
|
674
|
+
|
675
|
+
def release_to_all_users!
|
676
|
+
client.release_to_all_users!(self.application.apple_id, self.version_id)
|
677
|
+
end
|
678
|
+
|
679
|
+
#####################################################
|
680
|
+
# @!group Promo codes
|
681
|
+
#####################################################
|
682
|
+
def generate_promocodes!(quantity)
|
683
|
+
data = client.generate_app_version_promocodes!(
|
684
|
+
app_id: self.application.apple_id,
|
685
|
+
version_id: self.version_id,
|
686
|
+
quantity: quantity
|
687
|
+
)
|
688
|
+
Tunes::AppVersionGeneratedPromocodes.factory(data)
|
689
|
+
end
|
690
|
+
|
691
|
+
# These methods takes care of properly parsing values that
|
692
|
+
# are not returned in the right format, e.g. boolean as string
|
693
|
+
def release_on_approval
|
694
|
+
super == 'true'
|
695
|
+
end
|
696
|
+
|
697
|
+
def supports_apple_watch
|
698
|
+
!super.nil?
|
699
|
+
end
|
700
|
+
|
701
|
+
def reject!
|
702
|
+
raise 'Version not rejectable' unless can_reject_version
|
703
|
+
client.reject!(self.application.apple_id, self.version_id)
|
704
|
+
end
|
705
|
+
|
706
|
+
private
|
707
|
+
|
708
|
+
def setup_large_app_icon
|
709
|
+
large_app_icon = raw_data["largeAppIcon"]["value"]
|
710
|
+
@large_app_icon = nil
|
711
|
+
@large_app_icon = Tunes::AppImage.factory(large_app_icon) if large_app_icon
|
712
|
+
end
|
713
|
+
|
714
|
+
def setup_watch_app_icon
|
715
|
+
watch_app_icon = raw_data["watchAppIcon"]["value"]
|
716
|
+
@watch_app_icon = nil
|
717
|
+
@watch_app_icon = Tunes::AppImage.factory(watch_app_icon) if watch_app_icon
|
718
|
+
end
|
719
|
+
|
720
|
+
def setup_review_attachment_file
|
721
|
+
review_attachment_file = raw_data["appReviewInfo"]["attachmentFiles"]["value"]
|
722
|
+
@review_attachment_file = nil
|
723
|
+
@review_attachment_file = Tunes::AppReviewAttachment.factory(review_attachment_file)
|
724
|
+
end
|
725
|
+
|
726
|
+
def supports_review_attachment_file?
|
727
|
+
raw_data["appReviewInfo"]["attachmentFiles"] && raw_data["appReviewInfo"]["attachmentFiles"]["value"]
|
728
|
+
end
|
729
|
+
|
730
|
+
def supports_app_transit?
|
731
|
+
raw_data["transitAppFile"] != nil
|
732
|
+
end
|
733
|
+
|
734
|
+
def setup_transit_app_file
|
735
|
+
transit_app_file = raw_data["transitAppFile"]["value"]
|
736
|
+
@transit_app_file = nil
|
737
|
+
@transit_app_file = Tunes::TransitAppFile.factory(transit_app_file) if transit_app_file
|
738
|
+
end
|
739
|
+
|
740
|
+
def screenshots_data_for_language_and_device(language, device, is_messages)
|
741
|
+
data_field = is_messages ? "messagesScreenshots" : "screenshots"
|
742
|
+
container_data_for_language_and_device(data_field, language, device)
|
743
|
+
end
|
744
|
+
|
745
|
+
def trailer_data_for_language_and_device(language, device)
|
746
|
+
container_data_for_language_and_device("trailers", language, device)
|
747
|
+
end
|
748
|
+
|
749
|
+
def container_data_for_language_and_device(data_field, language, device)
|
750
|
+
raise "#{device} isn't a valid device name" unless DisplayFamily.find(device)
|
751
|
+
|
752
|
+
languages = raw_data_details.select { |d| d["language"] == language }
|
753
|
+
# IDEA: better error for non existing language
|
754
|
+
raise "#{language} isn't an activated language" unless languages.count > 0
|
755
|
+
lang_details = languages[0]
|
756
|
+
display_families = lang_details["displayFamilies"]["value"]
|
757
|
+
device_details = display_families.find { |display_family| display_family['name'] == device }
|
758
|
+
raise "Couldn't find device family for #{device}" if device_details.nil?
|
759
|
+
raise "Unexpected state: missing device details for #{device}" unless device_details.key?(data_field)
|
760
|
+
return device_details[data_field]
|
761
|
+
rescue => ex
|
762
|
+
raise "App Store Connect error: #{ex}"
|
763
|
+
end
|
764
|
+
|
765
|
+
def setup_screenshots
|
766
|
+
# Enable Scaling for all screen sizes that don't have at least one screenshot
|
767
|
+
# We automatically disable scaling once we upload at least one screenshot
|
768
|
+
language_details = raw_data_details.each do |current_language|
|
769
|
+
language_details = (current_language["displayFamilies"] || {})["value"]
|
770
|
+
(language_details || []).each do |device_language_details|
|
771
|
+
next if device_language_details["screenshots"].nil?
|
772
|
+
next if device_language_details["screenshots"]["value"].count > 0
|
773
|
+
|
774
|
+
# The current row includes screenshots for all device types
|
775
|
+
# so we need to enable scaling for both iOS and watchOS apps
|
776
|
+
device_language_details["scaled"]["value"] = true if device_language_details["scaled"]
|
777
|
+
device_language_details["messagesScaled"]["value"] = true if device_language_details["messagesScaled"]
|
778
|
+
# we unset `scaled` or `messagesScaled` as soon as we upload a
|
779
|
+
# screenshot for this device/language combination
|
780
|
+
end
|
781
|
+
end
|
782
|
+
|
783
|
+
@screenshots = {}
|
784
|
+
raw_data_details.each do |row|
|
785
|
+
# Now that's one language right here
|
786
|
+
@screenshots[row['language']] = setup_screenshots_for(row) + setup_messages_screenshots_for(row)
|
787
|
+
end
|
788
|
+
end
|
789
|
+
|
790
|
+
# generates the nested data structure to represent screenshots
|
791
|
+
def setup_screenshots_for(row)
|
792
|
+
return [] if row.nil? || row["displayFamilies"].nil?
|
793
|
+
|
794
|
+
display_families = row.fetch("displayFamilies", {}).fetch("value", nil)
|
795
|
+
return [] unless display_families
|
796
|
+
|
797
|
+
result = []
|
798
|
+
|
799
|
+
display_families.each do |display_family|
|
800
|
+
# {
|
801
|
+
# "name": "iphone6Plus",
|
802
|
+
# "scaled": {
|
803
|
+
# "value": false,
|
804
|
+
# "isEditable": false,
|
805
|
+
# "isRequired": false,
|
806
|
+
# "errorKeys": null
|
807
|
+
# },
|
808
|
+
# "screenshots": {
|
809
|
+
# "value": [{
|
810
|
+
# "value": {
|
811
|
+
# "assetToken": "Purple62/v4/08/0a/04/080a0430-c2cc-2577-f491-9e0a09c58ffe/mzl.pbcpzqyg.jpg",
|
812
|
+
# "sortOrder": 1,
|
813
|
+
# "type": null,
|
814
|
+
# "originalFileName": "ios-414-1.jpg"
|
815
|
+
# },
|
816
|
+
# "isEditable": true,
|
817
|
+
# "isRequired": false,
|
818
|
+
# "errorKeys": null
|
819
|
+
# }, {
|
820
|
+
# "value": {
|
821
|
+
# "assetToken": "Purple71/v4/de/81/aa/de81aa10-64f6-332e-c974-9ee46adab675/mzl.cshkjvwl.jpg",
|
822
|
+
# "sortOrder": 2,
|
823
|
+
# "type": null,
|
824
|
+
# "originalFileName": "ios-414-2.jpg"
|
825
|
+
# },
|
826
|
+
# "isEditable": true,
|
827
|
+
# "isRequired": false,
|
828
|
+
# "errorKeys": null
|
829
|
+
# }],
|
830
|
+
# "messagesScaled": {
|
831
|
+
# "value": false,
|
832
|
+
# "isEditable": false,
|
833
|
+
# "isRequired": false,
|
834
|
+
# "errorKeys": null
|
835
|
+
# },
|
836
|
+
# "messagesScreenshots": {
|
837
|
+
# "value": [{
|
838
|
+
# "value": {
|
839
|
+
# "assetToken": "Purple62/v4/08/0a/04/080a0430-c2cc-2577-f491-9e0a09c58ffe/mzl.pbcpzqyg.jpg",
|
840
|
+
# "sortOrder": 1,
|
841
|
+
# "type": null,
|
842
|
+
# "originalFileName": "ios-414-1.jpg"
|
843
|
+
# },
|
844
|
+
# "isEditable": true,
|
845
|
+
# "isRequired": false,
|
846
|
+
# "errorKeys": null
|
847
|
+
# }, {
|
848
|
+
# "value": {
|
849
|
+
# "assetToken": "Purple71/v4/de/81/aa/de81aa10-64f6-332e-c974-9ee46adab675/mzl.cshkjvwl.jpg",
|
850
|
+
# "sortOrder": 2,
|
851
|
+
# "type": null,
|
852
|
+
# "originalFileName": "ios-414-2.jpg"
|
853
|
+
# },
|
854
|
+
# "isEditable": true,
|
855
|
+
# "isRequired": false,
|
856
|
+
# "errorKeys": null
|
857
|
+
# }],
|
858
|
+
# "isEditable": true,
|
859
|
+
# "isRequired": false,
|
860
|
+
# "errorKeys": null
|
861
|
+
# },
|
862
|
+
# "trailer": {
|
863
|
+
# "value": null,
|
864
|
+
# "isEditable": true,
|
865
|
+
# "isRequired": false,
|
866
|
+
# "errorKeys": null
|
867
|
+
# }
|
868
|
+
# }
|
869
|
+
|
870
|
+
display_family.fetch("screenshots", {}).fetch("value", []).each do |screenshot|
|
871
|
+
screenshot_data = screenshot["value"]
|
872
|
+
data = {
|
873
|
+
device_type: display_family['name'],
|
874
|
+
language: row["language"]
|
875
|
+
}.merge(screenshot_data)
|
876
|
+
result << Tunes::AppScreenshot.factory(data)
|
877
|
+
end
|
878
|
+
end
|
879
|
+
|
880
|
+
return result
|
881
|
+
end
|
882
|
+
|
883
|
+
# generates the nested data structure to represent screenshots
|
884
|
+
def setup_messages_screenshots_for(row)
|
885
|
+
return [] if row.nil? || row["displayFamilies"].nil?
|
886
|
+
|
887
|
+
display_families = row.fetch("displayFamilies", {}).fetch("value", nil)
|
888
|
+
return [] unless display_families
|
889
|
+
|
890
|
+
result = []
|
891
|
+
|
892
|
+
display_families.each do |display_family|
|
893
|
+
display_family_screenshots = display_family.fetch("messagesScreenshots", {})
|
894
|
+
next unless display_family_screenshots
|
895
|
+
display_family_screenshots.fetch("value", []).each do |screenshot|
|
896
|
+
screenshot_data = screenshot["value"]
|
897
|
+
data = {
|
898
|
+
device_type: display_family['name'],
|
899
|
+
language: row["language"],
|
900
|
+
is_imessage: true # to identify imessage screenshots later on (e.g: during download)
|
901
|
+
}.merge(screenshot_data)
|
902
|
+
result << Tunes::AppScreenshot.factory(data)
|
903
|
+
end
|
904
|
+
end
|
905
|
+
|
906
|
+
return result
|
907
|
+
end
|
908
|
+
|
909
|
+
def setup_trailers
|
910
|
+
@trailers = {}
|
911
|
+
raw_data_details.each do |row|
|
912
|
+
# Now that's one language right here
|
913
|
+
@trailers[row["language"]] = setup_trailers_for(row)
|
914
|
+
end
|
915
|
+
end
|
916
|
+
|
917
|
+
# generates the nested data structure to represent trailers
|
918
|
+
def setup_trailers_for(row)
|
919
|
+
return [] if row.nil? || row["displayFamilies"].nil?
|
920
|
+
|
921
|
+
display_families = row.fetch("displayFamilies", {}).fetch("value", nil)
|
922
|
+
return [] unless display_families
|
923
|
+
|
924
|
+
result = []
|
925
|
+
|
926
|
+
display_families.each do |display_family|
|
927
|
+
display_family.fetch("trailers", {}).fetch("value", []).each do |trailer|
|
928
|
+
trailer_data = trailer["value"]
|
929
|
+
data = {
|
930
|
+
device_type: display_family['name'],
|
931
|
+
language: row["language"]
|
932
|
+
}.merge(trailer_data)
|
933
|
+
result << Tunes::AppTrailer.factory(data)
|
934
|
+
end
|
935
|
+
end
|
936
|
+
|
937
|
+
return result
|
938
|
+
end
|
939
|
+
|
940
|
+
# identify the required resolution for this particular video screenshot
|
941
|
+
def video_preview_resolution_for(device, video_path)
|
942
|
+
is_portrait = Utilities.portrait?(video_path)
|
943
|
+
TunesClient.video_preview_resolution_for(device, is_portrait)
|
944
|
+
end
|
945
|
+
|
946
|
+
# ensure the specified preview screenshot has the expected resolution the specified target +device+
|
947
|
+
def check_preview_screenshot_resolution(preview_screenshot_path, device)
|
948
|
+
is_portrait = Utilities.portrait?(preview_screenshot_path)
|
949
|
+
expected_resolution = TunesClient.video_preview_resolution_for(device, is_portrait)
|
950
|
+
actual_resolution = Utilities.resolution(preview_screenshot_path)
|
951
|
+
orientation = is_portrait ? "portrait" : "landscape"
|
952
|
+
raise "Invalid #{orientation} screenshot resolution for device #{device}. Should be #{expected_resolution}" unless actual_resolution == expected_resolution
|
953
|
+
end
|
954
|
+
|
955
|
+
def raw_data_details
|
956
|
+
raw_data["details"]["value"]
|
957
|
+
end
|
958
|
+
end
|
959
|
+
# rubocop:enable Metrics/ClassLength
|
960
|
+
end
|
961
|
+
end
|