-
Notifications
You must be signed in to change notification settings - Fork 1
/
botSenders.go
187 lines (171 loc) · 6.48 KB
/
botSenders.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
175
176
177
178
179
180
181
182
183
184
185
186
187
package main
import (
"fmt"
tgbotapi "github.com/go-telegram-bot-api/telegram-bot-api"
"github.com/google/uuid"
"github.com/sirupsen/logrus"
storeClient "github.com/stdevHsequeda/CubanProductFinder"
)
func (m MyBot) sendInlineKeyboardSelectProvince(chatId int64) {
msg := tgbotapi.NewMessage(chatId, "Seleccione una provincia:")
var markup = tgbotapi.NewInlineKeyboardMarkup(
tgbotapi.NewInlineKeyboardRow(
tgbotapi.NewInlineKeyboardButtonData("La Habana", "La Habana"),
),
tgbotapi.NewInlineKeyboardRow(
tgbotapi.NewInlineKeyboardButtonData("Pinar del Rio", "Pinar del Rio"),
tgbotapi.NewInlineKeyboardButtonData("Artemisa", "Artemisa"),
),
tgbotapi.NewInlineKeyboardRow(
tgbotapi.NewInlineKeyboardButtonData("Mayabeque", "Mayabeque"),
tgbotapi.NewInlineKeyboardButtonData("Matanzas", "Matanzas"),
),
tgbotapi.NewInlineKeyboardRow(
tgbotapi.NewInlineKeyboardButtonData("Cienfuegos", "Cienfuegos"),
tgbotapi.NewInlineKeyboardButtonData("Villa Clara", "Villa Clara"),
),
tgbotapi.NewInlineKeyboardRow(
tgbotapi.NewInlineKeyboardButtonData("Sancti Spiritus", "Sancti Spiritus"),
tgbotapi.NewInlineKeyboardButtonData("Ciego de Avila", "Ciego de Avila"),
),
tgbotapi.NewInlineKeyboardRow(
tgbotapi.NewInlineKeyboardButtonData("Camaguey", "Camaguey"),
tgbotapi.NewInlineKeyboardButtonData("Las Tunas", "Las Tunas"),
),
tgbotapi.NewInlineKeyboardRow(
tgbotapi.NewInlineKeyboardButtonData("Granma", "Granma"),
tgbotapi.NewInlineKeyboardButtonData("Santiago de Cuba", "Santiago de Cuba"),
),
tgbotapi.NewInlineKeyboardRow(
tgbotapi.NewInlineKeyboardButtonData("Guantanamo", "Guantanamo"),
tgbotapi.NewInlineKeyboardButtonData("La Isla", "La Isla"),
),
tgbotapi.NewInlineKeyboardRow(
tgbotapi.NewInlineKeyboardButtonData("Holguin", "Holguin"),
),
)
msg.ReplyMarkup = markup
_, err := m.bot.Send(msg)
if err != nil {
logrus.Warn(err)
}
}
func (m MyBot) sendUserPanel(chatId int64, text string) {
msg := tgbotapi.NewMessage(chatId, text)
replyKeyboard := tgbotapi.NewReplyKeyboard(
tgbotapi.NewKeyboardButtonRow(
tgbotapi.NewKeyboardButton("👤 Mi Perfil"),
tgbotapi.NewKeyboardButton("🆘 Help"),
),
tgbotapi.NewKeyboardButtonRow(
tgbotapi.NewKeyboardButton("🗺 Seleccionar Provincia"),
),
tgbotapi.NewKeyboardButtonRow(
tgbotapi.NewKeyboardButton("📋 Adicionar subscripcion"),
),
)
msg.ParseMode = "html"
msg.ReplyMarkup = replyKeyboard
_, err := m.bot.Send(msg)
if err != nil {
logrus.Warn(err)
}
}
func (m MyBot) sendQueryResultList(list []storeClient.Product, inlineQueryID string) {
var resultList = make([]interface{}, 0)
for _, prod := range list {
msg := fmt.Sprintf(
`
<b>Producto: %s</b>,
<b>Precio: %s</b>,
<b>Tienda: %s</b>,
<a href="%s">Ver Producto</a>,
`, prod.GetName(), prod.GetPrice(), prod.GetSection().GetStore().Name, prod.GetLink())
inlineQueryResult := tgbotapi.NewInlineQueryResultArticleHTML(uuid.New().String(),
fmt.Sprintf("%s - %s", prod.GetName(), prod.GetSection().GetStore().Name), msg)
resultList = append(resultList, inlineQueryResult)
_, err := m.bot.AnswerInlineQuery(tgbotapi.InlineConfig{
InlineQueryID: inlineQueryID,
Results: resultList,
CacheTime: 10000,
})
if err != nil {
logrus.Warn(err)
}
}
}
func (m MyBot) sendResultMessage(chatId int64, productList []storeClient.Product) {
if len(productList) == 0 {
msg := tgbotapi.NewMessage(chatId, `No se encontraron productos.😥`)
_, err := m.bot.Send(msg)
if err != nil {
logrus.Warn(err)
}
return
}
for _, prod := range productList {
rawMsg := fmt.Sprintf(
`
<b>Producto: %s</b>,
<b>Precio: %s</b>,
<b>Tienda: %s</b>,
<a href="%s">Ver Producto</a>,
`, prod.GetName(), prod.GetPrice(), prod.GetSection().GetStore().Name, prod.GetLink())
msg := tgbotapi.NewMessage(chatId, rawMsg)
msg.ParseMode = "html"
_, err := m.bot.Send(msg)
if err != nil {
logrus.Warn(err)
}
}
}
func (m MyBot) sendProvinceNotSelectError(chatId int64) {
msg := tgbotapi.NewMessage(chatId, "❌ Necesita seleccionar una provincia.")
msg.ReplyMarkup = tgbotapi.NewInlineKeyboardMarkup(
tgbotapi.NewInlineKeyboardRow(
tgbotapi.NewInlineKeyboardButtonURL("Seleccionar provincia!", fmt.Sprintf("https://t.me/%s?start=start", m.botName)),
),
)
_, err := m.bot.Send(msg)
if err != nil {
logrus.Warn(err)
}
}
func (m MyBot) sendInsertCommandValidError(chatId int64) {
msg := tgbotapi.NewMessage(chatId, "❌ Inserte un comando valido.")
_, err := m.bot.Send(msg)
if err != nil {
logrus.Warn(err)
}
}
func (m MyBot) sendInstructions(chatId int64) {
msg := tgbotapi.NewMessage(chatId,
"Este bot te ayuda a encontrar 🔍 productos en las tiendas virtuales."+
"Hasta ahora abarca todas las tiendas de <a href=\"https://www.tuenvio.cu\">Tu Envio</a> y la tienda de"+
"<a href=\"https://5tay42.xetid.cu\">5ta y 42</a> con la meta de añadir las restantes.\n"+
"> <b>Primero que todo:</b> \n"+
"- Para empezar a usar este bot tiene que iniciar un chat privado y seleccionar una Provincia."+
" Usted puede cambiar la provincia cuando desee. La provincia que seleccione es en la cual se "+
"realizaran las busquedas.\n\n"+
"<b>Modos de uso:</b>\n"+
"1- <i>Privado</i>(El chat privado con el bot): En este modo usted va a tener acceso al comando /buscar 'Producto'"+
"para buscar un producto, tambien puede hacerlo escribiendo en el chat privado lo que quiere buscar."+
"Ademas va a tener a disposicion un listado de botones que le haran la vida mas facil☺️ brindandole"+
" las opciones de:\n"+
"\t1. Cambiar o añadir su provincia. \n"+
"\t2. Mostrar esta ayuda para si se olvida de algo. \n"+
"\t3. Ver su perfil donde vera su usuario con la provincia que tiene vinculada.\n"+
"\t4. Subscribirse a un patron de busqueda para notificarle cuando encontremos algo.(En desarrollo)\n"+
"2- <i>Publico</i>( Añadiendo el bot a un grupo para uso publico): En este modo usted va a tener acceso al comando"+
"'/buscar', si no ha iniciado una conversacion con el bot y le hace un pedido se le mostrara un boton de enlace"+
"para realizar esta tarea.\n"+
"3- <i>Inline</i>: A este modo se accede escribiendo '@buscarTuEnvioBot \"patron a buscar\"'. Puede acceder a este modo desde"+
"cualquier parte de telegram, lo mismo un grupo como un chat privado, cuando escriba un patron tiene que esperar"+
"unos segundos para que se realice el pedido asi que uselo con calma.",
)
msg.ParseMode = "html"
_, err := m.bot.Send(msg)
if err != nil {
logrus.Warn(err)
}
}