-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
205 lines (179 loc) · 5.5 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
package main
import (
"encoding/json"
"fmt"
"log"
"os"
"strconv"
"strings"
n "github.com/wowlikon/go_lan_scanner/lib"
h "github.com/wowlikon/go_tg_bot/handlers"
u "github.com/wowlikon/go_tg_bot/users"
t "github.com/wowlikon/go_tg_bot/utils"
tgbotapi "github.com/go-telegram-bot-api/telegram-bot-api/v5"
"github.com/joho/godotenv"
)
var conf t.Configuration
func main() {
var users []u.User
//Проверка аргументов запуска
args := os.Args
if (t.GetIndex(args, "-h") != -1) || (t.GetIndex(args, "--help") != -1) {
fmt.Printf("Usage: %s [arguments]\n", args[0])
fmt.Println("\t-h --help | help information")
fmt.Println("\t-d --debug | enable debug info")
return
}
conf.SetDebug((t.GetIndex(args, "-d") != -1) || (t.GetIndex(args, "--debug") != -1))
//Загружаем .env
if err := godotenv.Load(".env"); err != nil {
log.Fatalf("Some error occured. Err: %s", err)
}
//Сконирование локальной сети
conf.Devices, _ = t.FilterDevices(n.Scan("192.168.0.0/24", n.PortList))
key_len, _ := strconv.Atoi(os.Getenv("KEY_LENGTH"))
key, _ := t.GenerateKey(key_len)
fmt.Printf("Admin key: %s\n", key)
conf.SetKey(key)
//Создаем бота
fmt.Println("Starting bot")
bot, err := tgbotapi.NewBotAPI(os.Getenv("TOKEN"))
if err != nil {
log.Fatalf("Some error occured. Err: %s", err)
}
fmt.Printf("Bot @%s is online in ", bot.Self.UserName)
if conf.Debug {
fmt.Println("debug mode")
} else {
fmt.Println("standart mode")
}
//Устанавливаем время обновления
upd := tgbotapi.NewUpdate(0)
upd.Timeout = 60
//Получаем обновления от бота
for update := range bot.GetUpdatesChan(upd) {
ToID := t.GetID(update)
if ToID == 0 {
continue
}
srcUser := u.FindUser(&users, ToID, t.GetFrom(update).UserName)
//Вывод данных о сообщении только для владельца
if conf.Debug && (u.GetUser(srcUser).Status == u.SU) {
updateJSON, err := json.MarshalIndent(
update, "", " ",
)
if err != nil {
msg := tgbotapi.NewMessage(
ToID, fmt.Sprintf(
"Error marshaling update to JSON: \n%s", err,
),
)
bot.Send(msg)
continue
}
msg := tgbotapi.NewMessage(
ToID, fmt.Sprintf("```json\n%s\n```", updateJSON),
)
msg.ParseMode = "MarkdownV2"
bot.Send(msg)
}
//Проверка типа на сообщение
if update.Message != nil {
var msg tgbotapi.MessageConfig
//Проверка на одноразовый ключ доступа
if conf.UseKey(update.Message.Text) {
userName := update.Message.From.UserName
id := update.Message.From.ID
idx := -1
for userID, user := range users {
if user.ID == id {
idx = userID
break
}
}
if idx == -1 {
users = append(users, *u.NewUser(id, u.SU, userName, "~"))
} else {
users[idx].Status = u.SU
}
//Приветствие для суперадминистратора
msg = tgbotapi.NewMessage(ToID, fmt.Sprintf("```welcome $sudo hello_world --admin %s```", userName))
msg.ParseMode = "MarkdownV2"
bot.Send(msg)
continue
}
//Проверка команды
if strings.HasPrefix(update.Message.Text, "/") {
parts := strings.Split(update.Message.Text, " ")
switch parts[0] {
case "/start":
h.Start(bot, srcUser)
case "/main":
h.Main(bot, srcUser)
case "/help":
h.Help(bot, srcUser)
default:
h.NoCmd(bot, srcUser)
}
} else {
//Если просто текст
msg := t.NewUpdMsg(srcUser, "Not text-command TODO")
t.USend(bot, srcUser, msg)
}
//Удаление сообщения от пользователя
msgToDelete := tgbotapi.DeleteMessageConfig{
ChatID: update.Message.Chat.ID,
MessageID: update.Message.MessageID,
}
bot.Request(msgToDelete)
//Проверка типа на событие кнопки
} else if update.CallbackQuery != nil {
callback := tgbotapi.NewCallback(update.CallbackQuery.ID, update.CallbackQuery.Data)
parts := strings.Split(update.CallbackQuery.Data, ".")
//Вывод данных об ошибке только для владельца
_, err := bot.Request(callback)
if conf.Debug && (err != nil) && (u.GetUser(srcUser).Status == u.SU) {
msg := tgbotapi.NewMessage(
ToID, fmt.Sprintf("Callback error: \n%s", err),
)
bot.Send(msg)
continue
}
//Проверка события
switch parts[0] {
case "user":
h.UserInfo(bot, srcUser, &parts)
case "users":
h.UserList(bot, srcUser)
case "select":
h.SelectStatus(bot, srcUser, &parts)
case "set":
h.SetStatus(bot, srcUser, &parts)
case "transferq":
h.Transferq(bot, srcUser, &parts)
case "transfer":
h.Transfer(bot, srcUser, &parts)
case "config":
h.Config(bot, srcUser)
case "scan":
h.ScanList(bot, srcUser, conf)
case "rescan":
h.Rescan(bot, srcUser, conf)
case "device":
h.SetDevice(bot, srcUser, conf, &parts)
case "powerq":
h.RequestPower(bot, srcUser)
case "power":
h.Power(bot, srcUser, conf)
case "terminal", "files":
h.TODO(bot, srcUser)
case "help":
h.Help(bot, srcUser)
case "debug":
h.SetDebug(bot, &conf.Debug, srcUser, &parts)
default:
h.NoCmd(bot, srcUser)
}
}
}
}