-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
398 lines (323 loc) · 10.7 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
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
package main
import (
"io/ioutil"
"encoding/json"
"log"
"fmt"
"time"
"strings"
"os"
"io"
"net/http"
"strconv"
notifier "github.com/Xrazik1/telegramBot/notifier"
tgbotapi "github.com/go-telegram-bot-api/telegram-bot-api"
)
var CONFIG Config
var isNotifyWorking bool
const TOKEN = ""
type Config struct {
ChatID int `json:"chatID"`
Time string `json:"time"`
Notification string `json:"notification"`
ImageFileId string `json:"imageFileId"`
}
// ADMINS: 430343293, 336963447
func contains(arr []string, str string) bool {
for _, a := range arr {
if a == str {
return true
}
}
return false
}
func isImageLoaded()(bool){
if(CONFIG.ImageFileId != "") {
return true
}else{
return false
}
}
func isConfigJsonEmpty()(bool){
byt, err := ioutil.ReadFile("config.json")
if err != nil || byt == nil {
return true
}else{
config, _ := jsonConverter(byt, Config{}, false)
if (config.Notification == "" && config.Time == "" && config.ChatID == 0){
return true
}
}
return false
}
func setConfigToJson(config Config){
var plugConverter []byte
_, jsonString := jsonConverter(plugConverter, config, true)
mydata := []byte(jsonString)
err := ioutil.WriteFile("config.json", mydata, 0777)
if err != nil {
panic(err)
}
}
/* false - json to struct, true - struct to json */
func jsonConverter(byt []byte, data interface{}, flag bool) (Config, string) {
var structure Config
var jsonString string
if flag == false {
var config = Config{}
err := json.Unmarshal(byt, &config)
if err != nil {
panic(err)
}
structure = config
} else {
config, err := json.Marshal(data)
jsonString = string(config)
if err != nil {
panic(err)
}
}
return structure, jsonString
}
func sendNotification(msg tgbotapi.Chattable, bot *tgbotapi.BotAPI) {
bot.Send(msg)
}
func setConfig(Time string, Notification string, ChatID int, ImageFileId string){
CONFIG.Time = Time
CONFIG.Notification = Notification
CONFIG.ChatID = ChatID
CONFIG.ImageFileId = ImageFileId
setConfigToJson(CONFIG)
}
func sendConfig(bot *tgbotapi.BotAPI, msg tgbotapi.MessageConfig){
var imageStatus string = "не задана"
if (isImageLoaded() == true){ imageStatus = "задана" }
if ((CONFIG.Notification != "") && (CONFIG.Time != "") || (CONFIG.ChatID != 0)){
msg.Text = "ID отслеживаемого чата: " + strconv.Itoa(CONFIG.ChatID) + " \nОбъявление: " + CONFIG.Notification + " \nВремя отправки: " + CONFIG.Time + "\nКартинка: " + imageStatus
bot.Send(msg)
}else{
msg.Text = "Кофигурация не задана"
bot.Send(msg)
}
}
func setNotification(updates tgbotapi.UpdatesChannel, bot *tgbotapi.BotAPI, msg tgbotapi.MessageConfig)(bool){
msg.Text = "Введите уведомление для отправки"
bot.Send(msg)
for update := range updates {
if update.Message != nil {
if (update.Message.Text == "exit"){
break
}
Notification := strings.TrimSpace(update.Message.Text)
setConfig(CONFIG.Time, Notification, CONFIG.ChatID, CONFIG.ImageFileId)
msg.Text = "Параметры успешно установлены."
bot.Send(msg)
break;
}
}
return false
}
func setTime(updates tgbotapi.UpdatesChannel, bot *tgbotapi.BotAPI, msg tgbotapi.MessageConfig)(bool){
msg.Text = "Введите время отправки уведомления в виде: часы и минуты через запятую, Пример: 15:30,20:00,03:00"
bot.Send(msg)
for update := range updates {
if update.Message != nil {
if (update.Message.Text == "exit"){
break
}
TimesStr := strings.TrimSpace(update.Message.Text)
setConfig(TimesStr, CONFIG.Notification, CONFIG.ChatID, CONFIG.ImageFileId)
msg.Text = "Параметры успешно установлены."
bot.Send(msg)
break;
}
}
return false
}
func saveImage(url string)(bool){
response, e := http.Get(url)
if e != nil {
return false
}
defer response.Body.Close()
file, err := os.Create("images/notificationImage.jpg")
if err != nil {
return false
}
defer file.Close()
_, err = io.Copy(file, response.Body)
if err != nil {
return false
}
return true
}
func setNotificationImage(updates tgbotapi.UpdatesChannel, bot *tgbotapi.BotAPI, msg tgbotapi.MessageConfig)(bool){
msg.Text = "Отправьте мне картинку, и я добавлю её к объявлению"
bot.Send(msg)
for update := range updates {
if update.Message != nil {
if(update.Message.Text == "exit"){
break
}
if (update.Message.Photo != nil){
var highQualityImageId string = (*update.Message.Photo)[(len((*update.Message.Photo))-1)].FileID
fmt.Printf("%+v\n", update.Message.Photo)
url, err := bot.GetFileDirectURL(highQualityImageId)
if (err == nil){
var result bool = saveImage(url)
if (result == true){
msg.Text = "Картинка успешно добавлена к уведомлению"
bot.Send(msg)
setConfig(CONFIG.Time, CONFIG.Notification, CONFIG.ChatID, highQualityImageId)
return false
}else{
msg.Text = "Произошла ошибка во время загрузки картинки. Для выхода введите exit."
bot.Send(msg)
return true
}
}else{
msg.Text = "Произошла ошибка во время загрузки картинки. Для выхода введите exit."
bot.Send(msg)
return true
}
}else{
msg.Text = "Вы не загрузили картинку. Для выхода введите exit."
bot.Send(msg)
return true
}
}
}
return false
}
func setChatID(updates tgbotapi.UpdatesChannel, bot *tgbotapi.BotAPI, msg tgbotapi.MessageConfig)(bool){
msg.Text = "Отправьте ID чата вида -1001148956734, который необходимо отслеживать"
bot.Send(msg)
for update := range updates {
if update.Message != nil {
if(update.Message.Text == "exit"){
break
}
ChatID, err := strconv.Atoi(update.Message.Text)
if (err != nil){
msg.Text = "Вы ввели неверный ID. Для выхода нажмите exit."
bot.Send(msg)
return true
}
setConfig(CONFIG.Time, CONFIG.Notification, ChatID, CONFIG.ImageFileId)
msg.Text = "Идентификатор успешно задан"
bot.Send(msg)
break;
}
}
return false
}
func loadDataFromJson(){
byt, err := ioutil.ReadFile("config.json")
if err != nil || byt == nil {
mydata := []byte(fmt.Sprintf("{\"chatID\": 0, \"time\": \"\", \"notification\": \"\", \"imageFileId\": \"\"}\n"))
err := ioutil.WriteFile("config.json", mydata, 0777)
if err != nil {
panic(err)
}
}else{
configFromJson, _ := jsonConverter(byt, Config{}, false)
CONFIG = configFromJson
}
}
func main() {
loadDataFromJson()
worker := notifier.NewWorker(time.Minute)
bot, err := tgbotapi.NewBotAPI(TOKEN)
if err != nil {
log.Panic(err)
}
bot.Debug = true
log.Printf("Authorized on account %s", bot.Self.UserName)
u := tgbotapi.NewUpdate(0)
u.Timeout = 60
updates, err := bot.GetUpdatesChan(u)
for update := range updates {
if update.Message == nil { // ignore any non-Message Updates
continue
}
if (update.Message.From.UserName != "mikolasav" && update.Message.From.UserName != "EndlessRat"){
continue;
}
if update.Message.IsCommand() {
msg := tgbotapi.NewMessage(update.Message.Chat.ID, "")
switch update.Message.Command() {
case "help":
msg.Text = "Введите \n /setTime для установки времени отправки \n /setNotification для установки уведомления \n /showConfig для просмотра настроек \n /setChatID для установки username отслеживаемого чата \n /setNotificationImage для установки картинки объявления \n /startNotify для запуска уведомлений \n /stopNotify для остановки уведомлений"
bot.Send(msg)
case "setNotificationImage":
if (worker.Working){
msg.Text = "Для изменения параметров остановите отправку уведомлений с помощью /stopNotify"
bot.Send(msg)
}else{
var repeat bool = true
for repeat{
repeat = setNotificationImage(updates, bot, msg)
}
}
case "setTime":
if (worker.Working){
msg.Text = "Для изменения параметров остановите отправку уведомлений с помощью /stopNotify"
bot.Send(msg)
}else{
var repeat bool = true
for repeat{
repeat = setTime(updates, bot, msg)
}
}
case "setNotification":
if (worker.Working){
msg.Text = "Для изменения параметров остановите отправку уведомлений с помощью /stopNotify"
bot.Send(msg)
}else{
var repeat bool = true
for repeat{
repeat = setNotification(updates, bot, msg)
}
}
case "showConfig":
sendConfig(bot, msg)
case "setChatID":
if (worker.Working){
msg.Text = "Для изменения параметров остановите отправку уведомлений с помощью /stopNotify"
bot.Send(msg)
}else{
var repeat bool = true
for repeat{
repeat = setChatID(updates, bot, msg)
}
}
case "startNotify":
if (worker.Working){
msg.Text = "Бот уже отправляет уведомления. Для остановки введите /stopNotify"
bot.Send(msg)
}else{
worker = notifier.NewWorker(time.Minute)
worker.Config = CONFIG
go worker.Run(bot, msg)
msg.Text = "Бот запустил уведомления"
bot.Send(msg)
}
case "stopNotify":
if (worker.Working){
worker.Shutdown()
msg.Text = "Бот остановил уведомления"
bot.Send(msg)
}else{
msg.Text = "Бот не работает. Для запуска введите /startNotify"
bot.Send(msg)
}
case "start":
msg.Text = "Введите \n /setConfig для полной настройки бота \n /showConfig для просмотра настроек \n /setChatID для установки username отслеживаемого чата \n /setNotificationImage для установки картинки объявления \n /startNotify для запуска уведомлений \n /startNotify для остановки уведомлений"
bot.Send(msg)
default:
msg.Text = "Я не понимаю эту команду"
bot.Send(msg)
}
}
}
}