Module: Octokit::Client::Apps

Included in:
Octokit::Client
Defined in:
lib/octokit/client/apps.rb

Overview

Methods for the Apps API

Instance Method Summary collapse

Instance Method Details

#add_repository_to_app_installation(installation, repo, options = {}) ⇒ Boolean Also known as: add_repo_to_installation

Add a single repository to an installation

Parameters:

  • installation (Integer)

    The id of a GitHub App Installation

  • repo (Integer)

    The id of the GitHub repository

  • options (Hash) (defaults to: {})

    A customizable set of options

Returns:

  • (Boolean)

    Success

See Also:



152
153
154
155
# File 'lib/octokit/client/apps.rb', line 152

def add_repository_to_app_installation(installation, repo, options = {})
  opts = ensure_api_media_type(:integrations, options)
  boolean_from_response :put, "user/installations/#{installation}/repositories/#{repo}", opts
end

#add_repository_to_integration_installation(installation, repo, options = {}) ⇒ Object



158
159
160
161
162
163
164
165
166
# File 'lib/octokit/client/apps.rb', line 158

def add_repository_to_integration_installation(installation, repo, options = {})
  octokit_warn(
    "Deprecated: Octokit::Client::Apps#add_repository_to_integration_installation "\
    "method is deprecated. Please update your call to use "\
    "Octokit::Client::Apps#add_repository_to_app_installation before the next major "\
    "Octokit version update."
  )
  add_repository_to_app_installation(installation, repo, options)
end

#create_app_installation_access_token(installation, options = {}) ⇒ <Sawyer::Resource> Also known as: create_installation_access_token

Create a new installation token

Parameters:

  • installation (Integer)

    The id of a GitHub App Installation

  • options (Hash) (defaults to: {})

    A customizable set of options

Returns:

  • (<Sawyer::Resource>)

    An installation token

See Also:



64
65
66
67
# File 'lib/octokit/client/apps.rb', line 64

def create_app_installation_access_token(installation, options = {})
  opts = ensure_api_media_type(:integrations, options)
  post "app/installations/#{installation}/access_tokens", opts
end

#create_integration_installation_access_token(installation, options = {}) ⇒ Object



70
71
72
73
74
75
76
77
78
# File 'lib/octokit/client/apps.rb', line 70

def create_integration_installation_access_token(installation, options = {})
  octokit_warn(
    "Deprecated: Octokit::Client::Apps#create_integration_installation_access_token "\
    "method is deprecated. Please update your call to use "\
    "Octokit::Client::Apps#create_app_installation_access_token before the next major "\
    "Octokit version update."
  )
  create_app_installation_access_token(installation, options)
end

#find_app_installations(options = {}) ⇒ Array<Sawyer::Resource> Also known as: find_installations

Find all installations that belong to an App

Parameters:

  • options (Hash) (defaults to: {})

    A customizable set of options

Returns:

  • (Array<Sawyer::Resource>)

    the total_count and an array of installations

See Also:



14
15
16
17
# File 'lib/octokit/client/apps.rb', line 14

def find_app_installations(options = {})
  opts = ensure_api_media_type(:integrations, options)
  paginate "app/installations", opts
end

#find_installation_repositories_for_user(installation, options = {}) ⇒ Sawyer::Resource

List repositories accessible to the user for an installation

Parameters:

  • installation (Integer)

    The id of a GitHub App Installation

  • options (Hash) (defaults to: {})

    A customizable set of options

Returns:

  • (Sawyer::Resource)

    the total_count and an array of repositories

See Also:



201
202
203
204
205
206
# File 'lib/octokit/client/apps.rb', line 201

def find_installation_repositories_for_user(installation, options = {})
  opts = ensure_api_media_type(:integrations, options)
  paginate("user/installations/#{installation}/repositories", opts) do |data, last_response|
    data.repositories.concat last_response.data.repositories
  end
end

#find_integration_installations(options = {}) ⇒ Object



20
21
22
23
24
25
26
27
28
# File 'lib/octokit/client/apps.rb', line 20

def find_integration_installations(options = {})
  octokit_warn(
    "Deprecated: Octokit::Client::Apps#find_integration_installations "\
    "method is deprecated. Please update your call to use "\
    "Octokit::Client::Apps#find_app_installations before the next major "\
    "Octokit version update."
  )
  find_app_installations(options)
end

#find_organization_installation(organization, options = {}) ⇒ Sawyer::Resource

Enables an app to find the organization’s installation information.

Parameters:

  • organization (String)

    Organization GitHub login

  • options (Hash) (defaults to: {})

    A customizable set of options

Returns:

  • (Sawyer::Resource)

    Installation information

See Also:



88
89
90
91
# File 'lib/octokit/client/apps.rb', line 88

