minerbot2-old/bot.py

139 lines
3.9 KiB
Python
Raw Normal View History

2018-06-20 10:51:58 +00:00
#!/usr/bin/env python3
import irc.bot
import gitea, github
import markovuniverse as mu
2018-06-20 11:20:36 +00:00
import tvdb_keys,tvdb_api
2018-06-20 10:51:58 +00:00
gttapi = gitea.GiteaAPI("https://git.tilde.team")
ghapi = github.GithubAPI()
2018-06-20 11:20:36 +00:00
tvdb = tvdb_api.Tvdb(apikey=tvdb_keys.api_key,cache=False)
2018-06-20 10:51:58 +00:00
def pad(l,n):
while len(l)<n:
l.append("")
class TVBot(irc.bot.SingleServerIRCBot):
def __init__(self, channels, nickname, server, port=6667, prefix="!", operator="khuxkm"):
irc.bot.SingleServerIRCBot.__init__(self, [(server, port)], nickname, nickname)
self.chanlist = channels
self.bot_nick = nickname
self.prefix = "!"
self.botop = operator
self.command_handlers = {}
self.register("prefix",self.setPrefix)
self.register("gitea",self.giteaCommand)
self.register("github",self.githubCommand)
self.register("quit",self.quitCommand)
self.register("reload",self.reloadCommand)
self.register("su",self.suCommand)
def suCommand(self,c,e,p):
p.pop(0)
if not p:
p = ["help"]
if p[0]=="fake-leak":
c.privmsg(e.target,e.source.nick+": {} - {}".format(*mu.new_episode()))
def quitCommand(self,c,e,p):
if e.source.nick==self.botop:
c.quit()
raise SystemExit(0)
else:
c.privmsg(e.target,"You can't tell me what to do!")
def reloadCommand(self,c,e,p):
if e.source.nick==self.botop:
c.quit()
raise SystemExit(1)
else:
c.privmsg(e.target,"You can't tell me what to do!")
def setPrefix(self,c,e,p):
p.pop(0) # command name
if e.source.nick!=self.botop:
return
self.prefix=p[0]
def gitCommand(self,api,c,e,p,has_mirrors=True):
p.pop(0)
if p[0] in ('issue','pull'):
pad(p,4)
global issue_data
if "/" in p[1]:
owner,repo = p[1].split("/")
try:
issue = int(p[2])
except ValueError:
c.privmsg(e.target,"{}: do you think this is some kind of joke?".format(e.source.nick))
return
issue_data = api.get_issue_data(owner,repo,issue)
else:
owner,repo = p[1], p[2]
try:
issue = int(p[3])
except ValueError:
c.privmsg(e.target,"{}: do you think this is some kind of joke?".format(e.source.nick))
return
issue_data = api.get_issue_data(owner,repo,issue)
if issue_data.status_code!=200:
if has_mirrors:
repo_data = api.get_repo_data(owner,repo)
if repo_data.json()['mirror']:
c.privmsg(e.target,"The targeted repo is a mirror.")
return
c.privmsg(e.target,"An error occurred.")
try:
issue_data.raise_for_status()
except Exception as e:
print(e)
else:
issue_data = issue_data.json()
descriptor = "Issue"
if 'pull_request' in issue_data:
descriptor = "Pull request"
description = descriptor + " #"+str(issue_data['number'])
description += ": \"{}\"".format(issue_data['title'])
author = issue_data['user']
description += " by {}".format(author.get('full_name') if author.get('full_name') else author['login'])
if 'html_url' in issue_data:
description += ": {}".format(issue_data["html_url"])
else:
description += ": {}/{}/{}/{}/{}".format(api.base_url,owner,repo,descriptor.split()[0].lower()+"s",issue_data['number'])
c.privmsg(e.target,description)
def giteaCommand(self,c,e,p):
self.gitCommand(gttapi,c,e,p)
def githubCommand(self,c,e,p):
self.gitCommand(ghapi,c,e,p,False)
def register(self,cmd,func):
self.command_handlers[cmd]=func
def on_welcome(self, c, e):
for channel in self.chanlist:
c.join(channel)
def on_pubmsg(self, c, e):
self.process_command(c, e, e.arguments[0])
def on_privmsg(self, c, e):
self.process_command(c, e, e.arguments[0])
def process_command(self, c, e, text):
if not text.startswith(self.prefix):
return # only deal with prefixed messages
parts = text[len(self.prefix):].split(" ")
if not parts[0] in self.command_handlers:
return # not our command
self.command_handlers[parts[0]](c,e,parts)
if __name__ == '__main__':
channels = [
# '#team',
'#meta',
]
bot = TVBot(channels, 'minerbot2', 'localhost')
bot.start()