-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
212 lines (161 loc) · 6.17 KB
/
main.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
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
package main
import (
"time"
tgbotapi "github.com/go-telegram-bot-api/telegram-bot-api/v5"
)
// const TOKEN = os.getenv('TOKEN')
const CONTACT = "https://t.me/mr_restyling"
var bot *tgbotapi.BotAPI
var chatID int64
// *Описание для telegram*
// start - Запустить помощника
// contacts - Связаться с создателем
func connectWithTelegram() {
var err error
if bot, err = tgbotapi.NewBotAPI(TOKEN); err != nil {
panic("Cannot connect to Telegram")
}
}
func StartMessage() {
// Send a sticker in response
sticker := tgbotapi.NewSticker(chatID, tgbotapi.FileID("CAACAgIAAxkBAAEMpodmvfcCsjZBj9iFZvd4SjaDuTXKJQAChwIAAladvQpC7XQrQFfQkDUE"))
bot.Send(sticker)
keyboard := tgbotapi.NewReplyKeyboard(
tgbotapi.NewKeyboardButtonRow(
tgbotapi.NewKeyboardButton("Виды сортировок"),
tgbotapi.NewKeyboardButton("Поиск факториала"),
),
tgbotapi.NewKeyboardButtonRow(
tgbotapi.NewKeyboardButton("binaryToDecimal"),
tgbotapi.NewKeyboardButton("Дополнительно"),
),
)
message := `Привет!
Я твой личный помощник в изучении языка программирования GO.
Вот несколько примеров:`
msgConfig := tgbotapi.NewMessage(chatID, message)
msgConfig.ReplyMarkup = keyboard
bot.Send(msgConfig)
}
func SendContacts() {
contact := tgbotapi.NewMessage(chatID, CONTACT)
bot.Send(contact)
}
func SortsGO() {
sticker := tgbotapi.NewSticker(chatID, tgbotapi.FileID("CAACAgIAAxkBAAEMpn5mvfOEhzxgDS6_lzGXB48kulcNswACIhMAAl1scEuuLYe9O-OAPjUE"))
bot.Send(sticker)
time.Sleep(time.Second * 2)
link := `
Тут можно ознакомиться подробнее:
https://github.com/mrRestyling/SortsGO
`
text := `Виды сортировок:
1) Пузырьковая сортировка
2) Сортировка выбором
3) Сортировка вставкой
4) Быстрая сортировка
5) Сортировка слиянием
`
textBot := tgbotapi.NewMessage(chatID, text)
bot.Send(textBot)
time.Sleep(time.Second * 1)
linkBot := tgbotapi.NewMessage(chatID, link)
bot.Send(linkBot)
}
func Factorial() {
sticker := tgbotapi.NewSticker(chatID, tgbotapi.FileID("CAACAgIAAxkBAAEMpn5mvfOEhzxgDS6_lzGXB48kulcNswACIhMAAl1scEuuLYe9O-OAPjUE"))
bot.Send(sticker)
time.Sleep(time.Second * 2)
funcText := `Функция факториала:
func factorial (num uint) uint {
if num == 0 {
return 1
}
return num * factorial(num-1)
}
`
text := funcText + "\n" + `
===========================
Описание функции:
uint
- "unsigned integer" (беззнаковое целое число)
if num == 0
- Это базовый случай рекурсии. Факториал 0 равен 1
return num * factorial(num-1)
- Здесь функция вызывает саму себя с аргументом num-1.
Это рекурсивный шаг, где функция умножает num на результат вызова factorial(num-1).
Рекурсия продолжается до тех пор, пока не дойдет до базового случая
` + "\n"
textBot := tgbotapi.NewMessage(chatID, text)
bot.Send(textBot)
link := `
Тут можно ознакомиться подробнее:
https://github.com/mrRestyling/SortsGO
`
time.Sleep(time.Second * 1)
linkBot := tgbotapi.NewMessage(chatID, link)
bot.Send(linkBot)
}
func mem() {
sticker := tgbotapi.NewSticker(chatID, tgbotapi.FileID("CAACAgIAAxkBAAEMpn5mvfOEhzxgDS6_lzGXB48kulcNswACIhMAAl1scEuuLYe9O-OAPjUE"))
bot.Send(sticker)
}
func binaryToDecimal() {
sticker := tgbotapi.NewSticker(chatID, tgbotapi.FileID("CAACAgIAAxkBAAEMpn5mvfOEhzxgDS6_lzGXB48kulcNswACIhMAAl1scEuuLYe9O-OAPjUE"))
bot.Send(sticker)
time.Sleep(time.Second * 2)
funcText := `Функция перевода двоичного числа в десятичное:
func binToDec2() {
var bin string = "1010"
n, err := strconv.ParseInt(bin, 2, 64)
if err != nil {
fmt.Println("ошибка парсинга")
return
}
fmt.Println(n)
}
`
text := funcText + "\n" + `
===========================
Описание функции:
strconv.ParseInt(bin, 2, 64)
- ParseInt функция для перевода двоичного числа в десятичное из пакета strconv
- Принимает двоичное число в виде строки(bin), основание системы счисления и размер бита для результата
` + "\n"
textBot := tgbotapi.NewMessage(chatID, text)
bot.Send(textBot)
link := `
Остальные примеры можно посмотреть здесь:
https://github.com/mrRestyling/ExamplesGo/blob/main/binaryToDecimal/main.go
`
time.Sleep(time.Second * 1)
linkBot := tgbotapi.NewMessage(chatID, link)
bot.Send(linkBot)
}
func main() {
connectWithTelegram()
updateConfig := tgbotapi.NewUpdate(0) // 0 - сколько сообщений пропустить чтобы добраться до нужного
// получаем специальный канал связи с помощью updateConfig + проходимся циклом
// for - особенность обхода канала (не for _, _ := range)
for update := range bot.GetUpdatesChan(updateConfig) {
if update.Message != nil && update.Message.Text == "/start" {
chatID = update.Message.Chat.ID
StartMessage()
} else if update.Message != nil && update.Message.Text == "/contacts" {
chatID = update.Message.Chat.ID
SendContacts()
} else if update.Message != nil && update.Message.Text == "Виды сортировок" {
chatID = update.Message.Chat.ID
SortsGO()
} else if update.Message != nil && update.Message.Text == "Поиск факториала" {
chatID = update.Message.Chat.ID
Factorial()
} else if update.Message != nil && update.Message.Text == "binaryToDecimal" {
chatID = update.Message.Chat.ID
binaryToDecimal()
} else if update.Message != nil && update.Message.Text == "Дополнительно" {
chatID = update.Message.Chat.ID
mem()
}
}
}