2019-04-23 19:52:57 +00:00
|
|
|
|
#!/bin/bash
|
2020-05-14 12:21:15 +00:00
|
|
|
|
#########
|
|
|
|
|
#
|
2019-04-23 19:52:57 +00:00
|
|
|
|
# files: mycommands.sh.dist
|
|
|
|
|
#
|
2020-05-14 13:02:17 +00:00
|
|
|
|
# this is an out of the box test and example file to show what you can do in mycommands.sh
|
2020-05-14 12:21:15 +00:00
|
|
|
|
#
|
2020-05-14 13:02:17 +00:00
|
|
|
|
# #### if you start to develop your own bot, use the clean version of this file:
|
2020-05-14 12:21:15 +00:00
|
|
|
|
# #### mycommands.clean
|
|
|
|
|
#
|
2020-06-23 14:35:50 +00:00
|
|
|
|
#### $$VERSION$$ v0.98-dev-70-g694ee61
|
2019-04-23 19:52:57 +00:00
|
|
|
|
#
|
2019-04-24 11:34:44 +00:00
|
|
|
|
|
2019-04-24 11:40:59 +00:00
|
|
|
|
# uncomment the following lines to overwrite info and help messages
|
2020-05-14 20:12:44 +00:00
|
|
|
|
# export bashbot_info='This is bashbot, the Telegram bot written entirely in bash.
|
2019-04-24 11:34:44 +00:00
|
|
|
|
#'
|
2020-05-14 20:12:44 +00:00
|
|
|
|
# export bashbot_help='*Available commands*:
|
2019-04-24 11:34:44 +00:00
|
|
|
|
#'
|
2020-05-14 20:12:44 +00:00
|
|
|
|
export res=""
|
2019-04-24 11:34:44 +00:00
|
|
|
|
|
2019-05-16 14:42:38 +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.
|
|
|
|
|
export INLINE="0"
|
|
|
|
|
# Set to .* to allow sending files from all locations
|
2019-12-07 12:25:50 +00:00
|
|
|
|
# NOTE: this is a regex, not shell globbing! you must use a valid egex,
|
2020-06-23 14:35:50 +00:00
|
|
|
|
# '.' matches any character and '.*' matches all remaining charatcers!
|
|
|
|
|
# additionally you must escape special characters with '\', e.g. '\. \? \[ \*" to match them literally
|
2020-05-14 20:12:44 +00:00
|
|
|
|
export FILE_REGEX="${BASHBOT_ETC}/.*"
|
2019-05-23 17:40:15 +00:00
|
|
|
|
# example: run bashbot over TOR
|
|
|
|
|
# export BASHBOT_CURL_ARGS="--socks5-hostname 127.0.0.1:9050"
|
2019-04-24 11:34:44 +00:00
|
|
|
|
|
2020-06-11 06:33:59 +00:00
|
|
|
|
# set BASHBOT_RETRY to enable retry in case of recoverable errors, e.g. throtteling
|
|
|
|
|
# problems with send_,´message etc are looged to logs/ERROR.log
|
|
|
|
|
unset BASHBOT_RETRY
|
|
|
|
|
#export BASHBOT_RETRY="yes"
|
2020-06-09 14:51:50 +00:00
|
|
|
|
|
|
|
|
|
# set value for adaptive sleeping while waitingnfor uodates in millisconds
|
|
|
|
|
# max slepp between polling updates 10s (default 5s)
|
|
|
|
|
export BASHBOT_SLEEP="10000"
|
2020-06-23 14:35:50 +00:00
|
|
|
|
# add 0.2s if no update available, up to BASHBOT_SLEEP (default 0.1s)
|
2020-06-09 14:51:50 +00:00
|
|
|
|
export BASHBOT_SLEEP_STEP="200"
|
|
|
|
|
|
|
|
|
|
# if you want to use timer functions, set BASHBOT_START_TImer to not empty value
|
|
|
|
|
# default is to nit start timer
|
|
|
|
|
unset BASHBOT_START_TIMER
|
|
|
|
|
#export BASHBOT_START_TIMER="yes"
|
2020-06-09 09:57:25 +00:00
|
|
|
|
|
2020-05-14 13:02:17 +00:00
|
|
|
|
# set to "yes" and give your bot admin privilegs to remove service messaes from groups
|
|
|
|
|
export SILENCER="no"
|
|
|
|
|
|
2020-05-16 20:10:12 +00:00
|
|
|
|
# messages for admin only commands
|
|
|
|
|
NOTADMIN="Sorry, this command is allowed for admin or owner only"
|
|
|
|
|
NOTBOTADMIN="Sorry, this command is allowed for bot owner only"
|
2020-05-14 13:02:17 +00:00
|
|
|
|
|
|
|
|
|
if [ "$1" = "startbot" ];then
|
|
|
|
|
###################
|
2020-06-11 07:23:03 +00:00
|
|
|
|
# this function is run once after startup when the first message is received
|
2020-05-14 13:02:17 +00:00
|
|
|
|
my_startup(){
|
|
|
|
|
# send message ito first user on startup
|
|
|
|
|
send_normal_message "${CHAT[ID]}" "Hi, you was the first one after startup!"
|
|
|
|
|
}
|
|
|
|
|
# reminde bot that it was started
|
|
|
|
|
touch .mystartup
|
|
|
|
|
else
|
2020-06-23 14:35:50 +00:00
|
|
|
|
# here we call the function above when the message arrives
|
|
|
|
|
# things to do only at source, eg. after startup
|
2020-05-14 13:02:17 +00:00
|
|
|
|
[ -f .mystartup ] && rm -f .mystartup && _exec_if_function my_startup
|
|
|
|
|
|
|
|
|
|
#############################
|
|
|
|
|
# your own bashbot commands
|
2019-05-02 10:33:10 +00:00
|
|
|
|
# NOTE: command can have @botname attached, you must add * in case tests...
|
|
|
|
|
mycommands() {
|
2019-04-23 19:52:57 +00:00
|
|
|
|
|
2020-05-14 13:02:17 +00:00
|
|
|
|
##############
|
2020-06-11 07:23:03 +00:00
|
|
|
|
# a service Message was received
|
2020-05-14 13:02:17 +00:00
|
|
|
|
# add your own stuff here
|
2020-05-14 18:49:13 +00:00
|
|
|
|
if [ -n "${SERVICE}" ]; then
|
2020-05-14 13:02:17 +00:00
|
|
|
|
|
|
|
|
|
# example: delete every service message
|
|
|
|
|
if [ "${SILENCER}" = "yes" ]; then
|
|
|
|
|
delete_message "${CHAT[ID]}" "${MESSAGE[ID]}"
|
|
|
|
|
fi
|
|
|
|
|
fi
|
|
|
|
|
|
2020-06-23 14:35:50 +00:00
|
|
|
|
# example for actions based on chat or sender
|
2020-06-19 21:26:52 +00:00
|
|
|
|
case "${USER[ID]}+${CHAT[ID]}" in
|
|
|
|
|
'USERID+'*) # do something for all messages from USER
|
|
|
|
|
printf "%s: U=%s C=%s M=%s\n" "$(date)" "${USER[ID]}" "${CHAT[ID]}" "${MESSAGE}" >>"${DATADIR}/${USER[ID]}.log"
|
|
|
|
|
;;&
|
|
|
|
|
*'+CHATID') # do something for all messages from CHAT
|
|
|
|
|
printf "%s: U=%s C=%s M=%s\n" "$(date)" "${USER[ID]}" "${CHAT[ID]}" "${MESSAGE}" >>"${DATADIR}/${CHAT[ID]}.log"
|
|
|
|
|
;;&
|
|
|
|
|
'USERID+CHATID') # do something only for messages form USER in CHAT
|
|
|
|
|
printf "%s: U=%s C=%s M=%s\n" "$(date)" "${USER[ID]}" "${CHAT[ID]}" "${MESSAGE}" >>"${DATADIR}/${CHAT[ID]}+${USER[ID]}.log"
|
|
|
|
|
;;&
|
|
|
|
|
esac
|
|
|
|
|
|
2020-05-16 20:10:12 +00:00
|
|
|
|
# pre-check admin only commands
|
|
|
|
|
case "${MESSAGE}" in
|
|
|
|
|
# must be private, group admin, or botadmin
|
|
|
|
|
'/run_'*|'stop_'*)
|
|
|
|
|
send_action "${CHAT[ID]}" "typing"
|
|
|
|
|
if ! user_is_admin "${CHAT[ID]}" "${USER[ID]}" ; then
|
|
|
|
|
send_normal_message "${CHAT[ID]}" "${NOTADMIN}"; return 1
|
|
|
|
|
fi
|
|
|
|
|
# ok, now lets process the real command
|
|
|
|
|
;;
|
|
|
|
|
# must be botadmin
|
|
|
|
|
'/echo'*)
|
|
|
|
|
send_action "${CHAT[ID]}" "typing"
|
|
|
|
|
if ! user_is_botadmin "${USER[ID]}" ; then
|
|
|
|
|
send_markdown_message "${CHAT[ID]}" "*${NOTBOTADMIN}*"; return 1
|
|
|
|
|
fi
|
|
|
|
|
;;
|
2020-06-17 16:36:05 +00:00
|
|
|
|
# will we process edited messages also?
|
|
|
|
|
'/edited_message'*)
|
|
|
|
|
return 1 # no
|
|
|
|
|
# but if we do, remove /edited_message
|
|
|
|
|
MESSAGE="${MESSAGE#/* }"
|
|
|
|
|
;;
|
2020-05-16 20:10:12 +00:00
|
|
|
|
esac
|
|
|
|
|
|
2019-05-14 11:16:58 +00:00
|
|
|
|
case "${MESSAGE}" in
|
2019-05-25 11:31:36 +00:00
|
|
|
|
##################
|
|
|
|
|
# example commands, replace thm by your own
|
2019-04-23 19:52:57 +00:00
|
|
|
|
'/echo'*) # example echo command
|
|
|
|
|
send_normal_message "${CHAT[ID]}" "$MESSAGE"
|
|
|
|
|
;;
|
2019-04-27 11:36:32 +00:00
|
|
|
|
'/question'*) # start interactive questions
|
2019-04-23 19:52:57 +00:00
|
|
|
|
checkproc
|
|
|
|
|
if [ "$res" -gt 0 ] ; then
|
2019-05-20 10:12:11 +00:00
|
|
|
|
startproc "examples/question.sh" || _message "Can't start question."
|
2019-04-23 19:52:57 +00:00
|
|
|
|
else
|
|
|
|
|
send_normal_message "${CHAT[ID]}" "$MESSAGE already running ..."
|
|
|
|
|
fi
|
|
|
|
|
;;
|
|
|
|
|
|
2019-06-02 10:15:59 +00:00
|
|
|
|
'/cancel'*) # cancel interactive command
|
|
|
|
|
checkproc
|
|
|
|
|
if [ "$res" -gt 0 ] ;then killproc && _message "Command canceled.";else _message "No command is currently running.";fi
|
|
|
|
|
;;
|
2019-05-01 17:21:57 +00:00
|
|
|
|
'/run_notify'*) # start notify background job
|
2019-04-23 19:52:57 +00:00
|
|
|
|
myback="notify"; checkback "$myback"
|
|
|
|
|
if [ "$res" -gt 0 ] ; then
|
2019-05-20 10:12:11 +00:00
|
|
|
|
background "examples/notify.sh 60" "$myback" || _message "Can't start notify."
|
2019-04-23 19:52:57 +00:00
|
|
|
|
else
|
|
|
|
|
send_normal_message "${CHAT[ID]}" "Background command $myback already running ..."
|
|
|
|
|
fi
|
|
|
|
|
;;
|
2019-05-01 17:21:57 +00:00
|
|
|
|
'/stop_notify'*) # kill notify background job
|
2019-04-23 19:52:57 +00:00
|
|
|
|
myback="notify"; checkback "$myback"
|
|
|
|
|
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
|
|
|
|
|
;;
|
|
|
|
|
|
2019-05-25 11:31:36 +00:00
|
|
|
|
##########
|
|
|
|
|
# command overwrite examples
|
2019-06-02 10:15:59 +00:00
|
|
|
|
'/info'*) # output date in front of regular info
|
2019-05-25 11:31:36 +00:00
|
|
|
|
send_normal_message "${CHAT[ID]}" "$(date)"
|
|
|
|
|
return 0
|
|
|
|
|
;;
|
|
|
|
|
'/kickme'*) # this will replace the /kickme command
|
|
|
|
|
send_markdown_mesage "${CHAT[ID]}" "*This bot will not kick you!*"
|
|
|
|
|
return 1
|
|
|
|
|
;;
|
2019-04-23 19:52:57 +00:00
|
|
|
|
esac
|
2019-05-02 10:33:10 +00:00
|
|
|
|
}
|
2019-04-23 19:52:57 +00:00
|
|
|
|
|
2019-05-09 21:34:45 +00:00
|
|
|
|
myinlines() {
|
|
|
|
|
#######################
|
2020-06-23 14:35:50 +00:00
|
|
|
|
# Inline query examples, do not use them in production (except image search ;-)
|
2019-05-09 21:34:45 +00:00
|
|
|
|
# shellcheck disable=SC2128
|
2019-05-10 19:38:25 +00:00
|
|
|
|
iQUERY="${iQUERY,,}" # all lowercase
|
2019-05-09 21:34:45 +00:00
|
|
|
|
case "${iQUERY}" in
|
2019-05-10 16:50:30 +00:00
|
|
|
|
"image "*) # search images with yahoo
|
2019-05-09 21:34:45 +00:00
|
|
|
|
local search="${iQUERY#* }"
|
|
|
|
|
answer_inline_multi "${iQUERY[ID]}" "$(my_image_search "${search}")"
|
|
|
|
|
;;
|
2019-05-10 16:50:30 +00:00
|
|
|
|
|
|
|
|
|
"0"*) # a single message with title
|
|
|
|
|
answer_inline_query "${iQUERY[ID]}" "message" "Title of the result" "Content of the message to be sent"
|
|
|
|
|
;;
|
|
|
|
|
"1"*) # a single photo
|
|
|
|
|
answer_inline_query "${iQUERY[ID]}" "photo" "https://avatars.githubusercontent.com/u/13046303" "https://avatars.githubusercontent.com/u/13046303"
|
|
|
|
|
;;
|
|
|
|
|
"2"*) # two photos
|
2019-05-09 21:34:45 +00:00
|
|
|
|
answer_inline_multi "${iQUERY[ID]}" "
|
2019-05-10 12:56:53 +00:00
|
|
|
|
$(inline_query_compose "$RANDOM" "photo" "https://avatars.githubusercontent.com/u/13046303"),
|
|
|
|
|
$(inline_query_compose "$RANDOM" "photo" "https://avatars.githubusercontent.com/u/4593242")
|
2019-05-09 21:34:45 +00:00
|
|
|
|
"
|
|
|
|
|
;;
|
2019-05-10 16:50:30 +00:00
|
|
|
|
"3"*) # three photos
|
|
|
|
|
answer_inline_multi "${iQUERY[ID]}" "
|
|
|
|
|
$(inline_query_compose "$RANDOM" "photo" "https://avatars.githubusercontent.com/u/13046303"),
|
|
|
|
|
$(inline_query_compose "$RANDOM" "photo" "https://avatars.githubusercontent.com/u/4593242")
|
|
|
|
|
$(inline_query_compose "$RANDOM" "photo" "https://avatars.githubusercontent.com/u/102707")
|
|
|
|
|
"
|
|
|
|
|
;;
|
2019-05-09 21:34:45 +00:00
|
|
|
|
|
2019-05-10 16:50:30 +00:00
|
|
|
|
"4") # four photo from array
|
2019-05-10 12:56:53 +00:00
|
|
|
|
local sep=""
|
|
|
|
|
local avatar=("https://avatars.githubusercontent.com/u/13046303" "https://avatars.githubusercontent.com/u/4593242" "https://avatars.githubusercontent.com/u/102707" "https://avatars.githubusercontent.com/u/6460407")
|
|
|
|
|
answer_inline_multi "${iQUERY[ID]}" "
|
|
|
|
|
$(for photo in ${avatar[*]} ; do
|
|
|
|
|
echo "${sep}"; inline_query_compose "$RANDOM" "photo" "${photo}" "${photo}"; sep=","
|
|
|
|
|
done)
|
|
|
|
|
"
|
|
|
|
|
;;
|
|
|
|
|
|
2019-05-10 16:50:30 +00:00
|
|
|
|
"sticker") # example chaecd telegram sticker
|
2019-05-09 21:34:45 +00:00
|
|
|
|
answer_inline_query "${iQUERY[ID]}" "cached_sticker" "BQADBAAD_QEAAiSFLwABWSYyiuj-g4AC"
|
|
|
|
|
;;
|
2020-06-23 14:35:50 +00:00
|
|
|
|
"gif") # example chaehed gif
|
2019-05-09 21:34:45 +00:00
|
|
|
|
answer_inline_query "${iQUERY[ID]}" "cached_gif" "BQADBAADIwYAAmwsDAABlIia56QGP0YC"
|
|
|
|
|
;;
|
|
|
|
|
esac
|
2019-05-16 14:42:38 +00:00
|
|
|
|
set +x
|
2019-05-09 21:34:45 +00:00
|
|
|
|
}
|
|
|
|
|
|
2019-05-02 10:33:10 +00:00
|
|
|
|
# place your processing functions here
|
2019-05-09 21:34:45 +00:00
|
|
|
|
|
|
|
|
|
# $1 search parameter
|
|
|
|
|
my_image_search(){
|
2019-05-10 13:58:19 +00:00
|
|
|
|
local image result sep="" count="1"
|
|
|
|
|
result="$(wget --user-agent 'Mozilla/5.0' -qO - "https://images.search.yahoo.com/search/images?p=$1" | sed 's/</\n</g' | grep "<img src=")"
|
2019-05-09 21:34:45 +00:00
|
|
|
|
while read -r image; do
|
2019-05-11 10:07:06 +00:00
|
|
|
|
[ "$count" -gt "20" ] && break
|
2019-05-10 13:58:19 +00:00
|
|
|
|
image="${image#* src=\'}"; image="${image%%&pid=*}"
|
|
|
|
|
[[ "${image}" = *"src="* ]] && continue
|
2019-05-10 12:56:53 +00:00
|
|
|
|
echo "${sep}"; inline_query_compose "$RANDOM" "photo" "${image}"; sep=","
|
2019-05-10 13:58:19 +00:00
|
|
|
|
count=$(( count + 1 ))
|
2019-05-09 21:34:45 +00:00
|
|
|
|
done <<<"${result}"
|
|
|
|
|
}
|
|
|
|
|
|
2019-05-02 10:33:10 +00:00
|
|
|
|
fi
|