2016-05-17 21:40:34 +00:00
|
|
|
from helpers import consoleHelper
|
|
|
|
from constants import bcolors
|
2016-05-18 17:12:46 +00:00
|
|
|
from constants import clientPackets
|
|
|
|
from constants import serverPackets
|
|
|
|
from objects import glob
|
|
|
|
from objects import fokabot
|
|
|
|
from constants import exceptions
|
|
|
|
from constants import messageTemplates
|
2016-06-02 19:50:10 +00:00
|
|
|
from helpers import generalFunctions
|
2016-04-19 17:40:59 +00:00
|
|
|
|
|
|
|
def handle(userToken, packetData):
|
|
|
|
"""
|
|
|
|
Event called when someone sends a private message
|
|
|
|
|
|
|
|
userToken -- request user token
|
|
|
|
packetData -- request data bytes
|
|
|
|
"""
|
|
|
|
|
|
|
|
try:
|
|
|
|
# Get usertoken username
|
|
|
|
username = userToken.username
|
|
|
|
|
|
|
|
# Private message packet
|
|
|
|
packetData = clientPackets.sendPrivateMessage(packetData)
|
|
|
|
|
|
|
|
if packetData["to"] == "FokaBot":
|
|
|
|
# FokaBot command check
|
|
|
|
fokaMessage = fokabot.fokabotResponse(username, packetData["to"], packetData["message"])
|
|
|
|
if fokaMessage != False:
|
|
|
|
userToken.enqueue(serverPackets.sendMessage("FokaBot", username, fokaMessage))
|
|
|
|
consoleHelper.printColored("> FokaBot>{}: {}".format(packetData["to"], str(fokaMessage.encode("UTF-8"))), bcolors.PINK)
|
|
|
|
else:
|
|
|
|
# Send packet message to target if it exists
|
|
|
|
token = glob.tokens.getTokenFromUsername(packetData["to"])
|
|
|
|
if token == None:
|
|
|
|
raise exceptions.tokenNotFoundException()
|
|
|
|
|
2016-05-11 17:41:16 +00:00
|
|
|
# Check message templates (mods/admins only)
|
|
|
|
if packetData["message"] in messageTemplates.templates and userToken.rank >= 3:
|
|
|
|
packetData["message"] = messageTemplates.templates[packetData["message"]]
|
|
|
|
|
2016-04-19 17:40:59 +00:00
|
|
|
# Send message to target
|
|
|
|
token.enqueue(serverPackets.sendMessage(username, packetData["to"], packetData["message"]))
|
|
|
|
|
|
|
|
# Send away message to sender if needed
|
|
|
|
if token.awayMessage != "":
|
|
|
|
userToken.enqueue(serverPackets.sendMessage(packetData["to"], username, "This user is away: {}".format(token.awayMessage)))
|
|
|
|
|
|
|
|
# Console output
|
|
|
|
consoleHelper.printColored("> {}>{}: {}".format(username, packetData["to"], packetData["message"]), bcolors.PINK)
|
2016-05-19 20:53:09 +00:00
|
|
|
|
|
|
|
# Log to file
|
|
|
|
with open(".data/chatlog_private.txt", "a") as f:
|
2016-06-02 19:50:10 +00:00
|
|
|
f.write("[{date}] {fro} -> {to}: {message}\n".format(date=generalFunctions.getTimestamp(), fro=username, to=packetData["to"], message=str(packetData["message"].encode("utf-8"))[2:-1]))
|
2016-04-19 17:40:59 +00:00
|
|
|
except exceptions.tokenNotFoundException:
|
|
|
|
# Token not found, user disconnected
|
|
|
|
consoleHelper.printColored("[!] {} tried to send a message to {}, but their token couldn't be found".format(username, packetData["to"]), bcolors.RED)
|