File size: 1,057 Bytes
618430a |
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 |
# Ultroid - UserBot
# Copyright (C) 2021-2025 TeamUltroid
#
# This file is a part of < https://github.com/TeamUltroid/Ultroid/ >
# PLease read the GNU Affero General Public License in
# <https://github.com/TeamUltroid/pyUltroid/blob/main/LICENSE>.
from .. import udB
def list_gbanned():
return udB.get_key("GBAN") or {}
def gban(user, reason):
ok = list_gbanned()
ok.update({int(user): reason or "No Reason. "})
return udB.set_key("GBAN", ok)
def ungban(user):
ok = list_gbanned()
if ok.get(int(user)):
del ok[int(user)]
return udB.set_key("GBAN", ok)
def is_gbanned(user):
ok = list_gbanned()
if ok.get(int(user)):
return ok[int(user)]
def gmute(user):
ok = list_gmuted()
ok.append(int(user))
return udB.set_key("GMUTE", ok)
def ungmute(user):
ok = list_gmuted()
if user in ok:
ok.remove(int(user))
return udB.set_key("GMUTE", ok)
def is_gmuted(user):
return int(user) in list_gmuted()
def list_gmuted():
return udB.get_key("GMUTE") or []
|