2014-06-04 21:25:38 +00:00
|
|
|
package handler
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
|
|
|
|
2014-06-12 23:41:04 +00:00
|
|
|
"github.com/drone/drone/server/database"
|
2014-06-21 21:22:38 +00:00
|
|
|
"github.com/drone/drone/server/worker"
|
2014-06-12 23:41:04 +00:00
|
|
|
"github.com/drone/drone/shared/model"
|
2014-06-04 21:25:38 +00:00
|
|
|
"github.com/gorilla/pat"
|
|
|
|
)
|
|
|
|
|
|
|
|
type HookHandler struct {
|
2014-06-12 23:41:04 +00:00
|
|
|
users database.UserManager
|
|
|
|
repos database.RepoManager
|
|
|
|
commits database.CommitManager
|
2014-06-13 00:17:59 +00:00
|
|
|
conf database.ConfigManager
|
2014-06-21 21:22:38 +00:00
|
|
|
queue chan *worker.Request
|
2014-06-04 21:25:38 +00:00
|
|
|
}
|
|
|
|
|
2014-06-21 21:22:38 +00:00
|
|
|
func NewHookHandler(users database.UserManager, repos database.RepoManager, commits database.CommitManager, conf database.ConfigManager, queue chan *worker.Request) *HookHandler {
|
2014-06-13 00:17:59 +00:00
|
|
|
return &HookHandler{users, repos, commits, conf, queue}
|
2014-06-04 21:25:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// PostHook receives a post-commit hook from GitHub, Bitbucket, etc
|
|
|
|
// GET /hook/:host
|
|
|
|
func (h *HookHandler) PostHook(w http.ResponseWriter, r *http.Request) error {
|
|
|
|
host := r.FormValue(":host")
|
|
|
|
|
|
|
|
// get the remote system's client.
|
2014-06-13 00:17:59 +00:00
|
|
|
remote := h.conf.Find().GetRemote(host)
|
2014-06-04 21:25:38 +00:00
|
|
|
if remote == nil {
|
|
|
|
return notFound{}
|
|
|
|
}
|
|
|
|
|
|
|
|
// parse the hook payload
|
|
|
|
hook, err := remote.GetHook(r)
|
|
|
|
if err != nil {
|
|
|
|
return badRequest{err}
|
|
|
|
}
|
|
|
|
|
|
|
|
// in some cases we have neither a hook nor error. An example
|
|
|
|
// would be GitHub sending a ping request to the URL, in which
|
|
|
|
// case we'll just exit quiely with an 'OK'
|
|
|
|
if hook == nil {
|
|
|
|
w.WriteHeader(http.StatusOK)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2014-06-12 19:44:19 +00:00
|
|
|
//fmt.Printf("%#v", hook)
|
|
|
|
|
2014-06-04 21:25:38 +00:00
|
|
|
// fetch the repository from the database
|
2014-06-09 22:47:35 +00:00
|
|
|
repo, err := h.repos.FindName(remote.GetHost(), hook.Owner, hook.Repo)
|
2014-06-04 21:25:38 +00:00
|
|
|
if err != nil {
|
|
|
|
return notFound{}
|
|
|
|
}
|
|
|
|
|
|
|
|
if repo.Active == false ||
|
|
|
|
(repo.PostCommit == false && len(hook.PullRequest) == 0) ||
|
|
|
|
(repo.PullRequest == false && len(hook.PullRequest) != 0) {
|
|
|
|
w.WriteHeader(http.StatusOK)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// fetch the user from the database that owns this repo
|
|
|
|
user, err := h.users.Find(repo.UserID)
|
|
|
|
if err != nil {
|
|
|
|
return notFound{}
|
|
|
|
}
|
|
|
|
|
|
|
|
// featch the .drone.yml file from the database
|
|
|
|
client := remote.GetClient(user.Access, user.Secret)
|
2014-06-12 00:42:49 +00:00
|
|
|
yml, err := client.GetScript(hook)
|
2014-06-04 21:25:38 +00:00
|
|
|
if err != nil {
|
|
|
|
return badRequest{err}
|
|
|
|
}
|
|
|
|
|
2014-06-12 23:41:04 +00:00
|
|
|
c := model.Commit{
|
2014-06-04 21:25:38 +00:00
|
|
|
RepoID: repo.ID,
|
2014-06-12 23:41:04 +00:00
|
|
|
Status: model.StatusEnqueue,
|
2014-06-04 21:25:38 +00:00
|
|
|
Sha: hook.Sha,
|
|
|
|
Branch: hook.Branch,
|
|
|
|
PullRequest: hook.PullRequest,
|
|
|
|
Timestamp: hook.Timestamp,
|
2014-06-12 00:42:49 +00:00
|
|
|
Message: hook.Message,
|
|
|
|
Config: yml}
|
2014-06-04 21:25:38 +00:00
|
|
|
c.SetAuthor(hook.Author)
|
|
|
|
// inser the commit into the database
|
|
|
|
if err := h.commits.Insert(&c); err != nil {
|
|
|
|
return badRequest{err}
|
|
|
|
}
|
|
|
|
|
2014-06-12 19:44:19 +00:00
|
|
|
//fmt.Printf("%s", yml)
|
2014-06-04 21:25:38 +00:00
|
|
|
|
|
|
|
// drop the items on the queue
|
2014-06-21 21:22:38 +00:00
|
|
|
go func() {
|
|
|
|
h.queue <- &worker.Request{
|
|
|
|
Repo: repo,
|
|
|
|
Commit: &c,
|
|
|
|
}
|
|
|
|
}()
|
2014-06-04 21:25:38 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (h *HookHandler) Register(r *pat.Router) {
|
2014-06-21 21:22:38 +00:00
|
|
|
r.Post("/v1/hook/{host}", errorHandler(h.PostHook))
|
|
|
|
r.Put("/v1/hook/{host}", errorHandler(h.PostHook))
|
2014-06-04 21:25:38 +00:00
|
|
|
}
|