/usr/bin/irk is in irker 2.18+dfsg-2.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
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 | #! /usr/bin/python
# Illustrates how to test irkerd.
#
# First argument must be a channel URL. If it does not begin with "irc",
# the base URL for freenode is prepended.
#
# Second argument must be a payload string. Standard C-style escapes
# such as \n and \t are decoded.
#
# SPDX-License-Identifier: BSD-2-Clause
import json
import socket
import sys
import fileinput
DEFAULT_SERVER = ("localhost", 6659)
def connect(server = DEFAULT_SERVER):
return socket.create_connection(server)
def send(s, target, message):
data = {"to": target, "privmsg" : message}
dump = json.dumps(data)
if not isinstance(dump, bytes):
dump = dump.encode('ascii')
s.sendall(dump)
def irk(target, message, server = DEFAULT_SERVER):
s = connect(server)
if "irc:" not in target and "ircs:" not in target:
target = "irc://chat.freenode.net/{0}".format(target)
if message == '-':
for line in fileinput.input('-'):
send(s, target, line.rstrip('\n'))
else:
send(s, target, message)
s.close()
def main():
target = sys.argv[1]
message = " ".join(sys.argv[2:])
# XXX: why is this necessary?
#message = message.decode('string_escape')
try:
irk(target, message)
except socket.error as e:
sys.stderr.write("irk: write to server failed: %r\n" % e)
sys.exit(1)
if __name__ == '__main__':
main()
|