Sha256: 58e5320d38acd72ec1c6a9d8dcaf7aab9b4b9dab51d6a82bf579af5295893cb0

Contents?: true

Size: 1.85 KB

Versions: 180

Compression:

Stored size: 1.85 KB

Contents

require 'open-uri'

require_relative 'ui/ui'

module FastlaneCore
  # A wrapper around the Apple iTunes Search API to access app information like
  # the app identifier of an app.
  class ItunesSearchApi
    # Fetch all information you can get from a specific AppleID of an app
    # @param id (int) The AppleID of the given app. This usually consists of 9 digits.
    # @param country (string) The optional ISO-2A country code
    # @return (Hash) the response of the first result from Apple (https://itunes.apple.com/lookup?id=284882215[&country=FR])
    # @example Response of Facebook App: https://itunes.apple.com/lookup?id=284882215[&country=FR]
    #  {
    #   ...
    #   artistName: "Facebook, Inc.",
    #   price: 0,
    #   version: "14.9",
    #   ...
    #  }
    def self.fetch(id, country = nil)
      # Example: https://itunes.apple.com/lookup?id=284882215[&country=FR]
      suffix = country.nil? ? nil : "&country=#{country}"
      fetch_url("https://itunes.apple.com/lookup?id=#{id}#{suffix}")
    end

    def self.fetch_by_identifier(app_identifier, country = nil)
      # Example: http://itunes.apple.com/lookup?bundleId=net.sunapps.1[&country=FR]
      suffix = country.nil? ? nil : "&country=#{country}"
      fetch_url("https://itunes.apple.com/lookup?bundleId=#{app_identifier}#{suffix}")
    end

    # This method only fetches the bundle identifier of a given app
    # @param id (int) The AppleID of the given app. This usually consists of 9 digits.
    # @return (String) the Bundle identifier of the app
    def self.fetch_bundle_identifier(id)
      self.fetch(id)['bundleId']
    end

    def self.fetch_url(url)
      response = JSON.parse(open(url).read)
      return nil if response['resultCount'] == 0

      return response['results'].first
    rescue
      UI.error("Could not find object '#{url}' using the iTunes API")
      nil
    end
  end
end

Version data entries

180 entries across 180 versions & 1 rubygems

Version Path
fastlane-2.105.2 fastlane_core/lib/fastlane_core/itunes_search_api.rb
fastlane-2.105.1 fastlane_core/lib/fastlane_core/itunes_search_api.rb
fastlane-2.104.0 fastlane_core/lib/fastlane_core/itunes_search_api.rb
fastlane-2.103.1 fastlane_core/lib/fastlane_core/itunes_search_api.rb
fastlane-2.103.0 fastlane_core/lib/fastlane_core/itunes_search_api.rb
fastlane-2.102.0 fastlane_core/lib/fastlane_core/itunes_search_api.rb
fastlane-2.101.1 fastlane_core/lib/fastlane_core/itunes_search_api.rb
fastlane-2.101.0 fastlane_core/lib/fastlane_core/itunes_search_api.rb
fastlane-2.100.1 fastlane_core/lib/fastlane_core/itunes_search_api.rb
fastlane-2.100.0 fastlane_core/lib/fastlane_core/itunes_search_api.rb
fastlane-2.99.1 fastlane_core/lib/fastlane_core/itunes_search_api.rb
fastlane-2.99.0 fastlane_core/lib/fastlane_core/itunes_search_api.rb
fastlane-2.98.0 fastlane_core/lib/fastlane_core/itunes_search_api.rb
fastlane-2.97.0 fastlane_core/lib/fastlane_core/itunes_search_api.rb
fastlane-2.96.1 fastlane_core/lib/fastlane_core/itunes_search_api.rb
fastlane-2.96.0 fastlane_core/lib/fastlane_core/itunes_search_api.rb
fastlane-2.96.0.beta.20180521050117 fastlane_core/lib/fastlane_core/itunes_search_api.rb
fastlane-2.96.0.beta.20180520050019 fastlane_core/lib/fastlane_core/itunes_search_api.rb
fastlane-2.96.0.beta.20180519050103 fastlane_core/lib/fastlane_core/itunes_search_api.rb
fastlane-2.96.0.beta.20180518050116 fastlane_core/lib/fastlane_core/itunes_search_api.rb