mirror of
https://github.com/shankar0123/certctl.git
synced 2026-06-09 09:29:05 +00:00
9b0ff37973
M19: HTTP middleware records every API call to the immutable audit trail with method, path, actor, SHA-256 body hash, status, and latency. Best-effort async recording via goroutine. Health/ready probes excluded. M16a: Four pluggable notifier connectors — Slack (incoming webhook), Teams (MessageCard), PagerDuty (Events API v2), OpsGenie (Alert API v2). Each enabled by config env var. 30 new tests across middleware and connectors. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
93 lines
2.3 KiB
Go
93 lines
2.3 KiB
Go
package slack
|
|
|
|
import (
|
|
"bytes"
|
|
"context"
|
|
"encoding/json"
|
|
"fmt"
|
|
"io"
|
|
"net/http"
|
|
"time"
|
|
)
|
|
|
|
// Config holds configuration for the Slack notifier.
|
|
type Config struct {
|
|
// WebhookURL is the Slack incoming webhook URL.
|
|
WebhookURL string `json:"webhook_url"`
|
|
// ChannelOverride optionally overrides the webhook's default channel.
|
|
ChannelOverride string `json:"channel,omitempty"`
|
|
// Username optionally sets the bot display name.
|
|
Username string `json:"username,omitempty"`
|
|
// IconEmoji optionally sets the bot icon (e.g., ":lock:").
|
|
IconEmoji string `json:"icon_emoji,omitempty"`
|
|
}
|
|
|
|
// Notifier sends notifications to Slack via incoming webhooks.
|
|
type Notifier struct {
|
|
config Config
|
|
httpClient *http.Client
|
|
}
|
|
|
|
// New creates a new Slack notifier.
|
|
func New(config Config) *Notifier {
|
|
return &Notifier{
|
|
config: config,
|
|
httpClient: &http.Client{
|
|
Timeout: 10 * time.Second,
|
|
},
|
|
}
|
|
}
|
|
|
|
// Channel returns the channel identifier.
|
|
func (n *Notifier) Channel() string {
|
|
return "Slack"
|
|
}
|
|
|
|
// Send delivers a notification to Slack via webhook.
|
|
func (n *Notifier) Send(ctx context.Context, recipient string, subject string, body string) error {
|
|
payload := slackMessage{
|
|
Text: fmt.Sprintf("*%s*\n%s", subject, body),
|
|
}
|
|
|
|
if n.config.ChannelOverride != "" {
|
|
payload.Channel = n.config.ChannelOverride
|
|
}
|
|
if n.config.Username != "" {
|
|
payload.Username = n.config.Username
|
|
}
|
|
if n.config.IconEmoji != "" {
|
|
payload.IconEmoji = n.config.IconEmoji
|
|
}
|
|
|
|
jsonBytes, err := json.Marshal(payload)
|
|
if err != nil {
|
|
return fmt.Errorf("slack: failed to marshal payload: %w", err)
|
|
}
|
|
|
|
req, err := http.NewRequestWithContext(ctx, http.MethodPost, n.config.WebhookURL, bytes.NewReader(jsonBytes))
|
|
if err != nil {
|
|
return fmt.Errorf("slack: failed to create request: %w", err)
|
|
}
|
|
req.Header.Set("Content-Type", "application/json")
|
|
|
|
resp, err := n.httpClient.Do(req)
|
|
if err != nil {
|
|
return fmt.Errorf("slack: request failed: %w", err)
|
|
}
|
|
defer resp.Body.Close()
|
|
|
|
if resp.StatusCode != http.StatusOK {
|
|
respBody, _ := io.ReadAll(resp.Body)
|
|
return fmt.Errorf("slack: webhook returned HTTP %d: %s", resp.StatusCode, string(respBody))
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
type slackMessage struct {
|
|
Text string `json:"text"`
|
|
Channel string `json:"channel,omitempty"`
|
|
Username string `json:"username,omitempty"`
|
|
IconEmoji string `json:"icon_emoji,omitempty"`
|
|
}
|