| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528 | 
							- // Copyright 2015 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.
 
- package repo
 
- import (
 
- 	"encoding/json"
 
- 	"errors"
 
- 	"fmt"
 
- 	"strings"
 
- 	"github.com/Unknwon/com"
 
- 	git "github.com/gogits/git-module"
 
- 	api "github.com/gogits/go-gogs-client"
 
- 	"github.com/gogits/gogs/models"
 
- 	"github.com/gogits/gogs/modules/base"
 
- 	"github.com/gogits/gogs/modules/context"
 
- 	"github.com/gogits/gogs/modules/form"
 
- 	"github.com/gogits/gogs/modules/setting"
 
- )
 
- const (
 
- 	WEBHOOKS        base.TplName = "repo/settings/webhooks"
 
- 	WEBHOOK_NEW     base.TplName = "repo/settings/webhook_new"
 
- 	ORG_WEBHOOK_NEW base.TplName = "org/settings/webhook_new"
 
- )
 
- func Webhooks(ctx *context.Context) {
 
- 	ctx.Data["Title"] = ctx.Tr("repo.settings.hooks")
 
- 	ctx.Data["PageIsSettingsHooks"] = true
 
- 	ctx.Data["BaseLink"] = ctx.Repo.RepoLink
 
- 	ctx.Data["Description"] = ctx.Tr("repo.settings.hooks_desc", "https://github.com/gogits/go-gogs-client/wiki/Repositories-Webhooks")
 
- 	ctx.Data["Types"] = setting.Webhook.Types
 
- 	ws, err := models.GetWebhooksByRepoID(ctx.Repo.Repository.ID)
 
- 	if err != nil {
 
- 		ctx.Handle(500, "GetWebhooksByRepoID", err)
 
- 		return
 
- 	}
 
- 	ctx.Data["Webhooks"] = ws
 
- 	ctx.HTML(200, WEBHOOKS)
 
- }
 
- type OrgRepoCtx struct {
 
- 	OrgID       int64
 
- 	RepoID      int64
 
- 	Link        string
 
- 	NewTemplate base.TplName
 
- }
 
- // getOrgRepoCtx determines whether this is a repo context or organization context.
 
- func getOrgRepoCtx(ctx *context.Context) (*OrgRepoCtx, error) {
 
- 	if len(ctx.Repo.RepoLink) > 0 {
 
- 		return &OrgRepoCtx{
 
- 			RepoID:      ctx.Repo.Repository.ID,
 
- 			Link:        ctx.Repo.RepoLink,
 
- 			NewTemplate: WEBHOOK_NEW,
 
- 		}, nil
 
- 	}
 
- 	if len(ctx.Org.OrgLink) > 0 {
 
- 		return &OrgRepoCtx{
 
- 			OrgID:       ctx.Org.Organization.ID,
 
- 			Link:        ctx.Org.OrgLink,
 
- 			NewTemplate: ORG_WEBHOOK_NEW,
 
- 		}, nil
 
- 	}
 
- 	return nil, errors.New("Unable to set OrgRepo context")
 
- }
 
- func checkHookType(ctx *context.Context) string {
 
- 	hookType := strings.ToLower(ctx.Params(":type"))
 
- 	if !com.IsSliceContainsStr(setting.Webhook.Types, hookType) {
 
- 		ctx.Handle(404, "checkHookType", nil)
 
- 		return ""
 
- 	}
 
- 	return hookType
 
- }
 
- func WebhooksNew(ctx *context.Context) {
 
- 	ctx.Data["Title"] = ctx.Tr("repo.settings.add_webhook")
 
- 	ctx.Data["PageIsSettingsHooks"] = true
 
- 	ctx.Data["PageIsSettingsHooksNew"] = true
 
- 	ctx.Data["Webhook"] = models.Webhook{HookEvent: &models.HookEvent{}}
 
- 	orCtx, err := getOrgRepoCtx(ctx)
 
- 	if err != nil {
 
- 		ctx.Handle(500, "getOrgRepoCtx", err)
 
- 		return
 
- 	}
 
- 	ctx.Data["HookType"] = checkHookType(ctx)
 
- 	if ctx.Written() {
 
- 		return
 
- 	}
 
- 	ctx.Data["BaseLink"] = orCtx.Link
 
- 	ctx.HTML(200, orCtx.NewTemplate)
 
- }
 
- func ParseHookEvent(f form.Webhook) *models.HookEvent {
 
- 	return &models.HookEvent{
 
- 		PushOnly:       f.PushOnly(),
 
- 		SendEverything: f.SendEverything(),
 
- 		ChooseEvents:   f.ChooseEvents(),
 
- 		HookEvents: models.HookEvents{
 
- 			Create:      f.Create,
 
- 			Push:        f.Push,
 
- 			PullRequest: f.PullRequest,
 
- 		},
 
- 	}
 
- }
 
