summaryrefslogtreecommitdiff
path: root/chatalias.py
blob: dc7db725912cd6463a87f08171ca9bac47a4ce98 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
# Chat Aliasing plugin by Curs3d #
##################################
# Allows users to alias words,
# so that when they send a
# message in chat, it gets
# replaced by their specified
# word. Configuration of this
# plugin is in the "gnl"
# (general) tag of the JSON
# file named "aliases". The
# file is generated if not
# present. Set values to -1
# for "unlimited" setting.

from helpers import *
from traceback import format_exc as trace

data = None

def safe_open_json():
    global data
    if data is not None:
        return data
    data = open_json_file("aliases")
    if data is None:
        data = {"gnl":{"max_len":"35","max_entries":"10"}}
    save_json_file("aliases", data)
    return data


@hook.command("alias", usage = "/<command> [to_alias] [alias...]", desc = "Aliases words in chat")
def on_alias_command(sender, cmd, label, args):

    if not is_player(sender):
       msg(sender, "Sorry, Console cannot alias words")
       return True

    if not sender.hasPermission("utils.alias.allowed"):
        plugin_header(recipient = sender, name = "Chat Alias")
        noperm(sender)
        return True

    if len(args) == 0:
        plugin_header(recipient = sender, name = "Chat Alias")
        msg(sender, "This is a plugin that allows you to type in chat and have words replaced by other ones automatically!")
        msg(sender, "\nCommands:")
        msg(sender, "/alias <word>: removes <word> from aliased words. Use * to remove all aliased words.")
        msg(sender, "/alias <word> <others...>: Will change <word> to <others...> in chat")
        msg(sender, "\nYour Aliases:")
        data = safe_open_json()
        try:
            for alias, value in data[str(sender.getUniqueId())].items():
                msg(sender, "%s ==> %s" % (alias, value))
        except KeyError:
            pass
        return True

    elif len(args) == 1:
        data = safe_open_json()
        if args[0] == "*":
            try:
                del data[str(sender.getUniqueId())]
            except KeyError:
                plugin_header(recipient = sender, name = "Chat Alias")
                msg(sender, "No alias data to remove!")
                return True
            save_json_file("aliases", data)
            plugin_header(recipient = sender, name = "Chat Alias")
            msg(sender, "ALL alias data successfuly removed!")
            return True
        
        try:
            if data[str(sender.getUniqueId())].pop(args[0], None) is None:
                plugin_header(recipient = sender, name = "Chat Alias")
                msg(sender, "Could not remove: alias not present!")
                return True
        except KeyError:
            plugin_header(recipient = sender, name = "Chat Alias")
            msg(sender, "Could not remove: you do not have any aliases!")
            return True
            
        save_json_file("aliases", data)
        plugin_header(recipient = sender, name = "Chat Alias")
        msg(sender, "Alias for %s successfuly removed" % args[0])
        return True
            
    elif len(args) >= 2:
        data = safe_open_json()
        alias = " ".join(args[1:])
        try:
            if len(alias) > int(data["gnl"]["max_len"]) and int(data["gnl"]["max_len"]) >= 0:
                plugin_header(recipient = sender, name = "Chat Alias")
                msg(sender, "Please do not alias long words/sentences.")
                return True
            
            if len(data[str(sender.getUniqueId())]) >= int(data["gnl"]["max_entries"]) and int(data["gnl"]["max_entries"]) >= 0:
                plugin_header(recipient = sender, name = "Chat Alias")
                msg(sender, "You have reached the maximum amount of alias entries! Sorry!")
                return True
        except KeyError:
            data[str(sender.getUniqueId())] = {}
        
        data[str(sender.getUniqueId())][args[0]] = alias
        save_json_file("aliases", data)
        plugin_header(recipient = sender, name = "Chat Alias")
        msg(sender, "Chat Alias %s ==> %s successfully created!" % (args[0], alias))
        return True
    
    else:
        return False


@hook.event("player.AsyncPlayerChatEvent", "high")
def on_player_chat(event):
    playerid = str(event.getPlayer().getUniqueId())
    data = safe_open_json()

    if event.isCancelled():
        return

    try:
        crashtest = data[playerid].items()
    except KeyError:
        return

    for alias, value in data[playerid].items():
        event.setMessage(event.getMessage().replace(alias, value))