forked from atc0005/go-teams-notify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
107 lines (86 loc) · 2.45 KB
/
main.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
// Copyright 2022 Adam Chalkley
//
// https://github.com/atc0005/go-teams-notify
//
// Licensed under the MIT License. See LICENSE file in the project root for
// full license information.
/*
This is an example of a client application which uses this library to generate
a message with a table within a specific Microsoft Teams channel.
Of note:
- default timeout
- package-level logging is disabled by default
- validation of known webhook URL prefixes is *enabled*
- message is in Adaptive Card format
- text is unformatted
- a table in "grid" format is added to the message
See https://docs.microsoft.com/en-us/adaptive-cards/authoring-cards/text-features
for the list of supported Adaptive Card text formatting options.
*/
package main
import (
"fmt"
"log"
"os"
goteamsnotify "github.com/EchoesHQ/go-teams-notify/v2"
"github.com/EchoesHQ/go-teams-notify/v2/adaptivecard"
)
func main() {
// Initialize a new Microsoft Teams client.
mstClient := goteamsnotify.NewTeamsClient()
// Set webhook url.
webhookUrl := "https://outlook.office.com/webhook/YOUR_WEBHOOK_URL_OF_TEAMS_CHANNEL"
vals := []int{1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11}
items := make([]interface{}, len(vals))
// Create a slice of interface values from our input values.
for i := range vals {
items[i] = vals[i]
}
tableCells, err := adaptivecard.NewTableCellsWithTextBlock(items)
if err != nil {
log.Printf(
"failed to create table cells: %v",
err,
)
os.Exit(1)
}
card := adaptivecard.NewCard()
// Attach several tables to our card, each with a separator, each showing
// a custom number of cells per row.
cellsPerRowExamples := []int{2, 4, 6, 8, 10}
for _, perRow := range cellsPerRowExamples {
table, err := adaptivecard.NewTableWithGridFromTableCells(tableCells, perRow)
if err != nil {
log.Printf(
"failed to create table: %v",
err,
)
os.Exit(1)
}
table.Separator = true
card.Body = append(card.Body, table)
}
msg := &adaptivecard.Message{
Type: adaptivecard.TypeMessage,
}
msg.Attach(card)
if err := msg.Prepare(); err != nil {
log.Printf(
"failed to prepare message payload: %v",
err,
)
os.Exit(1)
}
fmt.Println(msg.PrettyPrint())
// Having this here makes it easy to comment out the mstClient.Send block.
_ = mstClient
_ = webhookUrl
// Send the message with default timeout/retry settings.
if err := mstClient.Send(webhookUrl, msg); err != nil {
log.Printf(
"failed to send message: %v",
err,
)
os.Exit(1)
}
}