pep.py/objects/fokabot.py

65 lines
1.7 KiB
Python
Raw Normal View History

2016-04-19 17:40:59 +00:00
"""FokaBot related functions"""
import re
2016-10-02 20:48:14 +00:00
from common import generalUtils
from common.constants import actions
from common.ripple import userUtils
from constants import fokabotCommands
from constants import serverPackets
from objects import glob
# Tillerino np regex, compiled only once to increase performance
npRegex = re.compile("^https?:\\/\\/osu\\.ppy\\.sh\\/b\\/(\\d*)")
2016-04-19 17:40:59 +00:00
def connect():
"""
Connect FokaBot to Bancho
:return:
"""
2016-04-19 17:40:59 +00:00
token = glob.tokens.addToken(999)
2016-09-02 15:16:22 +00:00
token.actionID = actions.IDLE
glob.streams.broadcast("main", serverPackets.userPanel(999))
glob.streams.broadcast("main", serverPackets.userStats(999))
2016-06-17 15:43:49 +00:00
2016-04-19 17:40:59 +00:00
def disconnect():
"""
Disconnect FokaBot from Bancho
:return:
"""
2016-04-19 17:40:59 +00:00
glob.tokens.deleteToken(glob.tokens.getTokenFromUserID(999))
def fokabotResponse(fro, chan, message):
"""
Check if a message has triggered FokaBot
2016-04-19 17:40:59 +00:00
:param fro: sender username
:param chan: channel name (or receiver username)
:param message: chat mesage
:return: FokaBot's response or False if no response
2016-04-19 17:40:59 +00:00
"""
for i in fokabotCommands.commands:
# Loop though all commands
if message.strip().startswith(i["trigger"]):
2016-04-19 17:40:59 +00:00
# message has triggered a command
# Make sure the user has right permissions
2016-09-02 15:45:10 +00:00
if i["privileges"] is not None:
# Rank = x
2016-10-02 20:48:14 +00:00
if userUtils.getPrivileges(userUtils.getID(fro)) & i["privileges"] == 0:
2016-04-19 17:40:59 +00:00
return False
# Check argument number
message = message.split(" ")
if i["syntax"] != "" and len(message) <= len(i["syntax"].split(" ")):
return "Wrong syntax: {} {}".format(i["trigger"], i["syntax"])
# Return response or execute callback
2016-09-02 15:45:10 +00:00
if i["callback"] is None:
2016-04-19 17:40:59 +00:00
return i["response"]
else:
return i["callback"](fro, chan, message[1:])
# No commands triggered
return False