This repository has been archived on 2023-04-13. You can view files and clone it, but cannot push or open issues or pull requests.
CloudBot/plugins/admin.py

130 lines
4 KiB
Python
Raw Normal View History

2011-11-20 10:23:31 +01:00
from util import hook
2012-03-01 23:17:12 +01:00
import os
import re
import json
2012-02-29 06:09:40 +01:00
import time
import subprocess
2012-02-29 06:09:40 +01:00
2012-03-12 07:24:52 +01:00
2013-08-01 09:03:40 +02:00
@hook.command("quit", autohelp=False, permissions=["botcontrol"])
@hook.command(autohelp=False, permissions=["botcontrol"])
2012-03-23 06:08:58 +01:00
def stop(inp, nick=None, conn=None):
2012-05-16 05:07:27 +02:00
"stop [reason] -- Kills the bot with [reason] as its quit message."
2012-02-26 07:47:13 +01:00
if inp:
2012-03-23 06:08:58 +01:00
conn.cmd("QUIT", ["Killed by %s (%s)" % (nick, inp)])
2012-02-26 07:47:13 +01:00
else:
2012-03-23 06:08:58 +01:00
conn.cmd("QUIT", ["Killed by %s." % nick])
2012-03-01 22:52:09 +01:00
time.sleep(5)
2012-04-02 21:32:42 +02:00
os.execl("./cloudbot", "cloudbot", "stop")
2012-04-02 18:17:55 +02:00
2012-04-02 22:17:47 +02:00
2013-08-01 09:03:40 +02:00
@hook.command(autohelp=False, permissions=["botcontrol"])
2012-03-27 23:44:07 +02:00
def restart(inp, nick=None, conn=None):
2012-05-16 05:07:27 +02:00
"restart [reason] -- Restarts the bot with [reason] as its quit message."
2012-02-28 09:34:04 +01:00
if inp:
2012-03-27 23:44:07 +02:00
conn.cmd("QUIT", ["Restarted by %s (%s)" % (nick, inp)])
2012-02-28 09:34:04 +01:00
else:
2012-03-27 23:44:07 +02:00
conn.cmd("QUIT", ["Restarted by %s." % nick])
2012-03-01 22:52:09 +01:00
time.sleep(5)
2012-04-02 21:32:42 +02:00
os.execl("./cloudbot", "cloudbot", "restart")
2012-02-29 06:09:40 +01:00
2012-03-12 12:25:38 +01:00
2013-08-01 09:03:40 +02:00
@hook.command(autohelp=False, permissions=["botcontrol"])
2012-03-23 06:08:58 +01:00
def clearlogs(inp, input=None):
2012-05-16 05:07:27 +02:00
"clearlogs -- Clears the bots log(s)."
2012-03-27 23:44:07 +02:00
subprocess.call(["./cloudbot", "clear"])
2012-02-29 21:00:10 +01:00
2013-08-01 09:03:40 +02:00
@hook.command(permissions=["botcontrol"])
2012-03-25 04:15:11 +02:00
def join(inp, conn=None, notice=None):
2012-05-16 05:07:27 +02:00
"join <channel> -- Joins <channel>."
2012-03-27 23:27:18 +02:00
notice("Attempting to join %s..." % inp)
conn.join(inp)
2011-11-20 10:23:31 +01:00
2012-02-26 07:47:13 +01:00
2013-08-01 09:03:40 +02:00
@hook.command(autohelp=False, permissions=["botcontrol"])
def part(inp, conn=None, chan=None, notice=None):
2012-05-16 05:07:27 +02:00
"part <channel> -- Leaves <channel>." \
"If [channel] is blank the bot will leave the " \
"channel the command was used in."
if inp:
target = inp
else:
target = chan
notice("Attempting to leave %s..." % target)
conn.part(target)
2011-11-20 10:23:31 +01:00
2012-02-29 06:15:35 +01:00
2013-08-01 09:03:40 +02:00
@hook.command(autohelp=False, permissions=["botcontrol"])
def cycle(inp, conn=None, chan=None, notice=None):
2012-05-16 05:07:27 +02:00
"cycle <channel> -- Cycles <channel>." \
"If [channel] is blank the bot will cycle the " \
"channel the command was used in."
if inp:
target = inp
else:
target = chan
notice("Attempting to cycle %s..." % target)
conn.part(target)
conn.join(target)
2011-11-20 10:23:31 +01:00
2012-02-29 06:15:35 +01:00
2013-08-01 09:03:40 +02:00
@hook.command(permissions=["botcontrol"])
2012-03-27 23:27:18 +02:00
def nick(inp, input=None, notice=None, conn=None):
2012-05-16 05:07:27 +02:00
"nick <nick> -- Changes the bots nickname to <nick>."
2012-03-12 22:18:51 +01:00
if not re.match("^[A-Za-z0-9_|.-\]\[]*$", inp.lower()):
notice("Invalid username!")
return
2012-03-27 23:27:18 +02:00
notice("Attempting to change nick to \"%s\"..." % inp)
conn.set_nick(inp)
2011-11-20 10:23:31 +01:00
2012-02-29 06:15:35 +01:00
2013-08-01 09:03:40 +02:00
@hook.command(permissions=["botcontrol"])
2012-03-23 06:08:58 +01:00
def raw(inp, conn=None, notice=None):
2012-05-16 05:07:27 +02:00
"raw <command> -- Sends a RAW IRC command."
2011-11-20 10:23:31 +01:00
notice("Raw command sent.")
2012-03-23 06:08:58 +01:00
conn.send(inp)
2011-11-20 10:23:31 +01:00
2012-02-29 06:15:35 +01:00
2013-08-01 09:03:40 +02:00
@hook.command(permissions=["botcontrol"])
2012-03-26 12:18:19 +02:00
def say(inp, conn=None, chan=None, notice=None):
2012-05-16 05:07:27 +02:00
"say [channel] <message> -- Makes the bot say <message> in [channel]. " \
2012-04-02 22:06:31 +02:00
"If [channel] is blank the bot will say the <message> in the channel " \
"the command was used in."
2012-04-02 06:30:04 +02:00
inp = inp.split(" ")
if inp[0][0] == "#":
2011-11-20 10:23:31 +01:00
message = ""
2012-04-02 06:30:04 +02:00
for x in inp[1:]:
2011-11-20 10:23:31 +01:00
message = message + x + " "
message = message[:-1]
2012-04-02 06:30:04 +02:00
out = "PRIVMSG %s :%s" % (inp[0], message)
2011-11-20 10:23:31 +01:00
else:
message = ""
2012-04-02 06:30:04 +02:00
for x in inp[0:]:
2011-11-20 10:23:31 +01:00
message = message + x + " "
message = message[:-1]
2012-03-26 12:18:19 +02:00
out = "PRIVMSG %s :%s" % (chan, message)
2012-03-25 04:15:11 +02:00
conn.send(out)
2011-11-20 10:23:31 +01:00
2012-02-29 06:15:35 +01:00
2013-08-01 09:03:40 +02:00
@hook.command("act", permissions=["botcontrol"])
@hook.command(permissions=["botcontrol"])
2012-03-31 02:07:29 +02:00
def me(inp, conn=None, chan=None, notice=None):
2012-05-16 05:07:27 +02:00
"me [channel] <action> -- Makes the bot act out <action> in [channel]. " \
2012-04-02 22:10:44 +02:00
"If [channel] is blank the bot will act the <action> in the channel the " \
"command was used in."
2012-04-02 06:30:04 +02:00
inp = inp.split(" ")
if inp[0][0] == "#":
2012-02-19 03:20:25 +01:00
message = ""
2012-04-02 06:30:04 +02:00
for x in inp[1:]:
2012-02-19 03:20:25 +01:00
message = message + x + " "
message = message[:-1]
2012-04-02 06:30:04 +02:00
out = "PRIVMSG %s :\x01ACTION %s\x01" % (inp[0], message)
2012-02-19 03:20:25 +01:00
else:
message = ""
2012-04-02 06:30:04 +02:00
for x in inp[0:]:
2012-02-19 03:20:25 +01:00
message = message + x + " "
message = message[:-1]
2012-03-31 02:19:47 +02:00
out = "PRIVMSG %s :\x01ACTION %s\x01" % (chan, message)
2012-03-25 04:15:11 +02:00
conn.send(out)