This repository has been archived by the owner on May 12, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
depen.py
163 lines (133 loc) · 4.85 KB
/
depen.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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
"""
KHB 常用的逻辑判断
注意:一定要以无头修饰器的方式去使用,包括消息链匹配器,且一定要放在消息链匹配器的下面
"""
from graia.amnesia.message import MessageChain
from graia.ariadne import Ariadne
from graia.ariadne.message.element import At, Plain, Image
from graia.ariadne.model import Group, Member, MemberPerm
from graia.broadcast.builtin.decorators import Depend
from graia.broadcast.exceptions import ExecutionStop
import botfunc
def check_authority_bot_op(prompt: bool = True):
"""
检查权限是否是机器人的op
:return: Depend
"""
async def check_authority(app: Ariadne, group: Group, member: Member):
admin = await botfunc.get_all_admin()
if member.id not in admin:
if prompt:
await app.send_message(
group,
MessageChain(
[
At(member.id),
Plain("你没有指定权限,无法执行此指令\n"),
Plain("要求:【是】机器人的op")
]
)
)
raise ExecutionStop
return Depend(check_authority)
def check_authority_group_op(prompt: bool = True):
"""
检查权限是否是群管理员/群主
:return: Depend
"""
async def check_authority(app: Ariadne, group: Group, member: Member):
if member.permission not in [MemberPerm.Administrator, MemberPerm.Owner]:
if prompt:
await app.send_message(
group,
MessageChain(
[
At(member.id),
Plain("你没有指定权限,无法执行此指令\n"),
Plain("要求:【是】群管理员 / 【是】群主")
]
)
)
raise ExecutionStop
return Depend(check_authority)
def check_authority_op(prompt: bool = True):
"""
检查权限是否是群管理员/群主/机器人op
:return: Depend
"""
async def check_authority(app: Ariadne, group: Group, member: Member):
admin = await botfunc.get_all_admin()
if member.permission not in [MemberPerm.Administrator, MemberPerm.Owner] and member.id not in admin:
if prompt:
await app.send_message(
group,
MessageChain(
[
At(member.id),
Plain("你没有指定权限,无法执行此指令\n"),
Plain("要求:【是】群管理员 / 【是】群主 / 【是】机器人op")
]
)
)
raise ExecutionStop
return Depend(check_authority)
def check_authority_black(prompt: bool = True):
"""
检查权限是否是黑名单内的人
:return: Depend
"""
async def check_authority(app: Ariadne, group: Group, member: Member):
sb = await botfunc.get_all_sb()
if member.id not in sb:
if prompt:
await app.send_message(
group,
MessageChain(
[
At(member.id),
Plain("你没有指定权限,无法执行此指令\n"),
Plain("最低要求:【是】黑名单内的人")
]
)
)
raise ExecutionStop
return Depend(check_authority)
def check_authority_not_black(prompt: bool = True):
"""
检查权限是否是黑名单内的人
:return: Depend
"""
async def check_authority(app: Ariadne, group: Group, member: Member):
sb = await botfunc.get_all_sb()
if member.id in sb:
if prompt:
await app.send_message(
group,
MessageChain(
[
At(member.id),
Plain("你没有指定权限,无法执行此指令\n"),
Plain("最低要求:【不是】黑名单内的人")
]
)
)
raise ExecutionStop
return Depend(check_authority)
def match_image():
"""
检测是否含有图片
:return: Depend
"""
async def check_authority(message: MessageChain):
if Image not in message:
raise ExecutionStop
return Depend(check_authority)
def match_text():
"""
检测是否含有文本
:return: Depend
"""
async def check_authority(message: MessageChain):
if Plain not in message:
raise ExecutionStop
return Depend(check_authority)