-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathstructs.go
174 lines (143 loc) · 5 KB
/
structs.go
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
package botsfw
//go:generate ffjson $GOFILE
import (
"context"
"github.com/bots-go-framework/bots-fw/botinput"
botsgocore "github.com/bots-go-framework/bots-go-core"
"github.com/strongo/i18n"
"strconv"
//"github.com/strongo/bots-api-fbm"
)
// EntryInputs provides information on parsed inputs from bot API request
type EntryInputs struct {
Entry botinput.WebhookEntry
Inputs []botinput.WebhookInput
}
// EntryInput provides information on parsed input from bot API request
type EntryInput struct {
Entry botinput.WebhookEntry
Input botinput.WebhookInput
}
// TranslatorProvider translates texts
type TranslatorProvider func(c context.Context) i18n.Translator
// WebhookHandlerBase provides base implementation for a bot handler
type WebhookHandlerBase struct {
WebhookDriver
BotHost
BotPlatform
//RecordsMaker botsfwmodels.BotRecordsMaker
RecordsFieldsSetter BotRecordsFieldsSetter
TranslatorProvider TranslatorProvider
//DataAccess botsfwdal.DataAccess
}
// Register driver
func (bh *WebhookHandlerBase) Register(d WebhookDriver, h BotHost) {
if d == nil {
panic("WebhookDriver == nil")
}
if h == nil {
panic("BotHost == nil")
}
bh.WebhookDriver = d
bh.BotHost = h
}
// MessageFormat specify formatting of a text message to BOT (e.g. Text, HTML, MarkDown)
type MessageFormat int
//goland:noinspection GoUnusedConst
const (
// MessageFormatText is for text messages
MessageFormatText MessageFormat = iota
// MessageFormatHTML is for HTML messages
MessageFormatHTML
// MessageFormatMarkdown is for markdown messages
MessageFormatMarkdown
)
// NoMessageToSend returned explicitly if we don't want to reply to user intput
const NoMessageToSend = "<NO_MESSAGE_TO_SEND>"
// ChatUID returns botChat ID as unique string
type ChatUID interface {
ChatUID() string
}
// ChatIntID returns botChat ID as unique integer
type ChatIntID int64
// ChatUID returns botChat ID as unique string
func (chatUID ChatIntID) ChatUID() string {
return strconv.FormatInt(int64(chatUID), 10)
}
// MessageUID is unique message ID as string
type MessageUID interface {
UID() string
}
// AttachmentType to a bot message
type AttachmentType int
//goland:noinspection GoUnusedConst
const (
// AttachmentTypeNone says there is no attachment
AttachmentTypeNone AttachmentType = iota
// AttachmentTypeAudio is for audio attachments
AttachmentTypeAudio
// AttachmentTypeFile is for file attachments
AttachmentTypeFile
// AttachmentTypeImage is for image attachments
AttachmentTypeImage
// AttachmentTypeVideo is for video attachments
AttachmentTypeVideo
)
// Attachment to a bot message
type Attachment interface {
AttachmentType() AttachmentType
}
// BotMessageType defines type of an output message from bot to user
type BotMessageType int
const (
// BotMessageTypeUndefined unknown type
BotMessageTypeUndefined BotMessageType = iota
// BotMessageTypeCallbackAnswer sends callback answer
BotMessageTypeCallbackAnswer
// BotMessageTypeInlineResults sends inline results
BotMessageTypeInlineResults
// BotMessageTypeText sends text reply
BotMessageTypeText
// BotMessageTypeEditMessage edit previously sent message
BotMessageTypeEditMessage
// BotMessageTypeLeaveChat commands messenger to kick off bot from a botChat
BotMessageTypeLeaveChat
// BotMessageTypeExportChatInviteLink sends invite link
BotMessageTypeExportChatInviteLink
)
// BotMessage is an output message from bot to user
type BotMessage interface {
BotMessageType() BotMessageType
}
// TextMessageFromBot is a text output message from bot to user
type TextMessageFromBot struct {
Text string `json:",omitempty"`
Format MessageFormat `json:",omitempty"`
DisableWebPagePreview bool `json:",omitempty"`
DisableNotification bool `json:",omitempty"`
Keyboard botsgocore.Keyboard `json:",omitempty"`
IsEdit bool `json:",omitempty"`
EditMessageUID MessageUID `json:",omitempty"`
}
// BotMessageType returns if we want to send a new message or edit existing one
func (m *TextMessageFromBot) BotMessageType() BotMessageType {
if m.IsEdit {
return BotMessageTypeEditMessage
}
return BotMessageTypeText
}
var _ BotMessage = (*TextMessageFromBot)(nil)
// MessageFromBot keeps all the details of answer from bot to user
//
//goland:noinspection GoDeprecation
type MessageFromBot struct {
ResponseChannel BotAPISendMessageChannel `json:"-,omitempty"` // For debug purposes
ToChat ChatUID `json:",omitempty"`
// To be used with Telegram to edit an arbitrary message.
// Do not use this field directly when you want to edit the callback message
EditMessageIntID int `json:"editMessageIntID,omitempty"`
// This is a shortcut to MessageFromBot{}.BotMessage = TextMessageFromBot{text: "abc"}
TextMessageFromBot // TODO: This feels wrong and need to be refactored! Use BotMessage instead
BotMessage BotMessage `json:",omitempty"`
//FbmAttachment *fbmbotapi.RequestAttachment `json:",omitempty"` // deprecated
}