-
-
Notifications
You must be signed in to change notification settings - Fork 6k
Add Matrix webhook #10831
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Add Matrix webhook #10831
Changes from 4 commits
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
9308796
Add Matrix webhook
S7evinK f40aabb
Add template and related translations for Matrix hook
S7evinK 30fecbd
Add actual webhook routes and form
S7evinK 36dab56
Add missing file
S7evinK 9176059
Update modules/webhook/matrix_test.go
lafriks bd3496c
Use stricter regex to replace URLs
S7evinK dbb761a
Escape url and text
S7evinK bedad37
Remove unnecessary whitespace
S7evinK c5ec5a9
Merge branch 'add-matrix-webhook' of github.com:S7evinK/gitea into ad…
S7evinK 73da418
Fix copy and paste mistake
S7evinK 0eecf43
Fix indention inconsistency
S7evinK 553ff80
Use Authorization header instead of url parameter
S7evinK e00b4e5
Add raw commit information to webhook
S7evinK b0c473e
Merge branch 'master' into add-matrix-webhook
lafriks File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,285 @@ | ||
// Copyright 2020 The Gitea 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 webhook | ||
|
||
import ( | ||
"encoding/json" | ||
"errors" | ||
"fmt" | ||
"regexp" | ||
"strings" | ||
|
||
"code.gitea.io/gitea/models" | ||
"code.gitea.io/gitea/modules/git" | ||
"code.gitea.io/gitea/modules/log" | ||
"code.gitea.io/gitea/modules/setting" | ||
api "code.gitea.io/gitea/modules/structs" | ||
) | ||
|
||
// MatrixMeta contains the Matrix metadata | ||
type MatrixMeta struct { | ||
HomeserverURL string `json:"homeserver_url"` | ||
Room string `json:"room_id"` | ||
AccessToken string `json:"access_token"` | ||
MessageType int `json:"message_type"` | ||
} | ||
|
||
var messageTypeText = map[int]string{ | ||
1: "m.notice", | ||
2: "m.text", | ||
} | ||
|
||
// GetMatrixHook returns Matrix metadata | ||
func GetMatrixHook(w *models.Webhook) *MatrixMeta { | ||
s := &MatrixMeta{} | ||
if err := json.Unmarshal([]byte(w.Meta), s); err != nil { | ||
log.Error("webhook.GetMatrixHook(%d): %v", w.ID, err) | ||
} | ||
return s | ||
} | ||
|
||
// MatrixPayload contains the information about the Matrix room | ||
type MatrixPayload struct { | ||
Body string `json:"body"` | ||
MsgType string `json:"msgtype"` | ||
Format string `json:"format"` | ||
FormattedBody string `json:"formatted_body"` | ||
} | ||
|
||
// SetSecret sets the Matrix secret | ||
func (p *MatrixPayload) SetSecret(_ string) {} | ||
|
||
// JSONPayload Marshals the MatrixPayload to json | ||
func (p *MatrixPayload) JSONPayload() ([]byte, error) { | ||
data, err := json.MarshalIndent(p, "", " ") | ||
if err != nil { | ||
return []byte{}, err | ||
} | ||
return data, nil | ||
} | ||
|
||
// MatrixLinkFormatter creates a link compatible with Matrix | ||
func MatrixLinkFormatter(url string, text string) string { | ||
return fmt.Sprintf(`<a href="%s">%s</a>`, url, text) | ||
} | ||
|
||
// MatrixLinkToRef Matrix-formatter link to a repo ref | ||
func MatrixLinkToRef(repoURL, ref string) string { | ||
refName := git.RefEndName(ref) | ||
switch { | ||
case strings.HasPrefix(ref, git.BranchPrefix): | ||
return MatrixLinkFormatter(repoURL+"/src/branch/"+refName, refName) | ||
case strings.HasPrefix(ref, git.TagPrefix): | ||
return MatrixLinkFormatter(repoURL+"/src/tag/"+refName, refName) | ||
default: | ||
return MatrixLinkFormatter(repoURL+"/src/commit/"+refName, refName) | ||
} | ||
} | ||
|
||
func getMatrixCreatePayload(p *api.CreatePayload, matrix *MatrixMeta) (*MatrixPayload, error) { | ||
repoLink := MatrixLinkFormatter(p.Repo.HTMLURL, p.Repo.FullName) | ||
refLink := MatrixLinkToRef(p.Repo.HTMLURL, p.Ref) | ||
text := fmt.Sprintf("[%s:%s] %s created by %s", repoLink, refLink, p.RefType, p.Sender.UserName) | ||
|
||
return &MatrixPayload{ | ||
Body: getMessageBody(text), | ||
MsgType: messageTypeText[matrix.MessageType], | ||
Format: "org.matrix.custom.html", | ||
FormattedBody: text, | ||
}, nil | ||
} | ||
|
||
// getMatrixDeletePayload composes Matrix payload for delete a branch or tag. | ||
func getMatrixDeletePayload(p *api.DeletePayload, matrix *MatrixMeta) (*MatrixPayload, error) { | ||
refName := git.RefEndName(p.Ref) | ||
repoLink := MatrixLinkFormatter(p.Repo.HTMLURL, p.Repo.FullName) | ||
text := fmt.Sprintf("[%s:%s] %s deleted by %s", repoLink, refName, p.RefType, p.Sender.UserName) | ||
return &MatrixPayload{ | ||
Body: getMessageBody(text), | ||
MsgType: messageTypeText[matrix.MessageType], | ||
Format: "org.matrix.custom.html", | ||
FormattedBody: text, | ||
}, nil | ||
} | ||
|
||
// getMatrixForkPayload composes Matrix payload for forked by a repository. | ||
func getMatrixForkPayload(p *api.ForkPayload, matrix *MatrixMeta) (*MatrixPayload, error) { | ||
baseLink := MatrixLinkFormatter(p.Forkee.HTMLURL, p.Forkee.FullName) | ||
forkLink := MatrixLinkFormatter(p.Repo.HTMLURL, p.Repo.FullName) | ||
text := fmt.Sprintf("%s is forked to %s", baseLink, forkLink) | ||
return &MatrixPayload{ | ||
Body: getMessageBody(text), | ||
MsgType: messageTypeText[matrix.MessageType], | ||
Format: "org.matrix.custom.html", | ||
FormattedBody: text, | ||
}, nil | ||
} | ||
|
||
func getMatrixIssuesPayload(p *api.IssuePayload, matrix *MatrixMeta) (*MatrixPayload, error) { | ||
text, _, _, _ := getIssuesPayloadInfo(p, MatrixLinkFormatter, true) | ||
|
||
pl := &MatrixPayload{ | ||
Body: getMessageBody(text), | ||
MsgType: messageTypeText[matrix.MessageType], | ||
Format: "org.matrix.custom.html", | ||
FormattedBody: text, | ||
} | ||
|
||
return pl, nil | ||
} | ||
|
||
func getMatrixIssueCommentPayload(p *api.IssueCommentPayload, matrix *MatrixMeta) (*MatrixPayload, error) { | ||
text, _, _ := getIssueCommentPayloadInfo(p, MatrixLinkFormatter, true) | ||
|
||
return &MatrixPayload{ | ||
Body: getMessageBody(text), | ||
MsgType: messageTypeText[matrix.MessageType], | ||
Format: "org.matrix.custom.html", | ||
FormattedBody: text, | ||
}, nil | ||
} | ||
|
||
func getMatrixReleasePayload(p *api.ReleasePayload, matrix *MatrixMeta) (*MatrixPayload, error) { | ||
text, _ := getReleasePayloadInfo(p, MatrixLinkFormatter, true) | ||
|
||
return &MatrixPayload{ | ||
Body: getMessageBody(text), | ||
MsgType: messageTypeText[matrix.MessageType], | ||
Format: "org.matrix.custom.html", | ||
FormattedBody: text, | ||
}, nil | ||
} | ||
|
||
func getMatrixPushPayload(p *api.PushPayload, matrix *MatrixMeta) (*MatrixPayload, error) { | ||
var commitDesc string | ||
|
||
if len(p.Commits) == 1 { | ||
commitDesc = "1 commit" | ||
} else { | ||
commitDesc = fmt.Sprintf("%d commits", len(p.Commits)) | ||
} | ||
|
||
repoLink := MatrixLinkFormatter(p.Repo.HTMLURL, p.Repo.FullName) | ||
branchLink := MatrixLinkToRef(p.Repo.HTMLURL, p.Ref) | ||
text := fmt.Sprintf("[%s] %s pushed %s to %s:<br>", repoLink, p.Pusher.UserName, commitDesc, branchLink) | ||
|
||
// for each commit, generate a new line text | ||
for i, commit := range p.Commits { | ||
text += fmt.Sprintf("%s : %s - %s", MatrixLinkFormatter(commit.URL, commit.ID[:7]), commit.Message, commit.Author.Name) | ||
// add linebreak to each commit but the last | ||
if i < len(p.Commits)-1 { | ||
text += "<br>" | ||
} | ||
} | ||
|
||
return &MatrixPayload{ | ||
Body: getMessageBody(text), | ||
MsgType: messageTypeText[matrix.MessageType], | ||
Format: "org.matrix.custom.html", | ||
FormattedBody: text, | ||
}, nil | ||
} | ||
|
||
func getMatrixPullRequestPayload(p *api.PullRequestPayload, matrix *MatrixMeta) (*MatrixPayload, error) { | ||
text, _, _, _ := getPullRequestPayloadInfo(p, MatrixLinkFormatter, true) | ||
|
||
pl := &MatrixPayload{ | ||
Body: getMessageBody(text), | ||
MsgType: messageTypeText[matrix.MessageType], | ||
Format: "org.matrix.custom.html", | ||
FormattedBody: text, | ||
} | ||
|
||
return pl, nil | ||
} | ||
|
||
func getMatrixPullRequestApprovalPayload(p *api.PullRequestPayload, matrix *MatrixMeta, event models.HookEventType) (*MatrixPayload, error) { | ||
senderLink := MatrixLinkFormatter(setting.AppURL+p.Sender.UserName, p.Sender.UserName) | ||
title := fmt.Sprintf("#%d %s", p.Index, p.PullRequest.Title) | ||
titleLink := fmt.Sprintf("%s/pulls/%d", p.Repository.HTMLURL, p.Index) | ||
repoLink := MatrixLinkFormatter(p.Repository.HTMLURL, p.Repository.FullName) | ||
var text string | ||
|
||
switch p.Action { | ||
case api.HookIssueReviewed: | ||
action, err := parseHookPullRequestEventType(event) | ||
if err != nil { | ||
return nil, err | ||
} | ||
|
||
text = fmt.Sprintf("[%s] Pull request review %s: [%s](%s) by %s", repoLink, action, title, titleLink, senderLink) | ||
} | ||
|
||
return &MatrixPayload{ | ||
Body: getMessageBody(text), | ||
MsgType: messageTypeText[matrix.MessageType], | ||
Format: "org.matrix.custom.html", | ||
FormattedBody: text, | ||
}, nil | ||
} | ||
|
||
func getMatrixRepositoryPayload(p *api.RepositoryPayload, matrix *MatrixMeta) (*MatrixPayload, error) { | ||
senderLink := MatrixLinkFormatter(setting.AppURL+p.Sender.UserName, p.Sender.UserName) | ||
repoLink := MatrixLinkFormatter(p.Repository.HTMLURL, p.Repository.FullName) | ||
var text string | ||
|
||
switch p.Action { | ||
case api.HookRepoCreated: | ||
text = fmt.Sprintf("[%s] Repository created by %s", repoLink, senderLink) | ||
case api.HookRepoDeleted: | ||
text = fmt.Sprintf("[%s] Repository deleted by %s", repoLink, senderLink) | ||
} | ||
|
||
return &MatrixPayload{ | ||
Body: getMessageBody(text), | ||
MsgType: messageTypeText[matrix.MessageType], | ||
Format: "org.matrix.custom.html", | ||
FormattedBody: text, | ||
}, nil | ||
} | ||
|
||
// GetMatrixPayload converts a Matrix webhook into a MatrixPayload | ||
func GetMatrixPayload(p api.Payloader, event models.HookEventType, meta string) (*MatrixPayload, error) { | ||
s := new(MatrixPayload) | ||
|
||
matrix := &MatrixMeta{} | ||
if err := json.Unmarshal([]byte(meta), &matrix); err != nil { | ||
return s, errors.New("GetMatrixPayload meta json:" + err.Error()) | ||
} | ||
|
||
switch event { | ||
case models.HookEventCreate: | ||
return getMatrixCreatePayload(p.(*api.CreatePayload), matrix) | ||
case models.HookEventDelete: | ||
return getMatrixDeletePayload(p.(*api.DeletePayload), matrix) | ||
case models.HookEventFork: | ||
return getMatrixForkPayload(p.(*api.ForkPayload), matrix) | ||
case models.HookEventIssues, models.HookEventIssueAssign, models.HookEventIssueLabel, models.HookEventIssueMilestone: | ||
return getMatrixIssuesPayload(p.(*api.IssuePayload), matrix) | ||
case models.HookEventIssueComment, models.HookEventPullRequestComment: | ||
return getMatrixIssueCommentPayload(p.(*api.IssueCommentPayload), matrix) | ||
case models.HookEventPush: | ||
return getMatrixPushPayload(p.(*api.PushPayload), matrix) | ||
case models.HookEventPullRequest, models.HookEventPullRequestAssign, models.HookEventPullRequestLabel, | ||
models.HookEventPullRequestMilestone, models.HookEventPullRequestSync: | ||
return getMatrixPullRequestPayload(p.(*api.PullRequestPayload), matrix) | ||
case models.HookEventPullRequestReviewRejected, models.HookEventPullRequestReviewApproved, models.HookEventPullRequestReviewComment: | ||
return getMatrixPullRequestApprovalPayload(p.(*api.PullRequestPayload), matrix, event) | ||
case models.HookEventRepository: | ||
return getMatrixRepositoryPayload(p.(*api.RepositoryPayload), matrix) | ||
case models.HookEventRelease: | ||
return getMatrixReleasePayload(p.(*api.ReleasePayload), matrix) | ||
} | ||
|
||
return s, nil | ||
} | ||
|
||
var urlRegex = regexp.MustCompile(`<a.*?href="(.*?)">(.*?)</a>`) | ||
S7evinK marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
func getMessageBody(htmlText string) string { | ||
htmlText = urlRegex.ReplaceAllString(htmlText, "[$2]($1)") | ||
htmlText = strings.ReplaceAll(htmlText, "<br>", "\n") | ||
return htmlText | ||
} |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.