mirror of
https://github.com/octoleo/telegram-bot-bash.git
synced 2024-11-13 04:06:28 +00:00
125 lines
3.3 KiB
Bash
Executable File
125 lines
3.3 KiB
Bash
Executable File
#!/bin/sh
|
|
# description: Start or stop telegram-bash-bot
|
|
#
|
|
# example service script to run bashbot in background as specified user
|
|
#
|
|
# tested on: ubuntu, opensuse, debian
|
|
#
|
|
#### $$VERSION$$ v1.5-0-g8adca9b
|
|
# shellcheck disable=SC2009
|
|
# shellcheck disable=SC2181
|
|
# shellcheck disable=SC2250
|
|
|
|
#
|
|
### BEGIN INIT INFO
|
|
# Provides: bashbot
|
|
# Required-Start: $network $syslog
|
|
# Required-Stop: $network
|
|
# Default-Start: 2 3 5
|
|
# Default-Stop: 0 1 6
|
|
# Description: Start or stop telegram-bot-bash server
|
|
### END INIT INFO
|
|
|
|
# save default values
|
|
TERM="" # disable bashbot clear and color output
|
|
runcmd="echo Dry run:" # not activated until you edit lines below
|
|
|
|
#######################
|
|
# Configuration Section
|
|
|
|
# edit the next line to fit the user you want to run bashbot, e.g. nobody:
|
|
runas="nobody"
|
|
|
|
# uncomment one of the example lines to fit your system
|
|
# runcmd="su ${runas} -s /bin/bash -c " # runasuser with *su*
|
|
# runcmd="/usr/sbin/runuser ${runas} -s /bin/bash -c " # runasuser with *runuser*
|
|
|
|
# edit the values of the following lines to fit your config:
|
|
# your bot name as given to botfather, e.g. mysomething_bot
|
|
name=""
|
|
# your bot installation dir
|
|
bashbotdir="/usr/local/telegram-bot-bash"
|
|
databotdir="${bashbotdir}/data-bot-bash"
|
|
# programs to run
|
|
bashbot="cd ${bashbotdir}; ${bashbotdir}/bashbot.sh"
|
|
webhook="cd ${bashbotdir}; nohup ${bashbotdir}/bin/process_batch.sh --startbot --watch ${databotdir}/webhook-fifo-${name}"
|
|
# set additionl parameter, e.g. debug
|
|
mode=""
|
|
|
|
# END Configuration
|
|
#######################
|
|
|
|
[ "${name}" = "" ] && name="${runas}"
|
|
|
|
case "$1" in
|
|
'start')
|
|
$runcmd "$bashbot start $mode" # >/dev/null 2>&1 </dev/null
|
|
RETVAL=$?
|
|
;;
|
|
'starthook')
|
|
printf "Starting bashbot in webhook mode ... "
|
|
$runcmd "$webhook $mode </dev/null &>>${bashbotdir}/logs/WEBHOOK.log &" # >/dev/null 2>&1 </dev/null
|
|
sleep 1
|
|
$0 status
|
|
RETVAL=$?
|
|
;;
|
|
'stop')
|
|
$runcmd "$bashbot stop $mode"
|
|
RETVAL=$?
|
|
;;
|
|
'stophook')
|
|
printf "Stopping bashbot webhook mode ... "
|
|
KILLID="$(ps -f -u "${runas}" | grep "process_batch.sh --startbot" | sed -E 's/[^0-9]+([0-9]+).*/\1/')"
|
|
if [ -n "${KILLID}" ]; then
|
|
$runcmd "kill $(printf "%s" "${KILLID}" | tr -s "\r\n" " " )"
|
|
sleep 1
|
|
$0 status
|
|
fi
|
|
RETVAL=$?
|
|
;;
|
|
'status')
|
|
ps -f -u "${runas}" | grep "${name}" | grep -qF "bashbot.sh startbot"
|
|
if [ "$?" = "0" ]; then
|
|
printf "bashbot (%s) is running in poll mode\n" "${name}"
|
|
RETVAL=0
|
|
else
|
|
ps -f -u "${runas}" | grep "${name}" | grep -qF "process_batch.sh --startbot"
|
|
if [ "$?" = "0" ]; then
|
|
printf "bashbot (%s) is running in webhook mode\n" "${name}"
|
|
RETVAL=0
|
|
else
|
|
printf "bashbot (%s) is stopped\n" "${name}"
|
|
RETVAL=1
|
|
fi
|
|
fi
|
|
;;
|
|
'restart'|'reload')
|
|
$0 stop; $0 start
|
|
RETVAL=$?
|
|
;;
|
|
'restarthook'|'reloadhook')
|
|
$0 stophook; $0 starthook
|
|
RETVAL=$?
|
|
;;
|
|
'restartback')
|
|
$0 suspendback; $0 resumeback
|
|
RETVAL=$?
|
|
;;
|
|
'suspendback'|'resumeback'|'killback')
|
|
# shellcheck disable=SC2250
|
|
$runcmd "$bashbot $1 $mode"
|
|
RETVAL=$?
|
|
# kill inotifywait from runuser
|
|
if [ "$1" != "resumeback" ]; then
|
|
# shellcheck disable=SC2046
|
|
kill -9 $(ps -u "${runas}" | grep inotifywait | sed 's/ .*//') >/dev/null 2>&1
|
|
fi
|
|
;;
|
|
*)
|
|
printf "%s\n" "Usage: $0 [ start | stop | restart | starthook | stophook | restarthook ]"
|
|
printf "%s\n" " $0 [ status | restartback | suspendback | resumeback | killback ]"
|
|
RETVAL=1
|
|
;;
|
|
esac
|
|
exit "${RETVAL}"
|