2020-07-13 05:25:48 +00:00
|
|
|
package bbgo
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"fmt"
|
|
|
|
"github.com/c9s/bbgo/pkg/bbgo/types"
|
|
|
|
"github.com/c9s/bbgo/pkg/slack/slackstyle"
|
|
|
|
"github.com/c9s/bbgo/pkg/util"
|
|
|
|
"github.com/sirupsen/logrus"
|
|
|
|
"github.com/slack-go/slack"
|
|
|
|
"time"
|
|
|
|
)
|
|
|
|
|
2020-07-16 07:36:02 +00:00
|
|
|
type Notifier interface {
|
|
|
|
Notify(format string, args ...interface{})
|
|
|
|
}
|
|
|
|
|
|
|
|
type NullNotifier struct{}
|
|
|
|
|
|
|
|
func (n *NullNotifier) Notify(format string, args ...interface{}) {
|
|
|
|
}
|
|
|
|
|
2020-07-13 05:25:48 +00:00
|
|
|
type SlackNotifier struct {
|
|
|
|
Slack *slack.Client
|
|
|
|
|
|
|
|
TradingChannel string
|
|
|
|
ErrorChannel string
|
|
|
|
InfoChannel string
|
|
|
|
}
|
|
|
|
|
|
|
|
func (t *SlackNotifier) Notify(format string, args ...interface{}) {
|
|
|
|
var slackAttachments []slack.Attachment = nil
|
|
|
|
var slackArgsStartIdx = -1
|
|
|
|
for idx, arg := range args {
|
|
|
|
switch a := arg.(type) {
|
|
|
|
|
|
|
|
// concrete type assert first
|
|
|
|
case slack.Attachment:
|
|
|
|
if slackArgsStartIdx == -1 {
|
|
|
|
slackArgsStartIdx = idx
|
|
|
|
}
|
|
|
|
slackAttachments = append(slackAttachments, a)
|
|
|
|
|
|
|
|
case slackstyle.SlackAttachmentCreator:
|
|
|
|
if slackArgsStartIdx == -1 {
|
|
|
|
slackArgsStartIdx = idx
|
|
|
|
}
|
|
|
|
slackAttachments = append(slackAttachments, a.SlackAttachment())
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-08-03 11:41:33 +00:00
|
|
|
var nonSlackArgs = args
|
2020-07-13 05:25:48 +00:00
|
|
|
if slackArgsStartIdx > 0 {
|
|
|
|
nonSlackArgs = args[:slackArgsStartIdx]
|
|
|
|
}
|
|
|
|
|
|
|
|
logrus.Infof(format, nonSlackArgs...)
|
|
|
|
|
|
|
|
_, _, err := t.Slack.PostMessageContext(context.Background(), t.InfoChannel,
|
|
|
|
slack.MsgOptionText(fmt.Sprintf(format, nonSlackArgs...), true),
|
|
|
|
slack.MsgOptionAttachments(slackAttachments...))
|
|
|
|
if err != nil {
|
|
|
|
logrus.WithError(err).Errorf("slack error: %s", err.Error())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (t *SlackNotifier) ReportTrade(trade *types.Trade) {
|
|
|
|
_, _, err := t.Slack.PostMessageContext(context.Background(), t.TradingChannel,
|
|
|
|
slack.MsgOptionText(util.Render(`:handshake: trade execution @ {{ .Price }}`, trade), true),
|
|
|
|
slack.MsgOptionAttachments(trade.SlackAttachment()))
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
logrus.WithError(err).Error("slack send error")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (t *SlackNotifier) ReportPnL(report *ProfitAndLossReport) {
|
|
|
|
attachment := report.SlackAttachment()
|
|
|
|
|
|
|
|
_, _, err := t.Slack.PostMessageContext(context.Background(), t.TradingChannel,
|
|
|
|
slack.MsgOptionText(util.Render(
|
|
|
|
`:heavy_dollar_sign: Here is your *{{ .symbol }}* PnL report collected since *{{ .startTime }}*`,
|
|
|
|
map[string]interface{}{
|
|
|
|
"symbol": report.Symbol,
|
|
|
|
"startTime": report.StartTime.Format(time.RFC822),
|
|
|
|
}), true),
|
|
|
|
slack.MsgOptionAttachments(attachment))
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
logrus.WithError(err).Errorf("slack send error")
|
|
|
|
}
|
|
|
|
}
|