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-05-05 16:27:00 -04:00
|
|
|
|
2016-03-30 16:28:59 -04:00
|
|
|
# IMPORTS
|
|
|
|
import discord
|
|
|
|
import asyncio
|
2016-03-30 18:33:53 -04:00
|
|
|
import os
|
2016-04-29 05:20:42 -04:00
|
|
|
import io
|
|
|
|
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
|
2016-04-03 17:19:10 -04:00
|
|
|
import random
|
2016-05-05 16:27:00 -04:00
|
|
|
import re
|
2016-03-30 18:33:53 -04:00
|
|
|
import json
|
2016-04-19 10:14:11 -04:00
|
|
|
import logging
|
|
|
|
|
2016-04-03 11:03:40 -04:00
|
|
|
import markov
|
2016-03-30 16:28:59 -04:00
|
|
|
|
|
|
|
# file in this directory called "secret.py" should contain these variables
|
2016-04-24 16:15:40 -04:00
|
|
|
from secret import token
|
2016-03-30 16:28:59 -04:00
|
|
|
|
|
|
|
|
|
|
|
# CONFIGURATION
|
|
|
|
|
|
|
|
# reported bot name
|
|
|
|
name = "Maki"
|
|
|
|
|
|
|
|
# bot version
|
2016-07-04 06:53:01 -04:00
|
|
|
version = "v0.16.1"
|
2016-03-30 16:28:59 -04:00
|
|
|
|
|
|
|
# text shown by .help command
|
|
|
|
helptext = """I am a bot written in Python by MrDetonia
|
|
|
|
|
|
|
|
My commands are:
|
|
|
|
```
|
|
|
|
.help - displays this text
|
2016-04-08 14:16:31 -04:00
|
|
|
.info - prints bot info
|
2016-04-01 07:14:50 -04:00
|
|
|
.upskirt - show a link to my source
|
2016-03-30 16:28:59 -04:00
|
|
|
.whoami - displays your user info
|
2016-04-01 09:27:00 -04:00
|
|
|
.whois <user> - displays another user's info
|
2016-04-01 04:52:38 -04:00
|
|
|
.welcome <message> - set your own welcome message
|
2016-03-30 16:28:59 -04:00
|
|
|
.seen <user> - prints when user was last seen
|
2016-04-01 04:52:38 -04:00
|
|
|
.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
|
2016-04-03 11:03:40 -04:00
|
|
|
.markov <user> - generate sentence using markov chains over a user's chat history
|
2016-05-05 16:27:00 -04:00
|
|
|
.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
|
2016-03-30 16:28:59 -04:00
|
|
|
```"""
|
|
|
|
|
|
|
|
# IDs of admin users
|
|
|
|
admins = ['116883900688629761']
|
|
|
|
|
2016-03-30 19:34:28 -04:00
|
|
|
# default posting channel
|
|
|
|
def_chan = '116884620032606215'
|
2016-03-30 16:28:59 -04:00
|
|
|
|
|
|
|
|
2016-05-05 16:27:00 -04:00
|
|
|
# GLOBALS
|
2016-03-30 16:28:59 -04:00
|
|
|
|
|
|
|
# log of users' last messages and timestamps
|
2016-04-01 09:27:00 -04:00
|
|
|
history = {}
|
2016-03-30 18:33:53 -04:00
|
|
|
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
|
|
|
|
2016-03-30 19:34:28 -04:00
|
|
|
# user welcome messages
|
2016-04-01 09:27:00 -04:00
|
|
|
welcomes = {}
|
2016-03-30 19:34:28 -04:00
|
|
|
if os.path.isfile('welcomes.json'):
|
2016-03-30 19:38:14 -04:00
|
|
|
with open('welcomes.json', 'r') as fp:
|
2016-03-30 19:34:28 -04:00
|
|
|
welcomes = json.load(fp)
|
|
|
|
|
2016-04-01 04:52:38 -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
|
|
|
|
2016-05-05 16:27:00 -04:00
|
|
|
|
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)
|
|
|
|
|
2016-04-01 09:32:18 -04:00
|
|
|
|
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_status(game, False)
|
|
|
|
|
2016-03-30 19:34:28 -04:00
|
|
|
# called when member updates
|
|
|
|
@client.event
|
|
|
|
@asyncio.coroutine
|
|
|
|
def on_member_update(before, after):
|
|
|
|
# display welcome message if user comes online:
|
|
|
|
if before.status == discord.Status.offline and after.status == discord.Status.online:
|
2016-05-05 16:27:00 -04:00
|
|
|
if after.id in welcomes:
|
2016-03-30 19:34:28 -04:00
|
|
|
# print custom welcome
|
2016-05-05 16:27:00 -04:00
|
|
|
yield from client.send_message(client.get_channel(def_chan), welcomes[after.id])
|
2016-03-30 19:34:28 -04:00
|
|
|
else:
|
2016-05-05 16:34:45 -04:00
|
|
|
yield from client.send_message(client.get_channel(def_chan), after.name + ' is online. Set your welcome message with the `.welcome` command!')
|
2016-03-30 19:34:28 -04:00
|
|
|
|
2016-03-30 16:28:59 -04:00
|
|
|
# called when message received
|
|
|
|
@client.event
|
|
|
|
@asyncio.coroutine
|
|
|
|
def on_message(message):
|
|
|
|
# print messages to terminal for info
|
2016-05-06 04:27:52 -04:00
|
|
|
timestr = time.strftime('%Y-%m-%d-%H:%M:%S: ')
|
2016-05-05 16:27:00 -04:00
|
|
|
try:
|
2016-05-06 04:27:52 -04:00
|
|
|
print(timestr + message.server.name + ' ' + message.channel.name + ' ' + message.author.name + ': ' + message.content)
|
2016-05-05 16:27:00 -04:00
|
|
|
except AttributeError:
|
2016-05-06 04:27:52 -04:00
|
|
|
print(timestr + 'PRIV ' + message.author.name + ': ' + message.content)
|
2016-04-01 09:32:18 -04:00
|
|
|
|
2016-04-02 08:31:28 -04:00
|
|
|
# do not parse own messages or private messages
|
|
|
|
if message.author != client.user and type(message.channel) is not discord.PrivateChannel:
|
2016-04-03 11:54:00 -04:00
|
|
|
# response to send to channel
|
|
|
|
response = ''
|
2016-03-30 16:28:59 -04:00
|
|
|
|
|
|
|
# parse messages for commands
|
2016-04-08 14:16:31 -04:00
|
|
|
if message.content.startswith('.info'):
|
2016-03-30 16:28:59 -04:00
|
|
|
# print bot info
|
2016-05-05 16:27:00 -04:00
|
|
|
pyver = str(sys.version_info[0]) + '.' + str(sys.version_info[1]) + '.' + str(sys.version_info[2])
|
|
|
|
response = 'I am ' + name + ', a Discord bot by MrDetonia | ' + version + ' | Python ' + pyver + ' | discord.py ' + discord.__version__
|
2016-03-30 16:28:59 -04:00
|
|
|
|
|
|
|
elif message.content.startswith('.help'):
|
|
|
|
# print command list
|
2016-04-03 11:54:00 -04:00
|
|
|
response = helptext
|
2016-03-30 16:28:59 -04:00
|
|
|
|
2016-04-01 07:14:50 -04:00
|
|
|
elif message.content.startswith('.upskirt'):
|
2016-03-30 16:28:59 -04:00
|
|
|
# link to source code
|
2016-07-04 06:53:01 -04:00
|
|
|
response = 'No, don\'t look at my pantsu! Baka! <https://gitla.in/MrDetonia/maki>'
|
2016-03-30 16:28:59 -04:00
|
|
|
|
2016-04-01 04:59:43 -04:00
|
|
|
elif message.content.startswith('.die'):
|
|
|
|
if message.author.id in admins:
|
|
|
|
# exit discord and kill bot
|
2016-04-19 11:28:01 -04:00
|
|
|
print('INFO: Accepting .die from ' + message.author.name)
|
2016-04-21 17:55:41 -04:00
|
|
|
run = False
|
2016-04-01 04:59:43 -04:00
|
|
|
yield from client.send_message(message.channel, 'But will I dream? ;_;')
|
|
|
|
yield from client.logout()
|
|
|
|
else:
|
|
|
|
# user not admin, refuse
|
2016-04-03 11:54:00 -04:00
|
|
|
response = 'Don\'t be so rude! >:('
|
2016-03-30 16:28:59 -04:00
|
|
|
|
|
|
|
elif message.content.startswith('.whoami'):
|
|
|
|
# show info about user
|
2016-04-03 11:54:00 -04:00
|
|
|
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 '):
|
2016-04-01 09:27:00 -04:00
|
|
|
# show info about another user
|
|
|
|
tmp = message.content[7:]
|
2016-05-05 16:27:00 -04:00
|
|
|
user = message.server.get_member_named(tmp)
|
|
|
|
if user == None:
|
|
|
|
response = 'I can\'t find ' + tmp
|
2016-04-01 09:27:00 -04:00
|
|
|
else:
|
2016-05-05 16:27:00 -04:00
|
|
|
response = 'User: ' + user.name + ' ID: ' + user.id + ' Discriminator: ' + user.discriminator + '\nAccount Created: ' + strfromdt(user.created_at)
|
2016-04-01 09:27:00 -04:00
|
|
|
|
2016-04-08 14:15:03 -04:00
|
|
|
elif message.content.startswith('.welcome '):
|
2016-03-30 19:34:28 -04:00
|
|
|
# manage welcome messages
|
|
|
|
if message.author.id in admins:
|
|
|
|
tmp = message.content[9:].split(' ',1)
|
2016-05-05 16:34:45 -04:00
|
|
|
target = message.server.get_member_named(tmp[0])
|
|
|
|
if target == None:
|
|
|
|
response = 'I can\'t find ' + tmp[0]
|
|
|
|
else:
|
|
|
|
welcomes[target.id] = tmp[1]
|
|
|
|
response = 'Okay, I will now greet ' + target.name + ' with "' + tmp[1] + '"'
|
2016-03-30 19:34:28 -04:00
|
|
|
else:
|
2016-05-05 16:27:00 -04:00
|
|
|
welcomes[message.author.id] = message.content[9:]
|
2016-04-03 11:54:00 -04:00
|
|
|
response = 'Okay, I will now greet ' + message.author.name + ' with "' + message.content[9:] + '"'
|
2016-03-30 19:34:28 -04:00
|
|
|
|
|
|
|
# save welcomes
|
|
|
|
with open('welcomes.json', 'w') as fp:
|
|
|
|
json.dump(welcomes, fp)
|
|
|
|
|
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
|
2016-05-05 16:27:00 -04:00
|
|
|
target = message.server.get_member_named(message.content[6:]).id
|
|
|
|
|
2016-03-30 16:28:59 -04:00
|
|
|
if target in history:
|
|
|
|
# user logged, print last message and time
|
2016-04-16 08:40:14 -04:00
|
|
|
response = 'user ' + message.content[6:] + ' was last seen saying "' + history[target][0] + '" 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
|
2016-04-03 11:54:00 -04:00
|
|
|
response = 'I\'m right here!'
|
2016-03-30 16:28:59 -04:00
|
|
|
else:
|
|
|
|
# user not logged
|
2016-04-03 11:54:00 -04:00
|
|
|
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 '):
|
2016-04-01 08:43:26 -04:00
|
|
|
# delete calling message for effect
|
|
|
|
yield from client.delete_message(message)
|
2016-04-01 04:52:38 -04:00
|
|
|
# echo message
|
2016-04-03 11:54:00 -04:00
|
|
|
response = message.content[5:]
|
2016-04-01 04:52:38 -04:00
|
|
|
|
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
|
2016-07-04 06:53:01 -04:00
|
|
|
response = ' '.join(message.content[6:])
|
2016-04-08 14:15:03 -04:00
|
|
|
|
|
|
|
elif message.content.startswith('.markov '):
|
2016-04-04 08:23:50 -04:00
|
|
|
# send typing signal to discord
|
2016-04-04 10:16:04 -04:00
|
|
|
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')
|
2016-04-04 08:23:50 -04:00
|
|
|
|
2016-04-03 11:03:40 -04:00
|
|
|
# generate a markov chain sentence based on the user's chat history
|
2016-04-03 11:25:35 -04:00
|
|
|
tmp = message.content[8:]
|
2016-05-05 16:27:00 -04:00
|
|
|
target = message.server.get_member_named(tmp).id
|
|
|
|
if os.path.isfile('./markovs/' + target):
|
|
|
|
mc = markov.Markov(open('./markovs/' + target))
|
|
|
|
response = mc.generate_text(random.randint(20,40))
|
2016-04-03 11:03:40 -04:00
|
|
|
else:
|
2016-05-05 16:27:00 -04:00
|
|
|
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
|
|
|
|
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])
|
|
|
|
|
|
|
|
response = 'You rolled: ' + str(rollsum)
|
|
|
|
else:
|
|
|
|
response = 'you did it wrong!'
|
2016-04-03 11:03:40 -04:00
|
|
|
|
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()
|
|
|
|
|
2016-04-03 11:03:40 -04:00
|
|
|
# Stuff that happens when message is not a bot command:
|
2016-04-01 08:47:53 -04:00
|
|
|
else:
|
|
|
|
# log each message against users
|
2016-04-16 08:40:14 -04:00
|
|
|
if message.content != "":
|
|
|
|
history[message.author.id] = (message.content, time.time())
|
|
|
|
with open('hist.json', 'w') as fp:
|
|
|
|
json.dump(history, fp)
|
2016-04-01 08:47:53 -04:00
|
|
|
|
2016-04-04 04:38:24 -04:00
|
|
|
# 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):
|
2016-04-03 12:30:40 -04:00
|
|
|
with open('./markovs/' + message.author.id, 'a') as fp:
|
|
|
|
fp.write('\n' + message.content)
|
2016-04-03 11:03:40 -04:00
|
|
|
|
2016-04-03 11:54:00 -04:00
|
|
|
# send response to channel if needed:
|
|
|
|
if response is not '':
|
|
|
|
for attempt in range(5):
|
|
|
|
try:
|
|
|
|
yield from client.send_message(message.channel, response)
|
2016-04-03 11:55:38 -04:00
|
|
|
except discord.errors.HTTPException:
|
2016-04-03 11:54:00 -04:00
|
|
|
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
|
2016-04-24 16:15:40 -04:00
|
|
|
client.run(token)
|
2016-04-21 17:55:41 -04:00
|
|
|
|
|
|
|
# finish execution
|
|
|
|
exit(0)
|