diff options
author | Unknwon <u@gogs.io> | 2015-07-25 21:32:04 +0800 |
---|---|---|
committer | Unknwon <u@gogs.io> | 2015-07-25 21:32:04 +0800 |
commit | fa298a2c30c358dbfa47fc123c6aca83fe9eb999 (patch) | |
tree | 2179828e8b7c8ebafe3121506f26d52cb0350c63 /cmd | |
parent | 2b1442f3dfa3558f4e1a9dd5b1dbb50cf348e6e0 (diff) | |
download | gitea-fa298a2c30c358dbfa47fc123c6aca83fe9eb999.tar.gz gitea-fa298a2c30c358dbfa47fc123c6aca83fe9eb999.zip |
#835: Realtime webhooks
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/serve.go | 7 | ||||
-rw-r--r-- | cmd/web.go | 1 |
2 files changed, 8 insertions, 0 deletions
diff --git a/cmd/serve.go b/cmd/serve.go index 3d3bb1a90c..fed65bba15 100644 --- a/cmd/serve.go +++ b/cmd/serve.go @@ -16,6 +16,7 @@ import ( "github.com/codegangsta/cli" "github.com/gogits/gogs/models" + "github.com/gogits/gogs/modules/httplib" "github.com/gogits/gogs/modules/log" "github.com/gogits/gogs/modules/setting" "github.com/gogits/gogs/modules/uuid" @@ -193,6 +194,12 @@ func runServ(c *cli.Context) { } } + // Send deliver hook request. + resp, err := httplib.Head(setting.AppUrl + setting.AppSubUrl + repoUserName + "/" + repoName + "/hooks/trigger").Response() + if err == nil { + resp.Body.Close() + } + // Update key activity. key, err := models.GetPublicKeyById(keyId) if err != nil { diff --git a/cmd/web.go b/cmd/web.go index 92c0185c48..b6d41c1aaf 100644 --- a/cmd/web.go +++ b/cmd/web.go @@ -451,6 +451,7 @@ func runWeb(ctx *cli.Context) { m.Get("/archive/*", repo.Download) m.Get("/pulls2/", repo.PullRequest2) m.Get("/milestone2/", repo.Milestones2) + m.Head("/hooks/trigger", repo.TriggerHook) m.Group("", func() { m.Get("/src/*", repo.Home) |