105 lines
2.2 KiB
Go
105 lines
2.2 KiB
Go
package notifier
|
|
|
|
import (
|
|
"bytes"
|
|
"context"
|
|
"encoding/json"
|
|
"github.com/pkg/errors"
|
|
"net/http"
|
|
|
|
"github.com/jenkinsci/kubernetes-operator/pkg/apis/jenkins/v1alpha2"
|
|
|
|
corev1 "k8s.io/api/core/v1"
|
|
"k8s.io/apimachinery/pkg/types"
|
|
)
|
|
|
|
// Teams is Microsoft Teams Service
|
|
type Teams struct{}
|
|
|
|
// TeamsMessage is representation of json message structure
|
|
type TeamsMessage struct {
|
|
Type string `json:"@type"`
|
|
Context string `json:"@context"`
|
|
ThemeColor StatusColor `json:"themeColor"`
|
|
Title string `json:"title"`
|
|
Sections []TeamsSection `json:"sections"`
|
|
}
|
|
|
|
// TeamsSection is MS Teams message section
|
|
type TeamsSection struct {
|
|
Facts []TeamsFact `json:"facts"`
|
|
Text string `json:"text"`
|
|
}
|
|
|
|
// TeamsFact is field where we can put content
|
|
type TeamsFact struct {
|
|
Name string `json:"name"`
|
|
Value string `json:"value"`
|
|
}
|
|
|
|
// Send is function for sending directly to API
|
|
func (t Teams) Send(n *Notification, config v1alpha2.Notification) error {
|
|
secret := &corev1.Secret{}
|
|
i := n.Information
|
|
|
|
selector := config.Teams.URLSecretKeySelector
|
|
|
|
err := n.K8sClient.Get(context.TODO(), types.NamespacedName{Name: selector.Name, Namespace: n.Jenkins.Namespace}, secret)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
msg, err := json.Marshal(TeamsMessage{
|
|
Type: "MessageCard",
|
|
Context: "https://schema.org/extensions",
|
|
ThemeColor: getStatusColor(i.LogLevel, t),
|
|
Title: titleText,
|
|
Sections: []TeamsSection{
|
|
{
|
|
Facts: []TeamsFact{
|
|
{
|
|
Name: crNameFieldName,
|
|
Value: i.CrName,
|
|
},
|
|
{
|
|
Name: configurationTypeFieldName,
|
|
Value: i.ConfigurationType,
|
|
},
|
|
{
|
|
Name: loggingLevelFieldName,
|
|
Value: string(i.LogLevel),
|
|
},
|
|
{
|
|
Name: namespaceFieldName,
|
|
Value: i.Namespace,
|
|
},
|
|
},
|
|
Text: i.Message,
|
|
},
|
|
},
|
|
})
|
|
|
|
secretValue := string(secret.Data[selector.Key])
|
|
if secretValue == "" {
|
|
return errors.Errorf("SecretValue %s is empty", selector.Name)
|
|
}
|
|
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
request, err := http.NewRequest("POST", secretValue, bytes.NewBuffer(msg))
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
resp, err := client.Do(request)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
defer func() { _ = resp.Body.Close() }()
|
|
|
|
return nil
|
|
}
|