-
Notifications
You must be signed in to change notification settings - Fork 9.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
provider/github: Implements github_branch_protection
- Loading branch information
Showing
5 changed files
with
574 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
278 changes: 278 additions & 0 deletions
278
builtin/providers/github/resource_github_branch_protection.go
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,278 @@ | ||
package github | ||
|
||
import ( | ||
"context" | ||
"errors" | ||
|
||
"github.com/google/go-github/github" | ||
"github.com/hashicorp/terraform/helper/schema" | ||
) | ||
|
||
func resourceGithubBranchProtection() *schema.Resource { | ||
return &schema.Resource{ | ||
Create: resourceGithubBranchProtectionCreate, | ||
Read: resourceGithubBranchProtectionRead, | ||
Update: resourceGithubBranchProtectionUpdate, | ||
Delete: resourceGithubBranchProtectionDelete, | ||
Importer: &schema.ResourceImporter{ | ||
State: schema.ImportStatePassthrough, | ||
}, | ||
|
||
Schema: map[string]*schema.Schema{ | ||
"repository": { | ||
Type: schema.TypeString, | ||
Required: true, | ||
ForceNew: true, | ||
}, | ||
"branch": { | ||
Type: schema.TypeString, | ||
Required: true, | ||
ForceNew: true, | ||
}, | ||
"required_status_checks": { | ||
Type: schema.TypeList, | ||
Optional: true, | ||
MaxItems: 1, | ||
Elem: &schema.Resource{ | ||
Schema: map[string]*schema.Schema{ | ||
"include_admins": { | ||
Type: schema.TypeBool, | ||
Optional: true, | ||
Default: false, | ||
}, | ||
"strict": { | ||
Type: schema.TypeBool, | ||
Optional: true, | ||
Default: false, | ||
}, | ||
"contexts": { | ||
Type: schema.TypeList, | ||
Optional: true, | ||
Elem: &schema.Schema{ | ||
Type: schema.TypeString, | ||
}, | ||
}, | ||
}, | ||
}, | ||
}, | ||
"required_pull_request_reviews": { | ||
Type: schema.TypeList, | ||
Optional: true, | ||
MaxItems: 1, | ||
Elem: &schema.Resource{ | ||
Schema: map[string]*schema.Schema{ | ||
"include_admins": { | ||
Type: schema.TypeBool, | ||
Optional: true, | ||
Default: false, | ||
}, | ||
}, | ||
}, | ||
}, | ||
"restrictions": { | ||
Type: schema.TypeList, | ||
Optional: true, | ||
MaxItems: 1, | ||
Elem: &schema.Resource{ | ||
Schema: map[string]*schema.Schema{ | ||
"users": { | ||
Type: schema.TypeList, | ||
Optional: true, | ||
Elem: &schema.Schema{Type: schema.TypeString}, | ||
}, | ||
"teams": { | ||
Type: schema.TypeList, | ||
Optional: true, | ||
Elem: &schema.Schema{Type: schema.TypeString}, | ||
}, | ||
}, | ||
}, | ||
}, | ||
}, | ||
} | ||
} | ||
|
||
func resourceGithubBranchProtectionCreate(d *schema.ResourceData, meta interface{}) error { | ||
client := meta.(*Organization).client | ||
r := d.Get("repository").(string) | ||
b := d.Get("branch").(string) | ||
|
||
protectionRequest, err := buildProtectionRequest(d) | ||
if err != nil { | ||
return err | ||
} | ||
|
||
_, _, err = client.Repositories.UpdateBranchProtection(context.TODO(), meta.(*Organization).name, r, b, protectionRequest) | ||
if err != nil { | ||
return err | ||
} | ||
d.SetId(buildTwoPartID(&r, &b)) | ||
|
||
return resourceGithubBranchProtectionRead(d, meta) | ||
} | ||
|
||
func resourceGithubBranchProtectionRead(d *schema.ResourceData, meta interface{}) error { | ||
client := meta.(*Organization).client | ||
r, b := parseTwoPartID(d.Id()) | ||
|
||
githubProtection, _, err := client.Repositories.GetBranchProtection(context.TODO(), meta.(*Organization).name, r, b) | ||
if err != nil { | ||
d.SetId("") | ||
return nil | ||
} | ||
|
||
d.Set("repository", r) | ||
d.Set("branch", b) | ||
|
||
rsc := githubProtection.RequiredStatusChecks | ||
if rsc != nil { | ||
d.Set("required_status_checks", []interface{}{ | ||
map[string]interface{}{ | ||
"include_admins": rsc.IncludeAdmins, | ||
"strict": rsc.Strict, | ||
"contexts": rsc.Contexts, | ||
}, | ||
}) | ||
} else { | ||
d.Set("required_status_checks", []interface{}{}) | ||
} | ||
|
||
rprr := githubProtection.RequiredPullRequestReviews | ||
if rprr != nil { | ||
d.Set("required_pull_request_reviews", []interface{}{ | ||
map[string]interface{}{ | ||
"include_admins": rprr.IncludeAdmins, | ||
}, | ||
}) | ||
} else { | ||
d.Set("required_pull_request_reviews", []interface{}{}) | ||
} | ||
|
||
restrictions := githubProtection.Restrictions | ||
if restrictions != nil { | ||
var userLogins []string | ||
for _, u := range restrictions.Users { | ||
if u.Login != nil { | ||
userLogins = append(userLogins, *u.Login) | ||
} | ||
} | ||
var teamSlugs []string | ||
for _, t := range restrictions.Teams { | ||
if t.Slug != nil { | ||
teamSlugs = append(teamSlugs, *t.Slug) | ||
} | ||
} | ||
|
||
d.Set("restrictions", []interface{}{ | ||
map[string]interface{}{ | ||
"users": userLogins, | ||
"teams": teamSlugs, | ||
}, | ||
}) | ||
} else { | ||
d.Set("restrictions", []interface{}{}) | ||
} | ||
|
||
return nil | ||
} | ||
|
||
func resourceGithubBranchProtectionUpdate(d *schema.ResourceData, meta interface{}) error { | ||
client := meta.(*Organization).client | ||
r, b := parseTwoPartID(d.Id()) | ||
|
||
protectionRequest, err := buildProtectionRequest(d) | ||
if err != nil { | ||
return err | ||
} | ||
|
||
_, _, err = client.Repositories.UpdateBranchProtection(context.TODO(), meta.(*Organization).name, r, b, protectionRequest) | ||
if err != nil { | ||
return err | ||
} | ||
d.SetId(buildTwoPartID(&r, &b)) | ||
|
||
return resourceGithubBranchProtectionRead(d, meta) | ||
} | ||
|
||
func resourceGithubBranchProtectionDelete(d *schema.ResourceData, meta interface{}) error { | ||
client := meta.(*Organization).client | ||
r, b := parseTwoPartID(d.Id()) | ||
|
||
_, err := client.Repositories.RemoveBranchProtection(context.TODO(), meta.(*Organization).name, r, b) | ||
return err | ||
} | ||
|
||
func buildProtectionRequest(d *schema.ResourceData) (*github.ProtectionRequest, error) { | ||
protectionRequest := new(github.ProtectionRequest) | ||
|
||
if v, ok := d.GetOk("required_status_checks"); ok { | ||
vL := v.([]interface{}) | ||
if len(vL) > 1 { | ||
return nil, errors.New("cannot specify required_status_checks more than one time") | ||
} | ||
|
||
for _, v := range vL { | ||
m := v.(map[string]interface{}) | ||
|
||
rsc := new(github.RequiredStatusChecks) | ||
rsc.IncludeAdmins = m["include_admins"].(bool) | ||
rsc.Strict = m["strict"].(bool) | ||
|
||
rsc.Contexts = []string{} | ||
if contexts, ok := m["contexts"].([]interface{}); ok { | ||
for _, c := range contexts { | ||
rsc.Contexts = append(rsc.Contexts, c.(string)) | ||
} | ||
} | ||
|
||
protectionRequest.RequiredStatusChecks = rsc | ||
} | ||
} | ||
|
||
if v, ok := d.GetOk("required_pull_request_reviews"); ok { | ||
vL := v.([]interface{}) | ||
if len(vL) > 1 { | ||
return nil, errors.New("cannot specify required_pull_request_reviews more than one time") | ||
} | ||
|
||
for _, v := range vL { | ||
m := v.(map[string]interface{}) | ||
|
||
rprr := new(github.RequiredPullRequestReviews) | ||
rprr.IncludeAdmins = m["include_admins"].(bool) | ||
|
||
protectionRequest.RequiredPullRequestReviews = rprr | ||
} | ||
} | ||
|
||
if v, ok := d.GetOk("restrictions"); ok { | ||
vL := v.([]interface{}) | ||
if len(vL) > 1 { | ||
return nil, errors.New("cannot specify restrictions more than one time") | ||
} | ||
|
||
for _, v := range vL { | ||
m := v.(map[string]interface{}) | ||
|
||
restrictions := new(github.BranchRestrictionsRequest) | ||
|
||
restrictions.Users = []string{} | ||
if users, ok := m["users"].([]interface{}); ok { | ||
for _, u := range users { | ||
restrictions.Users = append(restrictions.Users, u.(string)) | ||
} | ||
} | ||
|
||
restrictions.Teams = []string{} | ||
if teams, ok := m["teams"].([]interface{}); ok { | ||
for _, t := range teams { | ||
restrictions.Teams = append(restrictions.Teams, t.(string)) | ||
} | ||
} | ||
|
||
protectionRequest.Restrictions = restrictions | ||
} | ||
} | ||
|
||
return protectionRequest, nil | ||
} |
Oops, something went wrong.