emq-TE1/menu/menu-mmdvm

217 lines
7.3 KiB
Bash

#!/bin/bash
if [ -f "/opt/wdp5" ]
then
echo "found file"
else
cat > /opt/wdp5 <<- "EOFX"
###########################################
# Select number port, MMDVMHost Dashboard #
###########################################
Web-Dashboar-Port: 80
EOFX
fi
cat > /bin/menu-mmdvm <<- "EOF"
#!/bin/bash
while : ; do
choix=$(whiptail --title "Raspbian Proyect HP3ICC Menu MMDVMHost" --menu "Suba o Baje con las flechas del teclado y seleccione el numero de opcion." 24 50 16 \
1 " Editar MMDVMHost " \
2 " Editar DMRGateway " \
3 " Editar YSFGateway " \
4 " Editar YSF2DMR " \
5 " MMDVMCal " \
6 " Start&Restart service MMDVM " \
7 " Stop service MMDVM " \
8 " Dashboard ON " \
9 " Dashboard Off " \
10 " Editar Puerto http " \
11 " Editar HTML " \
12 " Editar Dashboard " \
13 " Update Dashboard TG Name " \
14 " Menu Principal " 3>&1 1>&2 2>&3)
exitstatus=$?
#on recupere ce choix
#exitstatus=$?
if [ $exitstatus = 0 ]; then
echo "Your chosen option:" $choix
else
echo "You chose cancel."; break;
fi
# case : action en fonction du choix
case $choix in
1)
sudo nano /opt/MMDVMHost/MMDVM.ini
if sudo systemctl status mmdvmh.service |grep "service; enabled;" >/dev/null 2>&1
then
sudo systemctl stop mmdvmh.service
sudo systemctl start mmdvmh.service
fi ;;
2)
sudo nano /opt/DMRGateway/DMRGateway.ini
if sudo systemctl status dmrgw.service |grep "service; enabled;" >/dev/null 2>&1
then
sudo systemctl stop dmrgw.service
sudo systemctl start dmrgw.service
fi ;;
3)
sudo nano /opt/YSFGateway2/YSFGateway.ini
if sudo systemctl status ysfgw.service |grep "service; enabled;" >/dev/null 2>&1
then
sudo systemctl stop ysfgw.service
sudo systemctl start ysfgw.service
fi ;;
4)
sudo nano /opt/YSF2DMRGW/YSF2DMR.ini
if sudo systemctl status ysf2dmrgw.service |grep "service; enabled;" >/dev/null 2>&1
then
sudo systemctl stop ysf2dmrgw.service
sudo systemctl start ysf2dmrgw.service
fi ;;
5)
network=$(whiptail --title "MMDVMCal" --menu "Select an option:" 10 60 2 \
"1" "Edit MMDVM.ini" \
"2" "Start MMDVMCal / Iniciar MMDVMCal" 3>&1 1>&2 2>&3)
if [ $? != 0 ]; then
echo "You chose cancel. Returning to the main menu."
continue
fi
case "$network" in
"1")
sudo nano /opt/MMDVMHost/MMDVM.ini
if sudo systemctl status mmdvmh.service |grep "service; enabled;" >/dev/null 2>&1
then
sudo systemctl stop mmdvmh.service
sudo systemctl start mmdvmh.service
fi ;;
"2")
sudo systemctl stop mmdvmh.service
uartp=$(awk -F= '/\[Modem\]/{f=1} f && /^[^#]*UARTPort=/{print $2; exit}' "/opt/MMDVMHost/MMDVM.ini")
uarts=$(awk -F= '/\[Modem\]/{f=1} f && /^[^#]*UARTSpeed=/{print $2; exit}' "/opt/MMDVMHost/MMDVM.ini")
clear
MMDVMCal $uarts $uartp
read -p "Presione Enter para continuar..."
if sudo systemctl status mmdvmh.service |grep "service; enabled;" >/dev/null 2>&1
then
sudo systemctl start mmdvmh.service
fi ;;
*)
echo "Invalid selection"
;;
esac
;;
6)
sudo systemctl stop mmdvmh.service
if cat /opt/MMDVMHost/MMDVM.ini | grep ServiceStart=0 >/dev/null 2>&1
then
sudo systemctl disable mmdvmh.service
elif cat /opt/MMDVMHost/MMDVM.ini | grep ServiceStart=1 >/dev/null 2>&1
then
python3 /opt/data-mmdvm.py &&
sudo systemctl start mmdvmh.service
sudo systemctl enable mmdvmh.service
fi
sudo systemctl stop ysfgw.service
if cat /opt/YSFGateway2/YSFGateway.ini | grep ServiceStart=0 >/dev/null 2>&1
then
sudo systemctl disable ysfgw.service
elif cat /opt/YSFGateway2/YSFGateway.ini | grep ServiceStart=1 >/dev/null 2>&1
then
sudo systemctl start ysfgw.service
sudo systemctl enable ysfgw.service
fi
sudo systemctl stop ysf2dmrgw.service
if cat /opt/YSF2DMRGW/YSF2DMR.ini | grep ServiceStart=0 >/dev/null 2>&1
then
sudo systemctl disable ysf2dmrgw.service
elif cat /opt/YSF2DMRGW/YSF2DMR.ini | grep ServiceStart=1 >/dev/null 2>&1
then
sudo systemctl start ysf2dmrgw.service
sudo systemctl enable ysf2dmrgw.service
fi
sudo systemctl stop dmrgw.service
if cat /opt/DMRGateway/DMRGateway.ini | grep ServiceStart=0 >/dev/null 2>&1
then
sudo systemctl disable dmrgw.service
elif cat /opt/DMRGateway/DMRGateway.ini | grep ServiceStart=1 >/dev/null 2>&1
then
sudo systemctl start dmrgw.service
sudo systemctl enable dmrgw.service
fi
;;
7)
sudo systemctl stop mmdvmh.service && sudo systemctl disable mmdvmh.service && systemctl stop ysf2dmrgw.service && sudo systemctl stop dmrgw.service ;;
8)
sudo systemctl disable http.server-mmdvmh.service
sudo systemctl stop http.server-mmdvmh.service
sudo systemctl disable logtailer-mmdvmh.service
sudo systemctl stop logtailer-mmdvmh.service
variable80=$(grep "Web-Dashboar-Port:" /opt/wdp5 | grep -Eo '[A.0-9]{1,9}')
if [ -z "$variable80" ]
then variable80=80
fi
sudo sed -i "s/ExecStart=.*/ExecStart=\/usr\/bin\/python3 -m http.server $variable80 --directory \/opt\/MMDVMHost-Websocketboard\/html/g" /lib/systemd/system/http.server-mmdvmh.service &&
systemctl daemon-reload &&
if sudo netstat -tuln | grep -q "0.0.0.0:$variable80 "; then
whiptail --title "Check Port" --msgbox "El puerto $variable80 esta ocupado , The port $variable80 is busy" 0 50
else
if ! sudo systemctl status http.server-mmdvmh.service |grep "service; enabled;" >/dev/null 2>&1
then
sudo systemctl enable http.server-mmdvmh.service
fi
if ! sudo systemctl status logtailer-mmdvmh.service |grep "service; enabled;" >/dev/null 2>&1
then
sudo systemctl enable logtailer-mmdvmh.service
fi
sudo systemctl start http.server-mmdvmh.service
sudo systemctl start logtailer-mmdvmh.service
fi ;;
9)
sudo systemctl stop logtailer-mmdvmh.service && sudo systemctl disable logtailer-mmdvmh.service && sudo systemctl stop http.server-mmdvmh.service && sudo systemctl disable http.server-mmdvmh.service && cronedit.sh '* */24 * * *' 'sh /bin/tg-name.sh' remove ;;
10)
if sudo systemctl status http.server-mmdvmh.service |grep active >/dev/null 2>&1
then
sudo systemctl stop http.server-mmdvmh.service
fi
sudo nano /opt/wdp5 &&
variable80=$(grep "Web-Dashboar-Port:" /opt/wdp5 | grep -Eo '[A.0-9]{1,9}')
if [ -z "$variable80" ]
then variable80=80
fi
sudo sed -i "s/ExecStart=.*/ExecStart=\/usr\/bin\/python3 -m http.server $variable80 --directory \/opt\/MMDVMHost-Websocketboard\/html/g" /lib/systemd/system/http.server-mmdvmh.service &&
systemctl daemon-reload &&
if sudo netstat -tuln | grep -q "0.0.0.0:$variable80 "; then
whiptail --title "Check Port" --msgbox "El puerto $variable80 esta ocupado , The port $variable80 is busy" 0 50
else
if sudo systemctl status http.server-mmdvmh.service |grep "service; enabled;" >/dev/null 2>&1
then
sudo systemctl start http.server-mmdvmh.service
fi
fi ;;
11)
sudo nano /opt/MMDVMHost-Websocketboard/html/index.html ;;
12)
sudo nano /opt/MMDVMHost-Websocketboard/html/js/config.js ;;
13)
bash -c "$(curl -fsSL https://gitlab.com/hp3icc/emq-TE1/-/raw/main/menu/tgname.sh)";;
14)
break;
esac
done
exit 0
EOF
################################################################################################################
chmod +x /bin/menu-mmdvm
ln -sf /bin/menu-mmdvm /bin/MENU-MMDVM
chmod +x /bin/MENU*