- func WebHooksNewPost(ctx *context.Context, f form.NewWebhook) {
 
- 	ctx.Data["Title"] = ctx.Tr("repo.settings.add_webhook")
 
- 	ctx.Data["PageIsSettingsHooks"] = true
 
- 	ctx.Data["PageIsSettingsHooksNew"] = true
 
- 	ctx.Data["Webhook"] = models.Webhook{HookEvent: &models.HookEvent{}}
 
- 	ctx.Data["HookType"] = "gogs"
 
- 	orCtx, err := getOrgRepoCtx(ctx)
 
- 	if err != nil {
 
- 		ctx.Handle(500, "getOrgRepoCtx", err)
 
- 		return
 
- 	}
 
- 	ctx.Data["BaseLink"] = orCtx.Link
 
- 	if ctx.HasError() {
 
- 		ctx.HTML(200, orCtx.NewTemplate)
 
- 		return
 
- 	}
 
- 	contentType := models.JSON
 
- 	if models.HookContentType(f.ContentType) == models.FORM {
 
- 		contentType = models.FORM
 
- 	}
 
- 	w := &models.Webhook{
 
- 		RepoID:       orCtx.RepoID,
 
- 		URL:          f.PayloadURL,
 
- 		ContentType:  contentType,
 
- 		Secret:       f.Secret,
 
- 		HookEvent:    ParseHookEvent(f.Webhook),
 
- 		IsActive:     f.Active,
 
- 		HookTaskType: models.GOGS,
 
- 		OrgID:        orCtx.OrgID,
 
- 	}
 
- 	if err := w.UpdateEvent(); err != nil {
 
- 		ctx.Handle(500, "UpdateEvent", err)
 
- 		return
 
- 	} else if err := models.CreateWebhook(w); err != nil {
 
- 		ctx.Handle(500, "CreateWebhook", err)
 
- 		return
 
- 	}
 
- 	ctx.Flash.Success(ctx.Tr("repo.settings.add_hook_success"))
 
- 	ctx.Redirect(orCtx.Link + "/settings/hooks")
 
- }
 
- func SlackHooksNewPost(ctx *context.Context, f form.NewSlackHook) {
 
- 	ctx.Data["Title"] = ctx.Tr("repo.settings")
 
- 	ctx.Data["PageIsSettingsHooks"] = true
 
- 	ctx.Data["PageIsSettingsHooksNew"] = true
 
- 	ctx.Data["Webhook"] = models.Webhook{HookEvent: &models.HookEvent{}}
 
- 	orCtx, err := getOrgRepoCtx(ctx)
 
- 	if err != nil {
 
- 		ctx.Handle(500, "getOrgRepoCtx", err)
 
- 		return
 
- 	}
 
- 	if ctx.HasError() {
 
- 		ctx.HTML(200, orCtx.NewTemplate)
 
- 		return
 
- 	}
 
- 	meta, err := json.Marshal(&models.SlackMeta{
 
- 		Channel:  f.Channel,
 
- 		Username: f.Username,
 
- 		IconURL:  f.IconURL,
 
- 		Color:    f.Color,
 
- 	})
 
- 	if err != nil {
 
- 		ctx.Handle(500, "Marshal", err)
 
- 		return
 
- 	}
 
- 	w := &models.Webhook{
 
- 		RepoID:       orCtx.RepoID,
 
- 		URL:          f.PayloadURL,
 
- 		ContentType:  models.JSON,
 
- 		HookEvent:    ParseHookEvent(f.Webhook),
 
- 		IsActive:     f.Active,
 
- 		HookTaskType: models.SLACK,
 
- 		Meta:         string(meta),
 
- 		OrgID:        orCtx.OrgID,
 
- 	}
 
- 	if err := w.UpdateEvent(); err != nil {
 
- 		ctx.Handle(500, "UpdateEvent", err)
 
- 		return
 
- 	} else if err := models.CreateWebhook(w); err != nil {
 
- 		ctx.Handle(500, "CreateWebhook", err)
 
- 		return
 
- 	}
 
- 	ctx.Flash.Success(ctx.Tr("repo.settings.add_hook_success"))
 
- 	ctx.Redirect(orCtx.Link + "/settings/hooks")
 
- }
 
- // FIXME: merge logic to Slack
 
