telegram-bot-bash/commands.sh

162 lines
5.4 KiB
Bash
Raw Normal View History

#!/bin/bash
# Edit your commands in this file.
# This file is public domain in the USA and all free countries.
# Elsewhere, consider it to be WTFPLv2. (wtfpl.net/txt/copying)
#
2019-04-23 13:48:58 +00:00
#### $$VERSION$$ v0.70-dev2-10-gfa9e879
2019-04-01 16:24:05 +00:00
#
# shellcheck disable=SC2154
# shellcheck disable=SC2034
2019-04-12 12:04:57 +00:00
SC2034="$CONTACT" # mute CONTACT not used ;-)
# adjust your language setting here, e.g.when run from other user or cron.
# https://github.com/topkecleon/telegram-bot-bash#setting-up-your-environment
2019-03-30 14:11:33 +00:00
export 'LC_ALL=C.UTF-8'
export 'LANG=C.UTF-8'
export 'LANGUAGE=C.UTF-8'
unset IFS
# set -f # if you are paranoid use set -f to disable globbing
2019-04-11 11:53:01 +00:00
2019-04-20 14:26:16 +00:00
if [ "$1" != "source" ]; then
# change Info anf Help to fit your needs
bashbot_info() {
2019-04-11 11:53:01 +00:00
send_markdown_message "${1}" 'This is bashbot, the Telegram bot written entirely in bash.
It features background tasks and interactive chats, and can serve as an interface for CLI programs.
It currently can send, recieve and forward messages, custom keyboards, photos, audio, voice, documents, locations and video files.
'
2019-04-20 14:26:16 +00:00
}
2019-04-11 11:53:01 +00:00
2019-04-20 14:26:16 +00:00
bashbot_help() {
2019-04-11 11:53:01 +00:00
send_markdown_message "${1}" '*Available commands*:
*• /start*: _Start bot and get this message_.
*• /info*: _Get shorter info message about this bot_.
*• /question*: _Start interactive chat_.
*• /cancel*: _Cancel any currently running interactive chats_.
*• /kickme*: _You will be autokicked from the chat_.
*• /leavechat*: _The bot will leave the group with this command _.
Written by Drew (@topkecleon), Daniil Gentili (@danogentili) and KayM(@gnadelwartz).
Get the code in my [GitHub](http://github.com/topkecleon/telegram-bot-bash)
'
2019-04-20 14:26:16 +00:00
}
2019-04-11 11:53:01 +00:00
2019-04-12 12:04:57 +00:00
# some handy shortcuts, e.g.:
2019-04-20 14:26:16 +00:00
_is_botadmin() {
2019-04-12 12:04:57 +00:00
user_is_botadmin "${USER[ID]}"
2019-04-20 14:26:16 +00:00
}
_is_admin() {
2019-04-12 12:04:57 +00:00
user_is_admin "${CHAT[ID]}" "${USER[ID]}"
2019-04-20 14:26:16 +00:00
}
_is_allowed() { # $1 = resource
2019-04-12 12:04:57 +00:00
user_is_allowed "${USER[ID]}" "$1" "${CHAT[ID]}"
2019-04-20 14:26:16 +00:00
}
fi
2019-04-12 12:04:57 +00:00
if [ "$1" = "source" ];then
# Set INLINE to 1 in order to receive inline queries.
# To enable this option in your bot, send the /setinline command to @BotFather.
2019-03-30 14:11:33 +00:00
INLINE="0"
# Set to .* to allow sending files from all locations
FILE_REGEX='/home/user/allowed/.*'
else
2019-03-30 14:11:33 +00:00
if ! tmux ls | grep -v send | grep -q "$copname"; then
[ ! -z "${URLS[*]}" ] && {
2019-04-01 16:24:05 +00:00
curl -s "${URLS[*]}" -o "$NAME"
send_file "${CHAT[ID]}" "$NAME" "$CAPTION"
2019-03-28 19:59:52 +00:00
rm -f "$NAME"
}
2019-04-01 16:24:05 +00:00
[ ! -z "${LOCATION[*]}" ] && send_location "${CHAT[ID]}" "${LOCATION[LATITUDE]}" "${LOCATION[LONGITUDE]}"
# Inline
2019-04-15 12:17:18 +00:00
if [ "$INLINE" = 1 ]; then
# inline query data
2019-03-30 14:11:33 +00:00
iUSER[FIRST_NAME]="$(echo "$res" | sed 's/^.*\(first_name.*\)/\1/g' | cut -d '"' -f3 | tail -1)"
iUSER[LAST_NAME]="$(echo "$res" | sed 's/^.*\(last_name.*\)/\1/g' | cut -d '"' -f3)"
iUSER[USERNAME]="$(echo "$res" | sed 's/^.*\(username.*\)/\1/g' | cut -d '"' -f3 | tail -1)"
iQUERY_ID="$(echo "$res" | sed 's/^.*\(inline_query.*\)/\1/g' | cut -d '"' -f5 | tail -1)"
iQUERY_MSG="$(echo "$res" | sed 's/^.*\(inline_query.*\)/\1/g' | cut -d '"' -f5 | tail -6 | head -1)"
# Inline examples
2019-04-15 12:17:18 +00:00
if [[ "$iQUERY_MSG" = "photo" ]]; then
answer_inline_query "$iQUERY_ID" "photo" "http://blog.techhysahil.com/wp-content/uploads/2016/01/Bash_Scripting.jpeg" "http://blog.techhysahil.com/wp-content/uploads/2016/01/Bash_Scripting.jpeg"
fi
2019-04-15 12:17:18 +00:00
if [[ "$iQUERY_MSG" = "sticker" ]]; then
answer_inline_query "$iQUERY_ID" "cached_sticker" "BQADBAAD_QEAAiSFLwABWSYyiuj-g4AC"
fi
2019-04-15 12:17:18 +00:00
if [[ "$iQUERY_MSG" = "gif" ]]; then
answer_inline_query "$iQUERY_ID" "cached_gif" "BQADBAADIwYAAmwsDAABlIia56QGP0YC"
fi
2019-04-15 12:17:18 +00:00
if [[ "$iQUERY_MSG" = "web" ]]; then
answer_inline_query "$iQUERY_ID" "article" "GitHub" "http://github.com/topkecleon/telegram-bot-bash"
fi
fi &
fi
case "$MESSAGE" in
'/question')
checkproc
2019-04-01 16:24:05 +00:00
if [ "$res" -gt 0 ] ; then
2019-04-19 08:43:06 +00:00
startproc "example/question"
else
send_normal_message "${CHAT[ID]}" "$MESSAGE already running ..."
fi
;;
'/run-notify')
myback="notify"; checkback "$myback"
2019-04-01 16:24:05 +00:00
if [ "$res" -gt 0 ] ; then
2019-04-19 08:43:06 +00:00
background "example/notify 60" "$myback" # notify every 60 seconds
else
send_normal_message "${CHAT[ID]}" "Background command $myback already running ..."
fi
;;
'/stop-notify')
myback="notify"; checkback "$myback"
2019-04-01 16:24:05 +00:00
if [ "$res" -eq 0 ] ; then
killback "$myback"
send_normal_message "${CHAT[ID]}" "Background command $myback canceled."
else
send_normal_message "${CHAT[ID]}" "No background command $myback is currently running.."
fi
;;
################################################
# DEFAULT commands start here, edit messages only
'/info')
2019-04-11 11:53:01 +00:00
bashbot_info "${CHAT[ID]}"
;;
'/start')
send_action "${CHAT[ID]}" "typing"
2019-04-15 12:17:18 +00:00
_is_botadmin && send_markdown_message "${CHAT[ID]}" "You are *BOTADMIN*."
if _is_allowed "start" ; then
2019-04-12 11:14:33 +00:00
bot_help "${CHAT[ID]}"
else
send_normal_message "${CHAT[ID]}" "You are not allowed to start Bot."
2019-04-12 12:04:57 +00:00
fi
;;
'/leavechat') # bot leave chat if user is admin in chat
2019-04-15 12:17:18 +00:00
if _is_admin ; then
send_markdown_message "${CHAT[ID]}" "*LEAVING CHAT...*"
leave_chat "${CHAT[ID]}"
fi
;;
'/kickme')
kick_chat_member "${CHAT[ID]}" "${USER[ID]}"
unban_chat_member "${CHAT[ID]}" "${USER[ID]}"
;;
'/cancel')
checkprog
2019-04-01 16:24:05 +00:00
if [ "$res" -eq 0 ] ; then killproc && send_message "${CHAT[ID]}" "Command canceled.";else send_message "${CHAT[ID]}" "No command is currently running.";fi
;;
2019-04-15 12:17:18 +00:00
*) # forward input to interactive chat if running
2019-04-15 19:06:29 +00:00
if tmux ls | grep -v send | grep -q "$copname"; then inproc; fi
;;
esac
fi