-
Notifications
You must be signed in to change notification settings - Fork 0
/
reply.go
95 lines (81 loc) · 2.31 KB
/
reply.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
// Copyright 2016 Jacques Supcik, HEIA-FR
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
// 2015-12-29 | JS | First version
// 2016-01-12 | JS | Last version (add status command)
//
// Telegram bot
//
package main
import (
"fmt"
"github.com/tucnak/telebot"
)
var colorKeyboard = telebot.SendOptions{
ReplyMarkup: telebot.ReplyMarkup{
CustomKeyboard: [][]string{
[]string{"Red", "SkyBlue"},
[]string{"Green", "Orange"},
[]string{"Gold", "HotPink"},
},
OneTimeKeyboard: true,
},
}
var msgKeyboard = telebot.SendOptions{
ReplyMarkup: telebot.ReplyMarkup{
CustomKeyboard: [][]string{
[]string{"I ♥︎ Computer Science"},
[]string{"I ♥︎ Telecommunications"},
[]string{"I ♥︎ HEIA-FR"},
},
OneTimeKeyboard: true,
},
}
var hideKeyboard = telebot.SendOptions{
ReplyMarkup: telebot.ReplyMarkup{
HideCustomKeyboard: true,
},
}
func (s *session) sayHello() {
bot.SendMessage(s.conversation,
fmt.Sprintf(
"Hello %s, nice to see you. Please, enter the color for your message.",
s.sender.FirstName),
&colorKeyboard)
}
func (s *session) sayStatus() {
bot.SendMessage(s.conversation, lastMessage, &hideKeyboard)
}
func (s *session) sayCanceled() {
bot.SendMessage(s.conversation, "OK", &hideKeyboard)
}
func (s *session) sayBadColor() {
bot.SendMessage(s.conversation,
"I don't know this color. Please try another one.",
&colorKeyboard)
}
func (s *session) sayGoodColor() {
bot.SendMessage(s.conversation,
fmt.Sprintf("Good. Now please enter your message (max %d characters).", maxMsgLen),
&msgKeyboard)
}
func (s *session) sayTooLongText() {
bot.SendMessage(s.conversation,
"Your message is too long. Please try a shorter one.",
&msgKeyboard)
}
func (s *session) sayGoodText() {
bot.SendMessage(s.conversation,
"Thank you. I will display your message soon.",
&hideKeyboard)
}