pushover

package
v0.8.0 Latest Latest
Warning

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

Go to latest
Published: Aug 20, 2023 License: MIT Imports: 9 Imported by: 0

Documentation

Index

Constants

View Source
const Scheme = "pushover"

Scheme is the identifying part of this service's configuration URL

Variables

This section is empty.

Functions

This section is empty.

Types

type Config

type Config struct {
	Token    string   `url:"pass" desc:"API Token/Key"`
	User     string   `url:"host" desc:"User Key"`
	Devices  []string `key:"devices" optional:""`
	Priority int8     `key:"priority" default:"0"`
	Title    string   `key:"title" optional:""`
}

Config for the Pushover notification service service

func (*Config) Enums

func (config *Config) Enums() map[string]types.EnumFormatter

Enums returns the fields that should use a corresponding EnumFormatter to Print/Parse their values

func (*Config) GetURL

func (config *Config) GetURL() *url.URL

GetURL returns a URL representation of it's current field values

func (*Config) SetURL

func (config *Config) SetURL(url *url.URL) error

SetURL updates a ServiceConfig from a URL representation of it's field values

type ErrorMessage

type ErrorMessage string

ErrorMessage for error events within the pushover service

const (
	// UserMissing should be used when a config URL is missing a user
	UserMissing ErrorMessage = "user missing from config URL"
	// TokenMissing should be used when a config URL is missing a token
	TokenMissing ErrorMessage = "token missing from config URL"
)

type Service

type Service struct {
	standard.Standard
	// contains filtered or unexported fields
}

Service providing the notification service Pushover

func (*Service) Initialize

func (service *Service) Initialize(configURL *url.URL, logger types.StdLogger) error

Initialize loads ServiceConfig from configURL and sets logger for this Service

func (*Service) Send

func (service *Service) Send(message string, params *types.Params) error

Send a notification message to Pushover

Jump to

Keyboard shortcuts

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