-
Notifications
You must be signed in to change notification settings - Fork 8
/
main.py
221 lines (196 loc) · 10.9 KB
/
main.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
import logging
import sqlite3
from aiogram import Bot, Dispatcher, executor, types
from aiogram.contrib.fsm_storage.memory import MemoryStorage
from aiogram.dispatcher import FSMContext
from aiogram.dispatcher.filters.state import State, StatesGroup
from aiogram.types import Message
API_TOKEN = 'TOKEN' # мы получили в первой статье
ADMIN = # ваш user-id. Узнать можно тут @getmyid_bot
logging.basicConfig(level=logging.INFO)
storage = MemoryStorage()
bot = Bot(token=API_TOKEN)
dp = Dispatcher(bot, storage=storage)
conn = sqlite3.connect('db.db')
cur = conn.cursor()
cur.execute("""CREATE TABLE IF NOT EXISTS users(
user_id INTEGER,
block INTEGER);
""")
conn.commit()
class dialog(StatesGroup):
spam = State()
blacklist = State()
whitelist = State()
@dp.message_handler(commands=['start'])
async def start(message: Message):
cur = conn.cursor()
cur.execute(f"SELECT block FROM users WHERE user_id = {message.chat.id}")
result = cur.fetchone()
if message.from_user.id == ADMIN:
keyboard = types.ReplyKeyboardMarkup(resize_keyboard=True)
keyboard.add(types.InlineKeyboardButton(text="Рассылка"))
keyboard.add(types.InlineKeyboardButton(text="Добавить в ЧС"))
keyboard.add(types.InlineKeyboardButton(text="Убрать из ЧС"))
await message.answer('Добро пожаловать в Админ-Панель! Выберите действие на клавиатуре', reply_markup=keyboard)
else:
if result is None:
cur = conn.cursor()
cur.execute(f'''SELECT * FROM users WHERE (user_id="{message.from_user.id}")''')
entry = cur.fetchone()
if entry is None:
cur.execute(f'''INSERT INTO users VALUES ('{message.from_user.id}', '0')''')
conn.commit()
await message.answer('Привет')
else:
await message.answer('Ты был заблокирован!')
@dp.message_handler(content_types=['text'], text='Рассылка')
async def spam(message: Message):
if message.from_user.id == ADMIN:
await dialog.spam.set()
await message.answer('Напиши текст рассылки')
else:
await message.answer('Вы не являетесь админом')
@dp.message_handler(state=dialog.spam)
async def start_spam(message: Message, state: FSMContext):
if message.text == 'Назад':
keyboard = types.ReplyKeyboardMarkup(resize_keyboard=True)
keyboard.add(types.InlineKeyboardButton(text="Рассылка"))
keyboard.add(types.InlineKeyboardButton(text="Добавить в ЧС"))
keyboard.add(types.InlineKeyboardButton(text="Убрать из ЧС"))
await message.answer('Главное меню', reply_markup=keyboard)
await state.finish()
else:
cur = conn.cursor()
cur.execute(f'''SELECT user_id FROM users''')
spam_base = cur.fetchall()
print(spam_base)
for z in range(len(spam_base)):
print(spam_base[z][0])
for z in range(len(spam_base)):
await bot.send_message(spam_base[z][0], message.text)
await message.answer('Рассылка завершена')
await state.finish()
@dp.message_handler(state='*', text='Назад')
async def back(message: Message):
if message.from_user.id == ADMIN:
keyboard = types.ReplyKeyboardMarkup(resize_keyboard=True)
keyboard.add(types.InlineKeyboardButton(text="Рассылка"))
keyboard.add(types.InlineKeyboardButton(text="Добавить в ЧС"))
keyboard.add(types.InlineKeyboardButton(text="Убрать из ЧС"))
await message.answer('Главное меню', reply_markup=keyboard)
else:
await message.answer('Вам не доступна эта функция')
@dp.message_handler(content_types=['text'], text='Добавить в ЧС')
async def hanadler(message: types.Message, state: FSMContext):
if message.chat.id == ADMIN:
keyboard = types.ReplyKeyboardMarkup(resize_keyboard=True)
keyboard.add(types.InlineKeyboardButton(text="Назад"))
await message.answer(
'Введите id пользователя, которого нужно заблокировать.\nДля отмены нажмите кнопку ниже',
reply_markup=keyboard)
await dialog.blacklist.set()
@dp.message_handler(state=dialog.blacklist)
async def proce(message: types.Message, state: FSMContext):
if message.text == 'Назад':
keyboard = types.ReplyKeyboardMarkup(resize_keyboard=True)
keyboard.add(types.InlineKeyboardButton(text="Рассылка"))
keyboard.add(types.InlineKeyboardButton(text="Добавить в ЧС"))
keyboard.add(types.InlineKeyboardButton(text="Убрать из ЧС"))
await message.answer('Отмена! Возвращаю назад.', reply_markup=keyboard)
await state.finish()
else:
if message.text.isdigit():
cur = conn.cursor()
cur.execute(f"SELECT block FROM users WHERE user_id = {message.text}")
result = cur.fetchall()
# conn.commit()
if len(result) == 0:
keyboard = types.ReplyKeyboardMarkup(resize_keyboard=True)
keyboard.add(types.InlineKeyboardButton(text="Рассылка"))
keyboard.add(types.InlineKeyboardButton(text="Добавить в ЧС"))
keyboard.add(types.InlineKeyboardButton(text="Убрать из ЧС"))
await message.answer('Такой пользователь не найден в базе данных.', reply_markup=keyboard)
await state.finish()
else:
a = result[0]
id = a[0]
if id == 0:
cur.execute(f"UPDATE users SET block = 1 WHERE user_id = {message.text}")
conn.commit()
keyboard = types.ReplyKeyboardMarkup(resize_keyboard=True)
keyboard.add(types.InlineKeyboardButton(text="Рассылка"))
keyboard.add(types.InlineKeyboardButton(text="Добавить в ЧС"))
keyboard.add(types.InlineKeyboardButton(text="Убрать из ЧС"))
await message.answer('Пользователь успешно добавлен в ЧС.', reply_markup=keyboard)
await state.finish()
await bot.send_message(message.text, 'Ты получил от администрацией.')
else:
keyboard = types.ReplyKeyboardMarkup(resize_keyboard=True)
keyboard.add(types.InlineKeyboardButton(text="Рассылка"))
keyboard.add(types.InlineKeyboardButton(text="Добавить в ЧС"))
keyboard.add(types.InlineKeyboardButton(text="Убрать из ЧС"))
await message.answer('Данный пользователь уже получил бан', reply_markup=keyboard)
await state.finish()
else:
await message.answer('Ты вводишь буквы...\n\nВведи ID')
@dp.message_handler(content_types=['text'], text='Убрать из ЧС')
async def hfandler(message: types.Message, state: FSMContext):
cur = conn.cursor()
cur.execute(f"SELECT block FROM users WHERE user_id = {message.chat.id}")
result = cur.fetchone()
if result is None:
if message.chat.id == ADMIN:
keyboard = types.ReplyKeyboardMarkup(resize_keyboard=True)
keyboard.add(types.InlineKeyboardButton(text="Назад"))
await message.answer(
'Введите id пользователя, которого нужно разблокировать.\nДля отмены нажмите кнопку ниже',
reply_markup=keyboard)
await dialog.whitelist.set()
@dp.message_handler(state=dialog.whitelist)
async def proc(message: types.Message, state: FSMContext):
if message.text == 'Отмена':
keyboard = types.ReplyKeyboardMarkup(resize_keyboard=True)
keyboard.add(types.InlineKeyboardButton(text="Рассылка"))
keyboard.add(types.InlineKeyboardButton(text="Добавить в ЧС"))
keyboard.add(types.InlineKeyboardButton(text="Убрать из ЧС"))
await message.answer('Отмена! Возвращаю назад.', reply_markup=keyboard)
await state.finish()
else:
if message.text.isdigit():
cur = conn.cursor()
cur.execute(f"SELECT block FROM users WHERE user_id = {message.text}")
result = cur.fetchall()
conn.commit()
if len(result) == 0:
keyboard = types.ReplyKeyboardMarkup(resize_keyboard=True)
keyboard.add(types.InlineKeyboardButton(text="Рассылка"))
keyboard.add(types.InlineKeyboardButton(text="Добавить в ЧС"))
keyboard.add(types.InlineKeyboardButton(text="Убрать из ЧС"))
await message.answer('Такой пользователь не найден в базе данных.', reply_markup=keyboard)
await state.finish()
else:
a = result[0]
id = a[0]
if id == 1:
cur = conn.cursor()
cur.execute(f"UPDATE users SET block = 0 WHERE user_id = {message.text}")
conn.commit()
keyboard = types.ReplyKeyboardMarkup(resize_keyboard=True)
keyboard.add(types.InlineKeyboardButton(text="Рассылка"))
keyboard.add(types.InlineKeyboardButton(text="Добавить в ЧС"))
keyboard.add(types.InlineKeyboardButton(text="Убрать из ЧС"))
await message.answer('Пользователь успешно разбанен.', reply_markup=keyboard)
await state.finish()
await bot.send_message(message.text, 'Вы были разблокированы администрацией.')
else:
keyboard = types.ReplyKeyboardMarkup(resize_keyboard=True)
keyboard.add(types.InlineKeyboardButton(text="Рассылка"))
keyboard.add(types.InlineKeyboardButton(text="Добавить в ЧС"))
keyboard.add(types.InlineKeyboardButton(text="Убрать из ЧС"))
await message.answer('Данный пользователь не получал бан.', reply_markup=keyboard)
await state.finish()
else:
await message.answer('Ты вводишь буквы...\n\nВведи ID')
if __name__ == '__main__':
executor.start_polling(dp, skip_updates=True)