Class: Supply::Client
- Inherits:
-
Object
- Object
- Supply::Client
- Defined in:
- lib/supply/client.rb
Instance Attribute Summary collapse
-
#android_publisher ⇒ Object
Connecting with Google.
-
#current_edit ⇒ Object
Editing something Reference to the entry we’re currently editing.
-
#current_package_name ⇒ Object
Package name of the currently edited element.
Login collapse
-
.make_from_config ⇒ Object
instanciate a client given the supplied configuration.
-
#initialize(path_to_key: nil, issuer: nil, path_to_service_account_json: nil) ⇒ Client
constructor
Initializes the android_publisher and its auth_client using the specified information.
Handling the edit lifecycle collapse
-
#abort_current_edit ⇒ Object
Aborts the current edit deleting all pending changes.
-
#begin_edit(package_name: nil) ⇒ Object
Begin modifying a certain package.
-
#commit_current_edit! ⇒ Object
Commits the current edit saving all pending changes on Google Play.
Getting data collapse
-
#apk_listings(apk_version_code) ⇒ Object
Get a list of all apk listings (changelogs) - returns the list.
-
#apks_version_codes ⇒ Object
Get a list of all apks verion codes - returns the list of version codes.
-
#listing_for_language(language) ⇒ Object
Returns the listing for the given language filled with the current values if it already exists.
-
#listings ⇒ Object
Get a list of all languages - returns the list make sure to have an active edit.
Modifying data collapse
-
#track_version_codes(track) ⇒ Object
Get list of version codes for track.
- #update_apk_listing_for_language(apk_listing) ⇒ Object
-
#update_listing_for_language(language: nil, title: nil, short_description: nil, full_description: nil, video: nil) ⇒ Object
Updates or creates the listing for the specified language.
-
#update_track(track, rollout, apk_version_code) ⇒ Object
Updates the track for the provided version code(s).
- #upload_apk(path_to_apk) ⇒ Object
Screenshots collapse
- #clear_screenshots(image_type: nil, language: nil) ⇒ Object
- #fetch_images(image_type: nil, language: nil) ⇒ Object
- #upload_image(image_path: nil, image_type: nil, language: nil) ⇒ Object
- #upload_obb(obb_file_path: nil, apk_version_code: nil, expansion_file_type: nil) ⇒ Object
Constructor Details
#initialize(path_to_key: nil, issuer: nil, path_to_service_account_json: nil) ⇒ Client
Initializes the android_publisher and its auth_client using the specified information
38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 |
# File 'lib/supply/client.rb', line 38 def initialize(path_to_key: nil, issuer: nil, path_to_service_account_json: nil) scope = Androidpublisher::AUTH_ANDROIDPUBLISHER if path_to_service_account_json key_io = File.open(File.(path_to_service_account_json)) else require 'google/api_client/auth/key_utils' key = Google::APIClient::KeyUtils.load_from_pkcs12(File.(path_to_key), 'notasecret') cred_json = { private_key: key.to_s, client_email: issuer } key_io = StringIO.new(MultiJson.dump(cred_json)) end auth_client = Google::Auth::ServiceAccountCredentials.make_creds(json_key_io: key_io, scope: scope) UI.verbose("Fetching a new access token from Google...") auth_client.fetch_access_token! if ENV["DEBUG"] Google::Apis.logger.level = Logger::DEBUG end Google::Apis::ClientOptions.default.application_name = "fastlane - supply" Google::Apis::ClientOptions.default.application_version = Supply::VERSION Google::Apis::RequestOptions.default.timeout_sec = 300 Google::Apis::RequestOptions.default.open_timeout_sec = 300 Google::Apis::RequestOptions.default.retries = 5 self.android_publisher = Androidpublisher::AndroidPublisherService.new self.android_publisher. = auth_client end |
Instance Attribute Details
#android_publisher ⇒ Object
Connecting with Google
11 12 13 |
# File 'lib/supply/client.rb', line 11 def android_publisher @android_publisher end |
#current_edit ⇒ Object
Editing something Reference to the entry we’re currently editing. Might be nil if don’t have one open
15 16 17 |
# File 'lib/supply/client.rb', line 15 def current_edit @current_edit end |
#current_package_name ⇒ Object
Package name of the currently edited element
17 18 19 |
# File 'lib/supply/client.rb', line 17 def current_package_name @current_package_name end |
Class Method Details
.make_from_config ⇒ Object
instanciate a client given the supplied configuration
24 25 26 27 28 29 30 31 32 |
# File 'lib/supply/client.rb', line 24 def self.make_from_config unless Supply.config[:json_key] || (Supply.config[:key] && Supply.config[:issuer]) UI.user_error! "Missing auth credentials: You must specify either 'json_key' or 'key' and 'issuer'" end return Client.new(path_to_key: Supply.config[:key], issuer: Supply.config[:issuer], path_to_service_account_json: Supply.config[:json_key]) end |
Instance Method Details
#abort_current_edit ⇒ Object
Aborts the current edit deleting all pending changes
87 88 89 90 91 92 93 94 |
# File 'lib/supply/client.rb', line 87 def abort_current_edit ensure_active_edit! android_publisher.delete_edit(current_package_name, current_edit.id) self.current_edit = nil self.current_package_name = nil end |
#apk_listings(apk_version_code) ⇒ Object
Get a list of all apk listings (changelogs) - returns the list
149 150 151 152 153 154 155 156 157 158 159 160 |
# File 'lib/supply/client.rb', line 149 def apk_listings(apk_version_code) ensure_active_edit! result = android_publisher.list_apk_listings( current_package_name, current_edit.id, apk_version_code) return (result.listings || []).map do |row| ApkListing.new(row.recent_changes, row.language, apk_version_code) end end |
#apks_version_codes ⇒ Object
Get a list of all apks verion codes - returns the list of version codes
140 141 142 143 144 145 146 |
# File 'lib/supply/client.rb', line 140 def apks_version_codes ensure_active_edit! result = android_publisher.list_apks(current_package_name, current_edit.id) return result.apks.map(&:version_code) end |
#begin_edit(package_name: nil) ⇒ Object
Begin modifying a certain package
78 79 80 81 82 83 84 |
# File 'lib/supply/client.rb', line 78 def begin_edit(package_name: nil) UI.user_error!("You currently have an active edit") if @current_edit self.current_edit = android_publisher.insert_edit(package_name) self.current_package_name = package_name end |
#clear_screenshots(image_type: nil, language: nil) ⇒ Object
272 273 274 275 276 277 278 279 280 |
# File 'lib/supply/client.rb', line 272 def clear_screenshots(image_type: nil, language: nil) ensure_active_edit! android_publisher.delete_all_images( current_package_name, current_edit.id, language, image_type) end |
#commit_current_edit! ⇒ Object
Commits the current edit saving all pending changes on Google Play
97 98 99 100 101 102 103 104 |
# File 'lib/supply/client.rb', line 97 def commit_current_edit! ensure_active_edit! android_publisher.commit_edit(current_package_name, current_edit.id) self.current_edit = nil self.current_package_name = nil end |
#fetch_images(image_type: nil, language: nil) ⇒ Object
247 248 249 250 251 252 253 254 255 256 257 |
# File 'lib/supply/client.rb', line 247 def fetch_images(image_type: nil, language: nil) ensure_active_edit! result = android_publisher.list_images( current_package_name, current_edit.id, language, image_type) (result.images || []).map(&:url) end |
#listing_for_language(language) ⇒ Object
Returns the listing for the given language filled with the current values if it already exists
123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 |
# File 'lib/supply/client.rb', line 123 def listing_for_language(language) ensure_active_edit! begin result = android_publisher.get_listing( current_package_name, current_edit.id, language) return Listing.new(self, language, result) rescue Google::Apis::ClientError => e return Listing.new(self, language) if e.status_code == 404 # create a new empty listing raise end end |
#listings ⇒ Object
Get a list of all languages - returns the list make sure to have an active edit
112 113 114 115 116 117 118 119 120 |
# File 'lib/supply/client.rb', line 112 def listings ensure_active_edit! result = android_publisher.list_listings(current_package_name, current_edit.id) return result.listings.map do |row| Listing.new(self, row.language, row) end end |
#track_version_codes(track) ⇒ Object
Get list of version codes for track
216 217 218 219 220 221 222 223 224 225 |
# File 'lib/supply/client.rb', line 216 def track_version_codes(track) ensure_active_edit! result = android_publisher.get_track( current_package_name, current_edit.id, track) return result.version_codes end |
#update_apk_listing_for_language(apk_listing) ⇒ Object
227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 |
# File 'lib/supply/client.rb', line 227 def update_apk_listing_for_language(apk_listing) ensure_active_edit! apk_listing_object = Androidpublisher::ApkListing.new({ language: apk_listing.language, recent_changes: apk_listing.recent_changes }) android_publisher.update_apk_listing( current_package_name, current_edit.id, apk_listing.apk_version_code, apk_listing.language, apk_listing_object) end |
#update_listing_for_language(language: nil, title: nil, short_description: nil, full_description: nil, video: nil) ⇒ Object
Updates or creates the listing for the specified language
167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 |
# File 'lib/supply/client.rb', line 167 def update_listing_for_language(language: nil, title: nil, short_description: nil, full_description: nil, video: nil) ensure_active_edit! listing = Androidpublisher::Listing.new({ language: language, title: title, full_description: full_description, short_description: short_description, video: video }) android_publisher.update_listing( current_package_name, current_edit.id, language, listing) end |
#update_track(track, rollout, apk_version_code) ⇒ Object
Updates the track for the provided version code(s)
197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 |
# File 'lib/supply/client.rb', line 197 def update_track(track, rollout, apk_version_code) ensure_active_edit! track_version_codes = apk_version_code.kind_of?(Array) ? apk_version_code : [apk_version_code] track_body = Androidpublisher::Track.new({ track: track, user_fraction: rollout, version_codes: track_version_codes }) android_publisher.update_track( current_package_name, current_edit.id, track, track_body) end |
#upload_apk(path_to_apk) ⇒ Object
185 186 187 188 189 190 191 192 193 194 |
# File 'lib/supply/client.rb', line 185 def upload_apk(path_to_apk) ensure_active_edit! result_upload = android_publisher.upload_apk( current_package_name, current_edit.id, upload_source: path_to_apk) return result_upload.version_code end |
#upload_image(image_path: nil, image_type: nil, language: nil) ⇒ Object
260 261 262 263 264 265 266 267 268 269 270 |
# File 'lib/supply/client.rb', line 260 def upload_image(image_path: nil, image_type: nil, language: nil) ensure_active_edit! android_publisher.upload_image( current_package_name, current_edit.id, language, image_type, upload_source: image_path, content_type: 'image/*') end |
#upload_obb(obb_file_path: nil, apk_version_code: nil, expansion_file_type: nil) ⇒ Object
282 283 284 285 286 287 288 289 290 291 292 293 |
# File 'lib/supply/client.rb', line 282 def upload_obb(obb_file_path: nil, apk_version_code: nil, expansion_file_type: nil) ensure_active_edit! android_publisher.upload_expansion_file( current_package_name, current_edit.id, apk_version_code, expansion_file_type, upload_source: obb_file_path, content_type: 'application/octet-stream' ) end |