- func DiscordHooksNewPost(ctx *context.Context, f form.NewDiscordHook) {
 
- 	ctx.Data["Title"] = ctx.Tr("repo.settings")
 
- 	ctx.Data["PageIsSettingsHooks"] = true
 
- 	ctx.Data["PageIsSettingsHooksNew"] = true
 
- 	ctx.Data["Webhook"] = models.Webhook{HookEvent: &models.HookEvent{}}
 
- 	orCtx, err := getOrgRepoCtx(ctx)
 
- 	if err != nil {
 
- 		ctx.Handle(500, "getOrgRepoCtx", err)
 
- 		return
 
- 	}
 
- 	if ctx.HasError() {
 
- 		ctx.HTML(200, orCtx.NewTemplate)
 
- 		return
 
- 	}
 
- 	meta, err := json.Marshal(&models.SlackMeta{
 
- 		Username: f.Username,
 
- 		IconURL:  f.IconURL,
 
- 		Color:    f.Color,
 
- 	})
 
- 	if err != nil {
 
- 		ctx.Handle(500, "Marshal", err)
 
- 		return
 
- 	}
 
- 	w := &models.Webhook{
 
- 		RepoID:       orCtx.RepoID,
 
- 		URL:          f.PayloadURL,
 
- 		ContentType:  models.JSON,
 
- 		HookEvent:    ParseHookEvent(f.Webhook),
 
- 		IsActive:     f.Active,
 
- 		HookTaskType: models.DISCORD,
 
- 		Meta:         string(meta),
 
- 		OrgID:        orCtx.OrgID,
 
- 	}
 
- 	if err := w.UpdateEvent(); err != nil {
 
- 		ctx.Handle(500, "UpdateEvent", err)
 
- 		return
 
- 	} else if err := models.CreateWebhook(w); err != nil {
 
- 		ctx.Handle(500, "CreateWebhook", err)
 
- 		return
 
- 	}
 
- 	ctx.Flash.Success(ctx.Tr("repo.settings.add_hook_success"))
 
- 	ctx.Redirect(orCtx.Link + "/settings/hooks")
 
- }
 
- func checkWebhook(ctx *context.Context) (*OrgRepoCtx, *models.Webhook) {
 
- 	ctx.Data["RequireHighlightJS"] = true
 
- 	orCtx, err := getOrgRepoCtx(ctx)
 
- 	if err != nil {
 
- 		ctx.Handle(500, "getOrgRepoCtx", err)
 
- 		return nil, nil
 
- 	}
 
- 	ctx.Data["BaseLink"] = orCtx.Link
 
- 	var w *models.Webhook
 
- 	if orCtx.RepoID > 0 {
 
- 		w, err = models.GetWebhookOfRepoByID(ctx.Repo.Repository.ID, ctx.ParamsInt64(":id"))
 
- 	} else {
 
- 		w, err = models.GetWebhookByOrgID(ctx.Org.Organization.ID, ctx.ParamsInt64(":id"))
 
- 	}
 
- 	if err != nil {
 
- 		if models.IsErrWebhookNotExist(err) {
 
- 			ctx.Handle(404, "GetWebhookByID", nil)
 
- 		} else {
 
- 			ctx.Handle(500, "GetWebhookByID", err)
 
- 		}
 
- 		return nil, nil
 
- 	}
 
- 	switch w.HookTaskType {
 
- 	case models.SLACK:
 
- 		ctx.Data["SlackHook"] = w.GetSlackHook()
 
- 		ctx.Data["HookType"] = "slack"
 
- 	case models.DISCORD:
 
- 		ctx.Data["SlackHook"] = w.GetSlackHook()
 
- 		ctx.Data["HookType"] = "discord"
 
- 	default:
 
- 		ctx.Data["HookType"] = "gogs"
 
- 	}
 
- 	ctx.Data["History"], err = w.History(1)
 
- 	if err != nil {
 
- 		ctx.Handle(500, "History", err)
 
- 	}
 
- 	return orCtx, w
 
- }
 
- func WebHooksEdit(ctx *context.Context) {
 
- 	ctx.Data["Title"] = ctx.Tr("repo.settings.update_webhook")
 
- 	ctx.Data["PageIsSettingsHooks"] = true
 
- 	ctx.Data["PageIsSettingsHooksEdit"] = true
 
- 	orCtx, w := checkWebhook(ctx)
 
- 	if ctx.Written() {
 
- 		return
 
- 	}
 
- 	ctx.Data["Webhook"] = w
 
- 	ctx.HTML(200, orCtx.NewTemplate)
 
- }
 
