* Ultroid 2025 Co-authored-by: New-dev0 <New-dev0@users.noreply.github.com> Co-authored-by: Amit Sharma <buddhhu@users.noreply.github.com> Co-authored-by: TechiError <techierror@users.noreply.github.com> Co-authored-by: Aditya <me@xditya.me> Co-authored-by: Arnab Paryali <Arnabxd@users.noreply.github.com> Co-authored-by: hellboi_atul <hellboi-atul@users.noreply.github.com> Co-authored-by: sppidy <sppidy@users.noreply.github.com>
34 lines
823 B
Python
34 lines
823 B
Python
# 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 datetime import datetime as dt
|
|
|
|
from .. import udB
|
|
|
|
|
|
def get_stuff():
|
|
return udB.get_key("AFK_DB") or []
|
|
|
|
|
|
def add_afk(msg, media_type, media):
|
|
time = dt.now().strftime("%b %d %Y %I:%M:%S%p")
|
|
udB.set_key("AFK_DB", [msg, media_type, media, time])
|
|
return
|
|
|
|
|
|
def is_afk():
|
|
afk = get_stuff()
|
|
if afk:
|
|
start_time = dt.strptime(afk[3], "%b %d %Y %I:%M:%S%p")
|
|
afk_since = str(dt.now().replace(microsecond=0) - start_time)
|
|
return afk[0], afk[1], afk[2], afk_since
|
|
return False
|
|
|
|
|
|
def del_afk():
|
|
return udB.del_key("AFK_DB")
|