notify

package
v0.30.4 Latest Latest
Warning

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

Go to latest
Published: Apr 12, 2024 License: Apache-2.0 Imports: 31 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Direction

type Direction string
const (
	Upload   Direction = "upload"
	Download Direction = "download"
)

type Email

type Email struct {
	// contains filtered or unexported fields
}

func NewEmail

func NewEmail(cfg *service.Email) (*Email, error)

func (*Email) Critical

func (mailer *Email) Critical(ctx context.Context, msg *Message) error

func (*Email) Info

func (mailer *Email) Info(ctx context.Context, msg *Message) error

type EmailTemplateData

type EmailTemplateData struct {
	CompanyName string // e.g. Moov
	Verb        string // e.g. upload, download
	Filename    string // e.g. 20200529-131400.ach
	Hostname    string

	Successful bool

	DebitTotal  string
	CreditTotal string

	BatchCount int
	EntryCount int
}

type Kafka added in v0.17.0

type Kafka struct {
	// contains filtered or unexported fields
}

func NewKafka added in v0.17.0

func NewKafka(logger log.Logger, cfg *service.KafkaConfig) (*Kafka, error)

func (*Kafka) Critical added in v0.17.0

func (s *Kafka) Critical(ctx context.Context, msg *Message) error

func (*Kafka) Info added in v0.17.0

func (s *Kafka) Info(ctx context.Context, msg *Message) error

type Message

type Message struct {
	Direction Direction
	Filename  string
	File      *ach.File
	Hostname  string

	// Contents will be used instead of the above fields
	Contents string
}

type MockSender

type MockSender struct {
	Err error
	// contains filtered or unexported fields
}

func (*MockSender) CapturedMessage

func (s *MockSender) CapturedMessage() *Message

func (*MockSender) Critical

func (s *MockSender) Critical(_ context.Context, msg *Message) error

func (*MockSender) CriticalWasCalled

func (s *MockSender) CriticalWasCalled() bool

func (*MockSender) Info

func (s *MockSender) Info(_ context.Context, msg *Message) error

func (*MockSender) InfoWasCalled

func (s *MockSender) InfoWasCalled() bool

type MultiSender

type MultiSender struct {
	// contains filtered or unexported fields
}

MultiSender is a Sender which will attempt to send each Message to every included Sender and returns the first error encountered.

func NewMultiSender

func NewMultiSender(logger log.Logger, cfg *service.Notifications, notifiers *service.UploadNotifiers) (*MultiSender, error)

func (*MultiSender) Critical

func (ms *MultiSender) Critical(ctx context.Context, msg *Message) error

func (*MultiSender) Info

func (ms *MultiSender) Info(ctx context.Context, msg *Message) error

type PagerDuty

type PagerDuty struct {
	// contains filtered or unexported fields
}

func NewPagerDuty

func NewPagerDuty(cfg *service.PagerDuty) (*PagerDuty, error)

func (*PagerDuty) Critical

func (pd *PagerDuty) Critical(ctx context.Context, msg *Message) error

func (*PagerDuty) Info

func (pd *PagerDuty) Info(_ context.Context, msg *Message) error

func (*PagerDuty) Ping

func (pd *PagerDuty) Ping() error

type Sender

type Sender interface {
	Info(ctx context.Context, msg *Message) error
	Critical(ctx context.Context, msg *Message) error
}

type Slack

type Slack struct {
	// contains filtered or unexported fields
}

func NewSlack

func NewSlack(cfg *service.Slack) (*Slack, error)

func (*Slack) Critical

func (s *Slack) Critical(ctx context.Context, msg *Message) error

func (*Slack) Info

func (s *Slack) Info(ctx context.Context, msg *Message) error

Jump to

Keyboard shortcuts

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