2016-01-02 19:35:15 +00:00
#!/bin/bash
2016-04-19 09:49:35 +00:00
2015-07-10 05:43:08 +00:00
# bashbot, the Telegram bot written in bash.
2016-04-19 09:49:35 +00:00
# Written by Drew (@topkecleon) and Daniil Gentili (@danogentili).
# Also contributed: JuanPotato, BigNerd95, TiagoDanin, iicc1.
2016-01-05 16:54:34 +00:00
# https://github.com/topkecleon/telegram-bot-bash
2016-04-19 09:49:35 +00:00
# Depends on JSON.sh (http://github.com/dominictarr/JSON.sh) (MIT/Apache),
# and on tmux (http://github.com/tmux/tmux) (BSD).
2015-07-10 05:43:08 +00:00
# This file is public domain in the USA and all free countries.
2016-04-19 09:49:35 +00:00
# Elsewhere, consider it to be WTFPLv2. (wtfpl.net/txt/copying)
2015-07-10 05:43:08 +00:00
2016-05-13 15:45:56 +00:00
if [ ! -f "JSON.sh/JSON.sh" ] ; then
2016-04-19 09:59:37 +00:00
echo "You did not clone recursively! Downloading JSON.sh..."
2016-05-05 13:40:56 +00:00
git clone http://github.com/dominictarr/JSON.sh
2016-04-19 09:59:37 +00:00
echo "JSON.sh has been downloaded. Proceeding."
fi
2016-06-05 10:41:49 +00:00
if [ ! -f "token" ] ; then
clear
echo -e '\e[0;31mTOKEN MISSING.\e[0m'
echo "PLEASE WRITE YOUR TOKEN HERE"
read token
echo " $token " >> token
fi
2016-04-18 10:05:31 +00:00
source commands.sh source
2015-07-10 05:43:08 +00:00
URL = 'https://api.telegram.org/bot' $TOKEN
2016-01-06 16:11:56 +00:00
2016-04-16 01:43:15 +00:00
2016-04-17 12:00:45 +00:00
SCRIPT = " $0 "
2015-11-25 03:07:39 +00:00
MSG_URL = $URL '/sendMessage'
2016-06-05 10:41:49 +00:00
LEAVE_URL = $URL '/leaveChat'
KICK_URL = $URL '/kickChatMember'
UNBAN_URL = $URL '/unbanChatMember'
2015-11-25 03:07:39 +00:00
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'
2016-04-17 18:00:37 +00:00
VENUE_URL = $URL '/sendVenue'
2016-01-06 16:11:56 +00:00
ACTION_URL = $URL '/sendChatAction'
2016-01-17 16:46:24 +00:00
FORWARD_URL = $URL '/forwardMessage'
2016-04-16 01:43:15 +00:00
INLINE_QUERY = $URL '/answerInlineQuery'
2016-04-16 18:50:05 +00:00
ME_URL = $URL '/getMe'
2016-04-19 09:49:35 +00:00
ME = $( curl -s $ME_URL | ./JSON.sh/JSON.sh -s | egrep '\["result","username"\]' | cut -f 2 | cut -d '"' -f 2)
2016-04-16 18:50:05 +00:00
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
2015-12-26 01:47:10 +00:00
send_message( ) {
2016-04-17 12:00:45 +00:00
[ " $2 " = "" ] && return 1
2016-01-05 16:01:28 +00:00
local chat = " $1 "
2016-04-17 18:00:37 +00:00
local text = " $( echo " $2 " | sed 's/ mykeyboardstartshere.*//g;s/ myfilelocationstartshere.*//g;s/ mylatstartshere.*//g;s/ mylongstartshere.*//g;s/ mytitlestartshere.*//g;s/ myaddressstartshere.*//g' ) "
2016-04-16 18:50:05 +00:00
local arg = " $3 "
[ " $3 " != "safe" ] && {
2016-04-17 18:00:37 +00:00
local keyboard = " $( echo " $2 " | sed '/mykeyboardstartshere /!d;s/.*mykeyboardstartshere //g;s/ myfilelocationstartshere.*//g;s/ mylatstartshere.*//g;s/ mylongstartshere.*//g;s/ mytitlestartshere.*//g;s/ myaddressstartshere.*//g' ) "
2016-01-19 13:17:06 +00:00
2016-04-17 18:00:37 +00:00
local file = " $( echo " $2 " | sed '/myfilelocationstartshere /!d;s/.*myfilelocationstartshere //g;s/ mykeyboardstartshere.*//g;s/ mylatstartshere.*//g;s/ mylongstartshere.*//g;s/ mytitlestartshere.*//g;s/ myaddressstartshere.*//g' ) "
2016-01-19 13:17:06 +00:00
2016-04-17 18:00:37 +00:00
local lat = " $( echo " $2 " | sed '/mylatstartshere /!d;s/.*mylatstartshere //g;s/ mykeyboardstartshere.*//g;s/ myfilelocationstartshere.*//g;s/ mylongstartshere.*//g;s/ mytitlestartshere.*//g;s/ myaddressstartshere.*//g' ) "
2016-01-19 13:17:06 +00:00
2016-04-17 18:00:37 +00:00
local long = " $( echo " $2 " | sed '/mylongstartshere /!d;s/.*mylongstartshere //g;s/ mykeyboardstartshere.*//g;s/ myfilelocationstartshere.*//g;s/ mylatstartshere.*//g;s/ mytitlestartshere.*//g;s/ myaddressstartshere.*//g' ) "
2016-04-19 09:49:35 +00:00
2016-04-17 18:00:37 +00:00
local title = " $( echo " $2 " | sed '/mytitlestartshere /!d;s/.*mylongstartshere //g;s/ mykeyboardstartshere.*//g;s/ myfilelocationstartshere.*//g;s/ mylatstartshere.*//g;s/ myaddressstartshere.*//g' ) "
2016-04-19 09:49:35 +00:00
2016-04-17 18:00:37 +00:00
local address = " $( echo " $2 " | sed '/myaddressstartshere /!d;s/.*mylongstartshere //g;s/ mykeyboardstartshere.*//g;s/ myfilelocationstartshere.*//g;s/ mylatstartshere.*//g;s/ mytitlestartshere.*//g' ) "
2016-04-19 09:49:35 +00:00
2016-03-23 14:56:22 +00:00
}
2016-01-05 16:54:34 +00:00
if [ " $keyboard " != "" ] ; then
2016-01-05 16:01:28 +00:00
send_keyboard " $chat " " $text " " $keyboard "
2016-01-05 16:54:34 +00:00
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 "
2016-01-05 16:54:34 +00:00
local sent = y
fi
2016-04-17 18:00:37 +00:00
if [ " $lat " != "" -a " $long " != "" -a " $address " = "" -a " $title " = "" ] ; then
2016-01-19 13:17:06 +00:00
send_location " $chat " " $lat " " $long "
local sent = y
fi
2016-04-17 18:00:37 +00:00
if [ " $lat " != "" -a " $long " != "" -a " $address " != "" -a " $title " != "" ] ; then
send_venue " $chat " " $lat " " $long " " $title " " $address "
local sent = y
fi
2016-01-19 19:27:09 +00:00
if [ " $sent " != "y" ] ; then
2016-04-16 18:50:05 +00:00
send_text " $chat " " $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-04-16 18:50:05 +00:00
send_text( ) {
2016-04-17 12:00:45 +00:00
case " $2 " in
html_parse_mode*)
send_html_message " $1 " " ${ 2 //html_parse_mode } "
; ;
markdown_parse_mode*)
send_markdown_message " $1 " " ${ 2 //markdown_parse_mode } "
; ;
*)
res = $( curl -s " $MSG_URL " -d " chat_id= $1 " -d " text= $2 " )
; ;
esac
2016-04-16 18:50:05 +00:00
}
2016-03-19 01:08:25 +00:00
send_markdown_message( ) {
2016-06-05 10:41:49 +00:00
res = $( curl -s " $MSG_URL " -d " chat_id= $1 " -d " text= $2 " -d "parse_mode=markdown" -d "disable_web_page_preview=true" )
2016-04-17 12:00:45 +00:00
}
send_html_message( ) {
res = $( curl -s " $MSG_URL " -F " chat_id= $1 " -F " text= $2 " -F "parse_mode=html" )
2016-03-19 01:08:25 +00:00
}
2016-06-05 10:41:49 +00:00
kick_chat_member( ) {
res = $( curl -s " $KICK_URL " -F " chat_id= $1 " -F " user_id= $2 " )
}
unban_chat_member( ) {
res = $( curl -s " $UNBAN_URL " -F " chat_id= $1 " -F " user_id= $2 " )
}
leave_chat( ) {
res = $( curl -s " $LEAVE_URL " -F " chat_id= $1 " )
}
2016-04-16 01:43:15 +00:00
answer_inline_query( ) {
case $2 in
"article" )
2016-05-27 15:09:22 +00:00
InlineQueryResult = '[{"type":"' $2 '","id":"' $RANDOM '","title":"' $3 '","message_text":"' $4 '"}]'
2016-04-16 01:43:15 +00:00
; ;
"photo" )
2016-05-27 15:09:22 +00:00
InlineQueryResult = '[{"type":"' $2 '","id":"' $RANDOM '","photo_url":"' $3 '","thumb_url":"' $4 '"}]'
2016-04-16 01:43:15 +00:00
; ;
"gif" )
2016-05-27 15:09:22 +00:00
InlineQueryResult = '[{"type":"' $2 '","id":"' $RANDOM '","gif_url":"' $3 '", "thumb_url":"' $4 '"}]'
2016-04-16 01:43:15 +00:00
; ;
"mpeg4_gif" )
2016-05-27 15:09:22 +00:00
InlineQueryResult = '[{"type":"' $2 '","id":"' $RANDOM '","mpeg4_url":"' $3 '"}]'
2016-04-16 01:43:15 +00:00
; ;
"video" )
2016-05-27 15:09:22 +00:00
InlineQueryResult = '[{"type":"' $2 '","id":"' $RANDOM '","video_url":"' $3 '","mime_type":"' $4 '","thumb_url":"' $5 '","title":"' $6 '"}]'
2016-04-16 01:43:15 +00:00
; ;
"audio" )
2016-05-27 15:09:22 +00:00
InlineQueryResult = '[{"type":"' $2 '","id":"' $RANDOM '","audio_url":"' $3 '","title":"' $4 '"}]'
2016-04-16 01:43:15 +00:00
; ;
"voice" )
2016-05-27 15:09:22 +00:00
InlineQueryResult = '[{"type":"' $2 '","id":"' $RANDOM '","voice_url":"' $3 '","title":"' $4 '"}]'
2016-04-16 01:43:15 +00:00
; ;
"document" )
2016-05-27 15:09:22 +00:00
InlineQueryResult = '[{"type":"' $2 '","id":"' $RANDOM '","title":"' $3 '","caption":"' $4 '","document_url":"' $5 '","mime_type":"' $6 '"}]'
2016-04-16 01:43:15 +00:00
; ;
"location" )
2016-05-27 15:09:22 +00:00
InlineQueryResult = '[{"type":"' $2 '","id":"' $RANDOM '","latitude":"' $3 '","longitude":"' $4 '","title":"' $5 '"}]'
2016-04-16 01:43:15 +00:00
; ;
"venue" )
2016-05-27 15:09:22 +00:00
InlineQueryResult = '[{"type":"' $2 '","id":"' $RANDOM '","latitude":"' $3 '","longitude":"' $4 '","title":"' $5 '","address":"' $6 '"}]'
2016-04-16 18:50:05 +00:00
; ;
2016-04-16 01:43:15 +00:00
"contact" )
2016-05-27 15:09:22 +00:00
InlineQueryResult = '[{"type":"' $2 '","id":"' $RANDOM '","phone_number":"' $3 '","first_name":"' $4 '"}]'
2016-04-16 18:50:05 +00:00
; ;
2016-04-19 09:49:35 +00:00
2016-04-16 01:43:15 +00:00
# Cached media stored in Telegram server
"cached_photo" )
2016-05-27 15:09:22 +00:00
InlineQueryResult = '[{"type":"photo","id":"' $RANDOM '","photo_file_id":"' $3 '"}]'
2016-04-16 01:43:15 +00:00
; ;
"cached_gif" )
2016-05-27 15:09:22 +00:00
InlineQueryResult = '[{"type":"gif","id":"' $RANDOM '","gif_file_id":"' $3 '"}]'
2016-04-16 01:43:15 +00:00
; ;
"cached_mpeg4_gif" )
2016-05-27 15:09:22 +00:00
InlineQueryResult = '[{"type":"mpeg4_gif","id":"' $RANDOM '","mpeg4_file_id":"' $3 '"}]'
2016-04-16 01:43:15 +00:00
; ;
"cached_sticker" )
2016-05-27 15:09:22 +00:00
InlineQueryResult = '[{"type":"sticker","id":"' $RANDOM '","sticker_file_id":"' $3 '"}]'
2016-04-16 01:43:15 +00:00
; ;
"cached_document" )
2016-05-27 15:09:22 +00:00
InlineQueryResult = '[{"type":"document","id":"' $RANDOM '","title":"' $3 '","document_file_id":"' $4 '"}]'
2016-04-16 01:43:15 +00:00
; ;
"cached_video" )
2016-05-27 15:09:22 +00:00
InlineQueryResult = '[{"type":"video","id":"' $RANDOM '","video_file_id":"' $3 '","title":"' $4 '"}]'
2016-04-16 01:43:15 +00:00
; ;
"cached_voice" )
2016-05-27 15:09:22 +00:00
InlineQueryResult = '[{"type":"voice","id":"' $RANDOM '","voice_file_id":"' $3 '","title":"' $4 '"}]'
2016-04-16 01:43:15 +00:00
; ;
"cached_audio" )
2016-05-27 15:09:22 +00:00
InlineQueryResult = '[{"type":"audio","id":"' $RANDOM '","audio_file_id":"' $3 '"}]'
2016-04-16 01:43:15 +00:00
; ;
2016-04-19 09:49:35 +00:00
2016-04-16 01:43:15 +00:00
esac
2016-04-19 09:49:35 +00:00
2016-04-16 01:43:15 +00:00
res = $( curl -s " $INLINE_QUERY " -F " inline_query_id= $1 " -F " results= $InlineQueryResult " )
2016-04-19 09:49:35 +00:00
2016-04-16 01:43:15 +00:00
}
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
2016-01-05 16:54:34 +00:00
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
2016-01-05 16:54:34 +00:00
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( ) {
2016-04-19 09:49:35 +00:00
[ " $1 " != "" ] && echo $FILE_URL $( curl -s " $GET_URL " -F " file_id= $1 " | ./JSON.sh/JSON.sh -s | egrep '\["result","file_path"\]' | cut -f 2 | cut -d '"' -f 2)
2016-01-06 16:11:56 +00:00
}
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
2016-04-18 10:05:31 +00:00
echo " $file " | grep -qE $FILE_REGEX || return
2016-01-19 13:17:06 +00:00
local ext = " ${ file ##*. } "
2016-04-19 09:49:35 +00:00
case $ext in
2016-01-17 16:46:24 +00:00
"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( ) {
2016-04-19 09:49:35 +00:00
[ " $2 " = "" ] && return
2016-01-17 16:46:24 +00:00
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 " )
}
2016-04-17 18:00:37 +00:00
send_venue( ) {
[ " $5 " = "" ] && return
[ " $6 " != "" ] add = " -F \"foursquare_id= $6 \" "
res = $( curl -s " $VENUE_URL " -F " chat_id= $1 " -F " latitude= $2 " -F " longitude= $3 " -F " title= $4 " -F " address= $5 " $add )
}
2016-01-17 16:46:24 +00:00
forward( ) {
[ " $3 " = "" ] && return
2016-04-19 09:49:35 +00:00
res = $( curl -s " $FORWARD_URL " -F " chat_id= $1 " -F " from_chat_id= $2 " -F " message_id= $3 " )
2016-01-17 16:46:24 +00:00
}
2016-01-05 16:01:28 +00:00
startproc( ) {
2016-04-15 17:37:44 +00:00
killproc
2016-04-16 18:50:05 +00:00
mkfifo /tmp/$copname
TMUX = tmux new-session -d -s $copname " $* &>/tmp/ $copname ; echo imprettydarnsuredatdisisdaendofdacmd>/tmp/ $copname "
2016-06-05 10:41:49 +00:00
TMUX = tmux new-session -d -s sendprocess_$copname " bash $SCRIPT outproc ${ CHAT [ID] } $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( ) {
2016-04-17 12:00:45 +00:00
( tmux kill-session -t $copname ; echo imprettydarnsuredatdisisdaendofdacmd>/tmp/$copname ; tmux kill-session -t sendprocess_$copname ; rm -r /tmp/$copname ) 2>/dev/null
2016-04-15 17:37:44 +00:00
}
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
}
2015-12-26 01:47:10 +00:00
process_client( ) {
2016-04-16 18:50:05 +00:00
# Message
MESSAGE = $( echo " $res " | egrep '\["result",0,"message","text"\]' | cut -f 2 | cut -d '"' -f 2)
2016-06-05 10:41:49 +00:00
# Chat
CHAT[ ID] = $( echo " $res " | egrep '\["result",0,"message","chat","id"\]' | cut -f 2)
2016-06-09 12:05:35 +00:00
CHAT[ FIRST_NAME] = $( echo " $res " | egrep '\["result",0,"message","chat","first_name"\]' | cut -f 2 | cut -d '"' -f 2)
CHAT[ LAST_NAME] = $( echo " $res " | egrep '\["result",0,"message","chat","last_name"\]' | cut -f 2 | cut -d '"' -f 2)
CHAT[ USERNAME] = $( echo " $res " | egrep '\["result",0,"message","chat","username"\]' | cut -f 2 | cut -d '"' -f 2)
CHAT[ TITLE] = $( echo " $res " | egrep '\["result",0,"message","chat","title"\]' | cut -f 2 | cut -d '"' -f 2)
2016-04-19 09:49:35 +00:00
2016-01-17 16:46:24 +00:00
# User
2016-06-05 10:41:49 +00:00
USER[ ID] = $( echo " $res " | egrep '\["result",0,"message","from","id"\]' | cut -f 2)
Here you have (#23)
first, test, if is
CHAT[FIRST_NAME]=$(echo "$res" | egrep '\["result",0,"message","chat","first_name"\]' | cut -f 2 | cut -d '"' -f 2)
isnt working, but if is:
GROUP[FIRST_NAME]=$(echo "$res" | egrep '\["result",0,"message","chat","first_name"\]' | cut -f 2 | cut -d '"' -f 2)
is working, can you resolve them? if them have solution, dont marge this pullrequest
2016-06-09 12:04:33 +00:00
USER[ FIRST_NAME] = $( echo " $res " | egrep '\["result",0,"message","from","first_name"\]' | cut -f 2 | cut -d '"' -f 2)
USER[ LAST_NAME] = $( echo " $res " | egrep '\["result",0,"message","from","last_name"\]' | cut -f 2 | cut -d '"' -f 2)
USER[ USERNAME] = $( echo " $res " | egrep '\["result",0,"message","from","username"\]' | cut -f 2 | cut -d '"' -f 2)
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-05-27 13:52:34 +00:00
NAME = " $( echo ${ URLS [*] } | sed 's/.*\///g' ) "
2016-01-17 16:46:24 +00:00
2016-04-19 09:49:35 +00:00
# Tmux
2016-06-05 10:41:49 +00:00
copname = " $ME " _" ${ CHAT [ID] } "
2016-01-17 16:46:24 +00:00
2016-04-17 18:00:37 +00:00
source commands.sh
2016-04-19 09:49:35 +00:00
2016-06-05 10:41:49 +00:00
tmpcount = " COUNT ${ CHAT [ID] } "
2016-04-17 12:00:45 +00:00
cat count | grep -q " $tmpcount " || echo " $tmpcount " >>count
2016-04-16 18:50:05 +00:00
# To get user count execute bash bashbot.sh count
2015-12-26 01:47:10 +00:00
}
2016-03-20 21:34:55 +00:00
# source the script with source as param to use functions in other scripts
2016-04-17 12:13:28 +00:00
while [ " $1 " = = "startbot" ] ; do {
2015-07-10 05:43:08 +00:00
2016-04-19 09:49:35 +00:00
res = $( curl -s $UPD_URL $OFFSET | ./JSON.sh/JSON.sh -s)
2015-07-10 05:43:08 +00:00
2016-01-06 16:11:56 +00:00
# Offset
OFFSET = $( echo " $res " | egrep '\["result",0,"update_id"\]' | cut -f 2)
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
2016-04-16 18:50:05 +00:00
case " $1 " in
"outproc" )
until [ " $line " = "imprettydarnsuredatdisisdaendofdacmd" ] ; do
line =
read -t 10 line
[ " $line " != "" -a " $line " != "imprettydarnsuredatdisisdaendofdacmd" ] && send_message " $2 " " $line "
done </tmp/$3
rm -r /tmp/$3
; ;
"count" )
2016-04-17 12:00:45 +00:00
echo " A total of $( wc -l count | sed 's/count//g' ) users used me. "
2016-04-16 18:50:05 +00:00
; ;
"broadcast" )
2016-04-17 12:00:45 +00:00
echo " Sending the broadcast $* to $( wc -l count | sed 's/count//g' ) users. "
[ $( wc -l count | sed 's/ count//g' ) -gt 300 ] && sleep = "sleep 0.5"
2016-04-16 18:50:05 +00:00
shift
for f in $( cat count) ; do send_message ${ f //COUNT } " $* " ; $sleep ; done
; ;
2016-04-17 12:13:28 +00:00
"start" )
2016-06-05 10:41:49 +00:00
clear
2016-04-17 12:13:28 +00:00
tmux kill-session -t $ME & >/dev/null
2016-06-05 10:41:49 +00:00
tmux new-session -d -s $ME " bash $SCRIPT startbot " && echo -e '\e[0;32mBot started successfully.\e[0m'
echo " Tmux session name $ME " || echo -e '\e[0;31mAn error occurred while starting the bot. \e[0m'
send_markdown_message " ${ CHAT [ID] } " "*Bot started*"
2016-04-17 12:13:28 +00:00
; ;
"kill" )
2016-06-05 10:41:49 +00:00
clear
2016-04-17 12:13:28 +00:00
tmux kill-session -t $ME & >/dev/null
2016-06-05 10:41:49 +00:00
send_markdown_message " ${ CHAT [ID] } " "*Bot stopped*"
echo -e '\e[0;32mOK. Bot stopped successfully.\e[0m'
2016-04-17 12:13:28 +00:00
; ;
"help" )
2016-06-05 10:41:49 +00:00
clear
2016-04-19 09:49:35 +00:00
less README.md
; ;
"attach" )
tmux attach -t $ME
; ;
*)
2016-06-05 10:41:49 +00:00
echo -e '\e[0;31mBAD REQUEST\e[0m'
echo -e '\e[0;31mAvailable arguments: outproc, count, broadcast, start, kill, help, attach\e[0m'
2016-04-17 12:13:28 +00:00
; ;
2016-04-16 18:50:05 +00:00
esac
2016-06-05 10:41:49 +00:00