mirror of
https://github.com/c9s/bbgo.git
synced 2024-11-11 01:23:51 +00:00
86 lines
1.6 KiB
Go
86 lines
1.6 KiB
Go
package telegramnotifier
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/c9s/bbgo/pkg/types"
|
|
)
|
|
|
|
type Notifier struct {
|
|
interaction *Interaction
|
|
}
|
|
|
|
type NotifyOption func(notifier *Notifier)
|
|
|
|
// New
|
|
// TODO: register interaction with channel, so that we can route message to the specific telegram bot
|
|
func New(interaction *Interaction, options ...NotifyOption) *Notifier {
|
|
notifier := &Notifier{
|
|
interaction: interaction,
|
|
}
|
|
|
|
for _, o := range options {
|
|
o(notifier)
|
|
}
|
|
|
|
return notifier
|
|
}
|
|
|
|
func (n *Notifier) Notify(obj interface{}, args ...interface{}) {
|
|
n.NotifyTo("", obj, args...)
|
|
}
|
|
|
|
func filterPlaintextMessages(args []interface{}) (texts []string, pureArgs []interface{}) {
|
|
var firstObjectOffset = -1
|
|
for idx, arg := range args {
|
|
switch a := arg.(type) {
|
|
|
|
case types.PlainText:
|
|
texts = append(texts, a.PlainText())
|
|
if firstObjectOffset == -1 {
|
|
firstObjectOffset = idx
|
|
}
|
|
|
|
case types.Stringer:
|
|
texts = append(texts, a.String())
|
|
if firstObjectOffset == -1 {
|
|
firstObjectOffset = idx
|
|
}
|
|
}
|
|
}
|
|
|
|
pureArgs = args
|
|
if firstObjectOffset > -1 {
|
|
pureArgs = args[:firstObjectOffset]
|
|
}
|
|
|
|
return texts, pureArgs
|
|
}
|
|
|
|
func (n *Notifier) NotifyTo(channel string, obj interface{}, args ...interface{}) {
|
|
var texts, pureArgs = filterPlaintextMessages(args)
|
|
var message string
|
|
|
|
switch a := obj.(type) {
|
|
|
|
case string:
|
|
log.Infof(a, pureArgs...)
|
|
message = fmt.Sprintf(a, pureArgs...)
|
|
|
|
case types.PlainText:
|
|
message = a.PlainText()
|
|
|
|
case types.Stringer:
|
|
message = a.String()
|
|
|
|
default:
|
|
log.Errorf("unsupported notification format: %T %+v", a, a)
|
|
|
|
}
|
|
|
|
n.interaction.SendToOwner(message)
|
|
for _, text := range texts {
|
|
n.interaction.SendToOwner(text)
|
|
}
|
|
}
|