telegram-bot-bash/bashbot.sh

374 lines
12 KiB
Bash
Raw Normal View History

#!/bin/bash
2015-07-10 05:43:08 +00:00
# bashbot, the Telegram bot written in bash.
2016-03-20 21:34:55 +00:00
# Written by @topkecleon, Juan Potato (@awkward_potato), Lorenzo Santina (BigNerd95) and Daniil Gentili (@danog)
# https://github.com/topkecleon/telegram-bot-bash
# Depends on ./JSON.sh (http://github.com/dominictarr/./JSON.sh),
# which is MIT/Apache-licensed
# And on tmux (https://github.com/tmux/tmux),
# which is BSD-licensed
2015-07-10 05:43:08 +00:00
# This file is public domain in the USA and all free countries.
# If you're in Europe, and public domain does not exist, then haha.
2016-01-19 19:32:29 +00:00
TOKEN='tokenhere'
2015-07-10 05:43:08 +00:00
URL='https://api.telegram.org/bot'$TOKEN
2016-01-06 16:11:56 +00:00
# Set INLINE to 1 in order to receive inline queries.
# To enable this option in your bot, send the /setinline command to @BotFather.
INLINE=0
2016-01-06 16:11:56 +00:00
2015-11-25 03:07:39 +00:00
MSG_URL=$URL'/sendMessage'
PHO_URL=$URL'/sendPhoto'
2016-01-06 16:11:56 +00:00
AUDIO_URL=$URL'/sendAudio'
DOCUMENT_URL=$URL'/sendDocument'
STICKER_URL=$URL'/sendSticker'
VIDEO_URL=$URL'/sendVideo'
VOICE_URL=$URL'/sendVoice'
LOCATION_URL=$URL'/sendLocation'
ACTION_URL=$URL'/sendChatAction'
2016-01-17 16:46:24 +00:00
FORWARD_URL=$URL'/forwardMessage'
INLINE_QUERY=$URL'/answerInlineQuery'
2016-01-06 16:11:56 +00:00
2016-01-05 17:26:27 +00:00
FILE_URL='https://api.telegram.org/file/bot'$TOKEN'/'
2015-07-10 05:43:08 +00:00
UPD_URL=$URL'/getUpdates?offset='
2016-01-06 16:11:56 +00:00
GET_URL=$URL'/getFile'
2015-07-10 05:43:08 +00:00
OFFSET=0
2016-01-19 19:27:09 +00:00
declare -A USER MESSAGE URLS CONTACT LOCATION
2015-07-10 05:43:08 +00:00
send_message() {
2016-01-05 16:01:28 +00:00
local chat="$1"
2016-01-19 13:17:06 +00:00
local text="$(echo "$2" | sed 's/ mykeyboardstartshere.*//g;s/ myfilelocationstartshere.*//g;s/ mylatstartshere.*//g;s/ mylongstartshere.*//g')"
2016-03-23 15:04:28 +00:00
[ "$3" != "text" ] && {
local keyboard="$(echo "$2" | sed '/mykeyboardstartshere /!d;s/.*mykeyboardstartshere //g;s/ myfilelocationstartshere.*//g;s/ mylatstartshere.*//g;s/ mylongstartshere.*//g')"
2016-01-19 13:17:06 +00:00
local file="$(echo "$2" | sed '/myfilelocationstartshere /!d;s/.*myfilelocationstartshere //g;s/ mykeyboardstartshere.*//g;s/ mylatstartshere.*//g;s/ mylongstartshere.*//g')"
2016-01-19 13:17:06 +00:00
local lat="$(echo "$2" | sed '/mylatstartshere /!d;s/.*mylatstartshere //g;s/ mykeyboardstartshere.*//g;s/ myfilelocationstartshere.*//g;s/ mylongstartshere.*//g')"
2016-01-19 13:17:06 +00:00
local long="$(echo "$2" | sed '/mylongstartshere /!d;s/.*mylongstartshere //g;s/ mykeyboardstartshere.*//g;s/ myfilelocationstartshere.*//g;s/ mylatstartshere.*//g')"
}
if [ "$keyboard" != "" ]; then
2016-01-05 16:01:28 +00:00
send_keyboard "$chat" "$text" "$keyboard"
local sent=y
fi
2016-01-19 13:17:06 +00:00
if [ "$file" != "" ]; then
2016-03-20 21:34:55 +00:00
send_file "$chat" "$file" "$text"
local sent=y
fi
2016-01-19 13:17:06 +00:00
if [ "$lat" != "" -a "$long" != "" ]; then
send_location "$chat" "$lat" "$long"
local sent=y
fi
2016-01-19 19:27:09 +00:00
if [ "$sent" != "y" ];then
2016-03-19 01:08:25 +00:00
res=$(curl -s "$MSG_URL" -F "chat_id=$chat" -F "text=$text")
2016-01-19 19:27:09 +00:00
fi
2016-01-03 01:14:07 +00:00
}
2016-01-05 16:01:28 +00:00
2016-03-19 01:08:25 +00:00
send_markdown_message() {
res=$(curl -s "$MSG_URL" -F "chat_id=$1" -F "text=$2" -F "parse_mode=markdown")
}
answer_inline_query() {
case $2 in
"article")
InlineQueryResult='[{"type":"'$2'","id":"$RANDOM","title":"'$3'","message_text":"'$4'"}]'
;;
"photo")
InlineQueryResult='[{"type":"'$2'","id":"$RANDOM","photo_url":"'$3'","thumb_url":"'$4'"}]'
;;
"gif")
InlineQueryResult='[{"type":"'$2'","id":"$RANDOM","gif_url":"'$3'"}]'
;;
"mpeg4_gif")
InlineQueryResult='[{"type":"'$2'","id":"$RANDOM","mpeg4_url":"'$3'"}]'
;;
"video")
InlineQueryResult='[{"type":"'$2'","id":"$RANDOM","video_url":"'$3'","mime_type":"'$4'","thumb_url":"'$5'","title":"'$6'"}]'
;;
"audio")
InlineQueryResult='[{"type":"'$2'","id":"$RANDOM","audio_url":"'$3'","title":"'$4'"}]'
;;
"voice")
InlineQueryResult='[{"type":"'$2'","id":"$RANDOM","voice_url":"'$3'","title":"'$4'"}]'
;;
"document")
InlineQueryResult='[{"type":"'$2'","id":"$RANDOM","title":"'$3'","caption":"'$4'","document_url":"'$5'","mime_type":"'$6'"}]'
;;
"location")
InlineQueryResult='[{"type":"'$2'","id":"$RANDOM","latitude":"'$3'","longitude":"'$4'","title":"'$5'"}]'
;;
"venue")
InlineQueryResult='[{"type":"'$2'","id":"$RANDOM","latitude":"'$3'","longitude":"'$4'","title":"'$5'","address":"'$6'"}]'
;;
"contact")
InlineQueryResult='[{"type":"'$2'","id":"$RANDOM","phone_number":"'$3'","first_name":"'$4'"}]'
;;
# Cached media stored in Telegram server
"cached_photo")
InlineQueryResult='[{"type":"photo","id":"$RANDOM","photo_file_id":"'$3'"}]'
;;
"cached_gif")
InlineQueryResult='[{"type":"gif","id":"$RANDOM","gif_file_id":"'$3'"}]'
;;
"cached_mpeg4_gif")
InlineQueryResult='[{"type":"mpeg4_gif","id":"$RANDOM","mpeg4_file_id":"'$3'"}]'
;;
"cached_sticker")
InlineQueryResult='[{"type":"sticker","id":"$RANDOM","sticker_file_id":"'$3'"}]'
;;
"cached_document")
InlineQueryResult='[{"type":"document","id":"$RANDOM","title":"'$3'","document_file_id":"'$4'"}]'
;;
"cached_video")
InlineQueryResult='[{"type":"video","id":"$RANDOM","video_file_id":"'$3'","title":"'$4'"}]'
;;
"cached_voice")
InlineQueryResult='[{"type":"voice","id":"$RANDOM","voice_file_id":"'$3'","title":"'$4'"}]'
;;
"cached_audio")
InlineQueryResult='[{"type":"audio","id":"$RANDOM","audio_file_id":"'$3'"}]'
;;
esac
res=$(curl -s "$INLINE_QUERY" -F "inline_query_id=$1" -F "results=$InlineQueryResult")
}
2016-01-03 01:14:07 +00:00
send_keyboard() {
2016-01-05 16:01:28 +00:00
local chat="$1"
local text="$2"
shift 2
local keyboard=init
2016-01-22 15:47:58 +00:00
OLDIFS=$IFS
IFS=$(echo -en "\"")
2016-01-22 17:52:37 +00:00
for f in $*;do [ "$f" != " " ] && local keyboard="$keyboard, [\"$f\"]";done
2016-01-22 15:47:58 +00:00
IFS=$OLDIFS
local keyboard=${keyboard/init, /}
2016-01-05 16:01:28 +00:00
res=$(curl -s "$MSG_URL" --header "content-type: multipart/form-data" -F "chat_id=$chat" -F "text=$text" -F "reply_markup={\"keyboard\": [$keyboard],\"one_time_keyboard\": true}")
2015-11-25 03:07:39 +00:00
}
2016-01-06 16:11:56 +00:00
get_file() {
[ "$1" != "" ] && echo $FILE_URL$(curl -s "$GET_URL" -F "file_id=$1" | ./JSON.sh -s | egrep '\["result","file_path"\]' | cut -f 2 | cut -d '"' -f 2)
}
send_file() {
2016-01-17 16:46:24 +00:00
[ "$2" = "" ] && return
2016-01-19 13:17:06 +00:00
local chat_id=$1
local file=$2
echo "$file" | grep -qE '/home/allowed/.*' || return
2016-01-19 13:17:06 +00:00
local ext="${file##*.}"
2016-01-17 16:46:24 +00:00
case $ext in
"mp3")
CUR_URL=$AUDIO_URL
WHAT=audio
STATUS=upload_audio
;;
png|jpg|jpeg|gif)
CUR_URL=$PHO_URL
WHAT=photo
STATUS=upload_photo
;;
webp)
CUR_URL=$STICKER_URL
WHAT=sticker
STATUS=
;;
mp4)
CUR_URL=$VIDEO_URL
WHAT=video
STATUS=upload_video
;;
ogg)
CUR_URL=$VOICE_URL
WHAT=voice
STATUS=
;;
*)
CUR_URL=$DOCUMENT_URL
WHAT=document
STATUS=upload_document
;;
esac
send_action $chat_id $STATUS
2016-01-19 19:27:09 +00:00
res=$(curl -s "$CUR_URL" -F "chat_id=$chat_id" -F "$WHAT=@$file" -F "caption=$3")
2016-01-06 16:11:56 +00:00
}
2016-01-17 16:46:24 +00:00
# typing for text messages, upload_photo for photos, record_video or upload_video for videos, record_audio or upload_audio for audio files, upload_document for general files, find_location for location
send_action() {
[ "$2" = "" ] && return
res=$(curl -s "$ACTION_URL" -F "chat_id=$1" -F "action=$2")
}
send_location() {
[ "$3" = "" ] && return
res=$(curl -s "$LOCATION_URL" -F "chat_id=$1" -F "latitude=$2" -F "longitude=$3")
}
forward() {
[ "$3" = "" ] && return
res=$(curl -s "$FORWARD_URL" -F "chat_id=$1" -F "from_chat_id=$2" -F "message_id=$3")
}
2016-01-05 16:01:28 +00:00
startproc() {
2016-04-15 17:37:44 +00:00
killproc
2016-01-25 12:37:05 +00:00
mkfifo $copname
TMUX= tmux new-session -d -s $copname "$* &>$copname; echo >$copname; sleep 5; rm -r $copname"
while [ -p "$copname" ];do
2016-01-05 16:01:28 +00:00
read -t 10 line
2016-01-06 16:11:56 +00:00
[ "$line" != "" ] && send_message "${USER[ID]}" "$line"
2016-01-05 16:01:28 +00:00
line=
2016-01-25 12:37:05 +00:00
done <$copname
2016-01-02 20:51:45 +00:00
}
2016-01-06 16:11:56 +00:00
2016-04-15 17:37:44 +00:00
killproc() {
(rm -r $copname
tmux kill-session -t $copname)2>/dev/null
}
2016-01-03 01:14:07 +00:00
inproc() {
2016-01-19 19:59:15 +00:00
tmux send-keys -t $copname "$MESSAGE ${URLS[*]}
2016-01-05 16:01:28 +00:00
"
2016-01-03 01:14:07 +00:00
}
process_client() {
2016-01-17 16:46:24 +00:00
# User
USER[FIRST_NAME]=$(echo "$res" | egrep '\["result",0,"message","chat","first_name"\]' | cut -f 2 | cut -d '"' -f 2)
USER[LAST_NAME]=$(echo "$res" | egrep '\["result",0,"message","chat","last_name"\]' | cut -f 2 | cut -d '"' -f 2)
USER[USERNAME]=$(echo "$res" | sed 's/^.*\(username.*\)/\1/g' | cut -d '"' -f3)
2016-01-17 16:46:24 +00:00
# Audio
2016-01-19 19:27:09 +00:00
URLS[AUDIO]=$(get_file $(echo "$res" | egrep '\["result",0,"message","audio","file_id"\]' | cut -f 2 | cut -d '"' -f 2))
# Document
URLS[DOCUMENT]=$(get_file $(echo "$res" | egrep '\["result",0,"message","document","file_id"\]' | cut -f 2 | cut -d '"' -f 2))
2016-01-17 16:46:24 +00:00
# Photo
2016-01-19 19:27:09 +00:00
URLS[PHOTO]=$(get_file $(echo "$res" | egrep '\["result",0,"message","photo",.*,"file_id"\]' | cut -f 2 | cut -d '"' -f 2 | sed -n '$p'))
2016-01-17 16:46:24 +00:00
# Sticker
URLS[STICKER]=$(get_file $(echo "$res" | egrep '\["result",0,"message","sticker","file_id"\]' | cut -f 2 | cut -d '"' -f 2))
# Video
URLS[VIDEO]=$(get_file $(echo "$res" | egrep '\["result",0,"message","video","file_id"\]' | cut -f 2 | cut -d '"' -f 2))
# Voice
URLS[VOICE]=$(get_file $(echo "$res" | egrep '\["result",0,"message","voice","file_id"\]' | cut -f 2 | cut -d '"' -f 2))
# Contact
CONTACT[NUMBER]=$(echo "$res" | egrep '\["result",0,"message","contact","phone_number"\]' | cut -f 2 | cut -d '"' -f 2)
CONTACT[FIRST_NAME]=$(echo "$res" | egrep '\["result",0,"message","contact","first_name"\]' | cut -f 2 | cut -d '"' -f 2)
CONTACT[LAST_NAME]=$(echo "$res" | egrep '\["result",0,"message","contact","last_name"\]' | cut -f 2 | cut -d '"' -f 2)
CONTACT[USER_ID]=$(echo "$res" | egrep '\["result",0,"message","contact","user_id"\]' | cut -f 2 | cut -d '"' -f 2)
# Caption
CAPTION=$(echo "$res" | egrep '\["result",0,"message","caption"\]' | cut -f 2 | cut -d '"' -f 2)
# Location
LOCATION[LONGITUDE]=$(echo "$res" | egrep '\["result",0,"message","location","longitude"\]' | cut -f 2 | cut -d '"' -f 2)
LOCATION[LATITUDE]=$(echo "$res" | egrep '\["result",0,"message","location","latitude"\]' | cut -f 2 | cut -d '"' -f 2)
2016-01-22 15:06:41 +00:00
NAME="$(basename ${URLS[*]} &>/dev/null)"
2016-01-17 16:46:24 +00:00
# Tmux
copname="CO${USER[ID]}"
2016-01-25 12:37:05 +00:00
if ! tmux ls | grep -q $copname; then
[ ! -z ${URLS[*]} ] && {
2016-01-19 19:32:29 +00:00
curl -s ${URLS[*]} -o $NAME
send_file "${USER[ID]}" "$NAME" "$CAPTION"
rm "$NAME"
}
2016-01-25 12:37:05 +00:00
[ ! -z ${LOCATION[*]} ] && send_location "${USER[ID]}" "${LOCATION[LATITUDE]}" "${LOCATION[LONGITUDE]}"
# Inline
if [ $INLINE == 1 ]; then
# inline query data
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
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
if [[ $iQUERY_MSG == sticker ]]; then
answer_inline_query "$iQUERY_ID" "cached_sticker" "BQADBAAD_QEAAiSFLwABWSYyiuj-g4AC"
fi
if [[ $iQUERY_MSG == gif ]]; then
answer_inline_query "$iQUERY_ID" "cached_gif" "BQADBAADIwYAAmwsDAABlIia56QGP0YC"
fi
if [[ $iQUERY_MSG == web ]]; then
answer_inline_query "$iQUERY_ID" "article" "Telegram" "https://telegram.org/"
fi
fi
2016-01-02 20:51:45 +00:00
case $MESSAGE in
2016-01-05 16:01:28 +00:00
'/question')
startproc "./question"&
2016-01-05 16:01:28 +00:00
;;
'/info')
2016-01-06 16:11:56 +00:00
send_message "${USER[ID]}" "This is bashbot, the Telegram bot written entirely in bash."
2016-01-05 16:01:28 +00:00
;;
2016-01-05 16:05:26 +00:00
'/start')
2016-01-06 16:11:56 +00:00
send_message "${USER[ID]}" "This is bashbot, the Telegram bot written entirely in bash.
2016-01-05 16:05:26 +00:00
Features background tasks and interactive chats.
Can serve as an interface for cli programs.
2016-01-19 19:27:09 +00:00
Currently can send, recieve and forward messages, custom keyboards, photos, audio, voice, documents, locations and video files.
2016-01-05 16:14:47 +00:00
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.
Written by @topkecleon, Juan Potato (@awkward_potato), Lorenzo Santina (BigNerd95) and Daniil Gentili (@danogentili)
2016-01-19 19:27:09 +00:00
Contribute to the project: https://github.com/topkecleon/telegram-bot-bash
2016-01-05 16:05:26 +00:00
"
;;
2016-01-19 19:32:29 +00:00
'')
;;
2016-01-05 16:01:28 +00:00
*)
send_message "${USER[ID]}" "$MESSAGE" "text"
2016-01-02 20:51:45 +00:00
esac
2016-01-05 16:01:28 +00:00
else
2016-01-02 20:51:45 +00:00
case $MESSAGE in
2016-01-05 16:01:28 +00:00
'/cancel')
2016-04-15 17:37:44 +00:00
killproc
2016-01-06 16:11:56 +00:00
send_message "${USER[ID]}" "Command canceled."
2016-01-05 16:01:28 +00:00
;;
2016-01-17 16:46:24 +00:00
*) inproc;;
2016-01-02 20:51:45 +00:00
esac
2016-01-05 16:01:28 +00:00
fi
}
2016-03-20 21:34:55 +00:00
# source the script with source as param to use functions in other scripts
while [ "$1" != "source" ]; do {
2015-07-10 05:43:08 +00:00
2016-01-06 16:11:56 +00:00
res=$(curl -s $UPD_URL$OFFSET | ./JSON.sh -s)
2015-07-10 05:43:08 +00:00
2016-01-06 16:11:56 +00:00
# Target
USER[ID]=$(echo "$res" | egrep '\["result",0,"message","chat","id"\]' | cut -f 2)
# Offset
OFFSET=$(echo "$res" | egrep '\["result",0,"update_id"\]' | cut -f 2)
# Message
2016-01-19 19:27:09 +00:00
MESSAGE=$(echo "$res" | egrep '\["result",0,"message","text"\]' | cut -f 2 | cut -d '"' -f 2)
2016-01-06 16:11:56 +00:00
2015-07-10 05:43:08 +00:00
OFFSET=$((OFFSET+1))
2015-07-10 07:32:34 +00:00
if [ $OFFSET != 1 ]; then
2016-01-06 16:11:56 +00:00
process_client&
2015-07-10 07:32:34 +00:00
fi
2015-07-10 05:43:08 +00:00
2016-01-05 16:01:28 +00:00
}; done