weechat-opal/scripts/colo.py

171 lines
4.9 KiB
Python
Raw Normal View History

2016-02-16 17:12:49 -08:00
# -*- coding: utf-8 -*-
#
# Released into the Public Domain
2016-08-08 23:55:47 -07:00
"""colo: make your chats noticable"""
2016-02-16 17:12:49 -08:00
import random
import re
import weechat
2016-08-08 23:55:47 -07:00
SCRIPT_NAME = "colo"
2016-02-16 17:12:49 -08:00
SCRIPT_AUTHOR = "The Krusty Krab <wowaname@volatile.ch>"
2016-12-17 14:48:12 -08:00
SCRIPT_VERSION = "2.2"
2016-02-16 17:12:49 -08:00
SCRIPT_LICENSE = "Public domain"
SCRIPT_DESC = "Makes your chats noticable"
# script options
settings = {
2016-08-08 23:55:47 -07:00
"fmt": (
"%c13♥ %0%s%o %c13♥",
"Format string for text. %0 - %9 are different colours, %s is text, "
"%c %b %u %r %o are ^C ^B ^U ^R ^O respectively, and %% is a literal "
2016-08-12 04:01:14 -07:00
"percent sign. %0 is the primary colour that should be used with %s.",
2016-02-16 17:12:49 -08:00
),
"fgs": (
"04,05,06,13",
"Colour codes to cycle for the foreground. "
"Leave blank for no foreground colours.",
),
"bgs": (
"",
"Colour codes to cycle for the background. "
"Leave blank for no background colours.",
),
"ignore_buffers": (
"bitlbee.*,scripts",
"List of buffers to ignore. Glob matches unless "
"you prefix the name with 're:'.",
),
"whitelist_buffers": (
"",
"List of buffers to whitelist. Glob match unless "
"you prefix the name with 're:'. Useful with "
"ignore_buffers = \"*\"",
),
"whitelist_cmds": (
"me,amsg,say",
2016-08-08 23:55:47 -07:00
"Commands to colour.",
2016-02-16 17:12:49 -08:00
),
"profiles": (
"> greentext,! alert",
"List of prefix/profile pairs. If you type one of "
"these prefixes at the beginning of your message, "
"the options will switch to (profile)_pre, "
"(profile)_suf, (profile)_fgs, and (profile)_bgs. ",
),
2016-08-08 23:55:47 -07:00
"greentext_fmt": "%c3> %s",
2016-08-12 04:01:14 -07:00
"alert_fmt": "%c1,8/!\\%c8,1 %s %o%c1,8/!\\"
2016-02-16 17:12:49 -08:00
}
if weechat.register(SCRIPT_NAME, SCRIPT_AUTHOR, SCRIPT_VERSION, SCRIPT_LICENSE,
SCRIPT_DESC, "", ""):
for opt, val in settings.iteritems():
setting, desc = val if type(val) == tuple else (val, "")
if desc: weechat.config_set_desc_plugin(opt, desc)
if weechat.config_is_set_plugin(opt): continue
weechat.config_set_plugin(opt, setting)
2016-08-08 23:55:47 -07:00
weechat.hook_modifier("input_text_for_buffer", "cb_colo", "")
2016-02-16 17:12:49 -08:00
2016-08-12 04:01:14 -07:00
# prevent looping
nest = False
2016-02-16 17:12:49 -08:00
def glob_match (haystack, needle):
return re.search("^%s$" %
re.escape(haystack).replace(r"\?", ".").replace(r"\*", ".*?"),
needle)
2016-08-12 04:01:14 -07:00
def is_command (string):
return (string.startswith("/") and not string.startswith("/ ") and
string != "/" and string.split(" ", 1)[0].split("\n", 1)[0].find("/", 1)
< 0)
2016-08-08 23:55:47 -07:00
def cb_colo (data, mod, buf, input):
2016-08-12 04:01:14 -07:00
global nest
if nest:
nest = False
2018-01-10 15:01:03 -08:00
# return input
2016-07-25 17:29:52 -07:00
buffer_name = weechat.buffer_get_string(buf, "name").lower()
2016-02-16 17:12:49 -08:00
output = ""
profile = ""
for pattern in weechat.config_get_plugin("whitelist_buffers").lower().split(","):
if (pattern.startswith("re:") and
re.search(pattern[3:], buffer_name)) or glob_match(pattern, buffer_name):
break
else:
for pattern in weechat.config_get_plugin("ignore_buffers").lower().split(","):
if (pattern.startswith("re:") and
re.search(pattern[3:], buffer_name)) or glob_match(pattern, buffer_name):
2016-07-25 17:29:52 -07:00
return input
2016-02-16 17:12:49 -08:00
if not input:
2016-07-25 17:29:52 -07:00
return input
2016-02-16 17:12:49 -08:00
2016-08-12 04:01:14 -07:00
if is_command(input):
2016-02-16 17:12:49 -08:00
for cmd in weechat.config_get_plugin("whitelist_cmds").lower().split(","):
if not input.startswith("/%s " % cmd): continue
output = "/%s " % cmd
2016-07-25 17:29:52 -07:00
input = input.split(" ", 1)[1] if " " in input else ""
2016-02-16 17:12:49 -08:00
break
else:
# XXX
return input.replace('\r','')
2016-07-25 17:29:52 -07:00
if input.startswith("//"): input = input[1:]
2016-02-16 17:12:49 -08:00
for profile_pairs in weechat.config_get_plugin("profiles").split(","):
prefix, name = profile_pairs.split()
if not input.startswith("%s " % prefix): continue
profile = "%s_" % name
input = input.split(" ",1)[1] if " " in input else ""
2016-08-08 23:55:47 -07:00
for opt in ("fmt", "fgs", "bgs"):
2016-02-16 17:12:49 -08:00
if weechat.config_is_set_plugin(profile + opt): continue
weechat.config_set_plugin(profile + opt, "")
break
fgs = weechat.config_get_plugin("%sfgs" % profile).split(",")
bgs = weechat.config_get_plugin("%sbgs" % profile).split(",")
2016-08-08 23:55:47 -07:00
fmt = weechat.config_get_plugin("%sfmt" % profile).split("%%")
for i in xrange(len(fmt)):
fmt[i] = fmt[i].replace("%c", "\x03").replace("%b",
"\x02").replace("%u", "\x1f").replace("%r",
"\x16").replace("%o", "\x0f")
if fgs == [""] and bgs == [""]: continue
for j in xrange(10):
2016-09-30 15:42:12 -07:00
base = "\x03%s%s%s" % (
2016-08-08 23:55:47 -07:00
random.choice(fgs),
"," if bgs != [""] else "",
random.choice(bgs),
)
fmt[i] = fmt[i].replace("%%%d" % j, base)
if j: continue
input = re.sub(
"\x03([^0-9])",
"\x03%s\\1" % base,
input.replace("\x0f","\x0f%s" % base))
fmt = "%".join(fmt)
2016-08-12 04:01:14 -07:00
nest = is_command(fmt)
2017-01-23 22:00:29 -08:00
servername = weechat.buffer_get_string(buf, "localvar_server")
iptr = weechat.infolist_get("irc_server", "", servername)
2016-12-17 14:48:12 -08:00
weechat.infolist_next(iptr)
long_lines = weechat.infolist_integer(iptr, "cap_long_lines")
weechat.infolist_free(iptr)
2016-08-08 23:55:47 -07:00
2017-01-23 22:00:29 -08:00
nicklen = weechat.info_get("irc_server_isupport_value", "%s,NICKLEN" %
servername)
if not nicklen: nicklen = 9
l = ((512 if long_lines else 0) + 409 - len(fmt) - int(nicklen))
2016-07-25 17:29:52 -07:00
o = []
2016-08-12 04:01:14 -07:00
for line in input.replace("\r", "\n").split("\n"):
if not line: continue
2016-07-25 17:29:52 -07:00
for i in xrange(0, len(line), l):
2016-08-08 23:55:47 -07:00
o.append(fmt.replace("%s", line[i:i+l].rstrip()))
2016-07-25 17:29:52 -07:00
return output + "\n".join(o)