mirror of
https://github.com/octoleo/telegram-bot-bash.git
synced 2024-11-26 09:16:28 +00:00
rework BASHBOTDEBUG is always global
This commit is contained in:
parent
9e89627ae9
commit
358f95a766
23
bashbot.sh
23
bashbot.sh
@ -11,7 +11,7 @@
|
|||||||
# This file is public domain in the USA and all free countries.
|
# This file is public domain in the USA and all free countries.
|
||||||
# Elsewhere, consider it to be WTFPLv2. (wtfpl.net/txt/copying)
|
# Elsewhere, consider it to be WTFPLv2. (wtfpl.net/txt/copying)
|
||||||
#
|
#
|
||||||
#### $$VERSION$$ v0.962-112-g12b4696
|
#### $$VERSION$$ v0.962-116-g9e89627
|
||||||
#
|
#
|
||||||
# Exit Codes:
|
# Exit Codes:
|
||||||
# - 0 success (hopefully)
|
# - 0 success (hopefully)
|
||||||
@ -76,8 +76,10 @@ log_error(){
|
|||||||
}
|
}
|
||||||
# additional tests if we run in debug mode
|
# additional tests if we run in debug mode
|
||||||
# $1 where $2 command $3 may debug
|
# $1 where $2 command $3 may debug
|
||||||
|
export BASHBOTDEBUG
|
||||||
|
[[ "${3}" == *"debug"* ]] && BASHBOTDEBUG="yes"
|
||||||
debug_checks(){
|
debug_checks(){
|
||||||
[[ "${3}" != *"debug"* ]] && return
|
[ -n "${BASHBOTDEBUG}" ] && return
|
||||||
local DATE WHERE MYTOKEN; DATE="$(date)"; WHERE="${1}"; shift
|
local DATE WHERE MYTOKEN; DATE="$(date)"; WHERE="${1}"; shift
|
||||||
printf "%s: debug_checks: %s: bashbot.sh %s\n" "${DATE}" "${WHERE}" "$*"
|
printf "%s: debug_checks: %s: bashbot.sh %s\n" "${DATE}" "${WHERE}" "$*"
|
||||||
MYTOKEN="$(getConfigKey "bottoken")"
|
MYTOKEN="$(getConfigKey "bottoken")"
|
||||||
@ -892,34 +894,33 @@ process_message() {
|
|||||||
#########################
|
#########################
|
||||||
# main get updates loop, should never terminate
|
# main get updates loop, should never terminate
|
||||||
declare -A BASHBOTBLOCKED
|
declare -A BASHBOTBLOCKED
|
||||||
export BASHBOTDEBUG
|
|
||||||
start_bot() {
|
start_bot() {
|
||||||
local ADMIN OFFSET=0
|
local DEBUGMSG ADMIN OFFSET=0
|
||||||
# adaptive sleep defaults
|
# adaptive sleep defaults
|
||||||
local nextsleep="100"
|
local nextsleep="100"
|
||||||
local stepsleep="${BASHBOT_SLEEP_STEP:-100}"
|
local stepsleep="${BASHBOT_SLEEP_STEP:-100}"
|
||||||
local maxsleep="${BASHBOT_SLEEP:-5000}"
|
local maxsleep="${BASHBOT_SLEEP:-5000}"
|
||||||
# startup message
|
# startup message
|
||||||
BASHBOTDEBUG="$(date): Start BASHBOT updates in Mode \"${1:-normal}\" =========="
|
DEBUGMSG="$(date): Start BASHBOT updates in Mode \"${1:-normal}\" =========="
|
||||||
printf "%s\n" "${BASHBOTDEBUG}" >>"${UPDATELOG}"
|
printf "%s\n" "${DEBUGMSG}" >>"${UPDATELOG}"
|
||||||
# redirect to Debug.log
|
# redirect to Debug.log
|
||||||
[[ "${1}" == *"debug" ]] && exec &>>"${DEBUGLOG}"
|
[[ "${1}" == *"debug" ]] && exec &>>"${DEBUGLOG}"
|
||||||
printf "%s\n" "${BASHBOTDEBUG}"; BASHBOTDEBUG="${1}"
|
printf "%s\n" "${DEBUGMSG}"; DEBUGMSG="${1}"
|
||||||
[[ "${BASHBOTDEBUG}" == "xdebug"* ]] && set -x
|
[[ "${DEBUGMSG}" == "xdebug"* ]] && set -x
|
||||||
#cleaup old pipes and empty logfiles
|
#cleaup old pipes and empty logfiles
|
||||||
find "${DATADIR}" -type p -delete
|
find "${DATADIR}" -type p -delete
|
||||||
find "${DATADIR}" -size 0 -name "*.log" -delete
|
find "${DATADIR}" -size 0 -name "*.log" -delete
|
||||||
# load addons on startup
|
# load addons on startup
|
||||||
for addons in "${ADDONDIR:-.}"/*.sh ; do
|
for addons in "${ADDONDIR:-.}"/*.sh ; do
|
||||||
# shellcheck source=./modules/aliases.sh
|
# shellcheck source=./modules/aliases.sh
|
||||||
[ -r "${addons}" ] && source "${addons}" "startbot" "${BASHBOTDEBUG}"
|
[ -r "${addons}" ] && source "${addons}" "startbot" "${DEBUGMSG}"
|
||||||
done
|
done
|
||||||
# shellcheck source=./commands.sh
|
# shellcheck source=./commands.sh
|
||||||
source "${COMMANDS}" "startbot"
|
source "${COMMANDS}" "startbot"
|
||||||
# start timer events
|
# start timer events
|
||||||
if [ -n "${BASHBOT_START_TIMER}" ] ; then
|
if [ -n "${BASHBOT_START_TIMER}" ] ; then
|
||||||
# shellcheck disable=SC2064
|
# shellcheck disable=SC2064
|
||||||
trap "event_timer $BASHBOTDEBUG" ALRM
|
trap "event_timer $DEBUGMSG" ALRM
|
||||||
start_timer &
|
start_timer &
|
||||||
# shellcheck disable=SC2064
|
# shellcheck disable=SC2064
|
||||||
trap "kill -9 $!; exit" EXIT INT HUP TERM QUIT
|
trap "kill -9 $!; exit" EXIT INT HUP TERM QUIT
|
||||||
@ -954,7 +955,7 @@ start_bot() {
|
|||||||
|
|
||||||
if [ "$OFFSET" != "1" ]; then
|
if [ "$OFFSET" != "1" ]; then
|
||||||
nextsleep="100"
|
nextsleep="100"
|
||||||
process_updates "${BASHBOTDEBUG}"
|
process_updates "${DEBUGMSG}"
|
||||||
fi
|
fi
|
||||||
else
|
else
|
||||||
# ups, something bad happened, wait maxsleep*10
|
# ups, something bad happened, wait maxsleep*10
|
||||||
|
Loading…
Reference in New Issue
Block a user