updated library and added sentmsgs to viewer

This commit is contained in:
celso 2023-03-22 08:19:55 -03:00
parent 6a3ae1bbf0
commit e10ee614ed
1 changed files with 8 additions and 3 deletions

11
bot.sh
View File

@ -21,9 +21,14 @@ exec 2>"${bot_tmpdir}/error.log"
while [ "${1}" == "start" ]; do while [ "${1}" == "start" ]; do
grep "\S" <<< $(getupd) >/dev/null || continue grep "\S" <<< $(getupd) >/dev/null || continue
declare -A curmsg declare -A curmsg
# =( [msg_id]="$(getmsg_id)" [user_id]="$(getusr_id)" [chat_id]="$(getchat_id)" [text]="$(gettext)" ) getmsg_content curmsg updates.txt
getmsg_content curmsg
view_content curmsg view_content curmsg
[ "${curmsg[text]}" == "/start" ] && sendmsg "${curmsg[chat_id]}" $(./getip.sh "${bot_tmpdir}") [ "${curmsg[text]}" == "/start" ] && {
sendmsg "${curmsg[chat_id]}" $(./getip.sh "${bot_tmpdir}")
unset curmsg
declare -A curmsg
getmsg_content curmsg sentmsgs.txt
tput setaf 3; view_content curmsg; tput sgr0
}
unset curmsg unset curmsg
done done