-
Notifications
You must be signed in to change notification settings - Fork 0
/
selfbot.py
184 lines (154 loc) · 6.95 KB
/
selfbot.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
import asyncio
import datetime
import discord
import logging
import os
import traceback
from cogs.utils.helper import edit
from cogs.utils.save import check_existence, read_config, read_log
from collections import Counter
from discord.ext import commands
check_existence('quickcmds')
check_existence('commands')
# Logging
log = logging.getLogger('LOG')
log.setLevel(logging.INFO)
fileFormatter = logging.Formatter('%(asctime)s [%(levelname)s] %(message)s', '%Y-%m-%d %H:%M:%S')
consoleFormatter = logging.Formatter('%(asctime)s [%(levelname)s] %(message)s', '%H:%M:%S')
selfFile = logging.FileHandler(filename='Logs/SelfBot/SelfBot' + datetime.datetime.now().strftime("%Y-%m-%d") + '.log', encoding='utf-8', mode='a')
selfFile.setFormatter(fileFormatter)
log.addHandler(selfFile)
selfConsole = logging.StreamHandler()
selfConsole.setFormatter(consoleFormatter)
log.addHandler(selfConsole)
logger = logging.getLogger('discord')
logger.setLevel(logging.INFO)
discordFile = logging.FileHandler(filename='Logs/Discord/Discord' + datetime.datetime.now().strftime("%Y-%m-%d") + '.log', encoding='utf-8', mode='a')
discordFile.setFormatter(fileFormatter)
logger.addHandler(discordFile)
discordConsole = logging.StreamHandler()
discordConsole.setLevel(logging.ERROR)
discordConsole.setFormatter(consoleFormatter)
logger.addHandler(discordConsole)
bot = commands.Bot(command_prefix=read_config('prefix'), description='''TKL-Projects' Selfbot''', self_bot=True)
# Startup
@bot.event
async def on_ready():
log.info('------')
log.info('Logged in as')
log.info(str(bot.user) + '(' + str(bot.user.id) + ')')
log.info('------')
if not hasattr(bot, 'uptime'):
bot.uptime = datetime.datetime.utcnow()
if not hasattr(bot, 'message_count'):
bot.message_count = 0
if not hasattr(bot, 'commands_triggered'):
bot.commands_triggered = Counter()
if not hasattr(bot, 'socket_stats'):
bot.socket_stats = Counter()
if not hasattr(bot, 'icount'):
bot.icount = 0
if not hasattr(bot, 'mention_count'):
bot.mention_count = 0
if not hasattr(bot, 'mention_count_name'):
bot.mention_count_name = 0
bot.prefix = read_config('prefix')
bot.gamename = read_config('gamestatus')
bot.mal_un = read_config('mal_username')
bot.mal_pw = read_config('mal_password')
bot.mention_channel = read_config('log_channel')
bot.webhook_token = read_config('webhook_token')
bot.google_api_key = read_config('google_api_key')
bot.custom_search_engine = read_config('custom_search_engine')
bot.embed_color = read_config('embed_color')
if bot.mal_un == '' or bot.mal_un is None or bot.mal_pw == '' or bot.mal_pw is None:
bot.unload_extension("cogs.mal")
log.warning("Uloaded Mal commands because of missing credentials \n Check your config.json..")
if bot.google_api_key == '' or bot.google_api_key is None or bot.custom_search_engine == '' or bot.custom_search_engine is None:
bot.remove_command("i")
log.warning("Uloaded Google Image command because of missing key/search engine String \n Check your config.json..")
if bot.mention_channel is None or bot.webhook_token == '' or bot.webhook_token is None:
bot.unload_extension("cogs.msg")
log.warning("Uloaded Mention logger because of missing log channel or webhook token. \n Check your config.json..")
bot.setlog = read_config('setlog')
bot.log_guild = read_log('guild')
bot.log_block_user = read_log('block-user')
bot.log_block_channel = read_log('block-channel')
bot.log_key = read_log('key')
bot.log_block_key = read_log('block-key')
bot.log_channel = read_log('channel')
if os.path.isfile('restart.txt'):
with open('restart.txt', 'r') as re:
await bot.get_channel(int(re.readline())).send(':wave: Back Running!', delete_after=2)
os.remove('restart.txt')
# Command Errors
@bot.event
async def on_command_error(ctx, error):
if isinstance(error, commands.NoPrivateMessage):
await edit(ctx, content='\N{HEAVY EXCLAMATION MARK SYMBOL} Only usable on Servers', ttl=5)
elif isinstance(error, commands.CheckFailure):
await edit(ctx, content='\N{HEAVY EXCLAMATION MARK SYMBOL} No Permissions to use this command', ttl=5)
elif isinstance(error, commands.CommandInvokeError):
log.error('In {0.command.qualified_name}:\n{1}'.format(ctx, ''.join(traceback.format_list(traceback.extract_tb(error.original.__traceback__)))))
log.error('{0.__class__.__name__}: {0}'.format(error.original))
# Increase use count and log to logger
# @bot.before_invoke
# async def before_invoke(ctx):
# bot.commands_triggered[ctx.command.qualified_name] += 1
# if isinstance(ctx.channel, discord.DMChannel):
# destination = f'PM with {ctx.channel.recipient}'
# elif isinstance(ctx.channel, discord.GroupChannel):
# destination = f'Group {ctx.channel}'
# else:
# destination = f'#{ctx.channel.name},({ctx.guild.name})'
# log.info('In {}: {}'.format(destination, ctx.message.content.strip(ctx.prefix)))
@bot.event
async def on_message(message):
if bot.is_ready():
# Increase Message Count
if hasattr(bot, 'message_count'):
bot.message_count += 1
# Increase User Message Count
if message.author.id == bot.user.id:
if hasattr(bot, 'icount'):
bot.icount += 1
await bot.process_commands(message)
@bot.event
async def on_socket_response(msg):
if bot.is_ready():
bot.socket_stats[msg.get('t')] += 1
# Gamestatus
async def status(bot):
gamename = ''
while not bot.is_closed():
if bot.is_ready():
if bot.gamename:
if bot.gamename != gamename:
log.info('Game changed to playing {}'.format(bot.gamename))
gamename = bot.gamename
game = discord.Game(name=bot.gamename)
else:
if bot.gamename != gamename:
log.info('Removed Game Status')
gamename = bot.gamename
game = None
await bot.change_presence(game=game, status=discord.Status.invisible, afk=True)
await asyncio.sleep(20)
# Load Extensions / Logger / Runbot
if __name__ == '__main__':
try:
bot.load_extension("cogs.cogs")
except Exception as e:
log.error('Failed to load extension cogs.cogs\n{}: {}'.format(type(e).__name__, e))
log.error("Bot automatically shut down. Cogs extension is needed!")
with open('quit.txt', 'w') as re:
re.write('quit')
os._exit(0)
for extension in os.listdir("cogs"):
if extension.endswith('.py') and not extension == "cogs.py":
try:
bot.load_extension("cogs." + extension.rstrip(".py"))
except Exception as e:
log.warning('Failed to load extension {}\n{}: {}'.format(extension, type(e).__name__, e))
bot.loop.create_task(status(bot))
bot.run(read_config('token'), bot=False)