2021-01-30 19:18:54 +00:00
|
|
|
#!/bin/bash
|
|
|
|
# shellcheck disable=SC1090,SC2034,SC2059
|
|
|
|
#===============================================================================
|
|
|
|
#
|
|
|
|
# FILE: bin/process_update.sh
|
|
|
|
#
|
|
|
|
USAGE='process_update.sh [-h|--help] [debug] [<file]'
|
|
|
|
#
|
|
|
|
# DESCRIPTION: processes ONE telegram update read from stdin, e.g. form file or webhook
|
|
|
|
#
|
|
|
|
# -h - display short help
|
|
|
|
# --help - this help
|
|
|
|
#
|
|
|
|
# LICENSE: WTFPLv2 http://www.wtfpl.net/txt/copying/
|
|
|
|
# AUTHOR: KayM (gnadelwartz), kay@rrr.de
|
|
|
|
# CREATED: 30.01.2021 19:14
|
|
|
|
#
|
2021-02-01 18:37:24 +00:00
|
|
|
#### $$VERSION$$ v1.40-dev-32-gd876f75
|
2021-01-30 19:18:54 +00:00
|
|
|
#===============================================================================
|
|
|
|
|
|
|
|
####
|
|
|
|
# parse args
|
|
|
|
COMMAND="process_update"
|
|
|
|
|
|
|
|
# set bashbot environment
|
|
|
|
source "${0%/*}/bashbot_env.inc.sh" "debug" # debug
|
|
|
|
print_help "${1:-nix}"
|
|
|
|
|
|
|
|
|
|
|
|
####
|
|
|
|
# ready, do stuff here -----
|
|
|
|
|
|
|
|
# read json from stdin and convert update format
|
2021-02-01 18:37:24 +00:00
|
|
|
json='{"result": ['"$(cat)"']}'
|
2021-01-31 09:00:15 +00:00
|
|
|
UPDATE="$(${JSONSHFILE} -b -n <<<"${json}" 2>/dev/null)"
|
2021-01-30 19:18:54 +00:00
|
|
|
|
|
|
|
# assign to bashbot ARRAY
|
|
|
|
Json2Array 'UPD' <<<"${UPDATE}"
|
|
|
|
|
|
|
|
# process telegram update
|
|
|
|
"${COMMAND}" "0" "$1"
|
|
|
|
|