2018-01-19 18:04:38 -05:00
|
|
|
#!/usr/bin/env python3
|
2017-11-22 19:26:40 -05:00
|
|
|
"""
|
|
|
|
ban he
|
|
|
|
ban he
|
|
|
|
ban he
|
|
|
|
"""
|
2018-01-19 18:04:38 -05:00
|
|
|
import time
|
|
|
|
|
2017-11-22 19:26:40 -05:00
|
|
|
import module
|
|
|
|
import modules.adminchannel
|
|
|
|
|
|
|
|
@module.commands('banhe')
|
|
|
|
@module.example('.banhe assfaggot 30m')
|
|
|
|
def banhe(bot, trigger):
|
|
|
|
"""
|
|
|
|
Bans he for a set period of time. Admins may set the period of time,
|
|
|
|
non-admins only get 20 second bans.
|
|
|
|
"""
|
|
|
|
banhee, period = trigger.group(3), trigger.group(4)
|
2018-01-19 18:04:38 -05:00
|
|
|
trigger.set_nick(bot.nick)
|
2017-11-22 19:26:40 -05:00
|
|
|
|
|
|
|
if not trigger.admin:
|
|
|
|
period = 20
|
|
|
|
else:
|
|
|
|
conv = {'s':1, 'm':60, 'h':3600, 'd':86400}
|
|
|
|
try:
|
|
|
|
period = conv[period[-1]] * int(period[:-1])
|
|
|
|
except (KeyError, ValueError, TypeError):
|
|
|
|
period = 0
|
|
|
|
|
2018-01-19 18:04:38 -05:00
|
|
|
modules.adminchannel.ban(bot, trigger)
|
2017-11-22 19:26:40 -05:00
|
|
|
if period > 2592000:
|
|
|
|
bot.reply("It's too big, Onii-chan.")
|
|
|
|
if not period or period > 2592000:
|
2018-01-19 18:04:38 -05:00
|
|
|
return bot.say(f"Banned \x0304{banhee}\x03 for \x0309∞\x03 seconds.")
|
2017-11-22 19:26:40 -05:00
|
|
|
|
2018-01-19 18:04:38 -05:00
|
|
|
bot.say(f"Banned \x0304{banhee}\x03 for \x0309{str(period)}\x03 seconds.")
|
2017-11-22 19:26:40 -05:00
|
|
|
time.sleep(period)
|
2018-01-19 18:04:38 -05:00
|
|
|
modules.adminchannel.unban(bot, trigger)
|
2017-11-22 19:26:40 -05:00
|
|
|
bot.say("Unbanned \x0304" + banhee + "\x03")
|
2018-01-19 18:04:38 -05:00
|
|
|
|