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

223 lines
6.7 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
@hook.command(autohelp=False, permissions=["permissions_users"])
def permissions(inp, bot=None, notice=None):
"permissions [group] -- lists the users and their permission level who have permissions."
permissions = bot.config.get("permissions", [])
groups = []
if inp:
for k in permissions:
if inp == k:
groups.append(k)
else:
for k in permissions:
groups.append(k)
if not groups:
notice("%s is not a group with permissions" % inp)
return None
for v in groups:
members = ""
for value in permissions[v]["users"]:
members = members + ", " + value
if members:
notice("the members in the %s group are.." % v)
notice(members)
else:
notice("there are no members in the %s group" % v)
@hook.command(permissions=["permissions_users"])
def deluser(inp, bot=None, notice=None):
"deluser [user] [group] -- removes elevated permissions from [user]. " \
"If [group] is specified, they will only be removed from [group]."
permissions = bot.config.get("permissions", [])
inp = inp.split(" ")
groups = []
try:
specgroup = inp[1]
except IndexError:
specgroup = None
for k in permissions:
groups.append(k)
else:
for k in permissions:
if specgroup == k:
groups.append(k)
if not groups:
notice("%s is not a group with permissions" % inp[1])
return None
removed = 0
for v in groups:
users = permissions[v]["users"]
for value in users:
if inp[0] == value:
users.remove(inp[0])
removed = 1
notice("%s has been removed from the group %s" % (inp[0], v))
json.dump(bot.config, open('config', 'w'), sort_keys=True, indent=2)
if specgroup:
if removed == 0:
notice("%s is not in the group %s" % (inp[0], specgroup))
else:
if removed == 0:
notice("%s is not in any groups" % inp[0])
@hook.command(permissions=["permissions_users"])
def adduser(inp, bot=None, notice=None):
"adduser [user] [group] -- adds elevated permissions to [user]. " \
"[group] must be specified."
permissions = bot.config.get("permissions", [])
inp = inp.split(" ")
try:
user = inp[0]
targetgroup = inp[1]
except IndexError:
notice("the group must be specified")
return None
if not re.search('.+!.+@.+', user):
notice("the user must be in the form of \"nick!user@host\"")
return None
try:
users = permissions[targetgroup]["users"]
except KeyError:
notice("no such group as %s" % targetgroup)
return None
if user in users:
notice("%s is already in %s" % (user, targetgroup))
return None
users.append(user)
notice("%s has been added to the group %s" % (user, targetgroup))
users.sort()
json.dump(bot.config, open('config', 'w'), sort_keys=True, indent=2)
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)