51 lines
1.3 KiB
Go
51 lines
1.3 KiB
Go
|
package github
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
|
||
|
remoteerror "github.com/cloudskiff/driftctl/pkg/remote/error"
|
||
|
tf "github.com/cloudskiff/driftctl/pkg/remote/terraform"
|
||
|
"github.com/cloudskiff/driftctl/pkg/resource"
|
||
|
"github.com/cloudskiff/driftctl/pkg/resource/github"
|
||
|
)
|
||
|
|
||
|
type GithubTeamEnumerator struct {
|
||
|
repository GithubRepository
|
||
|
factory resource.ResourceFactory
|
||
|
providerConfig tf.TerraformProviderConfig
|
||
|
}
|
||
|
|
||
|
func NewGithubTeamEnumerator(repo GithubRepository, factory resource.ResourceFactory, providerConfig tf.TerraformProviderConfig) *GithubTeamEnumerator {
|
||
|
return &GithubTeamEnumerator{
|
||
|
repository: repo,
|
||
|
factory: factory,
|
||
|
providerConfig: providerConfig,
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func (g *GithubTeamEnumerator) SupportedType() resource.ResourceType {
|
||
|
return github.GithubTeamResourceType
|
||
|
}
|
||
|
|
||
|
func (g *GithubTeamEnumerator) Enumerate() ([]resource.Resource, error) {
|
||
|
resourceList, err := g.repository.ListTeams()
|
||
|
if err != nil {
|
||
|
return nil, remoteerror.NewResourceEnumerationError(err, string(g.SupportedType()))
|
||
|
}
|
||
|
|
||
|
results := make([]resource.Resource, len(resourceList))
|
||
|
|
||
|
for _, team := range resourceList {
|
||
|
results = append(
|
||
|
results,
|
||
|
g.factory.CreateAbstractResource(
|
||
|
string(g.SupportedType()),
|
||
|
fmt.Sprintf("%d", team.DatabaseId),
|
||
|
map[string]interface{}{},
|
||
|
),
|
||
|
)
|
||
|
}
|
||
|
|
||
|
return results, err
|
||
|
}
|