Module: UploadService
- Defined in:
- lib/fastlane/plugin/appcircle_publish/helper/upload_service.rb
Class Method Summary collapse
- .auth_headers(token) ⇒ Object
-
.get_active_publish_count_for_profile(auth_token:, publish_profile_id:, api_endpoint: BASE_URL) ⇒ Object
In-progress publishes for the given profile (scope: target profile).
- .get_app_versions(auth_token:, platform:, publish_profile_id:, api_endpoint: BASE_URL) ⇒ Object
-
.get_latest_app_version_id(auth_token:, platform:, publish_profile_id:, api_endpoint: BASE_URL) ⇒ Object
The most recently created app version (used after an upload).
- .get_publish_id(auth_token:, platform:, publish_profile_id:, app_version_id:, api_endpoint: BASE_URL) ⇒ Object
-
.get_publish_object(auth_token:, platform:, publish_profile_id:, app_version_id:, api_endpoint: BASE_URL) ⇒ Object
Single fetch of the publish object (status + steps).
-
.get_publish_profile_id(auth_token:, platform:, profile_name:, api_endpoint: BASE_URL) ⇒ Object
Resolve a publish profile id from its name for the given platform.
-
.get_release_candidate_version_id(auth_token:, platform:, publish_profile_id:, api_endpoint: BASE_URL) ⇒ Object
The profile's current release candidate (published in publish-only mode).
- .mark_release_candidate(auth_token:, platform:, publish_profile_id:, app_version_id:, api_endpoint: BASE_URL) ⇒ Object
- .put_with_retry(url, body, headers, max_retries: 5) ⇒ Object
- .start_publish(auth_token:, platform:, publish_profile_id:, publish_id:, api_endpoint: BASE_URL) ⇒ Object
- .upload_artifact(token:, app:, platform:, publish_profile_id:, api_endpoint: BASE_URL) ⇒ Object
Class Method Details
.auth_headers(token) ⇒ Object
88 89 90 |
# File 'lib/fastlane/plugin/appcircle_publish/helper/upload_service.rb', line 88 def self.auth_headers(token) { Authorization: "Bearer #{token}", accept: 'application/json' } end |
.get_active_publish_count_for_profile(auth_token:, publish_profile_id:, api_endpoint: BASE_URL) ⇒ Object
In-progress publishes for the given profile (scope: target profile).
121 122 123 124 125 126 |
# File 'lib/fastlane/plugin/appcircle_publish/helper/upload_service.rb', line 121 def self.get_active_publish_count_for_profile(auth_token:, publish_profile_id:, api_endpoint: BASE_URL) url = "#{api_endpoint}/build/v1/queue/my-dashboard?page=1&size=1000" data = JSON.parse(RestClient.get(url, auth_headers(auth_token)).body) items = data['data'] || [] items.count { |p| p['publishId'] && p['profileId'] == publish_profile_id } end |
.get_app_versions(auth_token:, platform:, publish_profile_id:, api_endpoint: BASE_URL) ⇒ Object
92 93 94 95 96 |
# File 'lib/fastlane/plugin/appcircle_publish/helper/upload_service.rb', line 92 def self.get_app_versions(auth_token:, platform:, publish_profile_id:, api_endpoint: BASE_URL) url = "#{api_endpoint}/publish/v2/profiles/#{platform}/#{publish_profile_id}/app-versions" data = JSON.parse(RestClient.get(url, auth_headers(auth_token)).body) data.is_a?(Array) ? data : (data['data'] || []) end |
.get_latest_app_version_id(auth_token:, platform:, publish_profile_id:, api_endpoint: BASE_URL) ⇒ Object
The most recently created app version (used after an upload).
99 100 101 102 103 |
# File 'lib/fastlane/plugin/appcircle_publish/helper/upload_service.rb', line 99 def self.get_latest_app_version_id(auth_token:, platform:, publish_profile_id:, api_endpoint: BASE_URL) versions = get_app_versions(auth_token: auth_token, platform: platform, publish_profile_id: publish_profile_id, api_endpoint: api_endpoint) UI.user_error!("No app versions found on the publish profile after upload.") if versions.empty? versions[0]['id'] end |
.get_publish_id(auth_token:, platform:, publish_profile_id:, app_version_id:, api_endpoint: BASE_URL) ⇒ Object
128 129 130 131 132 133 134 135 |
# File 'lib/fastlane/plugin/appcircle_publish/helper/upload_service.rb', line 128 def self.get_publish_id(auth_token:, platform:, publish_profile_id:, app_version_id:, api_endpoint: BASE_URL) url = "#{api_endpoint}/publish/v2/profiles/#{platform}/#{publish_profile_id}/app-versions/#{app_version_id}/publish" data = JSON.parse(RestClient.get(url, auth_headers(auth_token)).body) steps = data['steps'] || [] publish_id = steps[0] && steps[0]['publishId'] UI.user_error!("No publish flow steps found for the app version. Configure a publish flow on the profile first.") if publish_id.nil? publish_id end |
.get_publish_object(auth_token:, platform:, publish_profile_id:, app_version_id:, api_endpoint: BASE_URL) ⇒ Object
Single fetch of the publish object (status + steps). Polled by the action.
145 146 147 148 |
# File 'lib/fastlane/plugin/appcircle_publish/helper/upload_service.rb', line 145 def self.get_publish_object(auth_token:, platform:, publish_profile_id:, app_version_id:, api_endpoint: BASE_URL) url = "#{api_endpoint}/publish/v1/profiles/#{platform}/#{publish_profile_id}/app-versions/#{app_version_id}/publish" JSON.parse(RestClient.get(url, auth_headers(auth_token)).body) end |
.get_publish_profile_id(auth_token:, platform:, profile_name:, api_endpoint: BASE_URL) ⇒ Object
Resolve a publish profile id from its name for the given platform. Profile names are unique per (organization, platform), so the match is exact.
34 35 36 37 38 39 40 41 42 43 44 45 46 |
# File 'lib/fastlane/plugin/appcircle_publish/helper/upload_service.rb', line 34 def self.get_publish_profile_id(auth_token:, platform:, profile_name:, api_endpoint: BASE_URL) url = "#{api_endpoint}/publish/v2/profiles/#{platform}" headers = { Authorization: "Bearer #{auth_token}", accept: 'application/json' } profiles = JSON.parse(RestClient.get(url, headers).body) profile = (profiles || []).find { |p| p['name'] == profile_name } if profile.nil? UI.user_error!("Publish profile '#{profile_name}' not found for platform '#{platform}'.") end profile['id'] rescue RestClient::ExceptionWithResponse => e raise e end |
.get_release_candidate_version_id(auth_token:, platform:, publish_profile_id:, api_endpoint: BASE_URL) ⇒ Object
The profile's current release candidate (published in publish-only mode).
106 107 108 109 110 111 |
# File 'lib/fastlane/plugin/appcircle_publish/helper/upload_service.rb', line 106 def self.get_release_candidate_version_id(auth_token:, platform:, publish_profile_id:, api_endpoint: BASE_URL) versions = get_app_versions(auth_token: auth_token, platform: platform, publish_profile_id: publish_profile_id, api_endpoint: api_endpoint) rc = versions.find { |v| v['releaseCandidate'] == true } UI.user_error!("No release candidate app version found on the publish profile. Mark a version as release candidate (or enable upload) before publishing.") if rc.nil? rc['id'] end |
.mark_release_candidate(auth_token:, platform:, publish_profile_id:, app_version_id:, api_endpoint: BASE_URL) ⇒ Object
113 114 115 116 117 118 |
# File 'lib/fastlane/plugin/appcircle_publish/helper/upload_service.rb', line 113 def self.mark_release_candidate(auth_token:, platform:, publish_profile_id:, app_version_id:, api_endpoint: BASE_URL) uri = URI("#{api_endpoint}/publish/v2/profiles/#{platform}/#{publish_profile_id}/app-versions/#{app_version_id}") uri.query = URI.encode_www_form({ action: 'releaseCandidate' }) headers = { Authorization: "Bearer #{auth_token}", content_type: :json, accept: 'application/json' } RestClient.patch(uri.to_s, { ReleaseCandidate: true }.to_json, headers) end |
.put_with_retry(url, body, headers, max_retries: 5) ⇒ Object
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
# File 'lib/fastlane/plugin/appcircle_publish/helper/upload_service.rb', line 9 def self.put_with_retry(url, body, headers, max_retries: 5) attempt = 0 delay = 1.0 begin RestClient.put(url, body, headers) rescue => e status = e.respond_to?(:http_code) ? e.http_code : nil retryable = status == 503 || e.is_a?(RestClient::ServerBrokeConnection) || e.is_a?(Errno::ECONNRESET) || (defined?(RestClient::Exceptions::OpenTimeout) && e.is_a?(RestClient::Exceptions::OpenTimeout)) || (defined?(RestClient::Exceptions::ReadTimeout) && e.is_a?(RestClient::Exceptions::ReadTimeout)) raise e if !retryable || attempt >= max_retries attempt += 1 sleep(delay + rand(0.3)) # backoff + jitter (0-300ms) delay *= 2 retry end end |
.start_publish(auth_token:, platform:, publish_profile_id:, publish_id:, api_endpoint: BASE_URL) ⇒ Object
137 138 139 140 141 142 |
# File 'lib/fastlane/plugin/appcircle_publish/helper/upload_service.rb', line 137 def self.start_publish(auth_token:, platform:, publish_profile_id:, publish_id:, api_endpoint: BASE_URL) uri = URI("#{api_endpoint}/publish/v2/profiles/#{platform}/#{publish_profile_id}/publish/#{publish_id}") uri.query = URI.encode_www_form({ action: 'restart' }) headers = { Authorization: "Bearer #{auth_token}", content_type: :json, accept: 'application/json' } RestClient.post(uri.to_s, "{}", headers) end |
.upload_artifact(token:, app:, platform:, publish_profile_id:, api_endpoint: BASE_URL) ⇒ Object
48 49 50 51 52 53 54 55 56 57 58 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 |
# File 'lib/fastlane/plugin/appcircle_publish/helper/upload_service.rb', line 48 def self.upload_artifact(token:, app:, platform:, publish_profile_id:, api_endpoint: BASE_URL) file_path = app file_name = File.basename(file_path) file_size = File.size(file_path) auth_header = { Authorization: "Bearer #{token}", accept: 'application/json' } # Profile listing is v2, but the signed-URL upload/commit actions live on v1. base = "#{api_endpoint}/publish/v1/profiles/#{platform}/#{publish_profile_id}/app-versions" begin info_uri = URI(base) info_uri.query = URI.encode_www_form({ action: 'uploadInformation', fileName: file_name, fileSize: file_size }) upload_info = JSON.parse(RestClient.get(info_uri.to_s, auth_header).body) file_id = upload_info['fileId'] upload_url = upload_info['uploadUrl'] configuration = upload_info['configuration'] http_method = (configuration && configuration['httpMethod']) ? configuration['httpMethod'].to_s.upcase : 'PUT' if http_method == 'POST' sign_parameters = configuration['signParameters'] || {} payload = {} sign_parameters.each { |key, value| payload[key] = value } payload['file'] = File.new(file_path, 'rb') # the 'file' field MUST be last RestClient.post(upload_url, payload) else put_with_retry(upload_url, File.binread(file_path), { content_type: 'application/octet-stream' }) end commit_uri = URI(base) commit_uri.query = URI.encode_www_form({ action: 'commitFileUpload' }) commit_payload = { fileId: file_id, fileName: file_name }.to_json commit_headers = { Authorization: "Bearer #{token}", content_type: :json, accept: 'application/json' } JSON.parse(RestClient.post(commit_uri.to_s, commit_payload, commit_headers).body) rescue RestClient::ExceptionWithResponse => e raise e rescue StandardError => e raise e end end |