#!/bin/bash # # Copyright (c) 2020 by Thomas A. Early N7TAE # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . SetBooleanValue () { local dvname local cv if [ -z $2 ]; then if [ -z ${!1+x} ]; then if [[ "$1" == module_[abc]_* ]]; then echo matches dvname=${1//_[abc]_/_x_} else echo does not match dvname=${1}_d fi cv=${!dvname} else cv=${!1} fi if [[ $cv == [tT]* ]]; then eval ${1}=false else eval ${1}=true fi elif [[ "$2" == [tT]* ]]; then eval ${1}=true else eval ${1}=false fi } EvaluateVar () { if [ -z ${!1+x} ]; then if [ -z "${!2}" ]; then echo "'' " else echo "${!2} " fi else if [ -z "${!1}" ]; then echo "''" else echo "${!1}" fi fi } WriteMemFile () { local file file="$rcfg" echo "# created on `date`" > $file [ -z ${callsign+x} ] || echo "callsign='$callsign'" >> $file [ -z ${nummod+x} ] || echo "nummod=$nummod" >> $file [ -z ${ip4addr+x} ] || echo "ip4addr='$ip4addr'" >> $file [ -z ${ip6addr+x} ] || echo "ip6addr='$ip6addr'" >> $file [ -z ${refv4addr+x} ] || echo "refv4addr='$refv4addr'" >> $file [ -z ${refv6addr+x} ] || echo "refv6addr='$refv6addr'" >> $file [ -z ${dcsv4addr+x} ] || echo "dcsv4addr='$dcsv4addr'" >> $file [ -z ${dcsv6addr+x} ] || echo "dcsv6addr='$dcsv6addr'" >> $file [ -z ${xrfv4addr+x} ] || echo "xrfv4addr='$xrfv4addr'" >> $file [ -z ${xrfv6addr+x} ] || echo "xrfv6addr='$xrfv6addr'" >> $file [ -z ${g3_v4addr+x} ] || echo "g3_v4addr='$g3_v4addr'" >> $file # [ -z ${g3_v6addr+x} ] || echo "g3_v6addr='$g3_v6addr'" >> $file [ -z ${dmrv4addr+x} ] || echo "dmrv4addr='$dmrv4addr'" >> $file [ -z ${dmrv6addr+x} ] || echo "dmrv6addr='$dmrv6addr'" >> $file [ -z ${dmpv4addr+x} ] || echo "dmpv4addr='$dmpv4addr'" >> $file [ -z ${dmpv6addr+x} ] || echo "dmpv6addr='$dmpv6addr'" >> $file [ -z ${ysfv4addr+x} ] || echo "ysfv4addr='$ysfv4addr'" >> $file [ -z ${ysfv6addr+x} ] || echo "ysfv6addr='$ysfv6addr'" >> $file [ -z ${xlxv4addr+x} ] || echo "xlxv4addr='$xlxv4addr'" >> $file [ -z ${xlxv6addr+x} ] || echo "xlxv6addr='$xlxv6addr'" >> $file [ -z ${tcaddress+x} ] || echo "tcaddress='$tcaddress'" >> $file [ -z ${tcmodules+x} ] || echo "tcmodules='$tcmodules'" >> $file [ -z ${ysfautolink+x} ] || echo "ysfautolink=$ysfautolink" >> $file [ -z ${ysfmodule+x} ] || echo "ysfmodule='$ysfmodule'" >> $file [ -z ${ysflocaldb+x} ] || echo "ysflocaldb=$ysflocaldb" >> $file [ -z ${ysfdbname+x} ] || echo "ysfdbname='$ysfdbname'" >> $file [ -z ${ysfdbuser+x} ] || echo "ysfdbuser='$ysfdbuser'" >> $file [ -z ${ysfdbpw+x} ] || echo "ysfdbpw='$ysfdbpw'" >> $file [ -z ${g3support+x} ] || echo "g3support=$g3support" >> $file [ -z ${dbsupport+x} ] || echo "dbsupport=$dbsupport" >> $file } WriteSRCHFile () { local file m file="$srch" echo "// Created on `date`" > $file echo "#define CALLSIGN \"${callsign}\"" >> $file if [[ "$callsign" == XRF* ]]; then echo "#define NO_XLX" >> $file fi if [ -z ${nummod+x} ]; then echo "#define NB_OF_MODULES ${nummod_d}" >> $file else echo "#define NB_OF_MODULES ${nummod}" >> $file fi if [ ! -z ${ip4addr+x} ]; then echo "#define LISTEN_IPV4 \"${ip4addr}\"" >> $file if [ ! -z ${refv4addr+x} ]; then echo "#define LISTEN_V4_DPLUS \"$refv4addr\"" >> $file fi if [ ! -z ${dcsv4addr+x} ]; then echo "#define LISTEN_V4_DCS \"$dcsv4addr\"" >> $file fi if [ ! -z ${xrfv4addr+x} ]; then echo "#define LISTEN_V4_DEXTRA \"$xrfv4addr\"" >> $file fi if [[ "$g3support" == true ]] && [ ! -z ${g3_v4addr+x} ]; then echo "#define LISTEN_V4_G3 \"$g3_v4addr\"" >> $file fi if [[ "$callsign" == XLX* ]]; then if [ ! -z ${dmrv4addr+x} ]; then echo "#define LISTEN_V4_DMRMMDVM \"$dmrv4addr\"" >> $file fi if [ ! -z ${dmpv4addr+x} ]; then echo "#define LISTEN_V4_DMRPLUS \"$dmpv4addr\"" >> $file fi if [ ! -z ${ysfv4addr+x} ]; then echo "#define LISTEN_V4_YSF \"$ysfv4addr\"" >> $file fi if [ ! -z ${xlxv4addr+x} ]; then echo "#define LISTEN_V4_XLX \"$xlxv4addr\"" >> $file fi fi fi if [ ! -z ${ip6addr+x} ]; then echo "#define LISTEN_IPV6 \"${ip6addr}\"" >> $file if [ ! -z ${refv6addr+x} ]; then echo "#define LISTEN_V6_PLUS \"$refv6addr\"" >> $file fi if [ ! -z ${dcsv6addr+x} ]; then echo "#define LISTEN_V6_DCS \"$dcsv6addr\"" >> $file fi if [ ! -z ${refv6addr+x} ]; then echo "#define LISTEN_V6_DEXTRA \"$xrfv6addr\"" >> $file fi if [[ "$g3support" == true ]] && [ ! -z ${g3_v6addr+x} ]; then echo "#define LISTEN_V4_G3 \"$g3_v6addr\"" >> $file fi if [[ "$callsign" == XLX* ]]; then if [ ! -z ${dmrv6addr+x} ]; then echo "#define LISTEN_V4_DMRMMDVM \"$dmrv6addr\"" >> $file fi if [ ! -z ${dmpv6addr+x} ]; then echo "#define LISTEN_V4_DMRPLUS \"$dmpv6addr\"" >> $file fi if [ ! -z ${ysfv6addr+x} ]; then echo "#define LISTEN_V4_YSF \"$ysfv6addr\"" >> $file fi if [ ! -z ${xlxv6addr+x} ]; then echo "#define LISTEN_V4_XLX \"$xlxv6addr\"" >> $file fi fi fi if [[ "$callsign" == XLX* ]]; then if [ -z ${ysfautolink+x} ]; then echo "#define YSF_AUTOLINK_ENABLE ${ysfautolink_d}" >> $file else echo "#define YSF_AUTOLINK_ENABLE ${ysfautolink}" >> $file fi if [ -z ${ysfmodule+x} ]; then echo "#define YSF_AUTOLINK_MODULE '${ysfmodule_d}'" >> $file else echo "#define YSF_AUTOLINK_MODULE '${ysfmodule}'" >> $file fi if [[ "$ysflocaldb" == true ]]; then echo '#define YSF_DB_SUPPORT true' >> $file echo "#define YSF_DB_NAME \"$ysfdbname\"" >> $file echo "#define YSF_DB_USER \"$ysfdbuser\"" >> $file echo "#define YSF_DB_PASSWORD \"$ysfdbpw\"" >> $file else echo '#define YSF_DB_SUPPORT false' >> $file fi fi if [ ! -z ${tcaddress+x} ]; then echo "#define TRANSCODER_IP \"${tcaddress}\"" >> $file if [ -z ${tcmodules+x} ]; then echo "#define TRANSCODED_MODULES \"${tcmodules_d}\"" >> $file else echo "#define TRANSCODED_MODULES \"${tcmodules}\"" >> $file fi fi if [ -z ${g3support+x} ]; then m=${g3support_d} else m=${g3support} fi if [[ "$m" != true ]]; then echo "#define NO_G3" >> $file fi } WriteSRCMKFile () { local file file="$srcm" echo "# Created on `date`" > $file if [[ "$callsign" == XLX* ]]; then echo "is_xlx = true" >> $file else echo "is_xlx = false" >> $file fi [ -z ${ip4addr+x} ] || echo "ipv4 = $ip4addr" >> $file [ -z ${ip6addr+x} ] || echo "ipv6 = $ip6addr" >> $file [ -z ${tcaddress+x} ] || echo "tc_ip = $tcaddress" >> $file if [ -z ${g3support+x} ]; then echo "use_g3 = $g3support_d" >> $file else echo "use_g3 = $g3support" >> $file fi if [ -z ${dbsupport+x} ]; then echo "debug = $dbsupport_d" >> $file else echo "debug = $dbsupport" >> $file fi if [ -z ${ysflocaldb+x} ]; then echo "ysf_db = $ysflocaldb_d" >> $file else echo "ysf_db = $ysflocaldb" >> $file fi } WriteAmbeHFile () { local file file="$ambh" echo "// Created on `date`" > $file echo "#define TRANSCODER_IP \"${tcaddress}\"" >> $file } WriteAmbeMKFile () { local file file="$ambm" echo "# created on `date`" > $file if [ -z ${dbsupport+x} ]; then echo "debug = $dbsupport_d" >> $file else echo "debug = $dbsupport" >> $file fi } WriteCfgPhpFile () { cat << EOF > $ysfs EOF } WriteDBCreateFile () { cat << EOF > $dbcr CREATE DATABASE IF NOT EXISTS ${ysfdbname}; USE ${ysfdbname}; CREATE TABLE IF NOT EXISTS ysfnodes ( callsign VARCHAR(7) PRIMARY KEY, password VARCHAR(255) NOT NULL, txfreq INT NOT NULL DEFAULT 445500000, rxfreq INT NOT NULL DEFAULT 445500000, created_at DATETIME DEFAULT CURRENT_TIMESTAMP ); CREATE USER IF NOT EXISTS '${ysfdbuser}'@'localhost' IDENTIFIED BY '${ysfdbpw}'; GRANT ALL PRIVILEGES ON $ysfdbname . ysfnodes TO '${ysfdbuser}'@'localhost'; FLUSH PRIVILEGES; EOF } WriteCFGFiles () { WriteMemFile WriteSRCHFile WriteSRCMKFile if [ -z ${tcaddress+x} ]; then rm -f $ambh $ambm else WriteAmbeHFile WriteAmbeMKFile fi if [[ "$ysflocaldb" == true ]]; then WriteCfgPhpFile WriteDBCreateFile else rm -f $ysfs $dbcr fi } ListCFGFiles () { echo "===========${rcfg}=============" cat $rcfg echo "===========${srch}=============" cat $srch echo "===========${srcm}=============" cat $srcm if [ ! -z ${tcaddress+x} ]; then echo "===========${ambh}=============" cat $ambh echo "===========${ambm}=============" cat $ambm fi if [[ "$ysflocaldb" == true ]]; then echo "===========${ysfs}=============" cat $ysfs echo "===========${dbcr}=============" cat $dbcr fi } AddressMenu () { while [[ "$key" != q* ]] do clear echo echo " IP Address For Each Protocol" echo if [ ! -z ${ip4addr+x} ]; then echo " p4 : DPlus IPv4 address = '$refv4addr'"; fi if [ ! -z ${ip6addr+x} ]; then echo " p6 : DPlus IPv6 address = '$refv6addr'"; fi if [ ! -z ${ip4addr+x} ]; then echo " c4 : DCS IPv4 address = '$dcsv4addr'"; fi if [ ! -z ${ip6addr+x} ]; then echo " c6 : DCS IPV6 address = '$dcsv6addr'"; fi if [ ! -z ${ip4addr+x} ]; then echo " e4 : DExtra IPv4 address = '$xrfv4addr'"; fi if [ ! -z ${ip6addr+x} ]; then echo " e6 : DExtra IPv6 address = '$xrfv6addr'"; fi if [[ "$g3support" == true ]]; then if [ ! -z ${ip4addr+x} ]; then echo " g4 : G3 IPv4 address = '$g3_v4addr'"; fi # if [ ! -z ${ip6addr+x} ]; then echo " g6 : G3 IPv6 address = '$g3_v6addr'"; fi fi if [[ "$callsign" == XLX* ]]; then if [ ! -z ${ip4addr+x} ]; then echo " d4 : DMR IPv4 address = '$dmrv4addr'"; fi if [ ! -z ${ip6addr+x} ]; then echo " d6 : DMR IPv6 address = '$dmrv6addr'"; fi if [ ! -z ${ip4addr+x} ]; then echo " m4 : DMR+ IPv4 address = '$dmpv4addr'"; fi if [ ! -z ${ip6addr+x} ]; then echo " m6 : DMR+ IPV6 address = '$dmpv6addr'"; fi if [ ! -z ${ip4addr+x} ]; then echo " y4 : YSF IPv4 address = '$ysfv4addr'"; fi if [ ! -z ${ip6addr+x} ]; then echo " y6 : YSF IPv6 address = '$ysfv6addr'"; fi if [ ! -z ${ip4addr+x} ]; then echo " x4 : XLX IPv4 address = '$xlxv4addr'"; fi if [ ! -z ${ip6addr+x} ]; then echo " x6 : XLX IPv6 address = '$xlxv6addr'"; fi fi echo echo "xx : Clear all Protocol addresses" echo echo "q : Return to main menu" echo "u : Unset the value of ." echo read -p "Please input : " key value garbage if [[ "$key" == p4* ]]; then refv4addr="$value" elif [[ "$key" == p6* ]]; then refv6addr="$value" elif [[ "$key" == c4* ]]; then dcsv4addr="$value" elif [[ "$key" == c6* ]]; then dcsv6addr="$value" elif [[ "$key" == e4* ]]; then xrfv4addr="$value" elif [[ "$key" == e6* ]]; then xrfv6addr="$value" elif [[ "$key" == g4* ]]; then g3_v4addr="$value" # elif [[ "$key" == g6* ]]; then g3_v6addr="$value" elif [[ "$key" == d4* ]]; then dmrv4addr="$value" elif [[ "$key" == d6* ]]; then dmrv6addr="$value" elif [[ "$key" == m4* ]]; then dmpv4addr="$value" elif [[ "$key" == m6* ]]; then dmpv6addr="$value" elif [[ "$key" == y4* ]]; then ysfv4addr="$value" elif [[ "$key" == y6* ]]; then ysfv6addr="$value" elif [[ "$key" == x4* ]]; then xlxv4addr="$value" elif [[ "$key" == x6* ]]; then xlxv6addr="$value" elif [[ "$key" == xx* ]]; then unset {dcs,dmr,xrf,g3_,dmp,ref,xlx,ysf}v{4,6}addr elif [[ "$key" == u* ]]; then if [[ "$value" == p4* ]]; then unset refv4addr elif [[ "$value" == p6* ]]; then unset refv6addr elif [[ "$value" == c4* ]]; then unset dcsv4addr elif [[ "$value" == c6* ]]; then unset dcsv6addr elif [[ "$value" == e4* ]]; then unset xrfv4addr elif [[ "$value" == e6* ]]; then unset xrfv6addr elif [[ "$value" == g4* ]]; then unset g3_v4addr # elif [[ "$value" == g6* ]]; then unset g3_v6addr elif [[ "$value" == d4* ]]; then unset dmrv4addr elif [[ "$value" == d6* ]]; then unset dmrv6addr elif [[ "$value" == m4* ]]; then unset dmpv4addr elif [[ "$value" == m6* ]]; then unset dmpv6addr elif [[ "$value" == y4* ]]; then unset ysfv4addr elif [[ "$value" == y6* ]]; then unset ysfv6addr elif [[ "$value" == x4* ]]; then unset xlxv4addr elif [[ "$value" == x6* ]]; then unset xlxv6addr fi fi if [[ "$callsign" != XLX* ]]; then unset {dmr,dmp,ysf,xlx}v{4,6}v{4,6}addr; fi if [ -z ${ip4addr+x} ]; then unset {ref,dcs,xrf,dmr,dmp,ysf,xlx,g3_}v4addr; fi if [ -z ${ip6addr+x} ]; then unset {ref,dcs,xrf,dmr,dmp,ysf,xlx,g3_}v6addr; fi if [[ "$g3support" != true ]]; then unset g3_v{4,6}addr; fi done } # Execution starts here! # file locations rcfg='reflector.cfg' srch='src/configure.h' srcm='src/configure.mk' ambh='ambed/configure.h' ambm='ambed/configure.mk' ysfs='wiresx/configure.php' dbcr='configure.sql' xlxserv='/etc/systemd/system/xlxd.service' xrfserv='/etc/systemd/system/xrfd.service' # default values callsign_d='CHNGME' nummod_d=26 ip4addr_d='none' ip6addr_d='none' tcaddress_d='none' tcmodules_d='ABCDEFGHIJKLMNOPQRSTUVWXYZ' ysfautolink_d=false ysfmodule_d='D' g3support_d=false dbsupport_d=false ysflocaldb_d=false ysfdbname_d='' ysfdbuser_d='' ysfdbpw_d='' # expert mode if [[ "$1" == ex* ]]; then expertmode="expertMode" fi if [ -e reflector.cfg ]; then source reflector.cfg else echo 'No configuration file found...' sleep 1 fi if [ -z ${expertmode+x} ]; then if [ -e $xlxserv ] || [ -e $xrfserv ]; then echo -n "You cannot change the configuration right now beacuse there is an " if [ -e $xlxserv ]; then echo "XLX server running." else echo "XRF server running." fi; echo "===========${rcfg}=============" cat $rcfg echo echo "Please use radmin to uninstall the running server before attempting to modify the configuration." exit 1 fi fi key='x' # main loop while [[ "$key" != q* ]] do clear echo echo " Reflector Configuration, Version #200821" echo echo " ******* REFLECTOR ********" echo -n "cs : Reflector Callsign = "; EvaluateVar callsign{,_d} echo -n "nm : Number of Modules = "; EvaluateVar nummod{,_d} echo -n "g3 : Icom G3 Support = "; EvaluateVar g3support{,_d} echo " ******* ADDRESSES ********" echo -n "i4 : IPv4 Listen Address = "; EvaluateVar ip4addr{,_d} echo -n "i6 : IPv6 Listen Address = "; EvaluateVar ip6addr{,_d} if [ ! -z ${ip4addr+x} ] || [ ! -z ${ip6addr+x} ]; then if [[ "$callsign" == XLX* ]] || [[ "$callsign" == XRF* ]]; then echo "am : Protocol IP Address Override Sub-menu" fi fi if [[ "$callsign" == XLX* ]]; then echo " ******* TRANSCODER ********" echo -n "tc : Transcoder Address = "; EvaluateVar tcaddress{,_d} if [ ! -z ${tcaddress+x} ]; then echo -n "tm : Transcoder Modules = "; EvaluateVar tcmodules{,_d} fi echo " ******* SYSTEM FUSION ********" echo -n "ye : YSF Autolink Enable = "; EvaluateVar ysfautolink{,_d} if [ ! -z ${ysfautolink+x} ]; then if [[ "$ysfautolink" == true ]]; then echo -n "ym : YSF Autolink Module = "; EvaluateVar ysfmodule{,_d} fi fi echo -n "yl : YSF Local Database = "; EvaluateVar ysflocaldb{,_d} if [[ "$ysflocaldb" == true ]]; then echo -n "yd : YSF Database Name = "; EvaluateVar ysfdbname{,_d} echo -n "yu : YSF Database User = "; EvaluateVar ysfdbuser{,_d} echo -n "yp : YSF Database Password = "; EvaluateVar ysfdbpw{,_d} fi fi echo " ******* DEBUGGING ********" echo -n "db : Debugging Support = "; EvaluateVar dbsupport{,_d} echo if [[ "$callsign" == XLX* ]] || [[ "$callsign" == XRF* ]]; then echo "w : Write configuration files (overwrites any existing files) and quit" fi echo "q : Quit without saving" echo "u : Unset the value of (revert to the default value)." echo read -p "Please input - omit value to toggle a true/false : " key value garbage if [[ "$key" == am* ]]; then if [ ! -z ${ip4addr+x} ] || [ ! -z ${ip6addr+x} ];then if [[ "$callsign" == XLX* ]] || [[ "$callsign" == XRF* ]]; then AddressMenu key="continue" fi fi elif [[ "$key" == cs* && ( ${value^^} == XRF* || ${value^^} == XLX* ) ]]; then callsign="${value^^}" callsign="${callsign:0:6}" if [[ "$callsign" == XRF* ]]; then unset tcaddress tcmodules ysf{autolink,module,localdb,dbname,dbuser,dbpw} {dmr,dmp,ysf,xlx}v{4,6}addr fi elif [[ "$key" == nm* ]]; then nummod="$value" elif [[ "$key" == i4* ]]; then ip4addr="$value" elif [[ "$key" == i6* ]]; then ip6addr="$value" elif [[ "$key" == tc* ]]; then tcaddress="$value" elif [[ "$key" == tm* ]]; then tcmodules="${value^^}" elif [[ "$key" == ye* ]]; then SetBooleanValue ysfautolink "$value" elif [[ "$key" == ym* ]]; then ysfmodule="${value^^}" ysfmodule="${ysfmodule:0:1}" elif [[ "$key" == g3* ]]; then SetBooleanValue g3support "$value" elif [[ "$key" == db* ]]; then SetBooleanValue dbsupport "$value" elif [[ "$key" == yl* ]]; then SetBooleanValue ysflocaldb "$value" elif [[ "$key" == yd* ]]; then ysfdbname="$value" elif [[ "$key" == yu* ]]; then ysfdbuser="$value" elif [[ "$key" == yp* ]]; then ysfdbpw="$value" elif [[ "$key" == w* ]]; then WriteCFGFiles ListCFGFiles exit 0 elif [[ "$key" == u* ]]; then if [[ "$value" == cs* ]]; then unset callsign {ref,dcs,xrf,dmr,dmp,ysf,xlx,g3_}v{4,6}addr elif [[ "$value" == nm* ]]; then unset nummod elif [[ "$value" == i4* ]]; then unset ip4addr {ref,dcs,xrf,dmr,dmp,ysf,xlx,g3_}v4addr elif [[ "$value" == i6* ]]; then unset ip6addr {ref,dcs,xrf,dmr,dmp,ysf,xlx,g3_}v6addr elif [[ "$value" == tc* ]]; then unset tcaddress elif [[ "$value" == tm* ]]; then unset tcmodules elif [[ "$value" == ye* ]]; then unset ysfautolink ysfmodule elif [[ "$value" == ym* ]]; then unset ysfmodule elif [[ "$value" == g3* ]]; then unset g3support g3_v{4,6}addr elif [[ "$value" == db* ]]; then unset dbsupport elif [[ "$value" == yl* ]]; then unset ysflocaldb ysfdbname ysfdbuser ysfdbpw elif [[ "$value" == yd* ]]; then unset ysfdbname elif [[ "$value" == yu* ]]; then unset ysfdbuser elif [[ "$value" == yp* ]]; then unset ysfdbpw fi fi done exit 0