-
Notifications
You must be signed in to change notification settings - Fork 128
Expand file tree
/
Copy pathInfo.py
More file actions
400 lines (381 loc) · 16.8 KB
/
Info.py
File metadata and controls
400 lines (381 loc) · 16.8 KB
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
import asyncio
import time
import steam
import steamapi
import discord
import datetime
import texttable
import wolframalpha
import copy
from discord.ext import commands
from utils import checks
from steam.steamid import SteamId
from steam.steamprofile import SteamProfile
from steam.steamaccountuniverse import SteamAccountUniverse
from steam.steamaccounttype import SteamAccountType
from mods.cog import Cog
cool = "```xl\n{0}\n```"
code = "```py\n{0}\n```"
diff = "```diff\n{0}\n```"
start_time = time.time()
wa = wolframalpha.Client('')
class Info(Cog):
def __init__(self, bot):
super().__init__(bot)
self.cursor = bot.mysql.cursor
self.discord_path = bot.path.discord
self.files_path = bot.path.files
self.bytes_download = bot.bytes_download
self.truncate = bot.truncate
self.get_json = bot.get_json
@commands.command(pass_context=True)
async def help(self, ctx, *, cmd:str=None):
"""help"""
if cmd and cmd in self.bot.commands:
nctx = copy.copy(ctx)
nctx.command = self.bot.commands[cmd]
await self.bot.command_help(nctx)
else:
await self.bot.say("{0}: https://facepunch.org/help".format(ctx.message.author.mention))
@commands.command(pass_context=True, no_pm=True)
async def server(self, ctx):
"""server info"""
try:
server = ctx.message.server
online = str(sum(1 for member in server.members if member.status == discord.Status.online or member.status == discord.Status.idle))
msg = ':desktop: **{0}** Information:\n'.format(server)
msg += ":id:: `{0}`\n".format(server.id)
msg += ":map: Region: __{0}__\n".format(str(server.region))
msg += ":busts_in_silhouette: Users: **{0}**/{1}\n".format(online, len(server.members))
msg += ":calendar_spiral: Created: `{0}`\n".format(str(server.created_at.strftime('%m/%d/%Y %H:%M:%S')))
msg += ":bust_in_silhouette: Owner: `{0}`\n".format(server.owner)
if server.verification_level:
msg += ":exclamation: Verification Level: **{0}**\n".format(str(server.verification_level).upper())
msg += ":speech_balloon: Default Channel: {0}\n".format(server.default_channel.mention)
if ctx.message.server.afk_channel:
msg += ":telephone_receiver: AFK Channel: {0}\n".format(ctx.message.server.afk_channel.mention)
msg += ":keyboard: AFK Timeout: {0} minutes\n".format(str(int(int(ctx.message.server.afk_timeout)/60)))
voice = 0
text = 0
for channel in server.channels:
if channel.type == discord.ChannelType.text:
text += 1
elif channel.type == discord.ChannelType.voice:
voice += 1
msg += ":arrow_forward: Channels: `{0}` Text | `{1}` Voice | **{2}** Total\n".format(text, voice, str(len(server.channels)))
msg += ":arrow_forward: Roles: `{0}`\n".format(str(len(server.roles)))
if len(server.emojis) != 0:
emotes = ""
for emote in server.emojis:
emotes += "<:{0}:{1}>".format(emote.name, emote.id)
msg += ":arrow_forward: Emotes: {0}\n".format(emotes)
msg += ':art: Server Icon: {0}'.format(server.icon_url)
await self.truncate(ctx.message.channel, msg)
except Exception as e:
await self.bot.say(e)
@commands.command()
async def invite(self):
"""returns invite link for bot"""
msg = diff.format('+ Invite me to your server with this url')
msg += '<https://discordapp.com/oauth2/authorize?client_id=170903265565736960&scope=bot&permissions=8>'
msg += diff.format("- Uncheck Administrator permission if you do not need Admin/Moderation commands.\n+ + +\n! Join NotSoSuper\'s Dev for any questions or help with the bot and free emotes!")
msg += 'https://discord.gg/QQENx4f'
await self.bot.say(msg)
@commands.command(pass_context=True, aliases=['userinfo', 'user'])
async def info(self, ctx, *users:discord.User):
"""Returns inputed users info."""
try:
if len(users) == 0:
users = [ctx.message.author]
server = ctx.message.server
for user in users:
seen_on_self = True if user == self.bot.user else False
seen_on = set([member.server.name for member in self.bot.get_all_members() if member == user and member.server != server]) if user != self.bot.user else 'ALL OF THEM'
msg = """:bust_in_silhouette: **{0}** Information:
:id:: `{1}`
:robot: Bot: {2}
:inbox_tray: Server Join Date: __{3}__
:globe_with_meridians: Discord Join Date: __{4}__
:information_source: Status: **{5}**{6}{7}
:eyes: Seen On (*Shard #{8}*): **{9}** servers **=>** `{10}`
:shield: Roles: `{11}`
:art: Avatar: {12}
""".format(user, user.id, 'Yes' if user.bot else 'No', user.joined_at.strftime('%m/%d/%Y %H:%M:%S'), user.created_at.strftime('%m/%d/%Y %H:%M:%S'), str(user.status).upper(), '\n:joystick: Playing: \"{0}\"'.format(user.game) if user.game else '', '\n:microphone2: Voice Channel: {0}'.format(user.voice_channel.name) if user.voice_channel else '', self.bot.shard_id, len(seen_on) if not seen_on_self else '999999999...', ", ".join(seen_on) if len(seen_on) >= 1 and not seen_on_self else 'none other than here ;-;' if not seen_on_self else 'discord mainframe', ", ".join([role.name for role in user.roles]), user.avatar_url)
await self.truncate(ctx.message.channel, msg)
except Exception as e:
await self.bot.say(str(e))
@commands.command(pass_context=True)
async def avatar(self, ctx, *users:discord.User):
"""Returns the input users avatar."""
if len(users) == 0:
users = [ctx.message.author]
for user in users:
await self.bot.say("`{0}`'s avatar is: {1}".format(user, user.avatar_url))
@commands.command(name='time', pass_context=True)
async def _time(self, ctx):
"""Returns bots date and time."""
await self.bot.say('Date is: **{0}**\nTime is: **{1}**'.format(time.strftime("%A, %B %d, %Y"), time.strftime("%I:%M:%S %p")))
@commands.command(pass_context=True)
async def uptime(self, ctx):
"""How long have I been up/online?"""
seconds = time.time() - start_time
m, s = divmod(seconds, 60)
h, m = divmod(m, 60)
d, h = divmod(h, 24)
w, d = divmod(d, 7)
if s != 0:
msg = '**{0}** seconds{1}.'.format(int(s), ' :frowning:' if m == 0 else '')
if m != 0:
e = ' :slight_frown:.' if h == 0 else '.'
msg = ' : **{0}** minutes : '.format(int(m)) + msg.replace('.', '') + e
if h != 0:
e = ' :slight_smile:.' if d == 0 else '.'
msg = ' : **{0}** hours'.format(int(h)) + msg.replace('.', '') + e
if d != 0:
e = ' :smiley:.' if w == 0 else '.'
msg = ' : **{0}** days'.format(int(d)) + msg.replace('.', '').replace(':slight_smile:', '') + e
if w != 0:
msg = ' : **{0}** weeks {1}'.format(int(w)) + msg.replace('.', '') + ' :joy: :joy: :joy: :joy: :joy: :joy: :joy: :joy: :joy: :joy:.'
if m == 0:
msg = ' '+msg
else:
msg = msg[2:]
await self.bot.say(":clock4: Online for{0}".format(msg))
#https://github.com/notcake/hal9000.plugins.private/tree/master/steamapi
steamapi.core.APIConnection(api_key="")
@commands.command(pass_context=True)
async def steam(self, ctx, stem:str):
"""Returns Steam information of inputed SteamID/Custom URL/Etc"""
try:
steamId = None
steamProfile = None
if steamId is None:
steamId = SteamId.fromSteamId("{0}".format(stem))
if steamId is None:
steamId = SteamId.fromSteamId3(stem)
if steamId is None:
steamId = SteamId.fromSteamId64(stem)
if steamId is None:
steamId = SteamId.fromProfileUrl(stem)
if steamId is None:
steamProfile = SteamProfile.fromCustomProfileUrl(stem)
if steamProfile is None:
await self.bot.say("bad steam id")
return
steamId = steamProfile.steamId
else:
steamProfile = SteamProfile.fromSteamId(steamId)
msg = ""
if steamProfile is not None and \
steamProfile.displayName is not None:
msg += "Username: " + steamProfile.displayName + "\n"
steam_user = steamapi.user.SteamUser(steamId.steamId64)
if steam_user.state == 0:
msg += "Status: Offline\n"
elif steam_user.state == 1:
msg += "Status: Online\n"
elif steam_user.state == 2:
msg += "Status: Busy\n"
elif steam_user.state == 3:
msg += "Status: Away\n"
elif steam_user.state == 4:
msg += "Status: Snooze\n"
elif steam_user.state == 5:
msg += "Status: Looking to Trade\n"
elif steam_user.state == 6:
msg += "Status: Looking to Play\n"
msg += "Avatar: \"{0}\"\n".format(str(steam_user.avatar_full))
if steam_user.level != None:
msg += "Level: {0}\n".format(str(steam_user.level))
if steam_user.currently_playing != None:
msg += "Currently Playing: {0}\n".format(str(steam_user.currently_playing))
elif steam_user.recently_played != []:
msg += "Recently Played: {0}\n".format(str(steam_user.recently_played).replace("<SteamApp ", "").replace(">", "").replace("[", "").replace("]", ""))
msg += "Created: {0}\n".format(str(steam_user.time_created))
msg += "Steam ID: " + steamId.steamId + "\n"
msg += "Steam ID 64: " + str(steamId.steamId64) + "\n"
msg += "Permanent Link: \"" + steamId.profileUrl + "\"\n"
if steamProfile != None and \
steamProfile.customProfileUrl != None:
msg += "Link: \"" + steamProfile.customProfileUrl + "\"\n"
msg = msg.replace("'", "′")
await self.bot.say(cool.format(msg))
except Exception as e:
await self.bot.say(code.format(type(e).__name__ + ': ' + str(e)))
@commands.command(pass_context=True)
async def cinfo(self, ctx):
"""Return Channel Information"""
msg = "Channel Name: {0}\n".format(ctx.message.channel.name)
msg += "Channel ID: {0}\n".format(ctx.message.channel.id)
msg += "Channel Created: {0}\n".format(ctx.message.channel.created_at)
await self.bot.say(cool.format(msg))
@commands.command(pass_context=True, alias='binfo')
async def botinfo(self, ctx):
"""Bot Information"""
msg = "NotSoBot\n"
msg += "Creator: @NotSoSuper#0001\n"
msg += "Creator Steam: http://steamcommunity.com/id/suck\n"
msg += "Library: Discord.py\n"
msg += "Code: https://github.com/NotSoSuper/notsosuper_bot/\n"
await self.bot.say(cool.format(msg))
@commands.command()
async def botc(self, *, text:str):
txt = text.split()
msg = "https://github.com/NotSoSuper/notsosuper_bot/search?q={0}".format("+".join(txt))
await self.bot.say(msg)
@commands.command(pass_context=True)
@commands.cooldown(1, 120, commands.BucketType.server)
async def stats(self, ctx):
try:
sql = "SELECT `messages_id` FROM `messages` WHERE action=0 ORDER BY `messages_id` DESC LIMIT 1"
message_count = self.cursor.execute(sql).fetchall()[0]['messages_id']
sql = "SELECT COUNT(`action`) FROM `messages` WHERE action=1"
message_delete_count = self.cursor.execute(sql).fetchall()[0]['COUNT(`action`)']
sql = "SELECT COUNT(`action`) FROM `messages` WHERE action=2"
message_edit_count = self.cursor.execute(sql).fetchall()[0]['COUNT(`action`)']
sql = "SELECT COUNT(`command`) FROM `command_logs`"
command_count = self.cursor.execute(sql).fetchall()[0]['COUNT(`command`)']
sql = 'SELECT COUNT(`command`) FROM `command_logs` WHERE server={0}'.format(ctx.message.server.id)
server_command_count = self.cursor.execute(sql).fetchall()[0]['COUNT(`command`)']
sql = "SELECT `command`, COUNT(`command`) AS magnitude FROM `command_logs` GROUP BY `command` ORDER BY magnitude DESC LIMIT 6"
command_magnitude = self.cursor.execute(sql).fetchall()
sql = 'SELECT `server`, `server_name`, COUNT(`command`) AS magnitude FROM `command_logs` GROUP BY `server` ORDER BY magnitude DESC LIMIT 5'
server_magnitude = self.cursor.execute(sql).fetchall()
sql = 'SELECT * FROM `stats`'
results = self.cursor.execute(sql).fetchall()
server_list = []
for shard in results:
server_list.append([shard['largest_member_server_name'], shard['largest_member_server']])
count = 0
counts = []
for x in server_list:
count = int(x[1])
counts.append(count)
max_ = int(max(counts))
max_index = int(counts.index(max_))
biggest_server_name = server_list[max_index][0]
biggest_server_count = server_list[max_index][1]
magnitude_table = texttable.Texttable(max_width=90)
# magnitude_table.set_cols_width([90, 90])
for x in server_magnitude:
magnitude_table.add_rows([["Server", "Commands"], [x['server_name'][:25], x['magnitude']]])
magnitude_msg = magnitude_table.draw()
command_table = texttable.Texttable(max_width=90)
# command_table.set_cols_width([90, 90])
for x in command_magnitude:
command_table.add_rows([["Command", "Count"], [x['command'], x['magnitude']]])
command_msg = command_table.draw()
command_stats_msg = magnitude_msg+'\n\n'+command_msg
text_channels = 0
voice_channels = 0
for shard in results:
text_channels += int(shard['text_channels'])
voice_channels += int(shard['voice_channels'])
user_count = 0
unique_users = 0
server_count = 0
for shard in results:
server_count += int(shard['servers'])
user_count += int(shard['users'])
unique_users += int(shard['unique_users'])
seconds = time.time() - start_time
m, s = divmod(seconds, 60)
h, m = divmod(m, 60)
d, h = divmod(h, 24)
w, d = divmod(d, 7)
if s != 0:
uptime = '**{0}** seconds.'.format(int(s))
if m != 0:
uptime = ' : **{0}** minutes : '.format(int(m)) + uptime
if h != 0:
uptime = ' : **{0}** hours'.format(int(h)) + uptime
if d != 0:
uptime = ' : **{0}** days'.format(int(d)) + uptime
if w != 0:
uptime = ' : **{0}** weeks {1}'.format(int(w)) + uptime
if m == 0:
uptime = ' '+uptime
else:
uptime = uptime[2:]
msg = ":bar_chart: **User/Bot Statistics**\n"
msg += "> Uptime: "+uptime+"\n"
msg += "> On **{0}** Servers\n".format(server_count)
msg += "> **{0}** Text channels | **{1}** Voice\n".format(text_channels, voice_channels)
msg += "> Serving **{0}** Users\n".format(user_count)
msg += "> Unique Users: **{0}**\n".format(unique_users)
msg += "> Who've messaged **{0}** times ".format(message_count)
msg += "where **{0}** of them have been edited ".format(message_edit_count)
msg += "and **{0}** deleted.\n".format(message_delete_count)
msg += "> In total **{0}** commands have been called, __{1}__ from this server.\n".format(command_count, server_command_count)
msg += ':keyboard: **Command Statistics**\n'
msg += "```\n{0}```".format(command_stats_msg)
msg += ':desktop: **Server Statistics**\n'
msg += '> Largest Server: **{0}** (Users: **{1}**)\n'.format(biggest_server_name, biggest_server_count)
msg += '> Most used on: **{0}** (Commands: **{1}**/{2})\n'.format(server_magnitude[0]['server_name'], server_magnitude[0]['magnitude'], command_count)
# msg += '> Server with most messages: *{0}* (Messages: **{1}/{2}**)'
await self.bot.say(msg)
except Exception as e:
print(e)
@commands.command(pass_context=True, aliases=['so', 'stack', 'csearch', 'stacko', 'stackoverflow'])
async def sof(self, ctx, *, text:str):
try:
api = 'https://api.stackexchange.com/2.2/search?order=desc&sort=votes&site=stackoverflow&intitle={0}'.format(text)
r = await self.get_json(api)
q_c = len(r['items'])
if q_c == 0:
api = 'https://api.stackexchange.com/2.2/similar?order=desc&sort=votes&site=stackoverflow&title={0}'.format(text)
r = await self.get_json(api)
q_c = len(r['items'])
if q_c == 0:
api = 'https://api.stackexchange.com/2.2/search/excerpts?order=desc&sort=votes&site=stackoverflow&q={0}'.format(text)
r = await self.get_json(api)
q_c = len(r['items'])
if q_c == 0:
api = 'https://api.stackexchange.com/2.2/search/advanced?order=desc&sort=votes&site=stackoverflow&q={0}'.format(text)
r = await self.get_json(api)
q_c = len(r['items'])
if q_c == 0:
await self.bot.say(":warning: `No results found on` <https://stackoverflow.com>")
return
if q_c > 5:
msg = "**First 5 Results For: `{0}`**\n".format(text)
else:
msg = "**First {0} Results For: `{1}`**\n".format(str(q_c), text)
count = 0
for s in r['items']:
if q_c > 5:
if count == 5:
break
else:
if count == q_c:
break
epoch = int(s['creation_date'])
date = str(datetime.datetime.fromtimestamp(epoch).strftime('%m-%d-%Y'))
msg += "```xl\nTitle: {0}\nLink: {1}\nCreation Date: {2}\nScore: {3}\nViews: {4}\nIs-Answered: {5}\nAnswer Count: {6}```".format(s['title'], s['link'].replace("http://", "").replace("https://", "").replace("www.", ""), date, s['score'], s['view_count'], s['is_answered'], s['answer_count'])
count += 1
await self.bot.say(msg)
except Exception as e:
await self.bot.say(code.format(e))
@commands.command(aliases=['wa', 'alpha', 'walpha'])
@commands.cooldown(1, 5)
async def wolframalpha(self, *, q:str):
result = wa.query(q)
if result['@success'] == 'false':
await self.bot.say(':warning: `No results found on` <https://wolframalpha.com>')
else:
msg = ''
for pod in result.pods:
if int(pod['@numsubpods']) > 1:
for sub in pod['subpod']:
subpod_text = sub['plaintext']
if subpod_text is None:
continue
msg += '**{0}**: `{1}`\n'.format(pod['@title'], subpod_text)
else:
subpod_text = pod['subpod']['plaintext']
if subpod_text is None:
continue
msg += '**{0}**: `{1}`\n'.format(pod['@title'], subpod_text)
await self.bot.say(msg)
def setup(bot):
bot.add_cog(Info(bot))