mirror of https://github.com/gogits/gogs.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
187 lines
5.5 KiB
187 lines
5.5 KiB
10 years ago
|
// 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.
|
||
|
|
||
9 years ago
|
package repo
|
||
10 years ago
|
|
||
|
import (
|
||
10 years ago
|
"encoding/json"
|
||
9 years ago
|
|
||
|
"github.com/Unknwon/com"
|
||
10 years ago
|
|
||
10 years ago
|
api "github.com/gogits/go-gogs-client"
|
||
|
|
||
10 years ago
|
"github.com/gogits/gogs/models"
|
||
8 years ago
|
"github.com/gogits/gogs/models/errors"
|
||
8 years ago
|
"github.com/gogits/gogs/pkg/context"
|
||
8 years ago
|
"github.com/gogits/gogs/routes/api/v1/convert"
|
||
10 years ago
|
)
|
||
|
|
||
9 years ago
|
// https://github.com/gogits/go-gogs-client/wiki/Repositories#list-hooks
|
||
8 years ago
|
func ListHooks(c *context.APIContext) {
|
||
|
hooks, err := models.GetWebhooksByRepoID(c.Repo.Repository.ID)
|
||
10 years ago
|
if err != nil {
|
||
8 years ago
|
c.Error(500, "GetWebhooksByRepoID", err)
|
||
10 years ago
|
return
|
||
|
}
|
||
|
|
||
10 years ago
|
apiHooks := make([]*api.Hook, len(hooks))
|
||
10 years ago
|
for i := range hooks {
|
||
8 years ago
|
apiHooks[i] = convert.ToHook(c.Repo.RepoLink, hooks[i])
|
||
10 years ago
|
}
|
||
8 years ago
|
c.JSON(200, &apiHooks)
|
||
10 years ago
|
}
|
||
10 years ago
|
|
||
9 years ago
|
// https://github.com/gogits/go-gogs-client/wiki/Repositories#create-a-hook
|
||
8 years ago
|
func CreateHook(c *context.APIContext, form api.CreateHookOption) {
|
||
10 years ago
|
if !models.IsValidHookTaskType(form.Type) {
|
||
8 years ago
|
c.Error(422, "", "Invalid hook type")
|
||
10 years ago
|
return
|
||
|
}
|
||
|
for _, name := range []string{"url", "content_type"} {
|
||
|
if _, ok := form.Config[name]; !ok {
|
||
8 years ago
|
c.Error(422, "", "Missing config option: "+name)
|
||
10 years ago
|
return
|
||
|
}
|
||
|
}
|
||
|
if !models.IsValidHookContentType(form.Config["content_type"]) {
|
||
8 years ago
|
c.Error(422, "", "Invalid content type")
|
||
10 years ago
|
return
|
||
|
}
|
||
|
|
||
9 years ago
|
if len(form.Events) == 0 {
|
||
|
form.Events = []string{"push"}
|
||
|
}
|
||
10 years ago
|
w := &models.Webhook{
|
||
8 years ago
|
RepoID: c.Repo.Repository.ID,
|
||
9 years ago
|
URL: form.Config["url"],
|
||
10 years ago
|
ContentType: models.ToHookContentType(form.Config["content_type"]),
|
||
|
Secret: form.Config["secret"],
|
||
|
HookEvent: &models.HookEvent{
|
||
9 years ago
|
ChooseEvents: true,
|
||
|
HookEvents: models.HookEvents{
|
||
8 years ago
|
Create: com.IsSliceContainsStr(form.Events, string(models.HOOK_EVENT_CREATE)),
|
||
|
Delete: com.IsSliceContainsStr(form.Events, string(models.HOOK_EVENT_DELETE)),
|
||
|
Fork: com.IsSliceContainsStr(form.Events, string(models.HOOK_EVENT_FORK)),
|
||
|
Push: com.IsSliceContainsStr(form.Events, string(models.HOOK_EVENT_PUSH)),
|
||
|
Issues: com.IsSliceContainsStr(form.Events, string(models.HOOK_EVENT_ISSUES)),
|
||
|
IssueComment: com.IsSliceContainsStr(form.Events, string(models.HOOK_EVENT_ISSUE_COMMENT)),
|
||
|
PullRequest: com.IsSliceContainsStr(form.Events, string(models.HOOK_EVENT_PULL_REQUEST)),
|
||
|
Release: com.IsSliceContainsStr(form.Events, string(models.HOOK_EVENT_RELEASE)),
|
||
9 years ago
|
},
|
||
10 years ago
|
},
|
||
|
IsActive: form.Active,
|
||
|
HookTaskType: models.ToHookTaskType(form.Type),
|
||
|
}
|
||
|
if w.HookTaskType == models.SLACK {
|
||
|
channel, ok := form.Config["channel"]
|
||
|
if !ok {
|
||
8 years ago
|
c.Error(422, "", "Missing config option: channel")
|
||
10 years ago
|
return
|
||
|
}
|
||
9 years ago
|
meta, err := json.Marshal(&models.SlackMeta{
|
||
9 years ago
|
Channel: channel,
|
||
|
Username: form.Config["username"],
|
||
|
IconURL: form.Config["icon_url"],
|
||
|
Color: form.Config["color"],
|
||
10 years ago
|
})
|
||
|
if err != nil {
|
||
8 years ago
|
c.Error(500, "slack: JSON marshal failed", err)
|
||
10 years ago
|
return
|
||
|
}
|
||
|
w.Meta = string(meta)
|
||
|
}
|
||
|
|
||
|
if err := w.UpdateEvent(); err != nil {
|
||
8 years ago
|
c.Error(500, "UpdateEvent", err)
|
||
10 years ago
|
return
|
||
|
} else if err := models.CreateWebhook(w); err != nil {
|
||
8 years ago
|
c.Error(500, "CreateWebhook", err)
|
||
10 years ago
|
return
|
||
|
}
|
||
|
|
||
8 years ago
|
c.JSON(201, convert.ToHook(c.Repo.RepoLink, w))
|
||
10 years ago
|
}
|
||
|
|
||
9 years ago
|
// https://github.com/gogits/go-gogs-client/wiki/Repositories#edit-a-hook
|
||
8 years ago
|
func EditHook(c *context.APIContext, form api.EditHookOption) {
|
||
|
w, err := models.GetWebhookOfRepoByID(c.Repo.Repository.ID, c.ParamsInt64(":id"))
|
||
10 years ago
|
if err != nil {
|
||
8 years ago
|
if errors.IsWebhookNotExist(err) {
|
||
8 years ago
|
c.Status(404)
|
||
9 years ago
|
} else {
|
||
8 years ago
|
c.Error(500, "GetWebhookOfRepoByID", err)
|
||
9 years ago
|
}
|
||
10 years ago
|
return
|
||
|
}
|
||
|
|
||
|
if form.Config != nil {
|
||
|
if url, ok := form.Config["url"]; ok {
|
||
9 years ago
|
w.URL = url
|
||
10 years ago
|
}
|
||
|
if ct, ok := form.Config["content_type"]; ok {
|
||
|
if !models.IsValidHookContentType(ct) {
|
||
8 years ago
|
c.Error(422, "", "Invalid content type")
|
||
10 years ago
|
return
|
||
|
}
|
||
|
w.ContentType = models.ToHookContentType(ct)
|
||
|
}
|
||
|
|
||
|
if w.HookTaskType == models.SLACK {
|
||
|
if channel, ok := form.Config["channel"]; ok {
|
||
9 years ago
|
meta, err := json.Marshal(&models.SlackMeta{
|
||
9 years ago
|
Channel: channel,
|
||
|
Username: form.Config["username"],
|
||
|
IconURL: form.Config["icon_url"],
|
||
|
Color: form.Config["color"],
|
||
10 years ago
|
})
|
||
|
if err != nil {
|
||
8 years ago
|
c.Error(500, "slack: JSON marshal failed", err)
|
||
10 years ago
|
return
|
||
|
}
|
||
|
w.Meta = string(meta)
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
9 years ago
|
// Update events
|
||
9 years ago
|
if len(form.Events) == 0 {
|
||
|
form.Events = []string{"push"}
|
||
|
}
|
||
9 years ago
|
w.PushOnly = false
|
||
|
w.SendEverything = false
|
||
|
w.ChooseEvents = true
|
||
|
w.Create = com.IsSliceContainsStr(form.Events, string(models.HOOK_EVENT_CREATE))
|
||
8 years ago
|
w.Delete = com.IsSliceContainsStr(form.Events, string(models.HOOK_EVENT_DELETE))
|
||
|
w.Fork = com.IsSliceContainsStr(form.Events, string(models.HOOK_EVENT_FORK))
|
||
9 years ago
|
w.Push = com.IsSliceContainsStr(form.Events, string(models.HOOK_EVENT_PUSH))
|
||
8 years ago
|
w.Issues = com.IsSliceContainsStr(form.Events, string(models.HOOK_EVENT_ISSUES))
|
||
|
w.IssueComment = com.IsSliceContainsStr(form.Events, string(models.HOOK_EVENT_ISSUE_COMMENT))
|
||
8 years ago
|
w.PullRequest = com.IsSliceContainsStr(form.Events, string(models.HOOK_EVENT_PULL_REQUEST))
|
||
8 years ago
|
w.Release = com.IsSliceContainsStr(form.Events, string(models.HOOK_EVENT_RELEASE))
|
||
9 years ago
|
if err = w.UpdateEvent(); err != nil {
|
||
8 years ago
|
c.Error(500, "UpdateEvent", err)
|
||
9 years ago
|
return
|
||
|
}
|
||
|
|
||
10 years ago
|
if form.Active != nil {
|
||
|
w.IsActive = *form.Active
|
||
|
}
|
||
|
|
||
|
if err := models.UpdateWebhook(w); err != nil {
|
||
8 years ago
|
c.Error(500, "UpdateWebhook", err)
|
||
10 years ago
|
return
|
||
|
}
|
||
|
|
||
8 years ago
|
c.JSON(200, convert.ToHook(c.Repo.RepoLink, w))
|
||
10 years ago
|
}
|
||
8 years ago
|
|
||
8 years ago
|
func DeleteHook(c *context.APIContext) {
|
||
|
if err := models.DeleteWebhookOfRepoByID(c.Repo.Repository.ID, c.ParamsInt64(":id")); err != nil {
|
||
|
c.Error(500, "DeleteWebhookByRepoID", err)
|
||
8 years ago
|
return
|
||
|
}
|
||
|
|
||
8 years ago
|
c.Status(204)
|
||
8 years ago
|
}
|