2020-12-18 13:53:44 +00:00
|
|
|
#!/bin/bash
|
2020-12-16 12:45:59 +00:00
|
|
|
#===============================================================================
|
|
|
|
#
|
|
|
|
# FILE: send_message.sh
|
|
|
|
#
|
|
|
|
# USAGE: send_message.sh [-h|--help] [format] "CHAT[ID]" "message ...." [debug]
|
|
|
|
#
|
|
|
|
# DESCRIPTION: send a message to the given user/group
|
|
|
|
#
|
|
|
|
# OPTIONS: format - normal, markdown, html (optional)
|
|
|
|
# CHAT[ID] - ID number of CHAT
|
|
|
|
# message - message to send in specified format
|
|
|
|
# if no format is givern send_message() format is used
|
|
|
|
#
|
|
|
|
# -h - display short help
|
|
|
|
# --help - this help
|
|
|
|
#
|
|
|
|
# Set BASHBOT_HOME to your installation directory
|
|
|
|
#
|
|
|
|
# LICENSE: WTFPLv2 http://www.wtfpl.net/txt/copying/
|
|
|
|
# AUTHOR: KayM (gnadelwartz), kay@rrr.de
|
2020-12-18 13:53:44 +00:00
|
|
|
# CREATED: 16.12.2020 11:34
|
2020-12-16 12:45:59 +00:00
|
|
|
#
|
2020-12-23 16:03:17 +00:00
|
|
|
#### $$VERSION$$ v1.2-dev2-53-gac877c2
|
2020-12-16 12:45:59 +00:00
|
|
|
#===============================================================================
|
|
|
|
|
2020-12-18 13:53:44 +00:00
|
|
|
# set bashbot environment
|
|
|
|
# shellcheck disable=SC1090
|
|
|
|
source "${0%/*}/bashbot_env.inc.sh"
|
2020-12-16 12:45:59 +00:00
|
|
|
|
2020-12-18 13:53:44 +00:00
|
|
|
####
|
2020-12-16 12:45:59 +00:00
|
|
|
# parse args
|
|
|
|
SEND="send_message"
|
|
|
|
case "$1" in
|
|
|
|
"nor*"|"tex*")
|
|
|
|
SEND="send_normal_message"
|
|
|
|
shift
|
|
|
|
;;
|
|
|
|
"mark"*)
|
|
|
|
SEND="send_markdownv2_message"
|
|
|
|
shift
|
|
|
|
;;
|
|
|
|
"html")
|
|
|
|
SEND="send_html_message"
|
|
|
|
shift
|
|
|
|
;;
|
|
|
|
'')
|
2020-12-23 16:03:17 +00:00
|
|
|
echo "missing arguments"
|
2020-12-16 12:45:59 +00:00
|
|
|
;&
|
|
|
|
"-h"*)
|
2020-12-23 16:03:17 +00:00
|
|
|
echo 'usage: send_message [-h|--help] [format] "CHAT[ID]" "message ...." [debug]'
|
2020-12-16 12:45:59 +00:00
|
|
|
exit 1
|
|
|
|
;;
|
|
|
|
'--h'*)
|
|
|
|
sed -n '3,/###/p' <"$0"
|
|
|
|
exit 1
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
# source bashbot and send message
|
2020-12-17 07:43:30 +00:00
|
|
|
# shellcheck disable=SC1090
|
2020-12-16 12:45:59 +00:00
|
|
|
source "${BASHBOT_HOME}/bashbot.sh" source "$3"
|
2020-12-18 13:53:44 +00:00
|
|
|
|
|
|
|
####
|
|
|
|
# ready, do stuff here -----
|
|
|
|
|
|
|
|
# send message in selected format
|
2020-12-16 12:45:59 +00:00
|
|
|
"${SEND}" "$1" "$2"
|
|
|
|
|
2020-12-18 13:53:44 +00:00
|
|
|
# output send message result
|
2020-12-16 12:45:59 +00:00
|
|
|
jssh_printDB "BOTSENT" | sort -r
|
|
|
|
|