Class: Fastlane::Actions::TryoutsAction

Inherits:
Fastlane::Action show all
Defined in:
fastlane/lib/fastlane/actions/tryouts.rb

Constant Summary collapse

TRYOUTS_API_BUILD_RELEASE_TEMPLATE =
"https://api.tryouts.io/v1/applications/%s/releases/"

Constants inherited from Fastlane::Action

Fastlane::Action::AVAILABLE_CATEGORIES, Fastlane::Action::RETURN_TYPES

Class Method Summary collapse

Methods inherited from Fastlane::Action

action_name, author, deprecated_notes, lane_context, method_missing, other_action, return_type, return_value, sample_return_value, shell_out_should_use_bundle_exec?, step_text

Class Method Details

.authorsObject



140
141
142
# File 'fastlane/lib/fastlane/actions/tryouts.rb', line 140

def self.authors
  ["alicertel"]
end

.available_optionsObject



68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
# File 'fastlane/lib/fastlane/actions/tryouts.rb', line 68

def self.available_options
  [
    FastlaneCore::ConfigItem.new(key: :app_id,
                               env_name: "TRYOUTS_APP_ID",
                               description: "Tryouts application hash",
                               verify_block: proc do |value|
                                 UI.user_error!("No application identifier for Tryouts given, pass using `app_id: 'application id'`") unless value && !value.empty?
                               end),
    FastlaneCore::ConfigItem.new(key: :api_token,
                               env_name: "TRYOUTS_API_TOKEN",
                               sensitive: true,
                               description: "API Token (api_key:api_secret) for Tryouts Access",
                               verify_block: proc do |value|
                                 UI.user_error!("No API token for Tryouts given, pass using `api_token: 'token'`") unless value && !value.empty?
                               end),
    FastlaneCore::ConfigItem.new(key: :build_file,
                               env_name: "TRYOUTS_BUILD_FILE",
                               description: "Path to your IPA or APK file. Optional if you use the _gym_ or _xcodebuild_ action",
                               default_value: Actions.lane_context[SharedValues::IPA_OUTPUT_PATH],
                                 default_value_dynamic: true,
                               verify_block: proc do |value|
                                 UI.user_error!("Couldn't find build file at path '#{value}'") unless File.exist?(value)
                               end),
    FastlaneCore::ConfigItem.new(key: :notes,
                               env_name: "TRYOUTS_NOTES",
                               description: "Release notes",
                               is_string: true,
                               optional: true),
    FastlaneCore::ConfigItem.new(key: :notes_path,
                               env_name: "TRYOUTS_NOTES_PATH",
                               description: "Release notes text file path. Overrides the :notes parameter",
                               verify_block: proc do |value|
                                 UI.user_error!("Couldn't find notes file at path '#{value}'") unless File.exist?(value)
                               end,
                               optional: true),
    FastlaneCore::ConfigItem.new(key: :notify,
                               env_name: "TRYOUTS_NOTIFY",
                               description: "Notify testers? 0 for no",
                               is_string: false,
                               default_value: 1),
    FastlaneCore::ConfigItem.new(key: :status,
                               env_name: "TRYOUTS_STATUS",
                               description: "2 to make your release public. Release will be distributed to available testers. 1 to make your release private. Release won't be distributed to testers. This also prevents release from showing up for SDK update",
                               verify_block: proc do |value|
                                 available_options = ["1", "2"]
                                 UI.user_error!("'#{value}' is not a valid 'status' value. Available options are #{available_options.join(', ')}") unless available_options.include?(value.to_s)
                               end,
                               is_string: false,
                               default_value: 2)
  ]
end

.categoryObject



130
131
132
# File 'fastlane/lib/fastlane/actions/tryouts.rb', line 130

def self.category
  :beta
end

.descriptionObject



60
61
62
# File 'fastlane/lib/fastlane/actions/tryouts.rb', line 60

def self.description
  "Upload a new build to [Tryouts](https://tryouts.io/)"
end

.detailsObject



64
65
66
# File 'fastlane/lib/fastlane/actions/tryouts.rb', line 64

def self.details
  "More information: [http://tryouts.readthedocs.org/en/latest/releases.html#create-release](http://tryouts.readthedocs.org/en/latest/releases.html#create-release)"
end

.example_codeObject



120
121
122
123
124
125
126
127
128
# File 'fastlane/lib/fastlane/actions/tryouts.rb', line 120

def self.example_code
  [
    'tryouts(
      api_token: "...",
      app_id: "application-id",
      build_file: "test.ipa",
    )'
  ]
end

.is_supported?(platform) ⇒ Boolean

Returns:



144
145
146
# File 'fastlane/lib/fastlane/actions/tryouts.rb', line 144

def self.is_supported?(platform)
  [:ios, :android].include?(platform)
end

.outputObject



134
135
136
137
138
# File 'fastlane/lib/fastlane/actions/tryouts.rb', line 134

def self.output
  [
    ['TRYOUTS_BUILD_INFORMATION', 'Contains release info like :application_name, :download_url. See http://tryouts.readthedocs.org/en/latest/releases.html#create-release']
  ]
end

.run(params) ⇒ Object



10
11
12
13
14
15
16
17
18
19
20
21
22
23
# File 'fastlane/lib/fastlane/actions/tryouts.rb', line 10

def self.run(params)
  UI.success('Upload to Tryouts has been started. This may take some time.')

  response = self.upload_build(params)

  case response.status
  when 200...300
    Actions.lane_context[SharedValues::TRYOUTS_BUILD_INFORMATION] = response.body
    UI.success('Build successfully uploaded to Tryouts!')
    UI.message("Release download url: #{response.body['download_url']}") if response.body["download_url"]
  else
    UI.user_error!("Error when trying to upload build file to Tryouts: #{response.body}")
  end
end

.upload_build(params) ⇒ Object



25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
# File 'fastlane/lib/fastlane/actions/tryouts.rb', line 25

def self.upload_build(params)
  require 'faraday'
  require 'faraday_middleware'

  url = TRYOUTS_API_BUILD_RELEASE_TEMPLATE % params[:app_id]
  connection = Faraday.new(url) do |builder|
    builder.request(:multipart)
    builder.request(:url_encoded)
    builder.response(:json, content_type: /\bjson$/)
    builder.use(FaradayMiddleware::FollowRedirects)
    builder.adapter(:net_http)
  end

  options = {}
  options[:build] = Faraday::UploadIO.new(params[:build_file], 'application/octet-stream')

  if params[:notes_path]
    options[:notes] = File.read(params[:notes_path])
  elsif params[:notes]
    options[:notes] = params[:notes]
  end

  options[:notify] = params[:notify].to_s
  options[:status] = params[:status].to_s

  post_request = connection.post do |req|
    req.headers['Authorization'] = params[:api_token]
    req.body = options
  end

  post_request.on_complete do |env|
    yield(env[:status], env[:body]) if block_given?
  end
end