telegram-bot-bash/bin/send_file.sh

56 lines
1.6 KiB
Bash
Raw Permalink Normal View History

#!/bin/bash
2021-01-21 08:22:14 +00:00
# shellcheck disable=SC1090,SC2034
#===============================================================================
#
# FILE: bin/send_file.sh
2021-01-09 21:14:44 +00:00
#
USAGE='send_file.sh [-h|--help] "CHAT[ID]" "file|URL" "caption ...." [type] [debug]'
#
# DESCRIPTION: send a file to the given user/group
#
# OPTIONS: CHAT[ID] - ID number of CHAT or BOTADMIN to send to yourself
2021-01-05 21:47:18 +00:00
# file - local file to send, must be an absolute path or relative to pwd
# Note: must not contain .. or . and located below BASHBOT_ETC
2021-01-05 21:47:18 +00:00
# URL - send an URL instead local file
#
# caption - message to send with file
2021-01-05 21:47:18 +00:00
# type - photo, video, sticker, voice, document (optional)
#
# -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
# CREATED: 25.12.2020 20:24
#
2022-06-27 18:18:58 +00:00
#### $$VERSION$$ v1.52-1-g0dae2db
#===============================================================================
####
# parse args
2021-01-07 12:15:18 +00:00
SEND="send_file"
# set bashbot environment
source "${0%/*}/bashbot_env.inc.sh" "${5:-debug}" # $5 debug
2021-01-22 20:22:16 +00:00
print_help "$1"
####
# ready, do stuff here -----
if [ "$1" == "BOTADMIN" ]; then
2021-03-03 12:40:51 +00:00
CHAT="${BOTADMIN}"
else
CHAT="$1"
fi
FILE="$2"
2021-01-05 21:01:32 +00:00
# convert to absolute path if not start with / or http://
[[ ! ( "$2" == "/"* || "$2" =~ ^https*:// || "$2" == "file_id://"*) ]] && FILE="${PWD}/$2"
# send message in selected format
2021-01-05 21:47:18 +00:00
"${SEND}" "${CHAT}" "${FILE}" "$3" "$4"
# output send message result
2021-01-21 08:22:14 +00:00
print_result