providers/github/members.go (49 lines of code) (raw):
// Copyright 2018 The Terraformer Authors.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package github
import (
"context"
"log"
"github.com/GoogleCloudPlatform/terraformer/terraformutils"
githubAPI "github.com/google/go-github/v35/github"
)
// MembersGenerator holds GithubService struct of Terraform service information
type MembersGenerator struct {
GithubService
}
// InitResources generates TerraformResources from Github API,
func (g *MembersGenerator) InitResources() error {
ctx := context.Background()
client, err := g.createClient()
if err != nil {
return err
}
owner := g.Args["owner"].(string)
g.Resources = append(g.Resources, createMembershipsResources(ctx, client, owner)...)
return nil
}
func createMembershipsResources(ctx context.Context, client *githubAPI.Client, owner string) []terraformutils.Resource {
resources := []terraformutils.Resource{}
opt := &githubAPI.ListMembersOptions{
ListOptions: githubAPI.ListOptions{PerPage: 100},
}
// List all organization members for the authenticated user
for {
members, resp, err := client.Organizations.ListMembers(ctx, owner, opt)
if err != nil {
log.Println(err)
return nil
}
for _, member := range members {
resource := terraformutils.NewSimpleResource(
owner+":"+member.GetLogin(),
member.GetLogin(),
"github_membership",
"github",
[]string{},
)
resource.SlowQueryRequired = true
resources = append(resources, resource)
}
if resp.NextPage == 0 {
break
}
opt.Page = resp.NextPage
}
return resources
}