Changeset 19


Ignore:
Timestamp:
May 23, 2014, 6:39:58 PM (10 years ago)
Author:
alloc
Message:

Instance management

Location:
scripts
Files:
3 added
5 edited

Legend:

Unmodified
Added
Removed
  • scripts/etc/bash_completion.d/7dtd

    r18 r19  
    1 . /usr/local/lib/7dtd/common.sh
    2 checkRootLoadConf
     1if [ $(id -u) -eq 0 ]; then
     2        _sdtd() {
     3                . /usr/local/lib/7dtd/common.sh
     4                checkRootLoadConf
    35
    4 _sdtd() {
    5         local cur prev opts
    6         COMPREPLY=()
    7         cur="${COMP_WORDS[COMP_CWORD]}"
    8         prev="${COMP_WORDS[COMP_CWORD-1]}"
     6                local cur prev opts
     7                COMPREPLY=()
     8                cur="${COMP_WORDS[COMP_CWORD]}"
     9                prev="${COMP_WORDS[COMP_CWORD-1]}"
    910
    10         opts="help $(listCommands)"
    11        
    12         case "${COMP_CWORD}" in
    13                 1)
    14                         COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
    15                         return 0
    16                         ;;
    17                 *)
    18                         if [ "$(type -t sdtdCommand$(camelcasePrep ${COMP_WORDS[1]})Expects)" = "function" ]; then
    19                                 COMPREPLY=( $(compgen -W "$(sdtdCommand$(camelcasePrep ${COMP_WORDS[1]})Expects $COMP_CWORD)" -- ${cur}) )
     11                opts="help $(listCommands)"
     12
     13                case "${COMP_CWORD}" in
     14                        1)
     15                                COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
    2016                                return 0
    21                         fi
    22                         ;;
    23         esac
    24 }
    25 complete -F _sdtd 7dtd.sh
     17                                ;;
     18                        *)
     19                                if [ "$(type -t sdtdCommand$(camelcasePrep ${COMP_WORDS[1]})Expects)" = "function" ]; then
     20                                        local words="$(sdtdCommand$(camelcasePrep ${COMP_WORDS[1]})Expects $COMP_CWORD $prev)"
     21                                        COMPREPLY=( $(compgen -W "$words" -- ${cur}) )
     22                                        return 0
     23                                fi
     24                                ;;
     25                esac
     26        }
     27        complete -F _sdtd 7dtd.sh
     28fi
  • scripts/usr/local/lib/7dtd/commands/instances.sh

    r17 r19  
    33
    44
    5 sdtdCommandInstances() {
     5sdtdSubcommandInstancesList() {
    66        printf "%-*s | %-*s | %-*s | %-*s\n" 20 "Instance name" 8 "Running" 7 "Players" 5 "Port"
    77        printf -v line "%*s-+-%*s-+-%*s-+-%*s\n" 20 " " 8 " " 7 " " 5 " "
     
    2222                printf "%-*s | %*s |   %2s/%2d | %5d\n" 20 "$I" 8 "$run" $cur $max $port
    2323        done
    24         exit 0
     24}
     25
     26sdtdSubcommandInstancesCreate() {
     27        while : ; do
     28                readInstanceName
     29                [ $(isValidInstance "$INSTANCE") -eq 0 ] && break
     30                echo "Instance name already in use."
     31                INSTANCE=
     32        done
     33        echo
     34       
     35        local IPATH=$(getInstancePath "$INSTANCE")
     36        mkdir -p "$IPATH" 2>/dev/null
     37
     38        if [ $(configTemplateExists) -eq 1 ]; then
     39                local USETEMPLATE
     40                while : ; do
     41                        read -p "Use the config template? [Yn] " USETEMPLATE
     42                        USETEMPLATE=${USETEMPLATE:-Y}
     43                        case $USETEMPLATE in
     44                                y|Y)
     45                                        cp $SDTD_BASE/templates/config.xml $IPATH/config.xml
     46                                        loadCurrentConfigValues "$INSTANCE"
     47                                        break
     48                                        ;;
     49                                n|N)
     50                                        break
     51                                        ;;
     52                        esac
     53                done
     54        fi
     55        configEditAll
     56        echo
     57        configSetAutoParameters "$INSTANCE"
     58        echo
     59        echo "Saving"
     60       
     61        if [ ! -f $IPATH/config.xml ]; then
     62                echo "<ServerSettings/>" > $IPATH/config.xml
     63        fi
     64        saveCurrentConfigValues "$INSTANCE"
     65        if [ -f "$SDTD_BASE/templates/admins.xml" ]; then
     66                cp "$SDTD_BASE/templates/admins.xml" "$IPATH/"
     67        fi
     68        chown -R $SDTD_USER.$SDTD_GROUP $IPATH
     69        echo "Done"
     70}
     71
     72sdtdSubcommandInstancesEdit() {
     73        if [ $(isValidInstance "$1") -eq 0 ]; then
     74                echo "No instance given or not a valid instance!"
     75                return
     76        fi
     77
     78        if [ $(isRunning "$1") -eq 0 ]; then
     79                INSTANCE=$1
     80                loadCurrentConfigValues "$1"
     81                configEditAll
     82                echo
     83                configSetAutoParameters "$INSTANCE"
     84                echo
     85                echo "Saving"
     86                saveCurrentConfigValues "$1"
     87                echo "Done"
     88        else
     89                echo "Instance $1 is currently running. Please stop it first."
     90        fi
     91}
     92
     93sdtdSubcommandInstancesDelete() {
     94        if [ $(isValidInstance "$1") -eq 0 ]; then
     95                echo "No instance given or not a valid instance!"
     96                return
     97        fi
     98
     99        if [ $(isRunning "$1") -eq 0 ]; then
     100                local SECCODE=$(dd if=/dev/urandom bs=1 count=100 2>/dev/null \
     101                        | tr -cd '[:alnum:]' | head -c5)
     102                local SECCODEIN
     103                echo
     104                echo "WARNING: Do you really want to delete the following instance?"
     105                echo "    $1"
     106                echo "This will delete all of its configuration and save data."
     107                echo "If you REALLY want to continue enter the following security code:"
     108                echo "    $SECCODE"
     109                echo
     110                read -p "Security code: " -e SECCODEIN
     111                if [ "$SECCODE" = "$SECCODEIN" ]; then
     112                        rm -R "$(getInstancePath "$1")"
     113                        echo "Done"
     114                else
     115                        echo "Security code did not match, aborting."
     116                fi
     117        else
     118                echo "Instance $1 is currently running. Please stop it first."
     119        fi
     120}
     121
     122sdtdCommandInstances() {
     123        SUBCMD=$1
     124        shift
     125        case $SUBCMD in
     126                list)
     127                        sdtdSubcommandInstancesList "$@"
     128                        ;;
     129                create)
     130                        sdtdSubcommandInstancesCreate "$@"
     131                        ;;
     132                edit)
     133                        sdtdSubcommandInstancesEdit "$@"
     134                        ;;
     135                delete)
     136                        sdtdSubcommandInstancesDelete "$@"
     137                        ;;
     138                *)
     139                        sdtdCommandInstancesHelp
     140                        ;;
     141        esac
    25142}
    26143
    27144sdtdCommandInstancesHelp() {
    28         echo "Usage: $(basename $0) instances"
    29         echo
    30         echo "List all defined instances and their status."
     145        line() {
     146                printf "  %-*s %s\n" 19 "$1" "$2"
     147        }
     148
     149        echo "Usage: $(basename $0) instances <subcommand>"
     150        echo "Subcommands are:"
     151        line "list" "List all defined instances and their status."
     152        line "create" "Create a new instance"
     153        line "edit <instance>" "Edit an existing instance"
     154        line "delete <instance>" "Delete an existing instance"
    31155}
    32156
     
    34158        echo "List all defined instances"
    35159}
     160
     161sdtdCommandInstancesExpects() {
     162        case $1 in
     163                2)
     164                        echo "list create edit delete"
     165                        ;;
     166                3)
     167                        case $2 in
     168                                edit|delete)
     169                                        echo "$(getInstanceList)"
     170                                        ;;
     171                        esac
     172                        ;;
     173        esac
     174}
     175
  • scripts/usr/local/lib/7dtd/commands/status.sh

    r17 r19  
    5353
    5454        echo
    55         exit 0
    5655}
    5756
  • scripts/usr/local/lib/7dtd/commands/updateengine.sh

    r17 r19  
    77        for I in $(getInstanceList); do
    88                if [ $(isRunning $I) -eq 1 ]; then
    9                         echo "At least one instance is still running."
     9                        echo "At least one instance is still running (\"$I\")."
    1010                        echo "Before updating the engine please stop all instances!"
    1111                        return
  • scripts/usr/local/lib/7dtd/common.sh

    r17 r19  
    2222}
    2323
     24# Check if the given instance name is valid (no blanks, no special chars,
     25# only letters, digits, underscore, hyphen -> [A-Za-z0-9_\-])
     26# Params:
     27#   1: Instance name
     28# Returns:
     29#   0/1 instance not valid/valid
     30isValidInstanceName() {
     31        if [[ "$1" =~ ^[A-Za-z0-9_\-]+$ ]]; then
     32                echo 1
     33        else
     34                echo 0
     35        fi
     36}
     37
    2438# Check if the given instance name is an existing instance
    2539# Params:
     
    2842#   0/1 instance not valid/valid
    2943isValidInstance() {
    30         if [ -z $1 ]; then
    31                 echo 0
    32         else
    33                 if [ ! -d $(getInstancePath $1) ]; then
    34                         echo 0
    35                 else
    36                         if [ ! -f $(getInstancePath $1)/config.xml ]; then
    37                                 echo 0
    38                         else
    39                                 echo 1
    40                         fi
    41                 fi
    42         fi
     44        if [ ! -z "$1" ]; then
     45                if [ $(isValidInstanceName "$1") -eq 1 ]; then
     46                        if [ -d $(getInstancePath "$1") ]; then
     47                                if [ -f $(getInstancePath "$1")/config.xml ]; then
     48                                        echo 1
     49                                        return
     50                                fi
     51                        fi
     52                fi
     53        fi
     54        echo 0
    4355}
    4456
     
    6274#   List of instances
    6375getInstanceList() {
     76        local IF
    6477        for IF in $SDTD_BASE/instances/*; do
    65                 I=`basename $IF`
     78                local I=`basename $IF`
    6679                if [ $(isValidInstance $I) -eq 1 ]; then
    6780                        echo $I
     
    8497}
    8598
    86 # Get a single value from a serverconfig
    87 # Params:
    88 #   1: Instance name
    89 #   2: Property name
    90 # Returns:
    91 #   Property value
    92 getConfigValue() {
    93         CONF=$(getInstancePath $1)/config.xml
    94         $XMLSTARLET sel -t -v "/ServerSettings/property[@name='$2']/@value" $CONF
    95 }
    96 
    97 # Update a single value in a serverconfig
    98 # Params:
    99 #   1: Instance name
    100 #   2: Property name
    101 #   3: New value
    102 setConfigValue() {
    103         CONF=$(getInstancePath $1)/config.xml
    104         $XMLSTARLET ed -L -u "/ServerSettings/property[@name='$2']/@value" -v "$3" $CONF
    105 }
    106 
    10799# Check if a given port range (baseport, baseport+1, baseport+2 each udp)
    108 # is already in use by any instance
     100# is already in use by any other instance
    109101# Params:
    110102#   1: Baseport
     103#   2: Current instance (ignored)
    111104# Returns:
    112105#   0/1 not in use/in use
    113106checkGamePortUsed() {
    114         PORTMIN=$1
    115         PORTMAX=$(( $1 + 2 ))
     107        local PORTMIN=$1
     108        local PORTMAX=$(( $1 + 2 ))
     109        local I
    116110        for I in $(getInstanceList); do
    117                 CURPORTMIN=$(getConfigValue $I "ServerPort")
    118                 CURPORTMAX=$(( $CURPORTMIN + 2 ))
    119                 if [ $PORTMAX -ge $CURPORTMIN -a $PORTMIN -le $CURPORTMAX ]; then
    120                         echo 1
    121                         return
     111                if [ "$2" != "$I" ]; then
     112                        local CURPORTMIN=$(getConfigValue $I "ServerPort")
     113                        local CURPORTMAX=$(( $CURPORTMIN + 2 ))
     114                        if [ $PORTMAX -ge $CURPORTMIN -a $PORTMIN -le $CURPORTMAX ]; then
     115                                echo 1
     116                                return
     117                        fi
    122118                fi
    123119        done
     
    125121}
    126122
    127 # Check if a given telnet port is already in use by any instance
     123# Check if a given TCP port is already in use by any instance (either by control
     124# panel or telnet)
    128125# Params:
    129126#   1: Port
    130127# Returns:
    131128#   0/1 not in use/in use
    132 checkTelnetPortUsed() {
     129checkTCPPortUsed() {
     130        local I
    133131        for I in $(getInstanceList); do
    134                 CURENABLED=$(getConfigValue $I "TelnetEnabled")
    135                 CURPORT=$(getConfigValue $I "TelnetPort")
    136                 if [ "$CURENABLED" = "true" -a $CURPORT -eq $1 ]; then
    137                         echo 1
    138                         return
     132                if [ "$2" != "$I" ]; then
     133                        local CURENABLED=$(getConfigValue $I "TelnetEnabled")
     134                        local CURPORT=$(getConfigValue $I "TelnetPort")
     135                        if [ "$CURENABLED" = "true" -a $CURPORT -eq $1 ]; then
     136                                echo 1
     137                                return
     138                        fi
     139                        CURENABLED=$(getConfigValue $I "ControlPanelEnabled")
     140                        CURPORT=$(getConfigValue $I "ControlPanelPort")
     141                        if [ "$CURENABLED" = "true" -a $CURPORT -eq $1 ]; then
     142                                echo 1
     143                                return
     144                        fi
    139145                fi
    140146        done
     
    149155#   String of telnet output
    150156telnetCommand() {
    151         TEL_ENABLED=$(getConfigValue $1 TelnetEnabled)
    152         TEL_PORT=$(getConfigValue $1 TelnetPort)
    153         TEL_PASS=$(getConfigValue $1 TelnetPassword)   
     157        local TEL_ENABLED=$(getConfigValue $1 TelnetEnabled)
     158        local TEL_PORT=$(getConfigValue $1 TelnetPort)
     159        local TEL_PASS=$(getConfigValue $1 TelnetPassword)     
    154160        if [ "$TEL_ENABLED" = "true" ] && [ -n "$TEL_PASS" ]; then
    155161                echo -e "$TEL_PASS\n$2\nexit" | nc -q 2 127.0.0.1 $TEL_PORT
     
    166172getHooksFor() {
    167173        if [ -d $SDTD_BASE/hooks/$1 ]; then
     174                local H
    168175                for H in $SDTD_BASE/hooks/$1/*.sh; do
    169176                        echo "$H"
     
    191198}
    192199
     200# Check if given value is a (integer) number
     201# Params:
     202#   1: Value
     203# Returns:
     204#   0/1 for NaN / is a number
     205isANumber() {
     206        if [[ $1 =~ ^[0-9]+$ ]] ; then
     207                echo "1"
     208        else
     209                echo "0"
     210        fi
     211}
     212
     213# Check if given value is a boolean (true/false, yes/no, y/n)
     214# Params:
     215#   1: Value
     216# Returns:
     217#   0/1
     218isABool() {
     219        local LOW=$(lowercase "$1")
     220        if [ "$LOW" = "false" -o "$LOW" = "true"\
     221                -o "$LOW" = "yes" -o "$LOW" = "y"\
     222                -o "$LOW" = "no" -o "$LOW" = "n" ]; then
     223                echo 1
     224        else
     225                echo 0
     226        fi
     227}
     228
     229# Convert the given value to a boolean 0/1
     230# Params:
     231#   1: Value
     232# Returns:
     233#   0/1 as false/true
     234getBool() {
     235        if [ $(isABool "$1") -eq 0 ]; then
     236                echo 0
     237        else
     238                local LOW=$(lowercase "$1")
     239                if [ "$LOW" = "true" -o "$LOW" = "yes" -o "$LOW" = "y" ]; then
     240                        echo 1
     241                else
     242                        echo 0
     243                fi
     244        fi
     245}
     246
    193247listCommands() {
     248        local C
    194249        for C in $(declare -F | cut -d\  -f3 | grep "^sdtdCommand"\
    195250                        | grep -v "Help$"\
    196251                        | grep -v "Description$"\
    197252                        | grep -v "Expects$"); do
    198                 CMD=$(lowercase "${C#sdtdCommand}")
     253                local CMD=$(lowercase "${C#sdtdCommand}")
    199254                printf "%s " "$CMD"
    200255        done
     
    203258. /usr/local/lib/7dtd/help.sh
    204259. /usr/local/lib/7dtd/playerlog.sh
     260. /usr/local/lib/7dtd/serverconfig.sh
    205261for M in /usr/local/lib/7dtd/commands/*.sh; do
    206262        . $M
Note: See TracChangeset for help on using the changeset viewer.