def find_organization_installation(organization, options = {})
  opts = ensure_api_media_type(:integrations, options)
  get "#{Organization.path(organization)}/installation", opts
end

#find_repository_installation(repo, options = {}) ⇒ Sawyer::Resource

Enables an app to find the repository’s installation information.

Parameters:

  • repo (String)

    A GitHub repository

  • options (Hash) (defaults to: {})

    A customizable set of options

Returns:

  • (Sawyer::Resource)

    Installation information

See Also:



101
102
103
104
# File 'lib/octokit/client/apps.rb', line 101

def find_repository_installation(repo, options = {})
  opts = ensure_api_media_type(:integrations, options)
  get "#{Repository.path(repo)}/installation", opts
end

#find_user_installation(user, options = {}) ⇒ Sawyer::Resource

Enables an app to find the user’s installation information.

Parameters:

  • user (String)

    GitHub user login

  • options (Hash) (defaults to: {})

    A customizable set of options

Returns:

  • (Sawyer::Resource)

    Installation information

See Also:



114
115
116
117
# File 'lib/octokit/client/apps.rb', line 114

def find_user_installation(user, options = {})
  opts = ensure_api_media_type(:integrations, options)
  get "#{User.path(user)}/installation", opts
end

#find_user_installations(options = {}) ⇒ Sawyer::Resource

Find all installations that are accessible to the authenticated user

Parameters:

  • options (Hash) (defaults to: {})

    A customizable set of options

Returns:

  • (Sawyer::Resource)

    the total_count and an array of installations

See Also:



37
38
39
40
41
42
# File 'lib/octokit/client/apps.rb', line 37

def find_user_installations(options = {})
  opts = ensure_api_media_type(:integrations, options)
  paginate("user/installations", opts) do |data, last_response|
    data.installations.concat last_response.data.installations
  end
end

#installation(id, options = {}) ⇒ Sawyer::Resource

Get a single installation

Parameters:

  • id (Integer)

    Installation id

Returns:

  • (Sawyer::Resource)

    Installation information

See Also:



51
52
53
54
# File 'lib/octokit/client/apps.rb', line 51

def installation(id, options = {})
  opts = ensure_api_media_type(:integrations, options)
  get "app/installations/#{id}", opts
end

#list_app_installation_repositories(options = {}) ⇒ Sawyer::Resource Also known as: list_installation_repos

List repositories that are accessible to the authenticated installation

Parameters:

  • options (Hash) (defaults to: {})

    A customizable set of options

Returns:

  • (Sawyer::Resource)

    the total_count and an array of repositories

See Also:



125
126
127
128
129
130
# File 'lib/octokit/client/apps.rb', line 125

def list_app_installation_repositories(options = {})
  opts = ensure_api_media_type(:integrations, options)
  paginate("installation/repositories", opts) do |data, last_response|
    data.repositories.concat last_response.data.repositories
  end
end

#list_integration_installation_repositories(options = {}) ⇒ Object



133
134
135
136
137
138
139
140
141
# File 'lib/octokit/client/apps.rb', line 133

def list_integration_installation_repositories(options = {})
  octokit_warn(
    "Deprecated: Octokit::Client::Apps#list_integration_installation_repositories "\
    "method is deprecated. Please update your call to use "\
    "Octokit::Client::Apps#list_app_installation_repositories before the next major "\
    "Octokit version update."
  )
  list_app_installation_repositories(options)
end

#remove_repository_from_app_installation(installation, repo, options = {}) ⇒ Boolean Also known as: remove_repo_from_installation

Remove a single repository to an installation

Parameters:

  • installation (Integer)

    The id of a GitHub App Installation

  • repo (Integer)

    The id of the GitHub repository

  • options (Hash) (defaults to: {})

    A customizable set of options

Returns:

  • (Boolean)

    Success

See Also:



177
178
179
180
# File 'lib/octokit/client/apps.rb', line 177

def remove_repository_from_app_installation(installation, repo, options = {})
  opts = ensure_api_media_type(:integrations, options)
  boolean_from_response :delete, "user/installations/#{installation}/repositories/#{repo}", opts
end

#remove_repository_from_integration_installation(installation, repo, options = {}) ⇒ Object



183
184
185
186
187
188
189
190
191
# File 'lib/octokit/client/apps.rb', line 183

def remove_repository_from_integration_installation(installation, repo, options = {})
  octokit_warn(
    "Deprecated: Octokit::Client::Apps#remove_repository_from_integration_installation "\
    "method is deprecated. Please update your call to use "\
    "Octokit::Client::Apps#remove_repository_from_app_installation before the next major "\
    "Octokit version update."
  )
  remove_repository_from_app_installation(installation, repo, options)
end