152 lines
6.1 KiB
Python
152 lines
6.1 KiB
Python
import imdb # Used in movieFunc
|
|
import random # Used in movieFunc
|
|
import discord # Used in movieFunc
|
|
import datetime # Used in helloFunc
|
|
import urllib # Used in imageFunc
|
|
import lxml # Used in imageFunc
|
|
import wikia # Used in findWikiPage
|
|
import d20 # Used in rollDice
|
|
from .bedreNetflix import BedreNetflix
|
|
from .nerdShit import NerdShit
|
|
from .generators import Generators
|
|
|
|
class MyStringifier(d20.MarkdownStringifier):
|
|
def _str_expression(self, node):
|
|
if node.comment == None:
|
|
resultText = "Result"
|
|
else:
|
|
resultText = node.comment.capitalize()
|
|
|
|
return f"**{resultText}**: {self._stringify(node.roll)}\n**Total**: {int(node.total)}"
|
|
|
|
class Other():
|
|
def __init__(self, bot):
|
|
self.bot = bot
|
|
self.bedreNetflix = BedreNetflix(self.bot)
|
|
self.nerdShit = NerdShit(self.bot)
|
|
self.generators = Generators(self.bot)
|
|
|
|
# Picks a random movie and returns information about it
|
|
async def movieFunc(self, ctx):
|
|
await ctx.defer()
|
|
|
|
self.bot.log("Creating IMDb object")
|
|
imdbClient = imdb.IMDb()
|
|
|
|
self.bot.log("Picking a movie")
|
|
with open("resources/movies.txt", "r") as f:
|
|
movieList = f.read().split("\n")
|
|
movieName = random.choice(movieList)
|
|
|
|
self.bot.log(f"Searching for {movieName}")
|
|
searchResult = imdbClient.search_movie(movieName)
|
|
|
|
self.bot.log("Getting the data")
|
|
movie = searchResult[0]
|
|
imdbClient.update(movie)
|
|
|
|
self.bot.log("Successfully ran /movie")
|
|
|
|
title = movie["title"]
|
|
plot = movie['plot'][0].split("::")[0]
|
|
cover = movie['cover url'].replace("150","600").replace("101","404")
|
|
cast = ", ".join([i["name"] for i in movie['cast'][:5]])
|
|
embed = discord.Embed(title=title, description=plot, color=0x24ec19)
|
|
embed.set_thumbnail(url=cover)
|
|
embed.add_field(name="Cast", value=cast,inline = True)
|
|
await ctx.send(embed = embed)
|
|
|
|
# Responds with a greeting of a time-appropriate maner
|
|
def helloFunc(self, author):
|
|
def time_in_range(start, end, x):
|
|
# Return true if x is in the range [start, end]
|
|
if start <= end:
|
|
return start <= x <= end
|
|
else:
|
|
return start <= x or x <= end
|
|
now = datetime.datetime.now()
|
|
if time_in_range(now.replace(hour=5, minute=0, second=0, microsecond=0),now.replace(hour=10, minute=0, second=0, microsecond=0), now):
|
|
return("Good morning, "+str(author))
|
|
elif time_in_range(now.replace(hour=10, minute=0, second=0, microsecond=0),now.replace(hour=13, minute=0, second=0, microsecond=0), now):
|
|
return("Good day, "+str(author))
|
|
elif time_in_range(now.replace(hour=13, minute=0, second=0, microsecond=0),now.replace(hour=18, minute=0, second=0, microsecond=0), now):
|
|
return("Good afternoon, "+str(author))
|
|
elif time_in_range(now.replace(hour=18, minute=0, second=0, microsecond=0),now.replace(hour=22, minute=0, second=0, microsecond=0), now):
|
|
return("Good evening, "+str(author))
|
|
elif time_in_range(now.replace(hour=22, minute=0, second=0, microsecond=0),now.replace(hour=23, minute=59, second=59, microsecond=0), now):
|
|
return("Good night, "+str(author))
|
|
else:
|
|
return("Hello, "+str(author))
|
|
|
|
# Finds a random picture online
|
|
def imageFunc(self):
|
|
# Picks a type of camera, which decides the naming scheme
|
|
cams = ("one","two","three","four")
|
|
cam = random.choice(cams)
|
|
self.bot.log("Chose cam type "+cam)
|
|
if cam == "one":
|
|
a = str(random.randint(0 ,9))
|
|
b = str(random.randint(0,9))
|
|
c = str(random.randint(0,9))
|
|
d = str(random.randint(0,9))
|
|
search = ("img_"+a+b+c+d)
|
|
elif cam == "two":
|
|
a = str(random.randint(2012,2016))
|
|
b = str(random.randint(1,12)).zfill(2)
|
|
c = str(random.randint(1,29)).zfill(2)
|
|
search = ("IMG_"+a+b+c)
|
|
elif cam == "three":
|
|
a = str(random.randint(1,500)).zfill(4)
|
|
search = ("IMAG_"+a)
|
|
elif cam == "four":
|
|
a = str(random.randint(0,9))
|
|
b = str(random.randint(0,9))
|
|
c = str(random.randint(0,9))
|
|
d = str(random.randint(0,9))
|
|
search = ("DSC_"+a+b+c+d)
|
|
|
|
self.bot.log("Searching for "+search)
|
|
|
|
# Searches for the image and reads the resulting web page
|
|
page = urllib.request.urlopen("https://www.bing.com/images/search?q="+search+"&safesearch=off")
|
|
read = page.read()
|
|
tree = lxml.etree.HTML(read)
|
|
images = tree.xpath('//a[@class = "thumb"]/@href')
|
|
|
|
# Picks an image
|
|
number = random.randint(1,len(images))-1
|
|
image = images[number]
|
|
|
|
self.bot.log("Picked image number "+str(number))
|
|
|
|
# Returns the image
|
|
self.bot.log("Successfully returned an image")
|
|
return(image)
|
|
|
|
# Finds a page from the Senkulpa Wikia
|
|
def findWikiPage(self, search : str):
|
|
self.bot.log("Trying to find wiki page for "+search)
|
|
wikia.set_lang("da")
|
|
searchResults = wikia.search("senkulpa",search)
|
|
if len(searchResults) > 0:
|
|
searchResult = searchResults[0].replace(",","%2C")
|
|
self.bot.log("Found page \""+searchResult+"\"")
|
|
page = wikia.page("senkulpa",searchResult)
|
|
content = page.content.replace(u'\xa0', u' ').split("\n")[0]
|
|
|
|
images = page.images
|
|
if len(images) > 0:
|
|
image = images[len(images)-1]+"/revision/latest?path-prefix=da"
|
|
return page.title, content, image
|
|
else:
|
|
return page.title, content, ""
|
|
else:
|
|
self.bot.log("Couldn't find the page (error code 1002)")
|
|
return "", "Couldn't find page (error code 1002)", ""
|
|
|
|
def rollDice(self, user, rollString):
|
|
while len(rollString) > 1 and rollString[0] == " ":
|
|
rollString = rollString[1:]
|
|
return user+" :game_die:\n"+str(d20.roll(rollString, allow_comments=True,stringifier=MyStringifier()))
|
|
|