Skip to content

Commit

Permalink
script by topologist: timedmute.py
Browse files Browse the repository at this point in the history
  • Loading branch information
James authored and James committed Jul 2, 2012
1 parent ae2bd14 commit ac01a9a
Showing 1 changed file with 64 additions and 0 deletions.
64 changes: 64 additions & 0 deletions contrib/scripts/timedmute.py
@@ -0,0 +1,64 @@
# Timed mute: !tm <player> <seconds> <reason>
# default time 5 minutes, default reason None
# by topologist June 30th 2012

from scheduler import Scheduler
from commands import add, admin, get_player, join_arguments, name

@name('tm')
@admin
def timed_mute(connection, *args):
protocol = connection.protocol

nick = args[0]
time = int(args[1])
reason = join_arguments(args[2:])
player = get_player(protocol, nick)

if time < 0:
raise ValueError()

if not player.mute:
TimedMute(player, time, reason)
else:
return '%s is already muted!' % nick

add(timed_mute)

class TimedMute(object):
player = None
time = None

def __init__(self, player, time = 300, reason = 'None'):
if time == 0:
player.mute = True
player.protocol.send_chat('%s was muted indefinitely (Reason: %s)' % (
player.name, reason), irc = True)
return

schedule = Scheduler(player.protocol)
schedule.call_later(time, self.end)
player.mute_schedule = schedule

player.protocol.send_chat('%s was muted for %s seconds (Reason: %s)' % (
player.name, time, reason), irc = True)
player.mute = True

self.player = player
self.time = time

def end(self):
self.player.mute = False
message = '%s was unmuted after %s seconds' % (self.player.name, self.time)
self.player.protocol.send_chat(message, irc = True)

def apply_script(protocol, connection, config):
class TimedMuteConnection(connection):
mute_schedule = None

def on_disconnect(self):
if self.mute_schedule:
del self.mute_schedule
connection.on_disconnect(self)

return protocol, TimedMuteConnection

0 comments on commit ac01a9a

Please sign in to comment.