-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinterface.go
More file actions
65 lines (57 loc) · 2.63 KB
/
interface.go
File metadata and controls
65 lines (57 loc) · 2.63 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
/*
* Copyright (C) 2026 Kendall Tauser
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
package gonotify
// Notifier is a simple interface for objects that implements a
// notification backend. This is not included in the interface
// spec, but all Notifiers should also have a New() function,
// so that the end user can easily instantiate the container.
type Notifier interface {
// The notifier should get set with it's new configuration.
// This should be thread safe, and can be called at both
// initialization of the notifier or at runtime whenever
// the configuration legitimately changes for whatever reason.
//
// Should be thread-safe to call at any point at runtime.
Configure(config NotifierConfig) error
// SendMessage basically does what you think it would do, it sends
// a notification message over the desired Notifier and reports back
// the results. Returns an error if the operation failed. The possible
// errors can be found in pkg/common/errors.go.
SendMessage(msg *Message) error
// Close closes out the transport and deinitialize any state with the Notifier.
// After Close is called, the Notifier should automatically fail out any operations
// that could return an error, returning ErrorNotifierClosed.
Close() error
// Determines whether the notifier object is closed/ready to send messages.
isReady() bool
isClosed() bool
// validateMessage validates that the incoming message to send is compliant with
// the requirements for the notifier backend. Should be called internally inside
// of SendMessage().
validateMessage(msg *Message) error
}
// NotifierConfig implements a generic interface for specifying the
// configurations for Notifiers.
type NotifierConfig interface {
// Validates the configuration struct and returns the errors
// that are associated with said configuration. If len(errors)
// is 0, then the configuration should be considered valid.
Validate() []error
// Returns the key value data from the configuration.
GetData() map[string]interface{}
}