2014-11-13 13:02:18 +05:30
|
|
|
// Copyright 2014 The Gogs Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
2015-12-05 03:46:42 +05:30
|
|
|
package repo
|
2014-11-13 13:02:18 +05:30
|
|
|
|
|
|
|
import (
|
2014-11-13 23:27:00 +05:30
|
|
|
"encoding/json"
|
2015-08-29 09:19:59 +05:30
|
|
|
|
|
|
|
"github.com/Unknwon/com"
|
2014-11-13 23:27:00 +05:30
|
|
|
|
2016-11-11 15:09:44 +05:30
|
|
|
api "code.gitea.io/sdk/gitea"
|
2014-11-15 03:41:30 +05:30
|
|
|
|
2016-11-10 21:54:48 +05:30
|
|
|
"code.gitea.io/gitea/models"
|
|
|
|
"code.gitea.io/gitea/modules/context"
|
|
|
|
"code.gitea.io/gitea/routers/api/v1/convert"
|
2014-11-13 13:02:18 +05:30
|
|
|
)
|
|
|
|
|
2016-11-24 12:34:31 +05:30
|
|
|
// ListHooks list all hooks of a repository
|
|
|
|
// see https://github.com/gogits/go-gogs-client/wiki/Repositories#list-hooks
|
2016-03-14 04:19:16 +05:30
|
|
|
func ListHooks(ctx *context.APIContext) {
|
2015-11-19 07:51:47 +05:30
|
|
|
hooks, err := models.GetWebhooksByRepoID(ctx.Repo.Repository.ID)
|
2014-11-13 13:02:18 +05:30
|
|
|
if err != nil {
|
2016-03-14 04:19:16 +05:30
|
|
|
ctx.Error(500, "GetWebhooksByRepoID", err)
|
2014-11-13 13:02:18 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2014-11-15 03:41:30 +05:30
|
|
|
apiHooks := make([]*api.Hook, len(hooks))
|
2014-11-13 13:02:18 +05:30
|
|
|
for i := range hooks {
|
2016-03-14 08:50:22 +05:30
|
|
|
apiHooks[i] = convert.ToHook(ctx.Repo.RepoLink, hooks[i])
|
2014-11-13 13:02:18 +05:30
|
|
|
}
|
|
|
|
ctx.JSON(200, &apiHooks)
|
|
|
|
}
|
2014-11-13 23:27:00 +05:30
|
|
|
|
2016-11-24 12:34:31 +05:30
|
|
|
// CreateHook create a hook for a repository
|
|
|
|
// see https://github.com/gogits/go-gogs-client/wiki/Repositories#create-a-hook
|
2016-03-14 04:19:16 +05:30
|
|
|
func CreateHook(ctx *context.APIContext, form api.CreateHookOption) {
|
2014-11-13 23:27:00 +05:30
|
|
|
if !models.IsValidHookTaskType(form.Type) {
|
2016-03-14 04:19:16 +05:30
|
|
|
ctx.Error(422, "", "Invalid hook type")
|
2014-11-13 23:27:00 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
for _, name := range []string{"url", "content_type"} {
|
|
|
|
if _, ok := form.Config[name]; !ok {
|
2016-03-14 04:19:16 +05:30
|
|
|
ctx.Error(422, "", "Missing config option: "+name)
|
2014-11-13 23:27:00 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if !models.IsValidHookContentType(form.Config["content_type"]) {
|
2016-03-14 04:19:16 +05:30
|
|
|
ctx.Error(422, "", "Invalid content type")
|
2014-11-13 23:27:00 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2015-08-29 09:23:46 +05:30
|
|
|
if len(form.Events) == 0 {
|
|
|
|
form.Events = []string{"push"}
|
|
|
|
}
|
2014-11-13 23:27:00 +05:30
|
|
|
w := &models.Webhook{
|
2015-08-26 19:15:51 +05:30
|
|
|
RepoID: ctx.Repo.Repository.ID,
|
|
|
|
URL: form.Config["url"],
|
2014-11-13 23:27:00 +05:30
|
|
|
ContentType: models.ToHookContentType(form.Config["content_type"]),
|
|
|
|
Secret: form.Config["secret"],
|
|
|
|
HookEvent: &models.HookEvent{
|
2015-08-29 09:19:59 +05:30
|
|
|
ChooseEvents: true,
|
|
|
|
HookEvents: models.HookEvents{
|
2016-11-07 21:07:32 +05:30
|
|
|
Create: com.IsSliceContainsStr(form.Events, string(models.HookEventCreate)),
|
|
|
|
Push: com.IsSliceContainsStr(form.Events, string(models.HookEventPush)),
|
|
|
|
PullRequest: com.IsSliceContainsStr(form.Events, string(models.HookEventPullRequest)),
|
2015-08-29 09:19:59 +05:30
|
|
|
},
|
2014-11-13 23:27:00 +05:30
|
|
|
},
|
|
|
|
IsActive: form.Active,
|
|
|
|
HookTaskType: models.ToHookTaskType(form.Type),
|
|
|
|
}
|
|
|
|
if w.HookTaskType == models.SLACK {
|
|
|
|
channel, ok := form.Config["channel"]
|
|
|
|
if !ok {
|
2016-03-14 04:19:16 +05:30
|
|
|
ctx.Error(422, "", "Missing config option: channel")
|
2014-11-13 23:27:00 +05:30
|
|
|
return
|
|
|
|
}
|
2015-08-28 21:06:13 +05:30
|
|
|
meta, err := json.Marshal(&models.SlackMeta{
|
2015-08-29 09:19:59 +05:30
|
|
|
Channel: channel,
|
|
|
|
Username: form.Config["username"],
|
|
|
|
IconURL: form.Config["icon_url"],
|
|
|
|
Color: form.Config["color"],
|
2014-11-13 23:27:00 +05:30
|
|
|
})
|
|
|
|
if err != nil {
|
2016-03-14 04:19:16 +05:30
|
|
|
ctx.Error(500, "slack: JSON marshal failed", err)
|
2014-11-13 23:27:00 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
w.Meta = string(meta)
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := w.UpdateEvent(); err != nil {
|
2016-03-14 04:19:16 +05:30
|
|
|
ctx.Error(500, "UpdateEvent", err)
|
2014-11-13 23:27:00 +05:30
|
|
|
return
|
|
|
|
} else if err := models.CreateWebhook(w); err != nil {
|
2016-03-14 04:19:16 +05:30
|
|
|
ctx.Error(500, "CreateWebhook", err)
|
2014-11-13 23:27:00 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-03-14 08:50:22 +05:30
|
|
|
ctx.JSON(201, convert.ToHook(ctx.Repo.RepoLink, w))
|
2014-11-13 23:27:00 +05:30
|
|
|
}
|
|
|
|
|
2016-11-24 12:34:31 +05:30
|
|
|
// EditHook modify a hook of a repository
|
|
|
|
// see https://github.com/gogits/go-gogs-client/wiki/Repositories#edit-a-hook
|
2016-03-14 04:19:16 +05:30
|
|
|
func EditHook(ctx *context.APIContext, form api.EditHookOption) {
|
2016-07-15 22:32:55 +05:30
|
|
|
w, err := models.GetWebhookByRepoID(ctx.Repo.Repository.ID, ctx.ParamsInt64(":id"))
|
2014-11-13 23:27:00 +05:30
|
|
|
if err != nil {
|
2015-11-19 07:51:47 +05:30
|
|
|
if models.IsErrWebhookNotExist(err) {
|
2016-03-14 04:19:16 +05:30
|
|
|
ctx.Status(404)
|
2015-11-19 07:51:47 +05:30
|
|
|
} else {
|
2016-03-14 04:19:16 +05:30
|
|
|
ctx.Error(500, "GetWebhookByID", err)
|
2015-11-19 07:51:47 +05:30
|
|
|
}
|
2014-11-13 23:27:00 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if form.Config != nil {
|
|
|
|
if url, ok := form.Config["url"]; ok {
|
2015-08-26 19:15:51 +05:30
|
|
|
w.URL = url
|
2014-11-13 23:27:00 +05:30
|
|
|
}
|
|
|
|
if ct, ok := form.Config["content_type"]; ok {
|
|
|
|
if !models.IsValidHookContentType(ct) {
|
2016-03-14 04:19:16 +05:30
|
|
|
ctx.Error(422, "", "Invalid content type")
|
2014-11-13 23:27:00 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
w.ContentType = models.ToHookContentType(ct)
|
|
|
|
}
|
|
|
|
|
|
|
|
if w.HookTaskType == models.SLACK {
|
|
|
|
if channel, ok := form.Config["channel"]; ok {
|
2015-08-28 21:06:13 +05:30
|
|
|
meta, err := json.Marshal(&models.SlackMeta{
|
2015-08-29 09:19:59 +05:30
|
|
|
Channel: channel,
|
|
|
|
Username: form.Config["username"],
|
|
|
|
IconURL: form.Config["icon_url"],
|
|
|
|
Color: form.Config["color"],
|
2014-11-13 23:27:00 +05:30
|
|
|
})
|
|
|
|
if err != nil {
|
2016-03-14 04:19:16 +05:30
|
|
|
ctx.Error(500, "slack: JSON marshal failed", err)
|
2014-11-13 23:27:00 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
w.Meta = string(meta)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-08-29 09:19:59 +05:30
|
|
|
// Update events
|
2015-08-29 09:23:46 +05:30
|
|
|
if len(form.Events) == 0 {
|
|
|
|
form.Events = []string{"push"}
|
|
|
|
}
|
2015-08-29 09:19:59 +05:30
|
|
|
w.PushOnly = false
|
|
|
|
w.SendEverything = false
|
|
|
|
w.ChooseEvents = true
|
2016-11-07 21:07:32 +05:30
|
|
|
w.Create = com.IsSliceContainsStr(form.Events, string(models.HookEventCreate))
|
|
|
|
w.Push = com.IsSliceContainsStr(form.Events, string(models.HookEventPush))
|
|
|
|
w.PullRequest = com.IsSliceContainsStr(form.Events, string(models.HookEventPullRequest))
|
2015-08-29 09:19:59 +05:30
|
|
|
if err = w.UpdateEvent(); err != nil {
|
2016-03-14 04:19:16 +05:30
|
|
|
ctx.Error(500, "UpdateEvent", err)
|
2015-08-29 09:19:59 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2014-11-13 23:27:00 +05:30
|
|
|
if form.Active != nil {
|
|
|
|
w.IsActive = *form.Active
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := models.UpdateWebhook(w); err != nil {
|
2016-03-14 04:19:16 +05:30
|
|
|
ctx.Error(500, "UpdateWebhook", err)
|
2014-11-13 23:27:00 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-03-14 08:50:22 +05:30
|
|
|
ctx.JSON(200, convert.ToHook(ctx.Repo.RepoLink, w))
|
2014-11-13 23:27:00 +05:30
|
|
|
}
|
2016-07-17 06:03:59 +05:30
|
|
|
|
2016-11-24 12:34:31 +05:30
|
|
|
// DeleteHook delete a hook of a repository
|
2016-07-17 06:03:59 +05:30
|
|
|
func DeleteHook(ctx *context.APIContext) {
|
|
|
|
if err := models.DeleteWebhookByRepoID(ctx.Repo.Repository.ID, ctx.ParamsInt64(":id")); err != nil {
|
|
|
|
ctx.Error(500, "DeleteWebhookByRepoID", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx.Status(204)
|
|
|
|
}
|