nemubot/modules/man.py

71 lines
1.8 KiB
Python
Raw Normal View History

# coding=utf-8
2014-11-13 01:51:49 +00:00
"Read manual pages on IRC"
import subprocess
import re
import os
from nemubot.hooks import hook
2014-08-13 13:53:55 +00:00
nemubotversion = 3.4
from more import Response
def help_full():
return "!man [0-9] /what/: gives informations about /what/."
RGXP_s = re.compile(b'\x1b\\[[0-9]+m')
2014-11-13 01:51:49 +00:00
@hook("cmd_hook", "MAN")
def cmd_man(msg):
args = ["man"]
num = None
2015-07-10 21:09:54 +00:00
if len(msg.args) == 1:
args.append(msg.args[0])
elif len(msg.args) >= 2:
try:
2015-07-10 21:09:54 +00:00
num = int(msg.args[0])
args.append("%d" % num)
2015-07-10 21:09:54 +00:00
args.append(msg.args[1])
except ValueError:
2015-07-10 21:09:54 +00:00
args.append(msg.args[0])
os.unsetenv("LANG")
res = Response(channel=msg.channel)
2014-11-13 01:51:49 +00:00
with subprocess.Popen(args,
stdout=subprocess.PIPE,
stderr=subprocess.PIPE) as proc:
for line in proc.stdout.read().split(b"\n"):
(line, n) = RGXP_s.subn(b'', line)
res.append_message(line.decode())
if len(res.messages) <= 0:
if num is not None:
2014-11-13 01:51:49 +00:00
res.append_message("There is no entry %s in section %d." %
2015-07-10 21:09:54 +00:00
(msg.args[0], num))
else:
2015-07-10 21:09:54 +00:00
res.append_message("There is no man page for %s." % msg.args[0])
return res
2014-11-13 01:51:49 +00:00
@hook("cmd_hook", "man")
def cmd_whatis(msg):
2015-07-10 21:09:54 +00:00
args = ["whatis", " ".join(msg.args)]
res = Response(channel=msg.channel)
2014-11-13 01:51:49 +00:00
with subprocess.Popen(args,
stdout=subprocess.PIPE,
stderr=subprocess.PIPE) as proc:
for line in proc.stdout.read().split(b"\n"):
(line, n) = RGXP_s.subn(b'', line)
res.append_message(" ".join(line.decode().split()))
if len(res.messages) <= 0:
2015-10-29 23:22:52 +00:00
res.append_message("There is no man page for %s." % msg.args[0])
return res