-
Notifications
You must be signed in to change notification settings - Fork 958
Expand file tree
/
Copy pathresource_github_team_repository.go
More file actions
247 lines (217 loc) · 6.43 KB
/
resource_github_team_repository.go
File metadata and controls
247 lines (217 loc) · 6.43 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
package github
import (
"context"
"errors"
"fmt"
"log"
"net/http"
"strconv"
"github.com/google/go-github/v82/github"
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
)
func resourceGithubTeamRepository() *schema.Resource {
return &schema.Resource{
Create: resourceGithubTeamRepositoryCreate,
Read: resourceGithubTeamRepositoryRead,
Update: resourceGithubTeamRepositoryUpdate,
Delete: resourceGithubTeamRepositoryDelete,
Importer: &schema.ResourceImporter{
State: func(d *schema.ResourceData, meta any) ([]*schema.ResourceData, error) {
teamIdString, username, err := parseTwoPartID(d.Id(), "team_id", "username")
if err != nil {
return nil, err
}
teamId, err := getTeamID(teamIdString, meta)
if err != nil {
return nil, err
}
d.SetId(buildTwoPartID(strconv.FormatInt(teamId, 10), username))
return []*schema.ResourceData{d}, nil
},
},
Schema: map[string]*schema.Schema{
"team_id": {
Type: schema.TypeString,
Required: true,
ForceNew: true,
Description: "ID or slug of team",
},
"repository": {
Type: schema.TypeString,
Required: true,
ForceNew: true,
Description: "The repository to add to the team.",
},
"permission": {
Type: schema.TypeString,
Optional: true,
Default: "pull",
Description: "The permissions of team members regarding the repository. Must be one of 'pull', 'triage', 'push', 'maintain', 'admin' or the name of an existing custom repository role within the organisation.",
},
"etag": {
Type: schema.TypeString,
Optional: true,
Computed: true,
DiffSuppressFunc: func(k, o, n string, d *schema.ResourceData) bool {
return true
},
DiffSuppressOnRefresh: true,
},
},
}
}
func resourceGithubTeamRepositoryCreate(d *schema.ResourceData, meta any) error {
err := checkOrganization(meta)
if err != nil {
return err
}
client := meta.(*Owner).v3client
orgId := meta.(*Owner).id
// The given team id could be an id or a slug
givenTeamId := d.Get("team_id").(string)
teamId, err := getTeamID(givenTeamId, meta)
if err != nil {
return err
}
orgName := meta.(*Owner).name
repoName := d.Get("repository").(string)
permission := d.Get("permission").(string)
ctx := context.Background()
_, err = client.Teams.AddTeamRepoByID(ctx,
orgId,
teamId,
orgName,
repoName,
&github.TeamAddTeamRepoOptions{
Permission: permission,
},
)
if err != nil {
return err
}
d.SetId(buildTwoPartID(strconv.FormatInt(teamId, 10), repoName))
return resourceGithubTeamRepositoryRead(d, meta)
}
func resourceGithubTeamRepositoryRead(d *schema.ResourceData, meta any) error {
err := checkOrganization(meta)
if err != nil {
return err
}
client := meta.(*Owner).v3client
orgId := meta.(*Owner).id
teamIdString, repoName, err := parseTwoPartID(d.Id(), "team_id", "repository")
if err != nil {
return err
}
teamId, err := getTeamID(teamIdString, meta)
if err != nil {
return err
}
orgName := meta.(*Owner).name
ctx := context.WithValue(context.Background(), ctxId, d.Id())
if !d.IsNewResource() {
ctx = context.WithValue(ctx, ctxEtag, d.Get("etag").(string))
}
repo, resp, repoErr := client.Teams.IsTeamRepoByID(ctx, orgId, teamId, orgName, repoName)
if repoErr != nil {
var ghErr *github.ErrorResponse
if errors.As(repoErr, &ghErr) {
if ghErr.Response.StatusCode == http.StatusNotModified {
return nil
}
if ghErr.Response.StatusCode == http.StatusNotFound {
log.Printf("[INFO] Removing team repository association %s from state because it no longer exists in GitHub",
d.Id())
d.SetId("")
return nil
}
}
return repoErr
}
if err = d.Set("etag", resp.Header.Get("ETag")); err != nil {
return err
}
if d.Get("team_id") == "" {
// If team_id is empty, that means we are importing the resource.
// Set the team_id to be the id of the team.
if err = d.Set("team_id", teamIdString); err != nil {
return err
}
}
if err = d.Set("repository", repo.GetName()); err != nil {
return err
}
if err = d.Set("permission", getPermission(repo.GetRoleName())); err != nil {
return err
}
return nil
}
func resourceGithubTeamRepositoryUpdate(d *schema.ResourceData, meta any) error {
err := checkOrganization(meta)
if err != nil {
return err
}
client := meta.(*Owner).v3client
orgId := meta.(*Owner).id
teamIdString, repoName, err := parseTwoPartID(d.Id(), "team_id", "repository")
if err != nil {
return err
}
teamId, err := strconv.ParseInt(teamIdString, 10, 64)
if err != nil {
return unconvertibleIdErr(teamIdString, err)
}
orgName := meta.(*Owner).name
permission := d.Get("permission").(string)
ctx := context.WithValue(context.Background(), ctxId, d.Id())
// the go-github library's AddTeamRepo method uses the add/update endpoint from GitHub API
_, err = client.Teams.AddTeamRepoByID(ctx,
orgId,
teamId,
orgName,
repoName,
&github.TeamAddTeamRepoOptions{
Permission: permission,
},
)
if err != nil {
return err
}
d.SetId(buildTwoPartID(teamIdString, repoName))
return resourceGithubTeamRepositoryRead(d, meta)
}
func resourceGithubTeamRepositoryDelete(d *schema.ResourceData, meta any) error {
err := checkOrganization(meta)
if err != nil {
return err
}
client := meta.(*Owner).v3client
orgId := meta.(*Owner).id
teamIdString, repoName, err := parseTwoPartID(d.Id(), "team_id", "repository")
if err != nil {
return err
}
teamId, err := strconv.ParseInt(teamIdString, 10, 64)
if err != nil {
return unconvertibleIdErr(teamIdString, err)
}
orgName := meta.(*Owner).name
ctx := context.WithValue(context.Background(), ctxId, d.Id())
resp, err := client.Teams.RemoveTeamRepoByID(ctx, orgId, teamId, orgName, repoName)
if resp.StatusCode == 404 {
log.Printf("[DEBUG] Failed to find team %s to delete for repo: %s.", teamIdString, repoName)
repo, _, err := client.Repositories.Get(ctx, orgName, repoName)
if err != nil {
return err
}
newRepoName := repo.GetName()
if newRepoName != repoName {
log.Printf("[INFO] Repo name has changed %s -> %s. "+
"Try deleting team repository again.",
repoName, newRepoName)
_, err := client.Teams.RemoveTeamRepoByID(ctx, orgId, teamId, orgName, newRepoName)
return handleArchivedRepoDelete(err, "team repository access", fmt.Sprintf("team %s", teamIdString), orgName, newRepoName)
}
}
return handleArchivedRepoDelete(err, "team repository access", fmt.Sprintf("team %s", teamIdString), orgName, repoName)
}