2019-04-19 10:18:06 -04:00
|
|
|
// Copyright 2019 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.
|
|
|
|
|
2019-11-03 17:13:25 -05:00
|
|
|
package webhook
|
2019-04-19 10:18:06 -04:00
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/json"
|
|
|
|
"fmt"
|
|
|
|
"strings"
|
|
|
|
|
2019-11-03 17:13:25 -05:00
|
|
|
"code.gitea.io/gitea/models"
|
2019-04-19 10:18:06 -04:00
|
|
|
"code.gitea.io/gitea/modules/git"
|
2019-05-11 06:21:34 -04:00
|
|
|
api "code.gitea.io/gitea/modules/structs"
|
2019-04-19 10:18:06 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
type (
|
|
|
|
// MSTeamsFact for Fact Structure
|
|
|
|
MSTeamsFact struct {
|
|
|
|
Name string `json:"name"`
|
|
|
|
Value string `json:"value"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// MSTeamsSection is a MessageCard section
|
|
|
|
MSTeamsSection struct {
|
|
|
|
ActivityTitle string `json:"activityTitle"`
|
|
|
|
ActivitySubtitle string `json:"activitySubtitle"`
|
|
|
|
ActivityImage string `json:"activityImage"`
|
|
|
|
Facts []MSTeamsFact `json:"facts"`
|
|
|
|
Text string `json:"text"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// MSTeamsAction is an action (creates buttons, links etc)
|
|
|
|
MSTeamsAction struct {
|
|
|
|
Type string `json:"@type"`
|
|
|
|
Name string `json:"name"`
|
|
|
|
Targets []MSTeamsActionTarget `json:"targets,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// MSTeamsActionTarget is the actual link to follow, etc
|
|
|
|
MSTeamsActionTarget struct {
|
|
|
|
Os string `json:"os"`
|
|
|
|
URI string `json:"uri"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// MSTeamsPayload is the parent object
|
|
|
|
MSTeamsPayload struct {
|
|
|
|
Type string `json:"@type"`
|
|
|
|
Context string `json:"@context"`
|
|
|
|
ThemeColor string `json:"themeColor"`
|
|
|
|
Title string `json:"title"`
|
|
|
|
Summary string `json:"summary"`
|
|
|
|
Sections []MSTeamsSection `json:"sections"`
|
|
|
|
PotentialAction []MSTeamsAction `json:"potentialAction"`
|
|
|
|
}
|
|
|
|
)
|
|
|
|
|
|
|
|
// SetSecret sets the MSTeams secret
|
|
|
|
func (p *MSTeamsPayload) SetSecret(_ string) {}
|
|
|
|
|
|
|
|
// JSONPayload Marshals the MSTeamsPayload to json
|
|
|
|
func (p *MSTeamsPayload) JSONPayload() ([]byte, error) {
|
|
|
|
data, err := json.MarshalIndent(p, "", " ")
|
|
|
|
if err != nil {
|
|
|
|
return []byte{}, err
|
|
|
|
}
|
|
|
|
return data, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func getMSTeamsCreatePayload(p *api.CreatePayload) (*MSTeamsPayload, error) {
|
|
|
|
// created tag/branch
|
|
|
|
refName := git.RefEndName(p.Ref)
|
|
|
|
title := fmt.Sprintf("[%s] %s %s created", p.Repo.FullName, p.RefType, refName)
|
|
|
|
|
|
|
|
return &MSTeamsPayload{
|
|
|
|
Type: "MessageCard",
|
|
|
|
Context: "https://schema.org/extensions",
|
2019-10-18 18:42:04 -04:00
|
|
|
ThemeColor: fmt.Sprintf("%x", greenColor),
|
2019-04-19 10:18:06 -04:00
|
|
|
Title: title,
|
|
|
|
Summary: title,
|
|
|
|
Sections: []MSTeamsSection{
|
|
|
|
{
|
|
|
|
ActivityTitle: p.Sender.FullName,
|
|
|
|
ActivitySubtitle: p.Sender.UserName,
|
|
|
|
ActivityImage: p.Sender.AvatarURL,
|
|
|
|
Facts: []MSTeamsFact{
|
|
|
|
{
|
|
|
|
Name: "Repository:",
|
|
|
|
Value: p.Repo.FullName,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Name: fmt.Sprintf("%s:", p.RefType),
|
|
|
|
Value: refName,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
PotentialAction: []MSTeamsAction{
|
|
|
|
{
|
|
|
|
Type: "OpenUri",
|
|
|
|
Name: "View in Gitea",
|
|
|
|
Targets: []MSTeamsActionTarget{
|
|
|
|
{
|
|
|
|
Os: "default",
|
|
|
|
URI: p.Repo.HTMLURL + "/src/" + refName,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func getMSTeamsDeletePayload(p *api.DeletePayload) (*MSTeamsPayload, error) {
|
|
|
|
// deleted tag/branch
|
|
|
|
refName := git.RefEndName(p.Ref)
|
|
|
|
title := fmt.Sprintf("[%s] %s %s deleted", p.Repo.FullName, p.RefType, refName)
|
|
|
|
|
|
|
|
return &MSTeamsPayload{
|
|
|
|
Type: "MessageCard",
|
|
|
|
Context: "https://schema.org/extensions",
|
2019-10-18 18:42:04 -04:00
|
|
|
ThemeColor: fmt.Sprintf("%x", yellowColor),
|
2019-04-19 10:18:06 -04:00
|
|
|
Title: title,
|
|
|
|
Summary: title,
|
|
|
|
Sections: []MSTeamsSection{
|
|
|
|
{
|
|
|
|
ActivityTitle: p.Sender.FullName,
|
|
|
|
ActivitySubtitle: p.Sender.UserName,
|
|
|
|
ActivityImage: p.Sender.AvatarURL,
|
|
|
|
Facts: []MSTeamsFact{
|
|
|
|
{
|
|
|
|
Name: "Repository:",
|
|
|
|
Value: p.Repo.FullName,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Name: fmt.Sprintf("%s:", p.RefType),
|
|
|
|
Value: refName,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
PotentialAction: []MSTeamsAction{
|
|
|
|
{
|
|
|
|
Type: "OpenUri",
|
|
|
|
Name: "View in Gitea",
|
|
|
|
Targets: []MSTeamsActionTarget{
|
|
|
|
{
|
|
|
|
Os: "default",
|
|
|
|
URI: p.Repo.HTMLURL + "/src/" + refName,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func getMSTeamsForkPayload(p *api.ForkPayload) (*MSTeamsPayload, error) {
|
|
|
|
// fork
|
|
|
|
title := fmt.Sprintf("%s is forked to %s", p.Forkee.FullName, p.Repo.FullName)
|
|
|
|
|
|
|
|
return &MSTeamsPayload{
|
|
|
|
Type: "MessageCard",
|
|
|
|
Context: "https://schema.org/extensions",
|
2019-10-18 18:42:04 -04:00
|
|
|
ThemeColor: fmt.Sprintf("%x", greenColor),
|
2019-04-19 10:18:06 -04:00
|
|
|
Title: title,
|
|
|
|
Summary: title,
|
|
|
|
Sections: []MSTeamsSection{
|
|
|
|
{
|
|
|
|
ActivityTitle: p.Sender.FullName,
|
|
|
|
ActivitySubtitle: p.Sender.UserName,
|
|
|
|
ActivityImage: p.Sender.AvatarURL,
|
|
|
|
Facts: []MSTeamsFact{
|
|
|
|
{
|
|
|
|
Name: "Forkee:",
|
|
|
|
Value: p.Forkee.FullName,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Name: "Repository:",
|
|
|
|
Value: p.Repo.FullName,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
PotentialAction: []MSTeamsAction{
|
|
|
|
{
|
|
|
|
Type: "OpenUri",
|
|
|
|
Name: "View in Gitea",
|
|
|
|
Targets: []MSTeamsActionTarget{
|
|
|
|
{
|
|
|
|
Os: "default",
|
|
|
|
URI: p.Repo.HTMLURL,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func getMSTeamsPushPayload(p *api.PushPayload) (*MSTeamsPayload, error) {
|
|
|
|
var (
|
|
|
|
branchName = git.RefEndName(p.Ref)
|
|
|
|
commitDesc string
|
|
|
|
)
|
|
|
|
|
|
|
|
var titleLink string
|
|
|
|
if len(p.Commits) == 1 {
|
|
|
|
commitDesc = "1 new commit"
|
|
|
|
titleLink = p.Commits[0].URL
|
|
|
|
} else {
|
|
|
|
commitDesc = fmt.Sprintf("%d new commits", len(p.Commits))
|
|
|
|
titleLink = p.CompareURL
|
|
|
|
}
|
|
|
|
if titleLink == "" {
|
|
|
|
titleLink = p.Repo.HTMLURL + "/src/" + branchName
|
|
|
|
}
|
|
|
|
|
|
|
|
title := fmt.Sprintf("[%s:%s] %s", p.Repo.FullName, branchName, commitDesc)
|
|
|
|
|
|
|
|
var text string
|
|
|
|
// for each commit, generate attachment text
|
|
|
|
for i, commit := range p.Commits {
|
|
|
|
text += fmt.Sprintf("[%s](%s) %s - %s", commit.ID[:7], commit.URL,
|
|
|
|
strings.TrimRight(commit.Message, "\r\n"), commit.Author.Name)
|
|
|
|
// add linebreak to each commit but the last
|
|
|
|
if i < len(p.Commits)-1 {
|
|
|
|
text += "\n"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return &MSTeamsPayload{
|
|
|
|
Type: "MessageCard",
|
|
|
|
Context: "https://schema.org/extensions",
|
2019-10-18 18:42:04 -04:00
|
|
|
ThemeColor: fmt.Sprintf("%x", greenColor),
|
2019-04-19 10:18:06 -04:00
|
|
|
Title: title,
|
|
|
|
Summary: title,
|
|
|
|
Sections: []MSTeamsSection{
|
|
|
|
{
|
|
|
|
ActivityTitle: p.Sender.FullName,
|
|
|
|
ActivitySubtitle: p.Sender.UserName,
|
|
|
|
ActivityImage: p.Sender.AvatarURL,
|
2019-09-17 15:56:29 -04:00
|
|
|
Text: text,
|
2019-04-19 10:18:06 -04:00
|
|
|
Facts: []MSTeamsFact{
|
|
|
|
{
|
|
|
|
Name: "Repository:",
|
|
|
|
Value: p.Repo.FullName,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Name: "Commit count:",
|
|
|
|
Value: fmt.Sprintf("%d", len(p.Commits)),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
PotentialAction: []MSTeamsAction{
|
|
|
|
{
|
|
|
|
Type: "OpenUri",
|
|
|
|
Name: "View in Gitea",
|
|
|
|
Targets: []MSTeamsActionTarget{
|
|
|
|
{
|
|
|
|
Os: "default",
|
|
|
|
URI: titleLink,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func getMSTeamsIssuesPayload(p *api.IssuePayload) (*MSTeamsPayload, error) {
|
2020-01-04 17:20:15 -05:00
|
|
|
text, _, attachmentText, color := getIssuesPayloadInfo(p, noneLinkFormatter, false)
|
2019-04-19 10:18:06 -04:00
|
|
|
|
|
|
|
return &MSTeamsPayload{
|
|
|
|
Type: "MessageCard",
|
|
|
|
Context: "https://schema.org/extensions",
|
|
|
|
ThemeColor: fmt.Sprintf("%x", color),
|
2019-12-28 03:55:09 -05:00
|
|
|
Title: text,
|
|
|
|
Summary: text,
|
2019-04-19 10:18:06 -04:00
|
|
|
Sections: []MSTeamsSection{
|
|
|
|
{
|
|
|
|
ActivityTitle: p.Sender.FullName,
|
|
|
|
ActivitySubtitle: p.Sender.UserName,
|
|
|
|
ActivityImage: p.Sender.AvatarURL,
|
2019-12-28 03:55:09 -05:00
|
|
|
Text: attachmentText,
|
2019-04-19 10:18:06 -04:00
|
|
|
Facts: []MSTeamsFact{
|
|
|
|
{
|
|
|
|
Name: "Repository:",
|
|
|
|
Value: p.Repository.FullName,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Name: "Issue #:",
|
|
|
|
Value: fmt.Sprintf("%d", p.Issue.ID),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
PotentialAction: []MSTeamsAction{
|
|
|
|
{
|
|
|
|
Type: "OpenUri",
|
|
|
|
Name: "View in Gitea",
|
|
|
|
Targets: []MSTeamsActionTarget{
|
|
|
|
{
|
|
|
|
Os: "default",
|
2020-01-08 18:10:34 -05:00
|
|
|
URI: p.Issue.HTMLURL,
|
2019-04-19 10:18:06 -04:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func getMSTeamsIssueCommentPayload(p *api.IssueCommentPayload) (*MSTeamsPayload, error) {
|
2020-01-04 17:20:15 -05:00
|
|
|
text, _, color := getIssueCommentPayloadInfo(p, noneLinkFormatter, false)
|
2019-10-18 18:42:04 -04:00
|
|
|
|
2019-04-19 10:18:06 -04:00
|
|
|
return &MSTeamsPayload{
|
|
|
|
Type: "MessageCard",
|
|
|
|
Context: "https://schema.org/extensions",
|
|
|
|
ThemeColor: fmt.Sprintf("%x", color),
|
2019-12-28 03:55:09 -05:00
|
|
|
Title: text,
|
|
|
|
Summary: text,
|
2019-04-19 10:18:06 -04:00
|
|
|
Sections: []MSTeamsSection{
|
|
|
|
{
|
|
|
|
ActivityTitle: p.Sender.FullName,
|
|
|
|
ActivitySubtitle: p.Sender.UserName,
|
|
|
|
ActivityImage: p.Sender.AvatarURL,
|
2019-12-28 03:55:09 -05:00
|
|
|
Text: p.Comment.Body,
|
2019-04-19 10:18:06 -04:00
|
|
|
Facts: []MSTeamsFact{
|
|
|
|
{
|
|
|
|
Name: "Repository:",
|
|
|
|
Value: p.Repository.FullName,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Name: "Issue #:",
|
|
|
|
Value: fmt.Sprintf("%d", p.Issue.ID),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
PotentialAction: []MSTeamsAction{
|
|
|
|
{
|
|
|
|
Type: "OpenUri",
|
|
|
|
Name: "View in Gitea",
|
|
|
|
Targets: []MSTeamsActionTarget{
|
|
|
|
{
|
|
|
|
Os: "default",
|
2019-12-28 03:55:09 -05:00
|
|
|
URI: p.Comment.HTMLURL,
|
2019-04-19 10:18:06 -04:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func getMSTeamsPullRequestPayload(p *api.PullRequestPayload) (*MSTeamsPayload, error) {
|
2020-01-04 17:20:15 -05:00
|
|
|
text, _, attachmentText, color := getPullRequestPayloadInfo(p, noneLinkFormatter, false)
|
2019-04-19 10:18:06 -04:00
|
|
|
|
|
|
|
return &MSTeamsPayload{
|
|
|
|
Type: "MessageCard",
|
|
|
|
Context: "https://schema.org/extensions",
|
|
|
|
ThemeColor: fmt.Sprintf("%x", color),
|
2019-12-28 03:55:09 -05:00
|
|
|
Title: text,
|
|
|
|
Summary: text,
|
2019-04-19 10:18:06 -04:00
|
|
|
Sections: []MSTeamsSection{
|
|
|
|
{
|
|
|
|
ActivityTitle: p.Sender.FullName,
|
|
|
|
ActivitySubtitle: p.Sender.UserName,
|
|
|
|
ActivityImage: p.Sender.AvatarURL,
|
2019-12-28 03:55:09 -05:00
|
|
|
Text: attachmentText,
|
2019-04-19 10:18:06 -04:00
|
|
|
Facts: []MSTeamsFact{
|
|
|
|
{
|
|
|
|
Name: "Repository:",
|
|
|
|
Value: p.Repository.FullName,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Name: "Pull request #:",
|
|
|
|
Value: fmt.Sprintf("%d", p.PullRequest.ID),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
PotentialAction: []MSTeamsAction{
|
|
|
|
{
|
|
|
|
Type: "OpenUri",
|
|
|
|
Name: "View in Gitea",
|
|
|
|
Targets: []MSTeamsActionTarget{
|
|
|
|
{
|
|
|
|
Os: "default",
|
|
|
|
URI: p.PullRequest.HTMLURL,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
|
2019-11-03 17:13:25 -05:00
|
|
|
func getMSTeamsPullRequestApprovalPayload(p *api.PullRequestPayload, event models.HookEventType) (*MSTeamsPayload, error) {
|
2019-04-19 10:18:06 -04:00
|
|
|
var text, title string
|
|
|
|
var color int
|
|
|
|
switch p.Action {
|
2020-03-06 00:10:48 -05:00
|
|
|
case api.HookIssueReviewed:
|
2019-04-19 10:18:06 -04:00
|
|
|
action, err := parseHookPullRequestEventType(event)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
title = fmt.Sprintf("[%s] Pull request review %s: #%d %s", p.Repository.FullName, action, p.Index, p.PullRequest.Title)
|
2019-10-18 18:42:04 -04:00
|
|
|
text = p.Review.Content
|
|
|
|
|
|
|
|
switch event {
|
2020-03-06 00:10:48 -05:00
|
|
|
case models.HookEventPullRequestReviewApproved:
|
2019-10-18 18:42:04 -04:00
|
|
|
color = greenColor
|
2020-03-06 00:10:48 -05:00
|
|
|
case models.HookEventPullRequestReviewRejected:
|
2019-10-18 18:42:04 -04:00
|
|
|
color = redColor
|
2019-11-03 17:13:25 -05:00
|
|
|
case models.HookEventPullRequestComment:
|
2019-10-18 18:42:04 -04:00
|
|
|
color = greyColor
|
|
|
|
default:
|
|
|
|
color = yellowColor
|
|
|
|
}
|
2019-04-19 10:18:06 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
return &MSTeamsPayload{
|
|
|
|
Type: "MessageCard",
|
|
|
|
Context: "https://schema.org/extensions",
|
|
|
|
ThemeColor: fmt.Sprintf("%x", color),
|
|
|
|
Title: title,
|
|
|
|
Summary: title,
|
|
|
|
Sections: []MSTeamsSection{
|
|
|
|
{
|
|
|
|
ActivityTitle: p.Sender.FullName,
|
|
|
|
ActivitySubtitle: p.Sender.UserName,
|
|
|
|
ActivityImage: p.Sender.AvatarURL,
|
|
|
|
Text: text,
|
|
|
|
Facts: []MSTeamsFact{
|
|
|
|
{
|
|
|
|
Name: "Repository:",
|
|
|
|
Value: p.Repository.FullName,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Name: "Pull request #:",
|
|
|
|
Value: fmt.Sprintf("%d", p.PullRequest.ID),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
PotentialAction: []MSTeamsAction{
|
|
|
|
{
|
|
|
|
Type: "OpenUri",
|
|
|
|
Name: "View in Gitea",
|
|
|
|
Targets: []MSTeamsActionTarget{
|
|
|
|
{
|
|
|
|
Os: "default",
|
|
|
|
URI: p.PullRequest.HTMLURL,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func getMSTeamsRepositoryPayload(p *api.RepositoryPayload) (*MSTeamsPayload, error) {
|
|
|
|
var title, url string
|
|
|
|
var color int
|
|
|
|
switch p.Action {
|
|
|
|
case api.HookRepoCreated:
|
|
|
|
title = fmt.Sprintf("[%s] Repository created", p.Repository.FullName)
|
|
|
|
url = p.Repository.HTMLURL
|
2019-10-18 18:42:04 -04:00
|
|
|
color = greenColor
|
2019-04-19 10:18:06 -04:00
|
|
|
case api.HookRepoDeleted:
|
|
|
|
title = fmt.Sprintf("[%s] Repository deleted", p.Repository.FullName)
|
2019-10-18 18:42:04 -04:00
|
|
|
color = yellowColor
|
2019-04-19 10:18:06 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
return &MSTeamsPayload{
|
|
|
|
Type: "MessageCard",
|
|
|
|
Context: "https://schema.org/extensions",
|
|
|
|
ThemeColor: fmt.Sprintf("%x", color),
|
|
|
|
Title: title,
|
|
|
|
Summary: title,
|
|
|
|
Sections: []MSTeamsSection{
|
|
|
|
{
|
|
|
|
ActivityTitle: p.Sender.FullName,
|
|
|
|
ActivitySubtitle: p.Sender.UserName,
|
|
|
|
ActivityImage: p.Sender.AvatarURL,
|
|
|
|
Facts: []MSTeamsFact{
|
|
|
|
{
|
|
|
|
Name: "Repository:",
|
|
|
|
Value: p.Repository.FullName,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
PotentialAction: []MSTeamsAction{
|
|
|
|
{
|
|
|
|
Type: "OpenUri",
|
|
|
|
Name: "View in Gitea",
|
|
|
|
Targets: []MSTeamsActionTarget{
|
|
|
|
{
|
|
|
|
Os: "default",
|
|
|
|
URI: url,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func getMSTeamsReleasePayload(p *api.ReleasePayload) (*MSTeamsPayload, error) {
|
2020-01-04 17:20:15 -05:00
|
|
|
text, color := getReleasePayloadInfo(p, noneLinkFormatter, false)
|
2019-04-19 10:18:06 -04:00
|
|
|
|
|
|
|
return &MSTeamsPayload{
|
|
|
|
Type: "MessageCard",
|
|
|
|
Context: "https://schema.org/extensions",
|
|
|
|
ThemeColor: fmt.Sprintf("%x", color),
|
2019-12-28 03:55:09 -05:00
|
|
|
Title: text,
|
|
|
|
Summary: text,
|
2019-04-19 10:18:06 -04:00
|
|
|
Sections: []MSTeamsSection{
|
|
|
|
{
|
|
|
|
ActivityTitle: p.Sender.FullName,
|
|
|
|
ActivitySubtitle: p.Sender.UserName,
|
|
|
|
ActivityImage: p.Sender.AvatarURL,
|
|
|
|
Text: p.Release.Note,
|
|
|
|
Facts: []MSTeamsFact{
|
|
|
|
{
|
|
|
|
Name: "Repository:",
|
|
|
|
Value: p.Repository.FullName,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Name: "Tag:",
|
|
|
|
Value: p.Release.TagName,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
PotentialAction: []MSTeamsAction{
|
|
|
|
{
|
|
|
|
Type: "OpenUri",
|
|
|
|
Name: "View in Gitea",
|
|
|
|
Targets: []MSTeamsActionTarget{
|
|
|
|
{
|
|
|
|
Os: "default",
|
2019-12-28 03:55:09 -05:00
|
|
|
URI: p.Release.URL,
|
2019-04-19 10:18:06 -04:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetMSTeamsPayload converts a MSTeams webhook into a MSTeamsPayload
|
2019-11-03 17:13:25 -05:00
|
|
|
func GetMSTeamsPayload(p api.Payloader, event models.HookEventType, meta string) (*MSTeamsPayload, error) {
|
2019-04-19 10:18:06 -04:00
|
|
|
s := new(MSTeamsPayload)
|
|
|
|
|
|
|
|
switch event {
|
2019-11-03 17:13:25 -05:00
|
|
|
case models.HookEventCreate:
|
2019-04-19 10:18:06 -04:00
|
|
|
return getMSTeamsCreatePayload(p.(*api.CreatePayload))
|
2019-11-03 17:13:25 -05:00
|
|
|
case models.HookEventDelete:
|
2019-04-19 10:18:06 -04:00
|
|
|
return getMSTeamsDeletePayload(p.(*api.DeletePayload))
|
2019-11-03 17:13:25 -05:00
|
|
|
case models.HookEventFork:
|
2019-04-19 10:18:06 -04:00
|
|
|
return getMSTeamsForkPayload(p.(*api.ForkPayload))
|
2020-03-06 00:10:48 -05:00
|
|
|
case models.HookEventIssues, models.HookEventIssueAssign, models.HookEventIssueLabel, models.HookEventIssueMilestone:
|
2019-04-19 10:18:06 -04:00
|
|
|
return getMSTeamsIssuesPayload(p.(*api.IssuePayload))
|
2020-03-06 00:10:48 -05:00
|
|
|
case models.HookEventIssueComment, models.HookEventPullRequestComment:
|
2020-06-24 23:39:43 -04:00
|
|
|
pl, ok := p.(*api.IssueCommentPayload)
|
|
|
|
if ok {
|
|
|
|
return getMSTeamsIssueCommentPayload(pl)
|
|
|
|
}
|
|
|
|
return getMSTeamsPullRequestPayload(p.(*api.PullRequestPayload))
|
2019-11-03 17:13:25 -05:00
|
|
|
case models.HookEventPush:
|
2019-04-19 10:18:06 -04:00
|
|
|
return getMSTeamsPushPayload(p.(*api.PushPayload))
|
2020-03-06 00:10:48 -05:00
|
|
|
case models.HookEventPullRequest, models.HookEventPullRequestAssign, models.HookEventPullRequestLabel,
|
|
|
|
models.HookEventPullRequestMilestone, models.HookEventPullRequestSync:
|
2019-04-19 10:18:06 -04:00
|
|
|
return getMSTeamsPullRequestPayload(p.(*api.PullRequestPayload))
|
2020-03-06 00:10:48 -05:00
|
|
|
case models.HookEventPullRequestReviewRejected, models.HookEventPullRequestReviewApproved, models.HookEventPullRequestReviewComment:
|
2019-04-19 10:18:06 -04:00
|
|
|
return getMSTeamsPullRequestApprovalPayload(p.(*api.PullRequestPayload), event)
|
2019-11-03 17:13:25 -05:00
|
|
|
case models.HookEventRepository:
|
2019-04-19 10:18:06 -04:00
|
|
|
return getMSTeamsRepositoryPayload(p.(*api.RepositoryPayload))
|
2019-11-03 17:13:25 -05:00
|
|
|
case models.HookEventRelease:
|
2019-04-19 10:18:06 -04:00
|
|
|
return getMSTeamsReleasePayload(p.(*api.ReleasePayload))
|
|
|
|
}
|
|
|
|
|
|
|
|
return s, nil
|
|
|
|
}
|