2011-01-21 05:18:22 -05:00
|
|
|
# Copyright (c) 2008 Duncan Fordyce
|
|
|
|
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
# of this software and associated documentation files (the "Software"), to deal
|
|
|
|
# in the Software without restriction, including without limitation the rights
|
|
|
|
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
# copies of the Software, and to permit persons to whom the Software is
|
|
|
|
# furnished to do so, subject to the following conditions:
|
|
|
|
# The above copyright notice and this permission notice shall be included in
|
|
|
|
# all copies or substantial portions of the Software.
|
|
|
|
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
# THE SOFTWARE.
|
|
|
|
|
|
|
|
""" contains helper functions for common irc commands """
|
|
|
|
|
2022-03-19 19:48:19 -04:00
|
|
|
import logging
|
|
|
|
import logging.config
|
2021-12-01 12:29:17 -05:00
|
|
|
import ostools
|
|
|
|
_datadir = ostools.getDataDir()
|
|
|
|
logging.config.fileConfig(_datadir + "logging.ini")
|
2021-08-24 09:49:50 -04:00
|
|
|
PchumLog = logging.getLogger('pchumLogger')
|
2011-01-21 05:18:22 -05:00
|
|
|
import random
|
|
|
|
|
|
|
|
def msg(cli, user, msg):
|
|
|
|
for line in msg.split('\n'):
|
|
|
|
cli.send("PRIVMSG", user, ":%s" % line)
|
|
|
|
|
2011-02-03 01:20:37 -05:00
|
|
|
def names(cli, *channels):
|
|
|
|
tmp = __builtins__['list'](channels)
|
|
|
|
msglist = []
|
|
|
|
while len(tmp) > 0:
|
|
|
|
msglist.append(tmp.pop())
|
|
|
|
if len(",".join(msglist)) > 490:
|
|
|
|
tmp.append(msglist.pop())
|
|
|
|
cli.send("NAMES %s" % (",".join(msglist)))
|
|
|
|
msglist = []
|
|
|
|
if len(msglist) > 0:
|
|
|
|
cli.send("NAMES %s" % (",".join(msglist)))
|
2011-01-27 21:21:02 -05:00
|
|
|
|
2011-02-04 16:17:27 -05:00
|
|
|
def channel_list(cli):
|
|
|
|
cli.send("LIST")
|
|
|
|
|
2011-06-13 16:37:07 -04:00
|
|
|
def kick(cli, handle, channel, reason=""):
|
|
|
|
cli.send("KICK %s %s %s" % (channel, handle, reason))
|
2011-02-06 01:02:39 -05:00
|
|
|
|
2011-02-06 19:50:21 -05:00
|
|
|
def mode(cli, channel, mode, options=None):
|
2021-08-24 09:49:50 -04:00
|
|
|
PchumLog.debug("mode = " + str(mode))
|
|
|
|
PchumLog.debug("options = " + str(options))
|
2011-02-06 19:50:21 -05:00
|
|
|
cmd = "MODE %s %s" % (channel, mode)
|
|
|
|
if options:
|
|
|
|
cmd += " %s" % (options)
|
|
|
|
cli.send(cmd)
|
|
|
|
|
2011-06-29 13:19:22 -04:00
|
|
|
def ctcp(cli, handle, cmd, msg=""):
|
2022-06-02 17:15:45 -04:00
|
|
|
# Space breaks protocol if msg is absent
|
|
|
|
if msg=="":
|
|
|
|
cli.send("PRIVMSG", handle, "\x01%s\x01" % (cmd))
|
|
|
|
else:
|
|
|
|
cli.send("PRIVMSG", handle, "\x01%s %s\x01" % (cmd, msg))
|
|
|
|
|
2011-06-29 13:19:22 -04:00
|
|
|
|
|
|
|
def ctcp_reply(cli, handle, cmd, msg=""):
|
|
|
|
notice(cli, str(handle), "\x01%s %s\x01" % (cmd.upper(), msg))
|
|
|
|
|
2022-06-04 19:08:38 -04:00
|
|
|
def metadata(cli, target, subcommand, *params):
|
|
|
|
# IRC metadata draft specification
|
|
|
|
# https://gist.github.com/k4bek4be/92c2937cefd49990fbebd001faf2b237
|
|
|
|
cli.send("METADATA", target, subcommand, *params)
|
|
|
|
|
2022-06-05 20:05:00 -04:00
|
|
|
def cap(cli, subcommand, *params):
|
|
|
|
# Capability Negotiation
|
|
|
|
# https://ircv3.net/specs/extensions/capability-negotiation.html
|
|
|
|
cli.send("CAP", subcommand, *params)
|
|
|
|
|
2011-01-21 05:18:22 -05:00
|
|
|
def msgrandom(cli, choices, dest, user=None):
|
|
|
|
o = "%s: " % user if user else ""
|
|
|
|
o += random.choice(choices)
|
|
|
|
msg(cli, dest, o)
|
|
|
|
|
|
|
|
def _makeMsgRandomFunc(choices):
|
|
|
|
def func(cli, dest, user=None):
|
|
|
|
msgrandom(cli, choices, dest, user)
|
|
|
|
return func
|
|
|
|
|
|
|
|
msgYes = _makeMsgRandomFunc(['yes', 'alright', 'ok'])
|
|
|
|
msgOK = _makeMsgRandomFunc(['ok', 'done'])
|
|
|
|
msgNo = _makeMsgRandomFunc(['no', 'no-way'])
|
|
|
|
|
|
|
|
|
|
|
|
def ns(cli, *args):
|
|
|
|
msg(cli, "NickServ", " ".join(args))
|
|
|
|
|
|
|
|
def cs(cli, *args):
|
|
|
|
msg(cli, "ChanServ", " ".join(args))
|
|
|
|
|
|
|
|
def identify(cli, passwd, authuser="NickServ"):
|
|
|
|
msg(cli, authuser, "IDENTIFY %s" % passwd)
|
|
|
|
|
2021-03-25 18:08:08 -04:00
|
|
|
def quit(cli, msg):
|
|
|
|
msg = "QUIT :%s" % msg
|
|
|
|
cli.quit(msg)
|
|
|
|
cli.close()
|
2011-01-21 05:18:22 -05:00
|
|
|
cli._end = 1
|
|
|
|
|
|
|
|
def user(cli, username, realname=None):
|
2011-05-19 09:49:21 -04:00
|
|
|
cli.send("USER", realname or username, cli.host, cli.host,
|
2011-01-21 05:18:22 -05:00
|
|
|
realname or username)
|
|
|
|
|
|
|
|
_simple = (
|
|
|
|
'join',
|
|
|
|
'part',
|
|
|
|
'nick',
|
|
|
|
'notice',
|
2011-05-19 09:49:21 -04:00
|
|
|
'invite',
|
2011-01-21 05:18:22 -05:00
|
|
|
)
|
|
|
|
def _addsimple():
|
|
|
|
import sys
|
|
|
|
def simplecmd(cmd_name):
|
|
|
|
def f(cli, *args):
|
|
|
|
cli.send(cmd_name, *args)
|
|
|
|
return f
|
|
|
|
m = sys.modules[__name__]
|
|
|
|
for t in _simple:
|
|
|
|
setattr(m, t, simplecmd(t.upper()))
|
|
|
|
_addsimple()
|
|
|
|
|
|
|
|
def _addNumerics():
|
|
|
|
import sys
|
|
|
|
from oyoyo import ircevents
|
|
|
|
def numericcmd(cmd_num, cmd_name):
|
|
|
|
def f(cli, *args):
|
|
|
|
cli.send(cmd_num, *args)
|
|
|
|
return f
|
|
|
|
m = sys.modules[__name__]
|
2021-03-23 17:36:43 -04:00
|
|
|
for num, name in ircevents.numeric_events.items():
|
2011-01-21 05:18:22 -05:00
|
|
|
setattr(m, name, numericcmd(num, name))
|
2011-05-19 09:49:21 -04:00
|
|
|
|
2011-01-21 05:18:22 -05:00
|
|
|
_addNumerics()
|
|
|
|
|