mirror of
https://github.com/octoleo/telegram-bot-bash.git
synced 2024-10-31 23:52:30 +00:00
55 lines
1.6 KiB
Bash
Executable File
55 lines
1.6 KiB
Bash
Executable File
#!/bin/bash
|
|
# shellcheck disable=SC1090,SC2034
|
|
#===============================================================================
|
|
#
|
|
# FILE: bin/send_message.sh
|
|
#
|
|
USAGE='send_message.sh [-h|--help] "CHAT[ID]" "message" "text|url" ...'
|
|
#
|
|
# DESCRIPTION: send a send buttons in a row to the given user/group
|
|
#
|
|
# OPTIONS: CHAT[ID] - ID number of CHAT or BOTADMIN to send to yourself
|
|
# message - message to send
|
|
# text|url - buttons to send, each button as "text|url" pair or
|
|
# "url" not http(s):// or tg:// is sent as callback_data
|
|
# "url" only to show url as text also, "" starts new row
|
|
#
|
|
# -h - display short help
|
|
# --help - this help
|
|
#
|
|
# EXAMPLE: 2 buttons on 2 rows, first shows Amazon, second the url as text
|
|
# send_buttons.sh "Amazon|https://www.amazon.com" "" "https://mydealz.de" ...
|
|
#
|
|
# Set BASHBOT_HOME to your installation directory
|
|
#
|
|
# LICENSE: WTFPLv2 http://www.wtfpl.net/txt/copying/
|
|
# AUTHOR: KayM (gnadelwartz), kay@rrr.de
|
|
# CREATED: 18.01.2021 11:34
|
|
#
|
|
#### $$VERSION$$ v1.35-dev-3-g461e748
|
|
#===============================================================================
|
|
|
|
####
|
|
# parse args
|
|
SEND="send_inline_keyboard"
|
|
|
|
# set bashbot environment
|
|
source "${0%/*}/bashbot_env.inc.sh" "debug"
|
|
print_help "$1"
|
|
|
|
####
|
|
# ready, do stuff here -----
|
|
if [ "$1" == "BOTADMIN" ]; then
|
|
CHAT="${BOT_ADMIN}"
|
|
else
|
|
CHAT="$1"
|
|
fi
|
|
MESSAGE="$2"
|
|
shift 2
|
|
|
|
# send message in selected format
|
|
"${SEND}" "${CHAT}" "${MESSAGE}" "$(_button_row "$@")"
|
|
|
|
# output send message result
|
|
print_result
|