1
0
mirror of https://github.com/MrDetonia/Maki.git synced 2024-09-21 03:09:16 -04:00
Maki/bot.py

373 lines
13 KiB
Python
Raw Normal View History

2016-03-30 16:28:59 -04:00
# Maki
# ----
# Discord bot by MrDetonia
#
# Copyright 2016 Zac Herd
# Licensed under BSD 3-clause License, see LICENSE.md for more info
2016-03-30 16:28:59 -04:00
# IMPORTS
import discord
import asyncio
import os
import io
import urllib3
from html.parser import HTMLParser
import sys
2016-05-25 08:10:24 -04:00
import shlex
import subprocess
2016-03-30 16:28:59 -04:00
import time
import datetime
import random
import re
import json
2016-04-19 10:14:11 -04:00
import logging
import markov
2016-03-30 16:28:59 -04:00
# file in this directory called "secret.py" should contain these variables
from secret import token, lfmkey
2016-03-30 16:28:59 -04:00
# CONFIGURATION
# bot version
2016-12-01 15:30:50 -05:00
version = "v0.17.3"
2016-03-30 16:28:59 -04:00
# text shown by .help command
helptext = """I am a Discord bot written in Python
2016-03-30 16:28:59 -04:00
My commands are:
```
.help - displays this text
.info - prints bot info
.upskirt - show a link to my source
2016-03-30 16:28:59 -04:00
.whoami - displays your user info
.whois <user> - displays another user's info
2016-03-30 16:28:59 -04:00
.seen <user> - prints when user was last seen
.say <msg> - say something
2016-04-08 14:15:03 -04:00
.sayy <msg> - say something a e s t h e t i c a l l y
.markov [<user>] - generate markov chain over chat history for you or another user
.roll <x>d<y> - roll x number of y sided dice
2016-05-25 08:10:24 -04:00
.qr <msg> - generate a QR code
.np [<user>] - fetch now playing from last.fm for you or a specific username
2016-03-30 16:28:59 -04:00
```"""
# IDs of admin users
admins = ['116883900688629761']
# GLOBALS
2016-03-30 16:28:59 -04:00
# log of users' last messages and timestamps
history = {}
if os.path.isfile('hist.json'):
with open('hist.json', 'r') as fp:
history = json.load(fp)
2016-03-30 16:28:59 -04:00
# this instance of the Discord client
2016-03-30 16:28:59 -04:00
client = discord.Client()
2016-04-19 10:14:11 -04:00
# logging setup
logger = logging.getLogger('discord')
logger.setLevel(logging.DEBUG)
handler = logging.FileHandler(filename='discord.log', encoding='utf-8', mode='w')
handler.setFormatter(logging.Formatter('%(asctime)s:%(levelname)s:%(name)s: %(message)s'))
logger.addHandler(handler)
2016-03-30 16:28:59 -04:00
# init urllib3 pool manager
http = urllib3.PoolManager()
2016-03-30 16:28:59 -04:00
# FUNCTIONS
# converts a datetime to a string
def strfromdt(dt):
return dt.strftime('%Y-%m-%d %H:%M:%S')
# converts a timestamp to a datetime
def dtfromts(ts):
return datetime.datetime.fromtimestamp(ts)
# gets now playing information from last.fm
def lastfm_np(username):
# sanitise username
cleanusername = re.sub(r'[^a-zA-Z0-9_-]', '', username, 0)
# fetch xml from last.fm
r = http.request("GET", "https://ws.audioscrobbler.com/2.0/?method=user.getRecentTracks&user=" + cleanusername + "&limit=1&api_key=" + lfmkey)
if r.status != 200:
return "Couldn't get last.fm data for " + username
xml = r.data.decode('utf-8')
# un-fuck text
h = HTMLParser()
xml = h.unescape(xml)
# isolate fields
username = xml.split('" page="')[0].split('<recenttracks user="')[1]
artist = xml.split('</artist>')[0].split('>')[-1]
song = xml.split('</name>')[0].split('<name>')[1]
album = xml.split('</album>')[0].split('>')[-1]
# grammar
if album != "":
albumtext = "` from the album `" + album + "`"
else:
albumtext = "`"
if xml.find("track nowplaying=\"true\">") == -1:
nowplaying = " last listened"
else:
nowplaying = " is listening"
# construct string
return username + nowplaying + " to `" + song + "` by `" + artist + albumtext
2016-03-30 16:28:59 -04:00
# EVENT HANDLERS
# called when client ready
@client.event
@asyncio.coroutine
def on_ready():
# info on terminal
print('Connected')
print('User: ' + client.user.name)
print('ID: ' + client.user.id)
# set "Now Playing" to print version
game = discord.Game(name = version)
yield from client.change_presence(game=game)
2016-03-30 16:28:59 -04:00
# called when message received
@client.event
@asyncio.coroutine
def on_message(message):
2016-03-30 16:28:59 -04:00
# print messages to terminal for info
timestr = time.strftime('%Y-%m-%d-%H:%M:%S: ')
try:
print(timestr + message.server.name + ' ' + message.channel.name + ' ' + message.author.name + ': ' + message.content)
except AttributeError:
print(timestr + 'PRIV ' + message.author.name + ': ' + message.content)
# do not parse own messages or private messages
if message.author != client.user and type(message.channel) is not discord.PrivateChannel:
# response to send to channel
response = ''
2016-03-30 16:28:59 -04:00
# parse messages for commands
if message.content.startswith('.info'):
2016-03-30 16:28:59 -04:00
# print bot info
pyver = str(sys.version_info[0]) + '.' + str(sys.version_info[1]) + '.' + str(sys.version_info[2])
appinfo = yield from client.application_info()
response = 'I am ' + appinfo.name + ', a Discord bot by ' + appinfo.owner.name + ' | ' + version + ' | Python ' + pyver + ' | discord.py ' + discord.__version__
2016-03-30 16:28:59 -04:00
elif message.content.startswith('.help'):
# print command list
response = helptext
2016-03-30 16:28:59 -04:00
elif message.content.startswith('.upskirt'):
2016-03-30 16:28:59 -04:00
# link to source code
response = 'No, don\'t look at my pantsu! Baka! <https://gitla.in/MrDetonia/maki>'
2016-03-30 16:28:59 -04:00
elif message.content.startswith('.die'):
if message.author.id in admins:
# exit discord and kill bot
print('INFO: Accepting .die from ' + message.author.name)
run = False
yield from client.send_message(message.channel, 'But will I dream? ;_;')
yield from client.logout()
else:
# user not admin, refuse
response = 'Don\'t be so rude! >:('
2016-03-30 16:28:59 -04:00
elif message.content.startswith('.whoami'):
# show info about user
response = 'User: ' + message.author.name + ' ID: ' + message.author.id + ' Discriminator: ' + message.author.discriminator + '\nAccount Created: ' + strfromdt(message.author.created_at)
2016-03-30 16:28:59 -04:00
2016-04-08 14:15:03 -04:00
elif message.content.startswith('.whois '):
# show info about another user
tmp = message.content[7:]
user = message.server.get_member_named(tmp)
if user == None:
response = 'I can\'t find ' + tmp
else:
response = 'User: ' + user.name + ' ID: ' + user.id + ' Discriminator: ' + user.discriminator + '\nAccount Created: ' + strfromdt(user.created_at)
2016-04-08 14:15:03 -04:00
elif message.content.startswith('.seen '):
2016-03-30 16:28:59 -04:00
# print when user was last seen
try:
2016-12-01 15:30:50 -05:00
target = message.server.id + message.server.get_member_named(message.content[6:]).id
except AttributeError:
2016-12-01 15:30:50 -05:00
response = "I can't find that user!"
target = ""
2016-12-01 15:30:50 -05:00
if target in history and history[target][0] == message.server.id:
2016-03-30 16:28:59 -04:00
# user logged, print last message and time
2016-12-01 15:30:50 -05:00
response = 'user ' + message.content[6:] + ' was last seen saying "' + history[target][2] + '" at ' + strfromdt(dtfromts(history[target][1]))
elif message.content[6:] == 'Maki':
2016-03-31 07:08:23 -04:00
# Maki doesn't need to be .seen
response = 'I\'m right here!'
2016-03-30 16:28:59 -04:00
else:
# user not logged
response = "user not seen yet"
2016-03-30 16:28:59 -04:00
2016-04-08 14:15:03 -04:00
elif message.content.startswith('.say '):
# delete calling message for effect
yield from client.delete_message(message)
# echo message
response = message.content[5:]
2016-04-08 14:15:03 -04:00
elif message.content.startswith('.sayy '):
# delete calling message
yield from client.delete_message(message)
# echo aesthetic message
response = ' '.join(message.content[6:])
2016-04-08 14:15:03 -04:00
elif message.content.startswith('.markov'):
# send typing signal to discord
for attempt in range(5):
try:
yield from client.send_typing(message.channel)
except discord.errors.HTTPException:
continue
else:
break
else:
print('ERROR: Failed to send typing signal to discord after 5 attempts')
# generate a markov chain sentence based on the user's chat history
tmp = message.content[8:]
target = ''
# if no user provided, markov the author
if tmp == '':
2016-12-01 15:13:45 -05:00
target = message.server.id + '-' + message.author.id
else:
try:
2016-12-01 15:13:45 -05:00
target = message.server.id + '-' + message.server.get_member_named(tmp).id
except AttributeError:
response = "I can't find that user!"
if os.path.isfile('./markovs/' + target) and target != '':
2016-12-01 15:13:45 -05:00
mc = markov.Markov(open('./markovs/' + target))
response = mc.generate_text(random.randint(20,40))
elif target != '':
response = "I haven't seen them speak yet!"
elif message.content.startswith('.roll '):
# DnD style dice roll
tmp = message.content[6:]
#check syntax is valid
pattern = re.compile('^([0-9]+)d([0-9]+)$')
if pattern.match(tmp):
# extract numbers
nums = [int(s) for s in re.findall(r'\d+', message.content)]
# limit range
2016-10-12 05:56:33 -04:00
if nums[0] < 1: nums[0] = 1
if nums[1] < 1: nums[1] = 1
if nums[0] > 100: nums[0] = 100
if nums[1] > 1000000: nums[1] = 1000000
# roll dice multiple times and sum
rollsum = 0
for i in range(nums[0]):
rollsum += random.randint(1, nums[1])
2016-10-12 05:56:33 -04:00
response = 'Using ' + str(nums[0]) + 'd' + str(nums[1]) + ' you rolled: ' + str(rollsum)
else:
response = 'you did it wrong!'
elif message.content.startswith('.np'):
2016-12-01 15:30:50 -05:00
# show now playing info from last.fm
tmp = message.content[4:]
if tmp == '':
response = lastfm_np(message.author.name)
else:
response = lastfm_np(tmp)
2016-05-25 08:10:24 -04:00
elif message.content.startswith('.qr '):
# generate QR code - DANGEROUS, CHECK CAREFULLY HERE
tmp = message.content[4:]
# send typing signal to discord
for attempt in range(5):
try:
yield from client.send_typing(message.channel)
except discord.errors.HTTPException:
continue
else:
break
else:
print('ERROR: Failed to send typing signal to discord after 5 attempts')
# make sure there are no nasty characters
msg = re.sub(r'[^a-zA-Z0-9_ -]', '', tmp, 0)
# echo message
cmd = 'echo "\'' + msg + '\'"'
args = shlex.split(cmd)
echo = subprocess.Popen(args, stdout=subprocess.PIPE)
# generate QR code
cmd = 'qrencode -t png -o -'
args = shlex.split(cmd)
qr = subprocess.Popen(args, stdin=echo.stdout, stdout=subprocess.PIPE)
# upload file with curl and get URL
cmd = 'curl -F upload=@- https://w1r3.net'
args = shlex.split(cmd)
out = subprocess.check_output(args, stdin=qr.stdout)
# run piped commands
echo.wait()
# send response
response = out.decode('utf-8').strip()
# Stuff that happens when message is not a bot command:
else:
# log each message against users
if message.content != "":
2016-12-01 15:30:50 -05:00
history[message.server.id + message.author.id] = (message.server.id, time.time(), message.content)
with open('hist.json', 'w') as fp:
json.dump(history, fp)
# log user messages for markov chains, ignoring messages with certain substrings
filters = ['`', 'http://', 'https://']
if not any(x in message.content for x in filters):
try:
with open('./markovs/' + message.server.id + '-' + message.author.id, 'a') as fp:
fp.write('\n' + message.content)
except PermissionError:
pass
# someone noticed me! <3
if bool(re.search(r'\b[Mm][Aa][Kk][Ii]\b', message.content)):
yield from client.add_reaction(message, '\N{BLACK HEART SUIT}')
# send response to channel if needed:
if response is not '':
for attempt in range(5):
try:
yield from client.send_message(message.channel, response)
except discord.errors.HTTPException:
continue
else:
break
else:
print('ERROR: Failed to send message to discord after 5 attempts')
2016-03-30 16:28:59 -04:00
# Run the client
client.run(token)
# finish execution
exit(0)