- func WebHooksEditPost(ctx *context.Context, f form.NewWebhook) {
 
- 	ctx.Data["Title"] = ctx.Tr("repo.settings.update_webhook")
 
- 	ctx.Data["PageIsSettingsHooks"] = true
 
- 	ctx.Data["PageIsSettingsHooksEdit"] = true
 
- 	orCtx, w := checkWebhook(ctx)
 
- 	if ctx.Written() {
 
- 		return
 
- 	}
 
- 	ctx.Data["Webhook"] = w
 
- 	if ctx.HasError() {
 
- 		ctx.HTML(200, orCtx.NewTemplate)
 
- 		return
 
- 	}
 
- 	contentType := models.JSON
 
- 	if models.HookContentType(f.ContentType) == models.FORM {
 
- 		contentType = models.FORM
 
- 	}
 
- 	w.URL = f.PayloadURL
 
- 	w.ContentType = contentType
 
- 	w.Secret = f.Secret
 
- 	w.HookEvent = ParseHookEvent(f.Webhook)
 
- 	w.IsActive = f.Active
 
- 	if err := w.UpdateEvent(); err != nil {
 
- 		ctx.Handle(500, "UpdateEvent", err)
 
- 		return
 
- 	} else if err := models.UpdateWebhook(w); err != nil {
 
- 		ctx.Handle(500, "WebHooksEditPost", err)
 
- 		return
 
- 	}
 
- 	ctx.Flash.Success(ctx.Tr("repo.settings.update_hook_success"))
 
- 	ctx.Redirect(fmt.Sprintf("%s/settings/hooks/%d", orCtx.Link, w.ID))
 
- }
 
- func SlackHooksEditPost(ctx *context.Context, f form.NewSlackHook) {
 
- 	ctx.Data["Title"] = ctx.Tr("repo.settings")
 
- 	ctx.Data["PageIsSettingsHooks"] = true
 
- 	ctx.Data["PageIsSettingsHooksEdit"] = true
 
- 	orCtx, w := checkWebhook(ctx)
 
- 	if ctx.Written() {
 
- 		return
 
- 	}
 
- 	ctx.Data["Webhook"] = w
 
- 	if ctx.HasError() {
 
- 		ctx.HTML(200, orCtx.NewTemplate)
 
- 		return
 
- 	}
 
- 	meta, err := json.Marshal(&models.SlackMeta{
 
- 		Channel:  f.Channel,
 
- 		Username: f.Username,
 
- 		IconURL:  f.IconURL,
 
- 		Color:    f.Color,
 
- 	})
 
- 	if err != nil {
 
- 		ctx.Handle(500, "Marshal", err)
 
- 		return
 
- 	}
 
- 	w.URL = f.PayloadURL
 
- 	w.Meta = string(meta)
 
- 	w.HookEvent = ParseHookEvent(f.Webhook)
 
- 	w.IsActive = f.Active
 
- 	if err := w.UpdateEvent(); err != nil {
 
- 		ctx.Handle(500, "UpdateEvent", err)
 
- 		return
 
- 	} else if err := models.UpdateWebhook(w); err != nil {
 
- 		ctx.Handle(500, "UpdateWebhook", err)
 
- 		return
 
- 	}
 
- 	ctx.Flash.Success(ctx.Tr("repo.settings.update_hook_success"))
 
- 	ctx.Redirect(fmt.Sprintf("%s/settings/hooks/%d", orCtx.Link, w.ID))
 
- }
 
- // FIXME: merge logic to Slack
 
- func DiscordHooksEditPost(ctx *context.Context, f form.NewDiscordHook) {
 
- 	ctx.Data["Title"] = ctx.Tr("repo.settings")
 
- 	ctx.Data["PageIsSettingsHooks"] = true
 
- 	ctx.Data["PageIsSettingsHooksEdit"] = true
 
- 	orCtx, w := checkWebhook(ctx)
 
- 	if ctx.Written() {
 
- 		return
 
- 	}
 
- 	ctx.Data["Webhook"] = w
 
- 	if ctx.HasError() {
 
- 		ctx.HTML(200, orCtx.NewTemplate)
 
- 		return
 
- 	}
 
- 	meta, err := json.Marshal(&models.SlackMeta{
 
- 		Username: f.Username,
 
- 		IconURL:  f.IconURL,
 
- 		Color:    f.Color,
 
- 	})
 
- 	if err != nil {
 
- 		ctx.Handle(500, "Marshal", err)
 
- 		return
 
- 	}
 
- 	w.URL = f.PayloadURL
 
- 	w.Meta = string(meta)
 
- 	w.HookEvent = ParseHookEvent(f.Webhook)
 
- 	w.IsActive = f.Active
 
- 	if err := w.UpdateEvent(); err != nil {
 
- 		ctx.Handle(500, "UpdateEvent", err)
 
- 		return
 
- 	} else if err := models.UpdateWebhook(w); err != nil {
 
- 		ctx.Handle(500, "UpdateWebhook", err)
 
- 		return
 
- 	}
 
- 	ctx.Flash.Success(ctx.Tr("repo.settings.update_hook_success"))
 
- 	ctx.Redirect(fmt.Sprintf("%s/settings/hooks/%d", orCtx.Link, w.ID))
 
- }
 
