-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuser.go
294 lines (255 loc) · 6.31 KB
/
user.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
package main
import (
"context"
tgbotapi "github.com/go-telegram-bot-api/telegram-bot-api/v5"
"go.mongodb.org/mongo-driver/bson"
"go.mongodb.org/mongo-driver/mongo/options"
"html/template"
"math/rand"
"strconv"
"strings"
"time"
)
func user_proceed(update *tgbotapi.Update) {
id := update.Message.From.ID
if len(users_status[id]) == 0 {
users_status[id] = append(users_status[id], 0)
}
if update.Message.Text == "Получить ссылку" || update.Message.Text == "Добавить ссылку" {
users_status[id][0] = 1
}
switch users_status[id][0] {
case 0: // Получить главную клавиатуру
main_page(update)
return
case 1: // Выбор действия
choice_activity(update)
return
}
}
func main_page(update *tgbotapi.Update) {
return_to_default(update)
}
func choice_activity(update *tgbotapi.Update) {
id := update.Message.From.ID
if len(users_status[id]) < 2 {
users_status[id] = append(users_status[id], -1)
}
switch users_status[id][1] {
case -1:
switch update.Message.Text {
case "Добавить ссылку":
msg := tgbotapi.NewMessage(update.Message.Chat.ID, "Введите ссылку")
msg.ReplyMarkup = users_keybords["back"]
if _, err := bot.Send(msg); err != nil {
users_status[id] = []int64{}
errorLog.Println(err)
return
}
users_status[id][1] = 1
return
case "Получить ссылку":
get_ref(update)
return
case "Мои кредиты":
get_my_credits(update)
}
case 1: // добавление ссылки
switch update.Message.Text {
case "Назад":
return_to_default(update)
default:
add_ref(update)
}
}
}
func add_ref(update *tgbotapi.Update) {
id := update.Message.From.ID
balance, err := get_balance(id)
if err != nil {
proceed_err(update, err)
return
}
if balance < 10 {
msg := tgbotapi.NewMessage(update.Message.Chat.ID, "У вас недостаточно кредитов нужно 10, у вас: "+strconv.FormatInt(balance, 10))
if _, err := bot.Send(msg); err != nil {
users_status[id] = []int64{}
errorLog.Println(err)
return
}
return_to_default(update)
msg = tgbotapi.NewMessage(update.Message.Chat.ID, "Выберите действие")
msg.ReplyMarkup = users_keybords["default"]
if _, err := bot.Send(msg); err != nil {
users_status[id] = []int64{}
errorLog.Println(err)
return
}
return
}
ref := update.Message.Text
update_db := bson.M{
"$inc": bson.M{
"balance": -10,
},
}
_, err = db_users.UpdateOne(context.TODO(), bson.M{"id": id}, update_db)
if err != nil {
proceed_err(update, err)
return
}
update_db = bson.M{
"$push": bson.M{
"refs": ref,
"refs_was": ref,
},
}
_, err = db_users.UpdateOne(context.TODO(), bson.M{"id": id}, update_db)
if err != nil {
proceed_err(update, err)
return
}
room_name, err := get_room(id)
if err != nil {
proceed_err(update, err)
return
}
ref_db_update := ref_struct{
Ref: ref,
From: int64(id),
Room: room_name,
}
_, err = db_refs.InsertOne(context.TODO(), ref_db_update)
if err != nil {
proceed_err(update, err)
return
}
msg := tgbotapi.NewMessage(update.Message.Chat.ID, "Успешно добавлена ссылка")
if _, err := bot.Send(msg); err != nil {
users_status[id] = []int64{}
errorLog.Println(err)
return
}
return_to_default(update)
}
type ref_tmpl struct {
Ref string
Balance int64
}
func get_ref(update *tgbotapi.Update) {
id := update.Message.From.ID
var user user_struct
err := db_users.FindOne(context.TODO(), bson.M{"id": id}).Decode(&user)
if err != nil {
proceed_err(update, err)
return
}
filter := bson.M{"ref": bson.M{"$nin": user.Refs_was}}
cnt, err := db_refs.CountDocuments(context.TODO(), filter)
if err != nil {
proceed_err(update, err)
return
}
rand.Seed(time.Now().UnixNano())
if cnt <= 0 {
cnt = 1
}
var skip int64 = rand.Int63n(cnt)
opt := options.FindOptions{Skip: &skip}
var ref ref_struct
cur, err := db_refs.Find(context.TODO(), filter, &opt)
if err != nil {
proceed_err(update, err)
return
}
ref_exist := false
for cur.Next(context.TODO()) {
err = cur.Decode(&ref)
if err != nil {
proceed_err(update, err)
return
}
ref_exist = true
break
}
if ref_exist == false {
msg := tgbotapi.NewMessage(update.Message.Chat.ID, "Нет ссылки, которую вам возможно выдать, попробуй позже")
if _, err := bot.Send(msg); err != nil {
users_status[id] = []int64{}
errorLog.Println(err)
return
}
return
}
_, err = db_users.UpdateOne(context.TODO(), bson.M{"id": ref.From}, bson.M{"$inc": bson.M{"balance": 1}})
if err != nil {
proceed_err(update, err)
return
}
update_db := bson.M{
"$inc": bson.M{
"balance": 1,
},
"$push": bson.M{
"refs_was": ref.Ref,
},
}
_, err = db_users.UpdateOne(context.TODO(), bson.M{"id": id}, update_db)
if err != nil {
proceed_err(update, err)
return
}
tmpl_data := ref_tmpl{
Ref: ref.Ref,
Balance: user.Balance + 1,
}
tmpl, err := template.New("data").Parse("<a href='{{.Ref}}'>Ссылка</a>\n<a>Твой баланс: {{.Balance}}</a>")
if err != nil {
proceed_err(update, err)
return
}
msg_str := new(strings.Builder)
err = tmpl.Execute(msg_str, tmpl_data)
if err != nil {
proceed_err(update, err)
return
}
msg := tgbotapi.NewMessage(update.Message.Chat.ID, msg_str.String())
msg.ParseMode = "HTML"
if _, err := bot.Send(msg); err != nil {
users_status[id] = []int64{}
errorLog.Println(err)
return
}
return
}
func get_my_credits(update *tgbotapi.Update) {
balance, err := get_balance(update.Message.From.ID)
if err != nil {
proceed_err(update, err)
return
}
user_balance := strconv.FormatInt(balance, 10)
msg := tgbotapi.NewMessage(update.Message.Chat.ID, "Твой баланс: "+user_balance)
if _, err := bot.Send(msg); err != nil {
users_status[update.Message.From.ID] = []int64{}
errorLog.Println(err)
return
}
}
func get_balance(id int64) (int64, error) {
var user user_struct
err := db_users.FindOne(context.TODO(), bson.M{"id": id}).Decode(&user)
if err != nil {
return 0, err
}
return user.Balance, nil
}
func get_room(id int64) (string, error) {
var user user_struct
err := db_users.FindOne(context.TODO(), bson.M{"id": id}).Decode(&user)
if err != nil {
return "", err
}
return user.Room, nil
}