webhooks

package
v0.0.0-...-9518a5e Latest Latest
Warning

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

Go to latest
Published: Oct 6, 2021 License: MIT Imports: 17 Imported by: 0

Documentation

Overview

Package webhooks provides a series of HTTP handlers for managing webhooks in a compatible database.

Index

Constants

View Source
const (
	// WebhookIDURIParamKey is a standard string that we'll use to refer to webhook IDs with.
	WebhookIDURIParamKey = "webhookID"
)

Variables

View Source
var (
	// Providers is our collection of what we provide to other services.
	Providers = wire.NewSet(
		ProvideWebhooksService,
	)
)

Functions

func ProvideWebhooksService

func ProvideWebhooksService(
	logger logging.Logger,
	cfg *Config,
	webhookDataManager types.WebhookDataManager,
	encoder encoding.ServerEncoderDecoder,
	routeParamManager routing.RouteParamManager,
	publisherProvider publishers.PublisherProvider,
) (types.WebhookDataService, error)

ProvideWebhooksService builds a new WebhooksService.

Types

type Config

type Config struct {
	PreWritesTopicName   string `json:"pre_writes_topic_name" mapstructure:"pre_writes_topic_name" toml:"pre_writes_topic_name,omitempty"`
	PreArchivesTopicName string `json:"pre_archives_topic_name" mapstructure:"pre_archives_topic_name" toml:"pre_archives_topic_name,omitempty"`
	Debug                bool   `json:"debug" mapstructure:"debug" toml:"debug,omitempty"`
	Enabled              bool   `json:"enabled" mapstructure:"enabled" toml:"enabled,omitempty"`
	// contains filtered or unexported fields
}

Config represents our database configuration.

func (Config) ValidateWithContext

func (cfg Config) ValidateWithContext(ctx context.Context) error

ValidateWithContext validates a Config struct.

Jump to

Keyboard shortcuts

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