| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245 | #!/bin/bash
#
# .---.                  .              .
# |                      |              |
# |--- .--. .-.  .-.  .-.|  .-. .--.--. |.-.  .-. .--.  .-.
# |    |   (.-' (.-' (   | (   )|  |  | |   )(   )|  | (.-'
# '    '     --'  --'  -' -  -' '  '   -' -'   -' '   -  --'
#
#                    Freedom in the Cloud
#
# Interactive install functions
#
# License
# =======
#
# Copyright (C) 2014-2016 Bob Mottram <bob@freedombone.net>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, either version 3 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 Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.
function interactive_configuration_remote_backups {
    if [[ $SYSTEM_TYPE == "mesh"* ]]; then
        return
    fi
    if [ ! -f /usr/local/bin/${PROJECT_NAME}-remote ]; then
        if [ ! -f /usr/bin/${PROJECT_NAME}-remote ]; then
            echo $"The command ${PROJECT_NAME}-remote was not found"
            exit 87354
        fi
    fi
    ${PROJECT_NAME}-remote -u $MY_USERNAME -l $FRIENDS_SERVERS_LIST -m $MINIMUM_PASSWORD_LENGTH -r yes
    if [ ! "$?" = "0" ]; then
        echo $'Command failed:'
        echo ''
        echo $"  ${PROJECT_NAME}-remote -u $MY_USERNAME -l $FRIENDS_SERVERS_LIST -m $MINIMUM_PASSWORD_LENGTH -r yes"
        echo ''
        exit 65892
    fi
}
function interactive_configuration {
    if [ ! -f /usr/local/bin/${PROJECT_NAME}-config ]; then
        if [ ! -f /usr/bin/${PROJECT_NAME}-config ]; then
            echo $"The command ${PROJECT_NAME}-config was not found"
            exit 63935
        fi
    fi
    if [ -f /tmp/meshuserdevice ]; then
        rm -f /tmp/meshuserdevice
    fi
    if [[ $ONION_ONLY == "no" ]]; then
        if [[ $MINIMAL_INSTALL == "no" ]]; then
            ${PROJECT_NAME}-config \
                           -f $CONFIGURATION_FILE \
                           -w $PROJECT_WEBSITE \
                           -m $MINIMUM_PASSWORD_LENGTH
        else
            ${PROJECT_NAME}-config \
                           -f $CONFIGURATION_FILE \
                           -w $PROJECT_WEBSITE \
                           -m $MINIMUM_PASSWORD_LENGTH \
                           --minimal "yes"
        fi
    else
        ${PROJECT_NAME}-config \
                       -f $CONFIGURATION_FILE \
                       -w $PROJECT_WEBSITE \
                       -m $MINIMUM_PASSWORD_LENGTH \
                       --onion "yes"
    fi
    if [ -f /tmp/meshuserdevice ]; then
        # mesh network user device installation
        rm -f /tmp/meshuserdevice
        exit 0
    fi
    if [ ! "$?" = "0" ]; then
        echo $'Command failed:'
        echo ''
        echo $"  ${PROJECT_NAME}-config -u $MY_USERNAME -f $CONFIGURATION_FILE -w $PROJECT_WEBSITE -b $PROJECT_BITMESSAGE -m $MINIMUM_PASSWORD_LENGTH --minimal [yes|no]"
        echo ''
        exit 73594
    fi
    if [[ $SYSTEM_TYPE == "mesh"* ]]; then
        FRIENDS_SERVERS_LIST=/home/$MY_USERNAME/backup.list
        dialog --title $"Encrypted backup to other servers" \
               --backtitle $"${PROJECT_NAME} Configuration" \
               --defaultno \
               --yesno $"\nDo you wish to configure some remote backup locations?" 7 60
        sel=$?
        case $sel in
            0) interactive_configuration_remote_backups;;
        esac
    fi
}
function interactive_site_details {
    site_name="$1"
    site_name_upper=${site_name^^}
    SITE_BACKTITLE=$"Freedombone Configuration"
    SITE_CONFIG_TITLE=$"${site_name^} Configuration"
    SITE_FORM_TEXT=$"\nPlease enter your ${site_name^} details.\n\nIMPORTANT: This should be a domain name which is supported by Let's Encrypt:"
    SITE_DOMAIN_NAME=
    SITE_CODE=
    SITE_DETAILS_COMPLETE=
    while [ ! $SITE_DETAILS_COMPLETE ]
    do
        data=$(tempfile 2>/dev/null)
        trap "rm -f $data" 0 1 2 5 15
        if [[ $DDNS_PROVIDER == "default@freedns.afraid.org" ]]; then
            dialog --backtitle "$SITE_BACKTITLE" \
                   --title "$SITE_CONFIG_TITLE" \
                   --form "$SITE_FORM_TEXT" 14 55 3 \
                   $"Domain:" 1 1 "$(grep '${site_name_upper}_DOMAIN_NAME' temp.cfg | awk -F '=' '{print $2}')" 1 16 33 40 \
                   $"Code:" 2 1 "$(grep '${site_name_upper}_CODE' temp.cfg | awk -F '=' '{print $2}')" 2 16 33 255 \
                   2> $data
        else
            dialog --backtitle "$SITE_BACKTITLE" \
                   --title "$SITE_CONFIG_TITLE" \
                   --form "$SITE_FORM_TEXT" 11 55 3 \
                   $"Domain:" 1 1 "$(grep '${site_name_upper}_DOMAIN_NAME' temp.cfg | awk -F '=' '{print $2}')" 1 16 33 40 \
                   2> $data
        fi
        sel=$?
        case $sel in
            1) exit 1;;
            255) exit 1;;
        esac
        SITE_DOMAIN_NAME=$(cat $data | sed -n 1p)
        if [ $SITE_DOMAIN_NAME ]; then
            TEST_DOMAIN_NAME=$SITE_DOMAIN_NAME
            validate_domain_name
            if [[ $TEST_DOMAIN_NAME != $SITE_DOMAIN_NAME ]]; then
                SITE_DOMAIN_NAME=
                dialog --title $"Domain name validation" --msgbox "$TEST_DOMAIN_NAME" 15 50
            else
                if [[ $DDNS_PROVIDER == "default@freedns.afraid.org" ]]; then
                    SITE_CODE=$(cat $data | sed -n 2p)
                    validate_freedns_code "$SITE_CODE"
                    if [ ! $VALID_CODE ]; then
                        SITE_DOMAIN_NAME=
                    fi
                fi
            fi
        fi
        if [ $SITE_DOMAIN_NAME ]; then
            SITE_DETAILS_COMPLETE="yes"
        fi
    done
    # save the results in the config file
    write_config_param "${site_name_upper}_DOMAIN_NAME" "$SITE_DOMAIN_NAME"
    site_code_str="$SITE_CODE"
    if [ ${#site_code_str} -gt 1 ]; then
        write_config_param "${site_name_upper}_CODE" "${SITE_CODE}"
    fi
}
function interactive_site_details_with_title {
    site_name="${1}"
    SITE_BACKTITLE=$"Freedombone Configuration"
    SITE_CONFIG_TITLE=$"${site_name^} Configuration"
    SITE_FORM_TEXT=$"\nPlease enter your ${site_name^} details.\n\nIMPORTANT: This should be a domain name which is supported by Let's Encrypt:"
    SITE_TITLE=
    SITE_DOMAIN_NAME=
    SITE_CODE=
    SITE_DETAILS_COMPLETE=
    while [ ! $SITE_DETAILS_COMPLETE ]
    do
        data=$(tempfile 2>/dev/null)
        trap "rm -f $data" 0 1 2 5 15
        if [[ $DDNS_PROVIDER == "default@freedns.afraid.org" ]]; then
                dialog --backtitle $"Freedombone Configuration" \
                       --title "$SITE_BACKTITLE" \
                       --form "$SITE_FORM_TEXT" 14 55 4 \
                       $"Title:" 1 1 "$(grep '$SITE_TITLE' temp.cfg | awk -F '=' '{print $2}')" 1 16 33 40 \
                       $"Domain:" 2 1 "$(grep '$SITE_DOMAIN_NAME' temp.cfg | awk -F '=' '{print $2}')" 2 16 33 40 \
                       $"Code:" 3 1 "$(grep '$SITE_CODE' temp.cfg | awk -F '=' '{print $2}')" 3 16 33 255 \
                       2> $data
        else
            dialog --backtitle "$SITE_BACKTITLE" \
                   --title "$SITE_CONFIG_TITLE" \
                   --form "$SITE_FORM_TEXT" 11 55 3 \
                   $"Title:" 1 1 "$(grep '$SITE_TITLE' temp.cfg | awk -F '=' '{print $2}')" 1 16 33 40 \
                   $"Domain:" 2 1 "$(grep '$SITE_DOMAIN_NAME' temp.cfg | awk -F '=' '{print $2}')" 2 16 33 40 \
                   2> $data
        fi
        sel=$?
        case $sel in
            1) exit 1;;
            255) exit 1;;
        esac
        SITE_TITLE=$(cat $data | sed -n 1p)
        SITE_DOMAIN_NAME=$(cat $data | sed -n 2p)
        site_domain_name_str="$SITE_DOMAIN_NAME"
        if [ ${#site_domain_name_str} -gt 1 ]; then
            TEST_DOMAIN_NAME="$SITE_DOMAIN_NAME"
            validate_domain_name
            if [[ "$TEST_DOMAIN_NAME" != "${SITE_DOMAIN_NAME}" ]]; then
                SITE_DOMAIN_NAME=
                dialog --title $"Domain name validation" --msgbox "$TEST_DOMAIN_NAME" 15 50
            else
                if [[ $DDNS_PROVIDER == "default@freedns.afraid.org" ]]; then
                    SITE_CODE=$(cat $data | sed -n 3p)
                    validate_freedns_code "${SITE_CODE}"
                    if [ ! $VALID_CODE ]; then
                        SITE_DOMAIN_NAME=
                    fi
                fi
            fi
        fi
        site_title_str="$SITE_TITLE"
        if [ ${#site_title_str} -gt 0 ]; then
            if [ ${SITE_DOMAIN_NAME} ]; then
                SITE_DETAILS_COMPLETE="yes"
            fi
        fi
    done
    # save the results in the config file
    write_config_param "$2" "${SITE_TITLE}"
    write_config_param "$3" "${SITE_DOMAIN_NAME}"
    site_code_str="$SITE_CODE"
    if [ ${#site_code_str} -gt 1 ]; then
        write_config_param "$4" "${SITE_CODE}"
    fi
}
# NOTE: deliberately no exit 0
 |