Sha256: dd9e2ffe97c4046685c96a7719bec90ffa12ea67c83c67c662253a9cbbafd056

Contents?: true

Size: 1.65 KB

Versions: 3

Compression:

Stored size: 1.65 KB

Contents

require_relative 'app'
require_relative 'networking'
require_relative 'paging_array'

module Hockey

  # HockeyApp API Client for Application
  class Client

    #
    def initialize(token, debug: false, network: nil)
      @net = network || Networking.new(token, debug:debug)
      @cached_apps = nil
    end

    # List all apps for the logged user, including owned apps, developer apps, member apps, and tester apps on HockeyApp.
    #
    # @return [Array<App>] an array of {App} objects.
    # @param page [Fixnum] optional, used for pagination
    def apps(page: 1)
      @cached_apps ||= []

      if @cached_apps.empty?
        obj = @net.get_object '/api/2/apps'
        obj['apps'].each do |hashobj|
          @cached_apps << App.create_from(hashobj, @net)
        end
      end

      PagingArray.paginate with: @cached_apps, page: page
    end

    # List all teams for an account.
    #
    # @return [Hockey::PagingArray<Team>] an array of {Team} objects
    # @param page [Fixnum] optional, used for pagination
    def teams(page: 1)
      teams = PagingArray.new

      obj = @net.get_object('/api/2/teams') do |req|
        req.params[:page] = page
      end
      obj['teams'].each do |hashobj|
        teams << Team.create_from(hashobj, @net)
      end

      teams.update_page(obj)

      teams
    end

    # Create a new app without uploading a file on HockeyApp.
    # return an App object.
    def new_app(title: '', bundle_identifier: '', platform: 'iOS')
      obj = @net.post_object '/api/2/apps/new', {:title=>title, :bundle_identifier=>bundle_identifier, :platform=>platform, :release_type=>0}

      app = App.create_from(obj, @net)

      app
    end

  end

end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
hockeyhelper-0.0.7 lib/hockeyhelper/client.rb
hockeyhelper-0.0.6 lib/hockeyhelper/client.rb
hockeyhelper-0.0.4 lib/hockeyhelper/client.rb