// 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. package webhook import ( "encoding/json" "fmt" "strings" "code.gitea.io/gitea/models" "code.gitea.io/gitea/modules/git" api "code.gitea.io/gitea/modules/structs" ) 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", ThemeColor: fmt.Sprintf("%x", greenColor), 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", ThemeColor: fmt.Sprintf("%x", yellowColor), 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", ThemeColor: fmt.Sprintf("%x", greenColor), 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", ThemeColor: fmt.Sprintf("%x", greenColor), 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.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) { var text, title string var color int url := fmt.Sprintf("%s/issues/%d", p.Repository.HTMLURL, p.Issue.Index) switch p.Action { case api.HookIssueOpened: title = fmt.Sprintf("[%s] Issue opened: #%d %s", p.Repository.FullName, p.Index, p.Issue.Title) text = p.Issue.Body color = orangeColor case api.HookIssueClosed: title = fmt.Sprintf("[%s] Issue closed: #%d %s", p.Repository.FullName, p.Index, p.Issue.Title) color = redColor case api.HookIssueReOpened: title = fmt.Sprintf("[%s] Issue re-opened: #%d %s", p.Repository.FullName, p.Index, p.Issue.Title) color = yellowColor case api.HookIssueEdited: title = fmt.Sprintf("[%s] Issue edited: #%d %s", p.Repository.FullName, p.Index, p.Issue.Title) text = p.Issue.Body color = yellowColor case api.HookIssueAssigned: title = fmt.Sprintf("[%s] Issue assigned to %s: #%d %s", p.Repository.FullName, p.Issue.Assignee.UserName, p.Index, p.Issue.Title) color = greenColor case api.HookIssueUnassigned: title = fmt.Sprintf("[%s] Issue unassigned: #%d %s", p.Repository.FullName, p.Index, p.Issue.Title) color = yellowColor case api.HookIssueLabelUpdated: title = fmt.Sprintf("[%s] Issue labels updated: #%d %s", p.Repository.FullName, p.Index, p.Issue.Title) color = yellowColor case api.HookIssueLabelCleared: title = fmt.Sprintf("[%s] Issue labels cleared: #%d %s", p.Repository.FullName, p.Index, p.Issue.Title) color = yellowColor case api.HookIssueSynchronized: title = fmt.Sprintf("[%s] Issue synchronized: #%d %s", p.Repository.FullName, p.Index, p.Issue.Title) color = yellowColor case api.HookIssueMilestoned: title = fmt.Sprintf("[%s] Issue milestone: #%d %s", p.Repository.FullName, p.Index, p.Issue.Title) color = yellowColor case api.HookIssueDemilestoned: title = fmt.Sprintf("[%s] Issue clear milestone: #%d %s", p.Repository.FullName, p.Index, p.Issue.Title) color = yellowColor } 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: "Issue #:", Value: fmt.Sprintf("%d", p.Issue.ID), }, }, }, }, PotentialAction: []MSTeamsAction{ { Type: "OpenUri", Name: "View in Gitea", Targets: []MSTeamsActionTarget{ { Os: "default", URI: url, }, }, }, }, }, nil } func getMSTeamsIssueCommentPayload(p *api.IssueCommentPayload) (*MSTeamsPayload, error) { title := fmt.Sprintf("#%d: %s", p.Issue.Index, p.Issue.Title) url := fmt.Sprintf("%s/issues/%d#%s", p.Repository.HTMLURL, p.Issue.Index, models.CommentHashTag(p.Comment.ID)) content := "" var color int switch p.Action { case api.HookIssueCommentCreated: if p.IsPull { title = "New comment on pull request " + title color = greenColorLight } else { title = "New comment on issue " + title color = orangeColorLight } content = p.Comment.Body case api.HookIssueCommentEdited: if p.IsPull { title = "Comment edited on pull request " + title } else { title = "Comment edited on issue " + title } content = p.Comment.Body color = yellowColor case api.HookIssueCommentDeleted: if p.IsPull { title = "Comment deleted on pull request " + title } else { title = "Comment deleted on issue " + title } url = fmt.Sprintf("%s/issues/%d", p.Repository.HTMLURL, p.Issue.Index) content = p.Comment.Body color = redColor } title = fmt.Sprintf("[%s] %s", p.Repository.FullName, title) 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: content, 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", URI: url, }, }, }, }, }, nil } func getMSTeamsPullRequestPayload(p *api.PullRequestPayload) (*MSTeamsPayload, error) { var text, title string var color int switch p.Action { case api.HookIssueOpened: title = fmt.Sprintf("[%s] Pull request opened: #%d %s", p.Repository.FullName, p.Index, p.PullRequest.Title) text = p.PullRequest.Body color = greenColor case api.HookIssueClosed: if p.PullRequest.HasMerged { title = fmt.Sprintf("[%s] Pull request merged: #%d %s", p.Repository.FullName, p.Index, p.PullRequest.Title) color = purpleColor } else { title = fmt.Sprintf("[%s] Pull request closed: #%d %s", p.Repository.FullName, p.Index, p.PullRequest.Title) color = redColor } case api.HookIssueReOpened: title = fmt.Sprintf("[%s] Pull request re-opened: #%d %s", p.Repository.FullName, p.Index, p.PullRequest.Title) color = yellowColor case api.HookIssueEdited: title = fmt.Sprintf("[%s] Pull request edited: #%d %s", p.Repository.FullName, p.Index, p.PullRequest.Title) text = p.PullRequest.Body color = yellowColor case api.HookIssueAssigned: list := make([]string, len(p.PullRequest.Assignees)) for i, user := range p.PullRequest.Assignees { list[i] = user.UserName } title = fmt.Sprintf("[%s] Pull request assigned to %s: #%d by %s", p.Repository.FullName, strings.Join(list, ", "), p.Index, p.PullRequest.Title) color = greenColor case api.HookIssueUnassigned: title = fmt.Sprintf("[%s] Pull request unassigned: #%d %s", p.Repository.FullName, p.Index, p.PullRequest.Title) color = yellowColor case api.HookIssueLabelUpdated: title = fmt.Sprintf("[%s] Pull request labels updated: #%d %s", p.Repository.FullName, p.Index, p.PullRequest.Title) color = yellowColor case api.HookIssueLabelCleared: title = fmt.Sprintf("[%s] Pull request labels cleared: #%d %s", p.Repository.FullName, p.Index, p.PullRequest.Title) color = yellowColor case api.HookIssueSynchronized: title = fmt.Sprintf("[%s] Pull request synchronized: #%d %s", p.Repository.FullName, p.Index, p.PullRequest.Title) color = yellowColor case api.HookIssueMilestoned: title = fmt.Sprintf("[%s] Pull request milestone: #%d %s", p.Repository.FullName, p.Index, p.PullRequest.Title) color = yellowColor case api.HookIssueDemilestoned: title = fmt.Sprintf("[%s] Pull request clear milestone: #%d %s", p.Repository.FullName, p.Index, p.PullRequest.Title) color = yellowColor } 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 getMSTeamsPullRequestApprovalPayload(p *api.PullRequestPayload, event models.HookEventType) (*MSTeamsPayload, error) { var text, title string var color int switch p.Action { case api.HookIssueSynchronized: 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) text = p.Review.Content switch event { case models.HookEventPullRequestApproved: color = greenColor case models.HookEventPullRequestRejected: color = redColor case models.HookEventPullRequestComment: color = greyColor default: color = yellowColor } } 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 color = greenColor case api.HookRepoDeleted: title = fmt.Sprintf("[%s] Repository deleted", p.Repository.FullName) color = yellowColor } 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) { var title, url string var color int switch p.Action { case api.HookReleasePublished: title = fmt.Sprintf("[%s] Release created", p.Release.TagName) url = p.Release.URL color = greenColor case api.HookReleaseUpdated: title = fmt.Sprintf("[%s] Release updated", p.Release.TagName) url = p.Release.URL color = greenColor case api.HookReleaseDeleted: title = fmt.Sprintf("[%s] Release deleted", p.Release.TagName) url = p.Release.URL color = greenColor } 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: 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", URI: url, }, }, }, }, }, nil } // GetMSTeamsPayload converts a MSTeams webhook into a MSTeamsPayload func GetMSTeamsPayload(p api.Payloader, event models.HookEventType, meta string) (*MSTeamsPayload, error) { s := new(MSTeamsPayload) switch event { case models.HookEventCreate: return getMSTeamsCreatePayload(p.(*api.CreatePayload)) case models.HookEventDelete: return getMSTeamsDeletePayload(p.(*api.DeletePayload)) case models.HookEventFork: return getMSTeamsForkPayload(p.(*api.ForkPayload)) case models.HookEventIssues: return getMSTeamsIssuesPayload(p.(*api.IssuePayload)) case models.HookEventIssueComment: return getMSTeamsIssueCommentPayload(p.(*api.IssueCommentPayload)) case models.HookEventPush: return getMSTeamsPushPayload(p.(*api.PushPayload)) case models.HookEventPullRequest: return getMSTeamsPullRequestPayload(p.(*api.PullRequestPayload)) case models.HookEventPullRequestRejected, models.HookEventPullRequestApproved, models.HookEventPullRequestComment: return getMSTeamsPullRequestApprovalPayload(p.(*api.PullRequestPayload), event) case models.HookEventRepository: return getMSTeamsRepositoryPayload(p.(*api.RepositoryPayload)) case models.HookEventRelease: return getMSTeamsReleasePayload(p.(*api.ReleasePayload)) } return s, nil }