notify

package
v0.19.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Mar 22, 2026 License: BSD-2-Clause Imports: 10 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Notification

type Notification struct {
	TaskName string `json:"task_name"`
	Phase    string `json:"phase"`
	Assignee string `json:"assignee"`
}

Notification holds the data sent to the webhook.

type Notifier

type Notifier interface {
	Notify(ctx context.Context, notification Notification) error
}

Notifier sends notifications to a configured webhook URL.

func NewLogNotifier added in v0.17.0

func NewLogNotifier(dedupTTL time.Duration) Notifier

NewLogNotifier returns a Notifier that logs notifications to stdout instead of sending HTTP requests. Use this as the action type for debugging or dry-run observation.

func NewNotifier

func NewNotifier(webhookURL string, httpClient *http.Client, dedupTTL time.Duration) Notifier

NewNotifier returns a Notifier that posts JSON to webhookURL.

func NewOpenClawNotifier added in v0.11.0

func NewOpenClawNotifier(
	webhookURL string,
	token string,
	httpClient *http.Client,
	dedupTTL time.Duration,
) Notifier

NewOpenClawNotifier returns a Notifier that posts to an OpenClaw /hooks/wake endpoint.

func NewTelegramNotifier added in v0.17.0

func NewTelegramNotifier(
	token string,
	chatID string,
	httpClient *http.Client,
	dedupTTL time.Duration,
) Notifier

NewTelegramNotifier returns a Notifier that sends messages via the Telegram Bot API. The bot token is never logged.

func NewTelegramNotifierWithBaseURL added in v0.17.0

func NewTelegramNotifierWithBaseURL(
	token string,
	chatID string,
	httpClient *http.Client,
	dedupTTL time.Duration,
	baseURL string,
) Notifier

NewTelegramNotifierWithBaseURL returns a Notifier that sends messages via the Telegram Bot API using a custom base URL. Intended for testing only.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL