Class: Fastlane::Actions::FirebaseAppDistributionAddTestersAction
- Inherits:
-
Action
- Object
- Action
- Fastlane::Actions::FirebaseAppDistributionAddTestersAction
- Extended by:
- Fastlane::Auth::FirebaseAppDistributionAuthClient, Helper::FirebaseAppDistributionHelper
- Defined in:
- lib/fastlane/plugin/firebase_app_distribution/actions/firebase_app_distribution_add_testers_action.rb
Constant Summary
Constants included from Fastlane::Auth::FirebaseAppDistributionAuthClient
Fastlane::Auth::FirebaseAppDistributionAuthClient::CLIENT_ID, Fastlane::Auth::FirebaseAppDistributionAuthClient::CLIENT_SECRET, Fastlane::Auth::FirebaseAppDistributionAuthClient::REDACTION_CHARACTER, Fastlane::Auth::FirebaseAppDistributionAuthClient::REDACTION_EXPOSED_LENGTH, Fastlane::Auth::FirebaseAppDistributionAuthClient::SCOPE, Fastlane::Auth::FirebaseAppDistributionAuthClient::TOKEN_CREDENTIAL_URI
Class Method Summary collapse
- .add_testers_to_group(client, project_number, emails, group_alias) ⇒ Object
- .add_testers_to_project(client, emails, project_number) ⇒ Object
- .authors ⇒ Object
- .available_options ⇒ Object
- .description ⇒ Object
-
.details ⇒ Object
supports markdown.
- .is_supported?(platform) ⇒ Boolean
- .run(params) ⇒ Object
Methods included from Fastlane::Auth::FirebaseAppDistributionAuthClient
Methods included from Helper::FirebaseAppDistributionHelper
app_id_from_params, app_name_from_app_id, binary_type_from_path, blank?, deep_symbolize_keys, get_ios_app_id_from_archive_plist, get_ios_app_id_from_plist, get_value_from_value_or_file, group_name, init_google_api_client, lane_platform, parse_plist, present?, project_name, project_number_from_app_id, string_to_array, xcode_archive_path
Class Method Details
.add_testers_to_group(client, project_number, emails, group_alias) ⇒ Object
127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 |
# File 'lib/fastlane/plugin/firebase_app_distribution/actions/firebase_app_distribution_add_testers_action.rb', line 127 def self.add_testers_to_group(client, project_number, emails, group_alias) UI.("⏳ Adding testers to group #{group_alias}...") request = Google::Apis::FirebaseappdistributionV1::GoogleFirebaseAppdistroV1BatchJoinGroupRequest.new( emails: emails, create_missing_testers: true ) begin client.batch_project_group_join(group_name(project_number, group_alias), request) rescue Google::Apis::Error => err case err.status_code.to_i when 400 UI.user_error!(ErrorMessage::INVALID_EMAIL_ADDRESS) when 404 UI.user_error!(ErrorMessage::INVALID_TESTER_GROUP) when 429 UI.user_error!(ErrorMessage::TESTER_LIMIT_VIOLATION) else UI.crash!(err) end end end |
.add_testers_to_project(client, emails, project_number) ⇒ Object
105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 |
# File 'lib/fastlane/plugin/firebase_app_distribution/actions/firebase_app_distribution_add_testers_action.rb', line 105 def self.add_testers_to_project(client, emails, project_number) UI.("⏳ Adding #{emails.count} testers to project #{project_number}...") request = Google::Apis::FirebaseappdistributionV1::GoogleFirebaseAppdistroV1BatchAddTestersRequest.new( emails: emails ) begin client.batch_project_tester_add(project_name(project_number), request) rescue Google::Apis::Error => err case err.status_code.to_i when 400 UI.user_error!(ErrorMessage::INVALID_EMAIL_ADDRESS) when 404 UI.user_error!(ErrorMessage::INVALID_PROJECT) when 429 UI.user_error!(ErrorMessage::TESTER_LIMIT_VIOLATION) else UI.crash!(err) end end end |
.authors ⇒ Object
50 51 52 |
# File 'lib/fastlane/plugin/firebase_app_distribution/actions/firebase_app_distribution_add_testers_action.rb', line 50 def self. ["Tunde Agboola"] end |
.available_options ⇒ Object
59 60 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 |
# File 'lib/fastlane/plugin/firebase_app_distribution/actions/firebase_app_distribution_add_testers_action.rb', line 59 def self. [ FastlaneCore::ConfigItem.new(key: :project_number, env_name: "FIREBASEAPPDISTRO_PROJECT_NUMBER", description: "Your Firebase project number. You can find the project number in the Firebase console, on the General Settings page", type: Integer, optional: false), FastlaneCore::ConfigItem.new(key: :emails, env_name: "FIREBASEAPPDISTRO_ADD_TESTERS_EMAILS", description: "Comma separated list of tester emails to be created. A maximum of 1000 testers can be created at a time", optional: true, type: String), FastlaneCore::ConfigItem.new(key: :file, env_name: "FIREBASEAPPDISTRO_ADD_TESTERS_FILE", description: "Path to a file containing a comma separated list of tester emails to be created. A maximum of 1000 testers can be deleted at a time", optional: true, type: String), FastlaneCore::ConfigItem.new(key: :group_alias, env_name: "FIREBASEAPPDISTRO_ADD_TESTERS_GROUP_ALIAS", description: "Alias of the group to add the specified testers to. The group must already exist. If not specified, testers will not be added to a group", optional: true, type: String), FastlaneCore::ConfigItem.new(key: :service_credentials_file, description: "Path to Google service credentials file", optional: true, type: String), FastlaneCore::ConfigItem.new(key: :service_credentials_json_data, description: "Google service account json file content", optional: true, type: String), FastlaneCore::ConfigItem.new(key: :firebase_cli_token, description: "Auth token generated using the Firebase CLI's login:ci command", optional: true, type: String), FastlaneCore::ConfigItem.new(key: :debug, description: "Print verbose debug output", optional: true, default_value: false, is_string: false) ] end |
.description ⇒ Object
46 47 48 |
# File 'lib/fastlane/plugin/firebase_app_distribution/actions/firebase_app_distribution_add_testers_action.rb', line 46 def self.description "Create testers in bulk from a comma-separated list or a file" end |
.details ⇒ Object
supports markdown.
55 56 57 |
# File 'lib/fastlane/plugin/firebase_app_distribution/actions/firebase_app_distribution_add_testers_action.rb', line 55 def self.details "Create testers in bulk from a comma-separated list or a file" end |
.is_supported?(platform) ⇒ Boolean
101 102 103 |
# File 'lib/fastlane/plugin/firebase_app_distribution/actions/firebase_app_distribution_add_testers_action.rb', line 101 def self.is_supported?(platform) true end |
.run(params) ⇒ Object
15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 |
# File 'lib/fastlane/plugin/firebase_app_distribution/actions/firebase_app_distribution_add_testers_action.rb', line 15 def self.run(params) init_google_api_client(params[:debug]) client = Google::Apis::FirebaseappdistributionV1::FirebaseAppDistributionService.new client. = (params[:service_credentials_file], params[:firebase_cli_token], params[:service_credentials_json_data], params[:debug]) if blank?(params[:emails]) && blank?(params[:file]) UI.user_error!("Must specify `emails` or `file`.") end emails = string_to_array(get_value_from_value_or_file(params[:emails], params[:file])) project_number = params[:project_number] group_alias = params[:group_alias] UI.user_error!("Must pass at least one email") if blank?(emails) if emails.count > 1000 UI.user_error!("A maximum of 1000 testers can be added at a time.") end if present?(group_alias) add_testers_to_group(client, project_number, emails, group_alias) else add_testers_to_project(client, emails, project_number) end # The add_testers response lists all the testers from the request # regardless of whether or not they were created or if they already # exists so can't get an accurate count of the number of newly created testers UI.success("✅ Tester(s) successfully added.") end |