-
Notifications
You must be signed in to change notification settings - Fork 188
/
tgbot.py
181 lines (163 loc) · 7.19 KB
/
tgbot.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
import os
from telegram import InlineKeyboardButton, InlineKeyboardMarkup
from telegram.ext import Updater, CommandHandler, CallbackQueryHandler, MessageHandler, Filters, ConversationHandler
import re
import subprocess
import io
import qrcode
token = os.environ['BOT_TOKEN']
admin = os.environ['BOT_ADMIN']
updater = Updater(token)
username_regex = re.compile("^[a-zA-Z0-9]+$")
command = 'bash <(curl -sL https://raw.githubusercontent.com/aleskxyz/reality-ezpz/master/reality-ezpz.sh) '
def get_users_ezpz():
local_command = command + '--list-users'
return run_command(local_command).split('\n')[:-1]
def get_config_ezpz(username):
local_command = command + f"--show-user {username} | grep -E '://|^\\{{\"dns\"'"
return run_command(local_command).split('\n')[:-1]
def delete_user_ezpz(username):
local_command = command + f'--delete-user {username}'
run_command(local_command)
return
def add_user_ezpz(username):
local_command = command + f'--add-user {username}'
run_command(local_command)
return
def run_command(command):
process = subprocess.Popen(['/bin/bash', '-c', command], stdout=subprocess.PIPE, stderr=subprocess.PIPE)
output, _ = process.communicate()
return output.decode()
def restricted(func):
def wrapped(update, context, *args, **kwargs):
username = None
if update.message:
username = update.message.chat.username
elif update.callback_query and update.callback_query.message:
username = update.callback_query.message.chat.username
admin_list = admin.split(',')
if username in admin_list:
return func(update, context, *args, **kwargs)
else:
context.bot.send_message(chat_id=update.effective_chat.id, text='You are not authorized to use this bot.')
return wrapped
@restricted
def start(update, context):
commands_text = "Reality-EZPZ User Management Bot\n\nChoose an option:"
keyboard = [
[InlineKeyboardButton('Show User', callback_data='show_user')],
[InlineKeyboardButton('Add User', callback_data='add_user')],
[InlineKeyboardButton('Delete User', callback_data='delete_user')],
]
reply_markup = InlineKeyboardMarkup(keyboard)
context.bot.send_message(chat_id=update.effective_chat.id, text=commands_text, reply_markup=reply_markup)
@restricted
def users_list(update, context, text, callback):
keyboard = []
for user in get_users_ezpz():
keyboard.append([InlineKeyboardButton(user, callback_data=f'{callback}!{user}')])
keyboard.append([InlineKeyboardButton('Back', callback_data='start')])
reply_markup = InlineKeyboardMarkup(keyboard)
context.bot.send_message(chat_id=update.effective_chat.id, text=text, reply_markup=reply_markup)
@restricted
def show_user(update, context, username):
keyboard = [[InlineKeyboardButton('Back', callback_data='show_user')]]
reply_markup = InlineKeyboardMarkup(keyboard)
context.bot.send_message(chat_id=update.effective_chat.id, text=f'Config for "{username}":', parse_mode='HTML')
config_list = get_config_ezpz(username)
ipv6_pattern = r'"server":"[0-9a-fA-F:]+"'
for config in config_list:
if config.endswith("-ipv6") or re.search(ipv6_pattern, config):
config_text = f"IPv6 Config:\n<pre>{config}</pre>"
else:
config_text = f"<pre>{config}</pre>"
qr_img = qrcode.make(config)
bio = io.BytesIO()
qr_img.save(bio, 'PNG')
bio.seek(0)
context.bot.send_photo(chat_id=update.effective_chat.id, photo=bio, caption=config_text, parse_mode='HTML', reply_markup=reply_markup)
@restricted
def delete_user(update, context, username):
keyboard = []
if len(get_users_ezpz()) == 1:
text = 'You cannot delete the only user.\nAt least one user is needed.\nCreate a new user, then delete this one.'
keyboard.append([InlineKeyboardButton('Back', callback_data='start')])
reply_markup = InlineKeyboardMarkup(keyboard)
context.bot.send_message(chat_id=update.effective_chat.id, text=text, reply_markup=reply_markup)
return
text = f'Are you sure to delete "{username}"?'
keyboard.append([InlineKeyboardButton('Delete', callback_data=f'approve_delete!{username}')])
keyboard.append([InlineKeyboardButton('Cancel', callback_data='delete_user')])
reply_markup = InlineKeyboardMarkup(keyboard)
context.bot.send_message(chat_id=update.effective_chat.id, text=text, reply_markup=reply_markup)
@restricted
def add_user(update, context):
text = 'Enter the username:'
keyboard = []
keyboard.append([InlineKeyboardButton('Cancel', callback_data='cancel')])
reply_markup = InlineKeyboardMarkup(keyboard)
context.user_data['expected_input'] = 'username'
context.bot.send_message(chat_id=update.effective_chat.id, text=text, reply_markup=reply_markup)
@restricted
def approve_delete(update, context, username):
delete_user_ezpz(username)
text = f'User {username} has been deleted.'
keyboard = []
keyboard.append([InlineKeyboardButton('Back', callback_data='start')])
reply_markup = InlineKeyboardMarkup(keyboard)
context.bot.send_message(chat_id=update.effective_chat.id, text=text, reply_markup=reply_markup)
@restricted
def cancel(update, context):
if 'expected_input' in context.user_data:
del context.user_data['expected_input']
start(update, context)
@restricted
def button(update, context):
query = update.callback_query
query.answer()
response = query.data.split('!')
if len(response) == 1:
if response[0] == 'start':
start(update, context)
elif response[0] == 'cancel':
cancel(update, context)
elif response[0] == 'show_user':
users_list(update, context, 'Select user to view config:', 'show_user')
elif response[0] == 'delete_user':
users_list(update, context, 'Select user to delete:', 'delete_user')
elif response[0] == 'add_user':
add_user(update, context)
else:
context.bot.send_message(chat_id=update.effective_chat.id, text='Button pressed: {}'.format(response[0]))
if len(response) > 1:
if response[0] == 'show_user':
show_user(update, context, response[1])
if response[0] == 'delete_user':
delete_user(update, context, response[1])
if response[0] == 'approve_delete':
approve_delete(update, context, response[1])
@restricted
def user_input(update, context):
if 'expected_input' in context.user_data:
expected_input = context.user_data['expected_input']
del context.user_data['expected_input']
if expected_input == 'username':
username = update.message.text
if username in get_users_ezpz():
update.message.reply_text(f'User "{username}" exists, try another username.')
add_user(update, context)
return
if not username_regex.match(username):
update.message.reply_text('Username can only contains A-Z, a-z and 0-9, try another username.')
add_user(update, context)
return
add_user_ezpz(username)
update.message.reply_text(f'User "{username}" is created.')
show_user(update, context, username)
start_handler = CommandHandler('start', start)
button_handler = CallbackQueryHandler(button)
updater.dispatcher.add_handler(start_handler)
updater.dispatcher.add_handler(button_handler)
updater.dispatcher.add_handler(MessageHandler(Filters.text & ~Filters.command, user_input))
updater.start_polling()
updater.idle()