mirror of
https://github.com/octoleo/telegram-bot-bash.git
synced 2024-11-05 01:27:50 +00:00
44 lines
1.4 KiB
Bash
44 lines
1.4 KiB
Bash
#!/bin/bash
|
|
#===============================================================================
|
|
#
|
|
# FILE: bashbot_env.inc.sh
|
|
#
|
|
# USAGE: source bashbot_env.inc.sh [debug]
|
|
#
|
|
# DESCRIPTION: set bashbot environment for all scripts in this directory
|
|
#
|
|
# OPTIONS: $1 - will be forwarded ro bashbot, e.g. debug
|
|
#
|
|
# LICENSE: WTFPLv2 http://www.wtfpl.net/txt/copying/
|
|
# AUTHOR: KayM (gnadelwartz), kay@rrr.de
|
|
# CREATED: 18.12.2020 12:27
|
|
#
|
|
#### $$VERSION$$ v1.2-dev2-73-gf281ae0
|
|
#===============================================================================
|
|
|
|
# set where your bashbot lives
|
|
# default: one dir up
|
|
BASHBOT_HOME="$(cd "${BASH_SOURCE[0]%/*}" >/dev/null 2>&1 && pwd)/../"
|
|
|
|
#####
|
|
# if files are not readable, eviroment is wrong or bashbot is not initialized
|
|
|
|
# check for botconfig.jssh readable
|
|
if [ ! -r "${BASHBOT_HOME}/botconfig.jssh" ]; then
|
|
echo "Bashbot config file in \"${BASHBOT_HOME}\" does not exist or is not readable."
|
|
exit 3
|
|
fi
|
|
# check for count.jssh readable
|
|
if [ ! -r "${BASHBOT_HOME}/count.jssh" ]; then
|
|
echo "Bashbot count file in \"${BASHBOT_HOME}\" does not exist or is not readable"
|
|
exit 3
|
|
fi
|
|
|
|
# source bashbot and check for ADMIN
|
|
# shellcheck disable=SC1090
|
|
source "${BASHBOT_HOME}/bashbot.sh" source "$1"
|
|
|
|
ADMIN="$(getConfigKey "botadmin")"
|
|
[ "${ADMIN}" = "?" ] && echo -e "${ORANGE}Warning: Botadmin not set, did you forget to sent command${NC} /start?"
|
|
|