Files
atlantis/server/request_parser.go
Luke Kysow d425de95fa Refactoring
* set version in one place
* rename ExecutionContext to CommandContext
* delete unneeded PullRequestContext since it just duplicated what is in CommandContext
* split fields inside CommandContext into Repo, PullRequest, and User models
* clean up unused fields
* remove base_executor stuff which was trying to do inheritance in go and didn't get us anywhere
* clean up unused code and assets
* created a locking.Client that creates the Keys that are used on the front-end. This allows the backends to store the locks any way they like as long as they support the interface
2017-06-17 14:14:21 -07:00

154 lines
3.9 KiB
Go

package server
import (
"errors"
"fmt"
"github.com/google/go-github/github"
"github.com/hootsuite/atlantis/models"
"regexp"
)
type RequestParser struct{}
type CommandType int
const (
Apply CommandType = iota
Plan
Help
)
type Command struct {
verbose bool
environment string
commandType CommandType
}
func (r *RequestParser) determineCommand(comment *github.IssueCommentEvent) (*Command, error) {
// for legacy, also support "run" instead of atlantis
atlantisCommentRegex := `^(?:run|atlantis) (plan|apply|help)([[:blank:]])?([a-zA-Z0-9_-]+)?\s*(--verbose)?$`
runPlanMatcher := regexp.MustCompile(atlantisCommentRegex)
commentComment := comment.Comment
if commentComment == nil {
return nil, errors.New("key 'comment.comment' is null")
}
commentBody := commentComment.Body
if commentBody == nil {
return nil, errors.New("key 'comment.comment.body' is null")
}
// extract the command and environment. ex. for "atlantis plan staging", the command is "plan", and the environment is "staging"
match := runPlanMatcher.FindStringSubmatch(*commentBody)
if len(match) < 5 {
var truncated = *commentBody
if len(truncated) > 30 {
truncated = truncated[0:30] + "..."
}
return nil, errors.New("not an Atlantis command")
}
verbose := false
if match[4] == "--verbose" {
verbose = true
}
command := &Command{verbose: verbose, environment: match[3]}
switch match[1] {
case "plan":
command.commandType = Plan
case "apply":
command.commandType = Apply
case "help":
command.commandType = Help
default:
return nil, fmt.Errorf("something went wrong with our regex, the command we parsed %q was not apply or plan", match[1])
}
return command, nil
}
func (r *RequestParser) extractCommentData(comment *github.IssueCommentEvent, ctx *CommandContext) error {
repoFullName := comment.Repo.FullName
if repoFullName == nil {
return errors.New("key 'comment.repo.full_name' is null")
}
repoOwner := comment.Repo.Owner.Login
if repoOwner == nil {
return errors.New("key 'comment.repo.owner.login' is null")
}
repoName := comment.Repo.Name
if repoName == nil {
return errors.New("key 'comment.repo.name' is null")
}
pullNum := comment.Issue.Number
if pullNum == nil {
return errors.New("key 'comment.issue.number' is null")
}
pullCreator := comment.Issue.User.Login
if pullCreator == nil {
return errors.New("key 'comment.issue.user.login' is null")
}
commentorUsername := comment.Comment.User.Login
if commentorUsername == nil {
return errors.New("key 'comment.comment.user.login' is null")
}
repoSSHURL := comment.Repo.SSHURL
if repoSSHURL == nil {
return errors.New("key 'comment.repo.sshurl' is null")
}
htmlURL := comment.Issue.HTMLURL
if htmlURL == nil {
return errors.New("key 'comment.issue.htmlUrl' is null")
}
ctx.Repo = models.Repo{
FullName: *repoFullName,
Owner: *repoOwner,
Name: *repoName,
SSHURL: *repoSSHURL,
}
ctx.User = models.User{
Username: *commentorUsername,
}
ctx.Pull = models.PullRequest{
Num: *pullNum,
}
return nil
}
func (r *RequestParser) extractPullData(pull *github.PullRequest, params *CommandContext) error {
commit := pull.Head.SHA
if commit == nil {
return errors.New("key 'pull.head.sha' is null")
}
base := pull.Base.SHA
if base == nil {
return errors.New("key 'pull.base.sha' is null")
}
pullLink := pull.HTMLURL
if pullLink == nil {
return errors.New("key 'pull.html_url' is null")
}
branch := pull.Head.Ref
if branch == nil {
return errors.New("key 'pull.head.ref' is null")
}
authorUsername := pull.User.Login
if authorUsername == nil {
return errors.New("key 'pull.user.login' is null")
}
num := pull.Number
if num == nil {
return errors.New("key 'pull.num' is null")
}
params.Pull = models.PullRequest{
BaseCommit: *base,
Author: *authorUsername,
Branch: *branch,
HeadCommit: *commit,
Link: *pullLink,
Num: *num,
}
return nil
}