- func TestWebhook(ctx *context.Context) {
 
- 	var authorUsername, committerUsername string
 
- 	// Grab latest commit or fake one if it's empty repository.
 
- 	commit := ctx.Repo.Commit
 
- 	if commit == nil {
 
- 		ghost := models.NewGhostUser()
 
- 		commit = &git.Commit{
 
- 			ID:            git.MustIDFromString(git.EMPTY_SHA),
 
- 			Author:        ghost.NewGitSig(),
 
- 			Committer:     ghost.NewGitSig(),
 
- 			CommitMessage: "This is a fake commit",
 
- 		}
 
- 		authorUsername = ghost.Name
 
- 		committerUsername = ghost.Name
 
- 	} else {
 
- 		// Try to match email with a real user.
 
- 		author, err := models.GetUserByEmail(commit.Author.Email)
 
- 		if err == nil {
 
- 			authorUsername = author.Name
 
- 		} else if !models.IsErrUserNotExist(err) {
 
- 			ctx.Flash.Error(fmt.Sprintf("GetUserByEmail.(author) [%s]: %v", commit.Author.Email, err))
 
- 			ctx.Status(500)
 
- 			return
 
- 		}
 
- 		committer, err := models.GetUserByEmail(commit.Committer.Email)
 
- 		if err == nil {
 
- 			committerUsername = committer.Name
 
- 		} else if !models.IsErrUserNotExist(err) {
 
- 			ctx.Flash.Error(fmt.Sprintf("GetUserByEmail.(committer) [%s]: %v", commit.Committer.Email, err))
 
- 			ctx.Status(500)
 
- 			return
 
- 		}
 
- 	}
 
- 	apiUser := ctx.User.APIFormat()
 
- 	p := &api.PushPayload{
 
- 		Ref:    git.BRANCH_PREFIX + ctx.Repo.Repository.DefaultBranch,
 
- 		Before: commit.ID.String(),
 
- 		After:  commit.ID.String(),
 
- 		Commits: []*api.PayloadCommit{
 
- 			{
 
- 				ID:      commit.ID.String(),
 
- 				Message: commit.Message(),
 
- 				URL:     ctx.Repo.Repository.HTMLURL() + "/commit/" + commit.ID.String(),
 
- 				Author: &api.PayloadUser{
 
- 					Name:     commit.Author.Name,
 
- 					Email:    commit.Author.Email,
 
- 					UserName: authorUsername,
 
- 				},
 
- 				Committer: &api.PayloadUser{
 
- 					Name:     commit.Committer.Name,
 
- 					Email:    commit.Committer.Email,
 
- 					UserName: committerUsername,
 
- 				},
 
- 			},
 
- 		},
 
- 		Repo:   ctx.Repo.Repository.APIFormat(nil),
 
- 		Pusher: apiUser,
 
- 		Sender: apiUser,
 
- 	}
 
- 	if err := models.TestWebhook(ctx.Repo.Repository, models.HOOK_EVENT_PUSH, p, ctx.QueryInt64("id")); err != nil {
 
- 		ctx.Flash.Error("TestWebhook: " + err.Error())
 
- 		ctx.Status(500)
 
- 	} else {
 
- 		go models.HookQueue.Add(ctx.Repo.Repository.ID)
 
- 		ctx.Flash.Info(ctx.Tr("repo.settings.webhook.test_delivery_success"))
 
- 		ctx.Status(200)
 
- 	}
 
- }
 
- func DeleteWebhook(ctx *context.Context) {
 
- 	if err := models.DeleteWebhookOfRepoByID(ctx.Repo.Repository.ID, ctx.QueryInt64("id")); err != nil {
 
- 		ctx.Flash.Error("DeleteWebhookByRepoID: " + err.Error())
 
- 	} else {
 
- 		ctx.Flash.Success(ctx.Tr("repo.settings.webhook_deletion_success"))
 
- 	}
 
- 	ctx.JSON(200, map[string]interface{}{
 
- 		"redirect": ctx.Repo.RepoLink + "/settings/hooks",
 
- 	})
 
- }
 
 
  |