Refactor PullRequestHook signature.

May parse hook payload only once.
This commit is contained in:
Nurahmadie 2014-04-03 00:01:52 +00:00
parent 6f10a57f4a
commit 1fca69dade

View file

@ -151,20 +151,6 @@ func (g *GitlabHandler) newGitlabRepo(u *User, owner, name string) (*Repo, error
} }
func (g *GitlabHandler) Hook(w http.ResponseWriter, r *http.Request) error { func (g *GitlabHandler) Hook(w http.ResponseWriter, r *http.Request) error {
payload, _ := ioutil.ReadAll(r.Body)
parsed, err := gogitlab.ParseHook(payload)
if err != nil {
return err
}
if parsed.ObjectKind == "merge_request" {
fmt.Println(string(payload))
return g.PullRequestHook(w, r)
}
if len(parsed.After) == 0 {
return RenderText(w, http.StatusText(http.StatusNotFound), http.StatusNotFound)
}
rID := r.FormValue("id") rID := r.FormValue("id")
repo, err := database.GetRepoSlug(rID) repo, err := database.GetRepoSlug(rID)
if err != nil { if err != nil {
@ -176,6 +162,23 @@ func (g *GitlabHandler) Hook(w http.ResponseWriter, r *http.Request) error {
return RenderText(w, http.StatusText(http.StatusNotFound), http.StatusNotFound) return RenderText(w, http.StatusText(http.StatusNotFound), http.StatusNotFound)
} }
payload, _ := ioutil.ReadAll(r.Body)
parsed, err := gogitlab.ParseHook(payload)
if err != nil {
return err
}
if parsed.ObjectKind == "merge_request" {
fmt.Println(string(payload))
if err := g.PullRequestHook(parsed, repo, user); err != nil {
return err
}
return RenderText(w, http.StatusText(http.StatusOK), http.StatusOK)
}
if len(parsed.After) == 0 {
return RenderText(w, http.StatusText(http.StatusNotFound), http.StatusNotFound)
}
_, err = database.GetCommitHash(parsed.After, repo.ID) _, err = database.GetCommitHash(parsed.After, repo.ID)
if err != nil && err != sql.ErrNoRows { if err != nil && err != sql.ErrNoRows {
println("commit already exists") println("commit already exists")
@ -245,30 +248,14 @@ func (g *GitlabHandler) Hook(w http.ResponseWriter, r *http.Request) error {
} }
func (g *GitlabHandler) PullRequestHook(w http.ResponseWriter, r *http.Request) error { func (g *GitlabHandler) PullRequestHook(p *gogitlab.HookPayload, repo *Repo, user *User) error {
payload, _ := ioutil.ReadAll(r.Body)
p, err := gogitlab.ParseHook(payload)
if err != nil {
return err
}
obj := p.ObjectAttributes obj := p.ObjectAttributes
// Gitlab may trigger multiple hooks upon updating merge requests status // Gitlab may trigger multiple hooks upon updating merge requests status
// only build when it was just opened and the merge hasn't been checked yet. // only build when it was just opened and the merge hasn't been checked yet.
if !(obj.State == "opened" && obj.MergeStatus == "unchecked") { if !(obj.State == "opened" && obj.MergeStatus == "unchecked") {
fmt.Printf("Ignore GitLab Merge Requests") println("Ignore GitLab Merge Requests")
return RenderText(w, http.StatusText(http.StatusOK), http.StatusOK) return nil
}
repo, err := database.GetRepoSlug(r.FormValue("id"))
if err != nil {
return RenderText(w, http.StatusText(http.StatusNotFound), http.StatusNotFound)
}
user, err := database.GetUser(repo.UserID)
if err != nil {
return RenderText(w, http.StatusText(http.StatusNotFound), http.StatusNotFound)
} }
settings := database.SettingsMust() settings := database.SettingsMust()
@ -285,7 +272,7 @@ func (g *GitlabHandler) PullRequestHook(w http.ResponseWriter, r *http.Request)
_, err = database.GetCommitHash(src.Commit.Id, repo.ID) _, err = database.GetCommitHash(src.Commit.Id, repo.ID)
if err != nil && err != sql.ErrNoRows { if err != nil && err != sql.ErrNoRows {
println("commit already exists") println("commit already exists")
return RenderText(w, http.StatusText(http.StatusBadGateway), http.StatusBadGateway) return err
} }
commit := &Commit{} commit := &Commit{}
@ -303,9 +290,9 @@ func (g *GitlabHandler) PullRequestHook(w http.ResponseWriter, r *http.Request)
if err != nil { if err != nil {
msg := "No .drone.yml was found in this repository. You need to add one.\n" msg := "No .drone.yml was found in this repository. You need to add one.\n"
if err := saveFailedBuild(commit, msg); err != nil { if err := saveFailedBuild(commit, msg); err != nil {
return RenderText(w, http.StatusText(http.StatusInternalServerError), http.StatusInternalServerError) return fmt.Errorf("Failed to save build: %q", err)
} }
return RenderText(w, http.StatusText(http.StatusBadRequest), http.StatusBadRequest) return fmt.Errorf("Error to fetch build script: %q", err)
} }
// parse the build script // parse the build script
@ -313,14 +300,14 @@ func (g *GitlabHandler) PullRequestHook(w http.ResponseWriter, r *http.Request)
if err != nil { if err != nil {
msg := "Could not parse your .drone.yml file. It needs to be a valid drone yaml file.\n\n" + err.Error() + "\n" msg := "Could not parse your .drone.yml file. It needs to be a valid drone yaml file.\n\n" + err.Error() + "\n"
if err := saveFailedBuild(commit, msg); err != nil { if err := saveFailedBuild(commit, msg); err != nil {
return RenderText(w, http.StatusText(http.StatusInternalServerError), http.StatusInternalServerError) return fmt.Errorf("Failed to save build: %q", err)
} }
return RenderText(w, http.StatusText(http.StatusBadRequest), http.StatusBadRequest) return fmt.Errorf("Failed to parse build script: %q", err)
} }
// save the commit to the database // save the commit to the database
if err := database.SaveCommit(commit); err != nil { if err := database.SaveCommit(commit); err != nil {
return RenderText(w, http.StatusText(http.StatusInternalServerError), http.StatusInternalServerError) return fmt.Errorf("Failed to save commit: %q", err)
} }
// save the build to the database // save the build to the database
@ -330,12 +317,12 @@ func (g *GitlabHandler) PullRequestHook(w http.ResponseWriter, r *http.Request)
build.Created = time.Now().UTC() build.Created = time.Now().UTC()
build.Status = "Pending" build.Status = "Pending"
if err := database.SaveBuild(build); err != nil { if err := database.SaveBuild(build); err != nil {
return RenderText(w, http.StatusText(http.StatusInternalServerError), http.StatusInternalServerError) return fmt.Errorf("Failed to save build: %q", err)
} }
g.queue.Add(&queue.BuildTask{Repo: repo, Commit: commit, Build: build, Script: buildscript}) g.queue.Add(&queue.BuildTask{Repo: repo, Commit: commit, Build: build, Script: buildscript})
return RenderText(w, http.StatusText(http.StatusOK), http.StatusOK) return nil
} }
// ns namespaces user and repo. // ns namespaces user and repo.