This repository was archived by the owner on Jul 4, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgroups.go
More file actions
251 lines (208 loc) · 5.53 KB
/
Copy pathgroups.go
File metadata and controls
251 lines (208 loc) · 5.53 KB
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
package main
import (
"fmt"
"github.com/dchest/uniuri"
"gopkg.in/telegram-bot-api.v1"
)
// isGroupAlreadyExists returns whether the given group name was already
// used to create another group
func isGroupAlreadyExists(name string) (bool, error) {
conf, err := readConfiguration()
if err != nil {
return false, err
}
for _, elem := range conf.Groups {
if elem.Name == name {
return true, nil
}
}
return false, nil
}
// isBotExists returns whether the given botname is already registered with the
// config file
func isBotExists(name string) (bool, error) {
conf, err := readConfiguration()
if err != nil {
return false, err
}
for _, elem := range conf.Bots {
if elem.Name == name {
return true, nil
}
}
return false, nil
}
func createGroup(bot string, name string) error {
// first check whether the group already exists
alreadyExists, err := isGroupAlreadyExists(name)
if err != nil {
return err
}
if alreadyExists {
return fmt.Errorf("The group [%s] already exists!", name)
}
// then check if the bot exists at all
botExists, err := isBotExists(bot)
if err != nil {
return err
}
if !botExists {
return fmt.Errorf("The bot [%s] does not exists!", bot)
}
// if everything went ok one can create the group
newGroup := groupConfig{bot, name, nil}
// now the group only has to be saved
conf, err := readConfiguration()
if err != nil {
return err
}
conf.Groups = append(conf.Groups, newGroup)
err = writeConfiguration(conf)
if err != nil {
return err
}
if *verbose {
fmt.Printf("Created group [%s]\n", name)
}
return nil
}
// given a name this returns the group config object if existing and
// an error if not existing or an error occured
func getGroupByName(name string) (groupConfig, error) {
conf, err := readConfiguration()
if err != nil {
return groupConfig{}, err
}
for _, elem := range conf.Groups {
if elem.Name == name {
return elem, nil
}
}
return groupConfig{}, fmt.Errorf("There is no group [%s]", name)
}
// given a group id and a user id this adds the user to the group if not already
// existing
func addUserToGroupConfig(groupName string, uid int) error {
conf, err := readConfiguration()
if err != nil {
return err
}
for i, group := range conf.Groups {
// find correct group
if group.Name == groupName {
// check if user is already existing
for _, member := range group.Users {
// if yes, just do nothing
if member == uid {
return nil
}
}
// if not add the user
// here one has to access the original
// conf variable, as range copies the group object
conf.Groups[i].addUser(uid)
return writeConfiguration(conf)
}
}
// if one reaches here then the group has not existed
return fmt.Errorf("The group [%s] was not found to append a user", groupName)
}
// addUserToGroup tries to add a new user to the given group
// for this it creates a bot and a link to join the bot.
// the bot then waits for the user to join
// if the user then clicks the link the user is registered
func addUserToGroup(groupName string) error {
group, err := getGroupByName(groupName)
if err != nil {
return err
}
token, err := getBotNameByName(group.BotName)
if err != nil {
return err
}
bot, err := tgbotapi.NewBotAPI(token)
if err != nil {
return fmt.Errorf("could not create bot\n%s\n", err.Error())
}
uri := uniuri.NewLen(4)
url := fmt.Sprintf("https://telegram.me/%s?start=%s", group.BotName, uri)
fmt.Printf("Listening for user\nGo to page %s\n", url)
u := tgbotapi.NewUpdate(0)
u.Timeout = 60
updates, err := bot.GetUpdatesChan(u)
for update := range updates {
if update.Message.Text == "/start "+uri {
err = addUserToGroupConfig(groupName, update.Message.Chat.ID)
if err != nil {
return err
}
fmt.Printf("Successfully added user [%d]\n", update.Message.Chat.ID)
msg := tgbotapi.NewMessage(
update.Message.Chat.ID,
fmt.Sprintf("successfully added to group [%s]", groupName))
bot.Send(msg)
return nil
}
}
return nil
}
func listGroups() error {
conf, err := readConfiguration()
if err != nil {
return err
}
for _, group := range conf.Groups {
fmt.Printf("[%s]\nfrom [%s] -> %v\n\n", group.Name, group.BotName, group.Users)
}
return nil
}
// given a group name this removes the group with the given name
func removeGroup(name string) error {
conf, err := readConfiguration()
if err != nil {
return err
}
// find the group with the correct name
for i, group := range conf.Groups {
if group.Name == name {
conf.Groups = append(conf.Groups[:i], conf.Groups[i+1:]...)
err = writeConfiguration(conf)
if err != nil {
return err
}
if *verbose {
fmt.Printf("Removed group [%s]\n", name)
}
return nil
}
}
return fmt.Errorf("The group [%s] was not found", name)
}
// given a user id and a group string this removes the user from the given
// group, given that both exist
func uninviteUser(user int, groupName string) error {
conf, err := readConfiguration()
if err != nil {
return err
}
for i, group := range conf.Groups {
if group.Name == groupName {
for j, _user := range group.Users {
if _user == user {
// remove the user
conf.Groups[i].Users = append(conf.Groups[i].Users[:j], conf.Groups[i].Users[j+1:]...)
// save configuration
err = writeConfiguration(conf)
if err != nil {
return err
}
if *verbose {
fmt.Printf("Removed user [%d] from group [%s]\n", user, groupName)
}
return nil
}
}
}
}
return fmt.Errorf("There is no group/user combination for group [%s] and user [%d]", groupName, user)
}