2017-02-07 21:33:23 +00:00
|
|
|
// Copyright 2016 The go-github AUTHORS. All rights reserved.
|
|
|
|
//
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package github
|
|
|
|
|
2017-04-11 15:10:46 +00:00
|
|
|
import "context"
|
|
|
|
|
2017-07-06 14:28:13 +00:00
|
|
|
// AppsService provides access to the installation related functions
|
2017-02-07 21:33:23 +00:00
|
|
|
// in the GitHub API.
|
|
|
|
//
|
2017-07-06 14:28:13 +00:00
|
|
|
// GitHub API docs: https://developer.github.com/v3/apps/
|
|
|
|
type AppsService service
|
2017-02-07 21:33:23 +00:00
|
|
|
|
2017-07-06 14:28:13 +00:00
|
|
|
// ListInstallations lists the installations that the current GitHub App has.
|
2017-02-07 21:33:23 +00:00
|
|
|
//
|
2017-07-06 14:28:13 +00:00
|
|
|
// GitHub API docs: https://developer.github.com/v3/apps/#find-installations
|
|
|
|
func (s *AppsService) ListInstallations(ctx context.Context, opt *ListOptions) ([]*Installation, *Response, error) {
|
|
|
|
u, err := addOptions("app/installations", opt)
|
2017-02-07 21:33:23 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
req, err := s.client.NewRequest("GET", u, nil)
|
|
|
|
if err != nil {
|
|
|
|
return nil, nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: remove custom Accept header when this API fully launches.
|
|
|
|
req.Header.Set("Accept", mediaTypeIntegrationPreview)
|
|
|
|
|
2017-04-11 15:10:46 +00:00
|
|
|
var i []*Installation
|
|
|
|
resp, err := s.client.Do(ctx, req, &i)
|
2017-02-07 21:33:23 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, resp, err
|
|
|
|
}
|
|
|
|
|
2017-04-11 15:10:46 +00:00
|
|
|
return i, resp, nil
|
2017-02-07 21:33:23 +00:00
|
|
|
}
|