mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-26 12:27:06 +00:00 
			
		
		
		
	Finish edit and remove web hook
This commit is contained in:
		
							
								
								
									
										11
									
								
								cmd/web.go
									
									
									
									
									
								
							
							
						
						
									
										11
									
								
								cmd/web.go
									
									
									
									
									
								
							| @@ -165,21 +165,22 @@ func runWeb(*cli.Context) { | |||||||
| 		m.Get("/template/**", dev.TemplatePreview) | 		m.Get("/template/**", dev.TemplatePreview) | ||||||
| 	} | 	} | ||||||
|  |  | ||||||
| 	reqOwner := middleware.RequireOwner | 	reqOwner := middleware.RequireOwner() | ||||||
|  |  | ||||||
| 	m.Group("/:username/:reponame", func(r martini.Router) { | 	m.Group("/:username/:reponame", func(r martini.Router) { | ||||||
| 		r.Get("/settings", repo.Setting) | 		r.Get("/settings", repo.Setting) | ||||||
| 		r.Post("/settings", bindIgnErr(auth.RepoSettingForm{}), repo.SettingPost) | 		r.Post("/settings", bindIgnErr(auth.RepoSettingForm{}), repo.SettingPost) | ||||||
| 		r.Get("/settings/collaboration", repo.Collaboration) | 		r.Get("/settings/collaboration", repo.Collaboration) | ||||||
| 		r.Post("/settings/collaboration", repo.CollaborationPost) | 		r.Post("/settings/collaboration", repo.CollaborationPost) | ||||||
| 		r.Get("/settings/hooks", repo.WebHooks) // TODO | 		r.Get("/settings/hooks", repo.WebHooks) | ||||||
| 		r.Get("/settings/hooks/add", repo.WebHooksAdd) | 		r.Get("/settings/hooks/add", repo.WebHooksAdd) | ||||||
| 		r.Post("/settings/hooks/add", bindIgnErr(auth.NewWebhookForm{}), repo.WebHooksAddPost) | 		r.Post("/settings/hooks/add", bindIgnErr(auth.NewWebhookForm{}), repo.WebHooksAddPost) | ||||||
| 		r.Get("/settings/hooks/id", repo.WebHooksEdit) | 		r.Get("/settings/hooks/:id", repo.WebHooksEdit) | ||||||
| 	}, reqSignIn, middleware.RepoAssignment(true), reqOwner()) | 		r.Post("/settings/hooks/:id", bindIgnErr(auth.NewWebhookForm{}), repo.WebHooksEditPost) | ||||||
|  | 	}, reqSignIn, middleware.RepoAssignment(true), reqOwner) | ||||||
|  |  | ||||||
| 	m.Group("/:username/:reponame", func(r martini.Router) { | 	m.Group("/:username/:reponame", func(r martini.Router) { | ||||||
| 		r.Get("/action/:action", repo.Action) | 		r.Get("/action/:action", repo.Action) // TODO | ||||||
| 		r.Get("/issues/new", repo.CreateIssue) | 		r.Get("/issues/new", repo.CreateIssue) | ||||||
| 		r.Post("/issues/new", bindIgnErr(auth.CreateIssueForm{}), repo.CreateIssuePost) | 		r.Post("/issues/new", bindIgnErr(auth.CreateIssueForm{}), repo.CreateIssuePost) | ||||||
| 		r.Post("/issues/:index", bindIgnErr(auth.CreateIssueForm{}), repo.UpdateIssue) | 		r.Post("/issues/:index", bindIgnErr(auth.CreateIssueForm{}), repo.UpdateIssue) | ||||||
|   | |||||||
| @@ -690,7 +690,7 @@ func GetRepositoryById(id int64) (*Repository, error) { | |||||||
| 	} else if !has { | 	} else if !has { | ||||||
| 		return nil, ErrRepoNotExist | 		return nil, ErrRepoNotExist | ||||||
| 	} | 	} | ||||||
| 	return repo, err | 	return repo, nil | ||||||
| } | } | ||||||
|  |  | ||||||
| // GetRepositories returns the list of repositories of given user. | // GetRepositories returns the list of repositories of given user. | ||||||
|   | |||||||
| @@ -6,10 +6,15 @@ package models | |||||||
|  |  | ||||||
| import ( | import ( | ||||||
| 	"encoding/json" | 	"encoding/json" | ||||||
|  | 	"errors" | ||||||
|  |  | ||||||
| 	"github.com/gogits/gogs/modules/log" | 	"github.com/gogits/gogs/modules/log" | ||||||
| ) | ) | ||||||
|  |  | ||||||
|  | var ( | ||||||
|  | 	ErrWebhookNotExist = errors.New("Webhook does not exist") | ||||||
|  | ) | ||||||
|  |  | ||||||
| // Content types. | // Content types. | ||||||
| const ( | const ( | ||||||
| 	CT_JSON = iota + 1 | 	CT_JSON = iota + 1 | ||||||
| @@ -27,20 +32,20 @@ type Webhook struct { | |||||||
| 	ContentType int | 	ContentType int | ||||||
| 	Secret      string `xorm:"TEXT"` | 	Secret      string `xorm:"TEXT"` | ||||||
| 	Events      string `xorm:"TEXT"` | 	Events      string `xorm:"TEXT"` | ||||||
|  | 	*HookEvent  `xorm:"-"` | ||||||
| 	IsSsl       bool | 	IsSsl       bool | ||||||
| 	IsActive    bool | 	IsActive    bool | ||||||
| } | } | ||||||
|  |  | ||||||
| func (w *Webhook) GetEvent() *HookEvent { | func (w *Webhook) GetEvent() { | ||||||
| 	h := &HookEvent{} | 	w.HookEvent = &HookEvent{} | ||||||
| 	if err := json.Unmarshal([]byte(w.Events), h); err != nil { | 	if err := json.Unmarshal([]byte(w.Events), w.HookEvent); err != nil { | ||||||
| 		log.Error("webhook.GetEvent(%d): %v", w.Id, err) | 		log.Error("webhook.GetEvent(%d): %v", w.Id, err) | ||||||
| 	} | 	} | ||||||
| 	return h |  | ||||||
| } | } | ||||||
|  |  | ||||||
| func (w *Webhook) SaveEvent(h *HookEvent) error { | func (w *Webhook) SaveEvent() error { | ||||||
| 	data, err := json.Marshal(h) | 	data, err := json.Marshal(w.HookEvent) | ||||||
| 	w.Events = string(data) | 	w.Events = string(data) | ||||||
| 	return err | 	return err | ||||||
| } | } | ||||||
| @@ -51,8 +56,32 @@ func CreateWebhook(w *Webhook) error { | |||||||
| 	return err | 	return err | ||||||
| } | } | ||||||
|  |  | ||||||
|  | // UpdateWebhook updates information of webhook. | ||||||
|  | func UpdateWebhook(w *Webhook) error { | ||||||
|  | 	_, err := orm.AllCols().Update(w) | ||||||
|  | 	return err | ||||||
|  | } | ||||||
|  |  | ||||||
|  | // GetWebhookById returns webhook by given ID. | ||||||
|  | func GetWebhookById(hookId int64) (*Webhook, error) { | ||||||
|  | 	w := &Webhook{Id: hookId} | ||||||
|  | 	has, err := orm.Get(w) | ||||||
|  | 	if err != nil { | ||||||
|  | 		return nil, err | ||||||
|  | 	} else if !has { | ||||||
|  | 		return nil, ErrWebhookNotExist | ||||||
|  | 	} | ||||||
|  | 	return w, nil | ||||||
|  | } | ||||||
|  |  | ||||||
| // GetWebhooksByRepoId returns all webhooks of repository. | // GetWebhooksByRepoId returns all webhooks of repository. | ||||||
| func GetWebhooksByRepoId(repoId int64) (ws []*Webhook, err error) { | func GetWebhooksByRepoId(repoId int64) (ws []*Webhook, err error) { | ||||||
| 	err = orm.Find(&ws, &Webhook{RepoId: repoId}) | 	err = orm.Find(&ws, &Webhook{RepoId: repoId}) | ||||||
| 	return ws, err | 	return ws, err | ||||||
| } | } | ||||||
|  |  | ||||||
|  | // DeleteWebhook deletes webhook of repository. | ||||||
|  | func DeleteWebhook(hookId int64) error { | ||||||
|  | 	_, err := orm.Delete(&Webhook{Id: hookId}) | ||||||
|  | 	return err | ||||||
|  | } | ||||||
|   | |||||||
| @@ -8,6 +8,8 @@ import ( | |||||||
| 	"fmt" | 	"fmt" | ||||||
| 	"strings" | 	"strings" | ||||||
|  |  | ||||||
|  | 	"github.com/go-martini/martini" | ||||||
|  |  | ||||||
| 	"github.com/gogits/git" | 	"github.com/gogits/git" | ||||||
|  |  | ||||||
| 	"github.com/gogits/gogs/models" | 	"github.com/gogits/gogs/models" | ||||||
| @@ -39,13 +41,13 @@ func SettingPost(ctx *middleware.Context, form auth.RepoSettingForm) { | |||||||
| 		if ctx.Repo.Repository.Name != newRepoName { | 		if ctx.Repo.Repository.Name != newRepoName { | ||||||
| 			isExist, err := models.IsRepositoryExist(ctx.Repo.Owner, newRepoName) | 			isExist, err := models.IsRepositoryExist(ctx.Repo.Owner, newRepoName) | ||||||
| 			if err != nil { | 			if err != nil { | ||||||
| 				ctx.Handle(500, "repo.SettingPost(update: check existence)", err) | 				ctx.Handle(500, "setting.SettingPost(update: check existence)", err) | ||||||
| 				return | 				return | ||||||
| 			} else if isExist { | 			} else if isExist { | ||||||
| 				ctx.RenderWithErr("Repository name has been taken in your repositories.", "repo/setting", nil) | 				ctx.RenderWithErr("Repository name has been taken in your repositories.", "repo/setting", nil) | ||||||
| 				return | 				return | ||||||
| 			} else if err = models.ChangeRepositoryName(ctx.Repo.Owner.Name, ctx.Repo.Repository.Name, newRepoName); err != nil { | 			} else if err = models.ChangeRepositoryName(ctx.Repo.Owner.Name, ctx.Repo.Repository.Name, newRepoName); err != nil { | ||||||
| 				ctx.Handle(500, "repo.SettingPost(change repository name)", err) | 				ctx.Handle(500, "setting.SettingPost(change repository name)", err) | ||||||
| 				return | 				return | ||||||
| 			} | 			} | ||||||
| 			log.Trace("%s Repository name changed: %s/%s -> %s", ctx.Req.RequestURI, ctx.User.Name, ctx.Repo.Repository.Name, newRepoName) | 			log.Trace("%s Repository name changed: %s/%s -> %s", ctx.Req.RequestURI, ctx.User.Name, ctx.Repo.Repository.Name, newRepoName) | ||||||
| @@ -63,7 +65,7 @@ func SettingPost(ctx *middleware.Context, form auth.RepoSettingForm) { | |||||||
| 		ctx.Repo.Repository.IsPrivate = form.Private | 		ctx.Repo.Repository.IsPrivate = form.Private | ||||||
| 		ctx.Repo.Repository.IsGoget = form.GoGet | 		ctx.Repo.Repository.IsGoget = form.GoGet | ||||||
| 		if err := models.UpdateRepository(ctx.Repo.Repository); err != nil { | 		if err := models.UpdateRepository(ctx.Repo.Repository); err != nil { | ||||||
| 			ctx.Handle(404, "repo.SettingPost(update)", err) | 			ctx.Handle(404, "setting.SettingPost(update)", err) | ||||||
| 			return | 			return | ||||||
| 		} | 		} | ||||||
| 		log.Trace("%s Repository updated: %s/%s", ctx.Req.RequestURI, ctx.Repo.Owner.Name, ctx.Repo.Repository.Name) | 		log.Trace("%s Repository updated: %s/%s", ctx.Req.RequestURI, ctx.Repo.Owner.Name, ctx.Repo.Repository.Name) | ||||||
| @@ -72,7 +74,7 @@ func SettingPost(ctx *middleware.Context, form auth.RepoSettingForm) { | |||||||
| 			if form.Interval > 0 { | 			if form.Interval > 0 { | ||||||
| 				ctx.Repo.Mirror.Interval = form.Interval | 				ctx.Repo.Mirror.Interval = form.Interval | ||||||
| 				if err := models.UpdateMirror(ctx.Repo.Mirror); err != nil { | 				if err := models.UpdateMirror(ctx.Repo.Mirror); err != nil { | ||||||
| 					log.Error("repo.SettingPost(UpdateMirror): %v", err) | 					log.Error("setting.SettingPost(UpdateMirror): %v", err) | ||||||
| 				} | 				} | ||||||
| 			} | 			} | ||||||
| 		} | 		} | ||||||
| @@ -89,13 +91,13 @@ func SettingPost(ctx *middleware.Context, form auth.RepoSettingForm) { | |||||||
| 		// Check if new owner exists. | 		// Check if new owner exists. | ||||||
| 		isExist, err := models.IsUserExist(newOwner) | 		isExist, err := models.IsUserExist(newOwner) | ||||||
| 		if err != nil { | 		if err != nil { | ||||||
| 			ctx.Handle(500, "repo.SettingPost(transfer: check existence)", err) | 			ctx.Handle(500, "setting.SettingPost(transfer: check existence)", err) | ||||||
| 			return | 			return | ||||||
| 		} else if !isExist { | 		} else if !isExist { | ||||||
| 			ctx.RenderWithErr("Please make sure you entered owner name is correct.", "repo/setting", nil) | 			ctx.RenderWithErr("Please make sure you entered owner name is correct.", "repo/setting", nil) | ||||||
| 			return | 			return | ||||||
| 		} else if err = models.TransferOwnership(ctx.User, newOwner, ctx.Repo.Repository); err != nil { | 		} else if err = models.TransferOwnership(ctx.User, newOwner, ctx.Repo.Repository); err != nil { | ||||||
| 			ctx.Handle(500, "repo.SettingPost(transfer repository)", err) | 			ctx.Handle(500, "setting.SettingPost(transfer repository)", err) | ||||||
| 			return | 			return | ||||||
| 		} | 		} | ||||||
| 		log.Trace("%s Repository transfered: %s/%s -> %s", ctx.Req.RequestURI, ctx.User.Name, ctx.Repo.Repository.Name, newOwner) | 		log.Trace("%s Repository transfered: %s/%s -> %s", ctx.Req.RequestURI, ctx.User.Name, ctx.Repo.Repository.Name, newOwner) | ||||||
| @@ -108,7 +110,7 @@ func SettingPost(ctx *middleware.Context, form auth.RepoSettingForm) { | |||||||
| 		} | 		} | ||||||
|  |  | ||||||
| 		if err := models.DeleteRepository(ctx.User.Id, ctx.Repo.Repository.Id, ctx.User.LowerName); err != nil { | 		if err := models.DeleteRepository(ctx.User.Id, ctx.Repo.Repository.Id, ctx.User.LowerName); err != nil { | ||||||
| 			ctx.Handle(500, "repo.Delete", err) | 			ctx.Handle(500, "setting.Delete", err) | ||||||
| 			return | 			return | ||||||
| 		} | 		} | ||||||
| 		log.Trace("%s Repository deleted: %s/%s", ctx.Req.RequestURI, ctx.User.LowerName, ctx.Repo.Repository.LowerName) | 		log.Trace("%s Repository deleted: %s/%s", ctx.Req.RequestURI, ctx.User.LowerName, ctx.Repo.Repository.LowerName) | ||||||
| @@ -126,7 +128,7 @@ func Collaboration(ctx *middleware.Context) { | |||||||
| 	remove := strings.ToLower(ctx.Query("remove")) | 	remove := strings.ToLower(ctx.Query("remove")) | ||||||
| 	if len(remove) > 0 && remove != ctx.Repo.Owner.LowerName { | 	if len(remove) > 0 && remove != ctx.Repo.Owner.LowerName { | ||||||
| 		if err := models.DeleteAccess(&models.Access{UserName: remove, RepoName: repoLink}); err != nil { | 		if err := models.DeleteAccess(&models.Access{UserName: remove, RepoName: repoLink}); err != nil { | ||||||
| 			ctx.Handle(500, "repo.Collaboration(DeleteAccess)", err) | 			ctx.Handle(500, "setting.Collaboration(DeleteAccess)", err) | ||||||
| 			return | 			return | ||||||
| 		} | 		} | ||||||
| 		ctx.Flash.Success("Collaborator has been removed.") | 		ctx.Flash.Success("Collaborator has been removed.") | ||||||
| @@ -136,7 +138,7 @@ func Collaboration(ctx *middleware.Context) { | |||||||
|  |  | ||||||
| 	names, err := models.GetCollaborators(repoLink) | 	names, err := models.GetCollaborators(repoLink) | ||||||
| 	if err != nil { | 	if err != nil { | ||||||
| 		ctx.Handle(500, "repo.Collaboration(GetCollaborators)", err) | 		ctx.Handle(500, "setting.Collaboration(GetCollaborators)", err) | ||||||
| 		return | 		return | ||||||
| 	} | 	} | ||||||
|  |  | ||||||
| @@ -144,7 +146,7 @@ func Collaboration(ctx *middleware.Context) { | |||||||
| 	for i, name := range names { | 	for i, name := range names { | ||||||
| 		us[i], err = models.GetUserByName(name) | 		us[i], err = models.GetUserByName(name) | ||||||
| 		if err != nil { | 		if err != nil { | ||||||
| 			ctx.Handle(500, "repo.Collaboration(GetUserByName)", err) | 			ctx.Handle(500, "setting.Collaboration(GetUserByName)", err) | ||||||
| 			return | 			return | ||||||
| 		} | 		} | ||||||
| 	} | 	} | ||||||
| @@ -162,7 +164,7 @@ func CollaborationPost(ctx *middleware.Context) { | |||||||
| 	} | 	} | ||||||
| 	has, err := models.HasAccess(name, repoLink, models.AU_WRITABLE) | 	has, err := models.HasAccess(name, repoLink, models.AU_WRITABLE) | ||||||
| 	if err != nil { | 	if err != nil { | ||||||
| 		ctx.Handle(500, "repo.CollaborationPost(HasAccess)", err) | 		ctx.Handle(500, "setting.CollaborationPost(HasAccess)", err) | ||||||
| 		return | 		return | ||||||
| 	} else if has { | 	} else if has { | ||||||
| 		ctx.Redirect(ctx.Req.RequestURI) | 		ctx.Redirect(ctx.Req.RequestURI) | ||||||
| @@ -175,20 +177,20 @@ func CollaborationPost(ctx *middleware.Context) { | |||||||
| 			ctx.Flash.Error("Given user does not exist.") | 			ctx.Flash.Error("Given user does not exist.") | ||||||
| 			ctx.Redirect(ctx.Req.RequestURI) | 			ctx.Redirect(ctx.Req.RequestURI) | ||||||
| 		} else { | 		} else { | ||||||
| 			ctx.Handle(500, "repo.CollaborationPost(GetUserByName)", err) | 			ctx.Handle(500, "setting.CollaborationPost(GetUserByName)", err) | ||||||
| 		} | 		} | ||||||
| 		return | 		return | ||||||
| 	} | 	} | ||||||
|  |  | ||||||
| 	if err = models.AddAccess(&models.Access{UserName: name, RepoName: repoLink, | 	if err = models.AddAccess(&models.Access{UserName: name, RepoName: repoLink, | ||||||
| 		Mode: models.AU_WRITABLE}); err != nil { | 		Mode: models.AU_WRITABLE}); err != nil { | ||||||
| 		ctx.Handle(500, "repo.CollaborationPost(AddAccess)", err) | 		ctx.Handle(500, "setting.CollaborationPost(AddAccess)", err) | ||||||
| 		return | 		return | ||||||
| 	} | 	} | ||||||
|  |  | ||||||
| 	if base.Service.NotifyMail { | 	if base.Service.NotifyMail { | ||||||
| 		if err = mailer.SendCollaboratorMail(ctx.Render, u, ctx.User, ctx.Repo.Repository); err != nil { | 		if err = mailer.SendCollaboratorMail(ctx.Render, u, ctx.User, ctx.Repo.Repository); err != nil { | ||||||
| 			ctx.Handle(500, "repo.CollaborationPost(SendCollaboratorMail)", err) | 			ctx.Handle(500, "setting.CollaborationPost(SendCollaboratorMail)", err) | ||||||
| 			return | 			return | ||||||
| 		} | 		} | ||||||
| 	} | 	} | ||||||
| @@ -201,9 +203,21 @@ func WebHooks(ctx *middleware.Context) { | |||||||
| 	ctx.Data["IsRepoToolbarWebHooks"] = true | 	ctx.Data["IsRepoToolbarWebHooks"] = true | ||||||
| 	ctx.Data["Title"] = strings.TrimPrefix(ctx.Repo.RepoLink, "/") + " - Webhooks" | 	ctx.Data["Title"] = strings.TrimPrefix(ctx.Repo.RepoLink, "/") + " - Webhooks" | ||||||
|  |  | ||||||
|  | 	// Delete webhook. | ||||||
|  | 	remove, _ := base.StrTo(ctx.Query("remove")).Int64() | ||||||
|  | 	if remove > 0 { | ||||||
|  | 		if err := models.DeleteWebhook(remove); err != nil { | ||||||
|  | 			ctx.Handle(500, "setting.WebHooks(DeleteWebhook)", err) | ||||||
|  | 			return | ||||||
|  | 		} | ||||||
|  | 		ctx.Flash.Success("Webhook has been removed.") | ||||||
|  | 		ctx.Redirect(ctx.Repo.RepoLink + "/settings/hooks") | ||||||
|  | 		return | ||||||
|  | 	} | ||||||
|  |  | ||||||
| 	ws, err := models.GetWebhooksByRepoId(ctx.Repo.Repository.Id) | 	ws, err := models.GetWebhooksByRepoId(ctx.Repo.Repository.Id) | ||||||
| 	if err != nil { | 	if err != nil { | ||||||
| 		ctx.Handle(500, "repo.WebHooks(GetWebhooksByRepoId)", err) | 		ctx.Handle(500, "setting.WebHooks(GetWebhooksByRepoId)", err) | ||||||
| 		return | 		return | ||||||
| 	} | 	} | ||||||
|  |  | ||||||
| @@ -227,7 +241,7 @@ func WebHooksAddPost(ctx *middleware.Context, form auth.NewWebhookForm) { | |||||||
| 	} | 	} | ||||||
|  |  | ||||||
| 	ct := models.CT_JSON | 	ct := models.CT_JSON | ||||||
| 	if form.ContentType == "form" { | 	if form.ContentType == "2" { | ||||||
| 		ct = models.CT_FORM | 		ct = models.CT_FORM | ||||||
| 	} | 	} | ||||||
|  |  | ||||||
| @@ -236,16 +250,16 @@ func WebHooksAddPost(ctx *middleware.Context, form auth.NewWebhookForm) { | |||||||
| 		Payload:     form.Url, | 		Payload:     form.Url, | ||||||
| 		ContentType: ct, | 		ContentType: ct, | ||||||
| 		Secret:      form.Secret, | 		Secret:      form.Secret, | ||||||
|  | 		HookEvent: &models.HookEvent{ | ||||||
|  | 			PushOnly: form.PushOnly, | ||||||
|  | 		}, | ||||||
| 		IsActive: form.Active, | 		IsActive: form.Active, | ||||||
| 	} | 	} | ||||||
| 	h := &models.HookEvent{ | 	if err := w.SaveEvent(); err != nil { | ||||||
| 		PushOnly: form.PushOnly, | 		ctx.Handle(500, "setting.WebHooksAddPost(SaveEvent)", err) | ||||||
| 	} |  | ||||||
| 	if err := w.SaveEvent(h); err != nil { |  | ||||||
| 		ctx.Handle(500, "repo.WebHooksAddPost(SaveEvent)", err) |  | ||||||
| 		return | 		return | ||||||
| 	} else if err := models.CreateWebhook(w); err != nil { | 	} else if err := models.CreateWebhook(w); err != nil { | ||||||
| 		ctx.Handle(500, "repo.WebHooksAddPost(CreateWebhook)", err) | 		ctx.Handle(500, "setting.WebHooksAddPost(CreateWebhook)", err) | ||||||
| 		return | 		return | ||||||
| 	} | 	} | ||||||
|  |  | ||||||
| @@ -253,8 +267,70 @@ func WebHooksAddPost(ctx *middleware.Context, form auth.NewWebhookForm) { | |||||||
| 	ctx.Redirect(ctx.Repo.RepoLink + "/settings/hooks") | 	ctx.Redirect(ctx.Repo.RepoLink + "/settings/hooks") | ||||||
| } | } | ||||||
|  |  | ||||||
| func WebHooksEdit(ctx *middleware.Context) { | func WebHooksEdit(ctx *middleware.Context, params martini.Params) { | ||||||
| 	ctx.Data["IsRepoToolbarWebHooks"] = true | 	ctx.Data["IsRepoToolbarWebHooks"] = true | ||||||
| 	ctx.Data["Title"] = strings.TrimPrefix(ctx.Repo.RepoLink, "/") + " - Webhook" | 	ctx.Data["Title"] = strings.TrimPrefix(ctx.Repo.RepoLink, "/") + " - Webhook" | ||||||
|  |  | ||||||
|  | 	hookId, _ := base.StrTo(params["id"]).Int64() | ||||||
|  | 	if hookId == 0 { | ||||||
|  | 		ctx.Handle(404, "setting.WebHooksEdit", nil) | ||||||
|  | 		return | ||||||
|  | 	} | ||||||
|  |  | ||||||
|  | 	w, err := models.GetWebhookById(hookId) | ||||||
|  | 	if err != nil { | ||||||
|  | 		if err == models.ErrWebhookNotExist { | ||||||
|  | 			ctx.Handle(404, "setting.WebHooksEdit(GetWebhookById)", nil) | ||||||
|  | 		} else { | ||||||
|  | 			ctx.Handle(500, "setting.WebHooksEdit(GetWebhookById)", err) | ||||||
|  | 		} | ||||||
|  | 		return | ||||||
|  | 	} | ||||||
|  |  | ||||||
|  | 	w.GetEvent() | ||||||
|  | 	ctx.Data["Webhook"] = w | ||||||
| 	ctx.HTML(200, "repo/hooks_edit") | 	ctx.HTML(200, "repo/hooks_edit") | ||||||
| } | } | ||||||
|  |  | ||||||
|  | func WebHooksEditPost(ctx *middleware.Context, params martini.Params, form auth.NewWebhookForm) { | ||||||
|  | 	ctx.Data["IsRepoToolbarWebHooks"] = true | ||||||
|  | 	ctx.Data["Title"] = strings.TrimPrefix(ctx.Repo.RepoLink, "/") + " - Webhook" | ||||||
|  |  | ||||||
|  | 	if ctx.HasError() { | ||||||
|  | 		ctx.HTML(200, "repo/hooks_add") | ||||||
|  | 		return | ||||||
|  | 	} | ||||||
|  |  | ||||||
|  | 	hookId, _ := base.StrTo(params["id"]).Int64() | ||||||
|  | 	if hookId == 0 { | ||||||
|  | 		ctx.Handle(404, "setting.WebHooksEditPost", nil) | ||||||
|  | 		return | ||||||
|  | 	} | ||||||
|  |  | ||||||
|  | 	ct := models.CT_JSON | ||||||
|  | 	if form.ContentType == "2" { | ||||||
|  | 		ct = models.CT_FORM | ||||||
|  | 	} | ||||||
|  |  | ||||||
|  | 	w := &models.Webhook{ | ||||||
|  | 		Id:          hookId, | ||||||
|  | 		RepoId:      ctx.Repo.Repository.Id, | ||||||
|  | 		Payload:     form.Url, | ||||||
|  | 		ContentType: ct, | ||||||
|  | 		Secret:      form.Secret, | ||||||
|  | 		HookEvent: &models.HookEvent{ | ||||||
|  | 			PushOnly: form.PushOnly, | ||||||
|  | 		}, | ||||||
|  | 		IsActive: form.Active, | ||||||
|  | 	} | ||||||
|  | 	if err := w.SaveEvent(); err != nil { | ||||||
|  | 		ctx.Handle(500, "setting.WebHooksEditPost(SaveEvent)", err) | ||||||
|  | 		return | ||||||
|  | 	} else if err := models.UpdateWebhook(w); err != nil { | ||||||
|  | 		ctx.Handle(500, "setting.WebHooksEditPost(WebHooksEditPost)", err) | ||||||
|  | 		return | ||||||
|  | 	} | ||||||
|  |  | ||||||
|  | 	ctx.Flash.Success("Webhook has been updated.") | ||||||
|  | 	ctx.Redirect(fmt.Sprintf("%s/settings/hooks/%d", ctx.Repo.RepoLink, hookId)) | ||||||
|  | } | ||||||
|   | |||||||
| @@ -15,7 +15,7 @@ | |||||||
|                 <ul id="repo-hooks-list" class="list-unstyled"> |                 <ul id="repo-hooks-list" class="list-unstyled"> | ||||||
|                     {{range .Webhooks}} |                     {{range .Webhooks}} | ||||||
|                     <li> |                     <li> | ||||||
|                         <span class="pull-left status text-success"><i class="fa fa-check"></i></span> |                         {{if .IsActive}}<span class="pull-left status text-success"><i class="fa fa-check"></i></span>{{else}}<span class="pull-left status"><i class="fa fa-times"></i></span>{{end}} | ||||||
|                         <a class="link" href="{{$.RepoLink}}/settings/hooks/{{.Id}}">{{.Payload}}</a> |                         <a class="link" href="{{$.RepoLink}}/settings/hooks/{{.Id}}">{{.Payload}}</a> | ||||||
|                         <a href="{{$.RepoLink}}/settings/hooks?remove={{.Id}}" class="remove-hook pull-right"><i class="fa fa-times"></i></a> |                         <a href="{{$.RepoLink}}/settings/hooks?remove={{.Id}}" class="remove-hook pull-right"><i class="fa fa-times"></i></a> | ||||||
|                         <a href="{{$.RepoLink}}/settings/hooks/{{.Id}}" class="edit-hook pull-right"><i class="fa fa-pencil"></i></a> |                         <a href="{{$.RepoLink}}/settings/hooks/{{.Id}}" class="edit-hook pull-right"><i class="fa fa-pencil"></i></a> | ||||||
|   | |||||||
| @@ -21,12 +21,14 @@ | |||||||
|                             <label for="payload-url">Payload URL</label> |                             <label for="payload-url">Payload URL</label> | ||||||
|                             <input id="payload-url" name="url" class="form-control" type="url" required="required"/> |                             <input id="payload-url" name="url" class="form-control" type="url" required="required"/> | ||||||
|                         </div> |                         </div> | ||||||
|  |  | ||||||
|                         <div class="form-group"> |                         <div class="form-group"> | ||||||
|                             <label for="content-type">Content type</label> |                             <label for="content-type">Content type</label> | ||||||
|                             <select id="content-type" name="content_type" class="form-control"> |                             <select id="content-type" name="content_type" class="form-control"> | ||||||
|                                 <option value="json">application/json</option> |                                 <option value="1">application/json</option> | ||||||
|                             </select> |                             </select> | ||||||
|                         </div> |                         </div> | ||||||
|  |  | ||||||
|                         <div class="form-group"> |                         <div class="form-group"> | ||||||
|                             <label for="payload-secret">Secret</label> |                             <label for="payload-secret">Secret</label> | ||||||
|                             <input id="payload-secret" name="secret" class="form-control" type="text"/> |                             <input id="payload-secret" name="secret" class="form-control" type="text"/> | ||||||
| @@ -43,8 +45,7 @@ | |||||||
|                         <hr/> |                         <hr/> | ||||||
|                         <div class="form-group"> |                         <div class="form-group"> | ||||||
|                             <label> |                             <label> | ||||||
|                                 <input type="checkbox" name="active" checked/>   |                                 <input type="checkbox" name="active" checked/>  Active | ||||||
|                                 Active |  | ||||||
|                             </label> |                             </label> | ||||||
|                             <p class="help-block">We will deliver event details when this hook is triggered.</p> |                             <p class="help-block">We will deliver event details when this hook is triggered.</p> | ||||||
|                         </div> |                         </div> | ||||||
|   | |||||||
| @@ -6,7 +6,8 @@ | |||||||
|     {{template "repo/setting_nav" .}} |     {{template "repo/setting_nav" .}} | ||||||
|     <div id="repo-setting-container" class="col-md-10"> |     <div id="repo-setting-container" class="col-md-10"> | ||||||
|         {{template "base/alert" .}} |         {{template "base/alert" .}} | ||||||
|         <form id="repo-hooks-edit-form" action="/{{.Owner.Name}}/{{.Repository.Name}}/settings/hooks/edit" method="post"> |         <form id="repo-hooks-edit-form" action="{{.RepoLink}}/settings/hooks/{{.Webhook.Id}}" method="post"> | ||||||
|  |             {{.CsrfTokenHtml}} | ||||||
|             <div class="panel panel-default"> |             <div class="panel panel-default"> | ||||||
|                 <div class="panel-heading"> |                 <div class="panel-heading"> | ||||||
|                     Manage Webhook |                     Manage Webhook | ||||||
| @@ -18,36 +19,34 @@ | |||||||
|                         <hr/> |                         <hr/> | ||||||
|                         <div class="form-group"> |                         <div class="form-group"> | ||||||
|                             <label for="payload-url">Payload URL</label> |                             <label for="payload-url">Payload URL</label> | ||||||
|                             <input id="payload-url" class="form-control" type="url" required="required" name="url"/> |                             <input id="payload-url" name="url" class="form-control" type="url" required="required" value="{{.Webhook.Payload}}" /> | ||||||
|                         </div> |                         </div> | ||||||
|  |  | ||||||
|                         <div class="form-group"> |                         <div class="form-group"> | ||||||
|                             <label for="payload-version">Payload Version</label> |                             <label for="payload-version">Content type</label> | ||||||
|                             <select name="version" id="payload-version" class="form-control"> |                             <select id="content-type" name="content_type" class="form-control"> | ||||||
|                                 <option value="json">application/json</option> |                                 <option value="1">application/json</option> | ||||||
|                             </select> |                             </select> | ||||||
|                         </div> |                         </div> | ||||||
|  |  | ||||||
|                         <div class="form-group"> |                         <div class="form-group"> | ||||||
|                             <label for="payload-secret">Secret</label> |                             <label for="payload-secret">Secret</label> | ||||||
|                             <input id="payload-secret" class="form-control" type="text" required="required" name="secret"/> |                             <input id="payload-secret" name="secret" class="form-control" type="text" value="{{.Webhook.Secret}}" /> | ||||||
|                         </div> |                         </div> | ||||||
|                         <hr/> |                         <hr/> | ||||||
|                         <div class="form-group"> |                         <div class="form-group"> | ||||||
|                             <label>Which events would you like to trigger this webhook?</label> |                             <label>Which events would you like to trigger this webhook?</label> | ||||||
|  |  | ||||||
|                             <div class="radio"> |                             <div class="radio"> | ||||||
|                                 <label> |                                 <label> | ||||||
|                                     <input class="form-control" type="radio" value="push" checked name="trigger"/> Just the |                                     <input class="form-control" name="push_only" type="radio" {{if .Webhook.HookEvent.PushOnly}}checked {{end}}name="trigger"/> Just the <i>push</i> event. | ||||||
|                                     <i>push</i> event. |  | ||||||
|                                 </label> |                                 </label> | ||||||
|                             </div> |                             </div> | ||||||
|                         </div> |                         </div> | ||||||
|                         <hr/> |                         <hr/> | ||||||
|                         <div class="form-group"> |                         <div class="form-group"> | ||||||
|                             <label> |                             <label> | ||||||
|                                 <input type="checkbox" name="active" value="Active" checked/>   |                                 <input type="checkbox" name="active" {{if .Webhook.IsActive}}checked{{end}}/>  Active | ||||||
|                                 Active |  | ||||||
|                             </label> |                             </label> | ||||||
|  |  | ||||||
|                             <p class="help-block">We will deliver event details when this hook is triggered.</p> |                             <p class="help-block">We will deliver event details when this hook is triggered.</p> | ||||||
|                         </div> |                         </div> | ||||||
|                     </div> |                     </div> | ||||||
| @@ -55,7 +54,7 @@ | |||||||
|  |  | ||||||
|                 <div class="panel-footer"> |                 <div class="panel-footer"> | ||||||
|                     <button class="btn btn-primary">Update Webhook</button>   |                     <button class="btn btn-primary">Update Webhook</button>   | ||||||
|                     <a href="/{{.Owner.Name}}/{{.Repository.Name}}/settings/hooks?remove="><button class="btn btn-danger">Delete Webhook</button></a> |                     <a type="button" href="{{.RepoLink}}/settings/hooks?remove={{.Webhook.Id}}" class="btn btn-danger">Delete Webhook</a> | ||||||
|                 </div> |                 </div> | ||||||
|             </div> |             </div> | ||||||
|         </form> |         </form> | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user
	 Unknown
					Unknown