-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoper_control_panel.py
executable file
·73 lines (66 loc) · 2.3 KB
/
oper_control_panel.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
#!/usr/bin/env python
#
# Name: oper.py
# Author: ekim
# Date: Nov 23rd, 2016
# Summary: OPER mode command control panel
#
from __future__ import print_function
from sopel import module, tools, config
from sopel.tools.target import User, Channel
from sopel.tools import Identifier, iteritems, events
'''
Define some memory dicts/lists for keeping track of users who become OPs.
'''
def setup(bot):
bot.memory['opers'] = {}
'''
Allow bot admins to gain channel OPs mode.
'''
#@module.require_privmsg
#@module.require_admin
@module.commands('opme')
@module.priority('low')
@module.rate('300')
def opme(bot, trigger):
nickname = trigger.nick
channel = trigger.sender
if trigger.admin:
if bot.memory['opers'].get(nickname, None) == None:
mode = "+o"
bot.write(['MODE ', channel, mode, nickname])
bot.memory['opers'][nickname] = 1
print("Current Opers:", bot.memory['opers'])
elif bot.memory['opers'].get(nickname, None) == 1:
mode = "-o"
bot.write(['MODE ', channel, mode, nickname])
del bot.memory['opers'][nickname]
print("Current Opers:", bot.memory['opers'])
else:
bot.reply("No ops for you chamo, your mama don't love you")
'''
Functionality for bot admins to admin other users regardless of the fact whether
they have channel OPs or not.
NOTE: this could prove to be dangerous thus requires a bit more testing. This is
equivalent to having global server ops.
'''
#@module.require_admin
@module.commands('op')
@module.priority('low')
@module.rate('300')
def op_user(bot, trigger):
if trigger.admin:
nickname = trigger.group(2)
channel = trigger.sender
if bot.memory['opers'].get(nickname, None) == None:
mode = "+o"
bot.write(['MODE ', channel, mode, nickname])
bot.memory['opers'][nickname] = 1
print("Current Opers:", bot.memory['opers'])
elif bot.memory['opers'].get(nickname, None) == 1:
mode = "-o"
bot.write(['MODE ', channel, mode, nickname])
del bot.memory['opers'][nickname]
print("Current Opers:", bot.memory['opers'])
else:
bot.reply("No ops for that chamo, go chop bongs")