[TOOLS][DOCKER] Added input verfication

This commit is contained in:
margarida 2020-10-20 23:23:51 +01:00 committed by Hugo Sales
parent 152d173e69
commit a8d211cdbf
Signed by: someonewithpc
GPG Key ID: 7D0C7EAFC9D835A0
1 changed files with 51 additions and 12 deletions

63
bin/configure vendored
View File

@ -1,27 +1,54 @@
#!/bin/sh #!/bin/sh
check_retval(){
case $1 in
1|255)
echo "Stopped"
exit;;
esac
}
check_input(){
if [ "$1" = "" ]
then
echo "Can't be empty"
exit
fi
}
DIALOG=${DIALOG=dialog} DIALOG=${DIALOG=dialog}
tempfile=`tempfile 2>/dev/null` || tempfile=/tmp/test$$ tempfile=`tempfile 2>/dev/null` || tempfile=/tmp/test$$
trap "rm -f $tempfile" 0 1 2 5 15 trap "rm -f $tempfile" 0 1 2 5 15
$DIALOG --title "Configure" --clear \ $DIALOG --title "Configure" \
--inputbox "Domain root:" 12 51 2> $tempfile --inputbox "Domain root:" 12 51 2> $tempfile
check_retval $?
domain_root=`cat $tempfile` domain_root=`cat $tempfile`
check_input $domain_root
$DIALOG --title "Configure" --clear \
$DIALOG --title "Configure" \
--inputbox "Subdomain (can be empty):" 12 51 2> $tempfile --inputbox "Subdomain (can be empty):" 12 51 2> $tempfile
check_retval $?
sub_domain=`cat $tempfile` sub_domain=`cat $tempfile`
$DIALOG --title "Configure" --clear \ $DIALOG --title "Configure" --clear \
--inputbox "Use certificate signed by Let's Encrypt (Y/n):" 12 51 2> $tempfile --menu "Use certificate signed by Let's Encrypt?" 12 51 2 \
"Y" "" \
"n" "" 2> $tempfile
check_retval $?
signed=`cat $tempfile` signed=`cat $tempfile`
[ "${signed}" = "${signed#[Yy]}" ] [ "${signed}" = "${signed#[Yy]}" ]
signed=$? signed=$?
if [ $signed -ne 0 ]; then if [ $signed -ne 0 ]; then
printf "Email: " $DIALOG --title "Configure" \
read -r email --inputbox "Email:" 12 51 2> $tempfile
check_retval $?
email=`cat $tempfile`
check_input $email
fi fi
if [ -z "$sub_domain" ] if [ -z "$sub_domain" ]
@ -45,8 +72,6 @@ chmod +x ./docker/bootstrap/bootstrap.env
docker-compose -f docker/bootstrap/bootstrap.yaml up docker-compose -f docker/bootstrap/bootstrap.yaml up
## --------------------------------
git_dir=$PWD git_dir=$PWD
while [ ! -d .git ]; do while [ ! -d .git ]; do
git_dir=$(dirname "${git_dir}") git_dir=$(dirname "${git_dir}")
@ -65,34 +90,46 @@ $DIALOG --clear --title "Configure" \
--menu "Select DBMS:" 12 51 2 \ --menu "Select DBMS:" 12 51 2 \
"postgres" "" \ "postgres" "" \
"mariadb" "" 2> $tempfile "mariadb" "" 2> $tempfile
check_retval $?
dbms=`cat $tempfile` dbms=`cat $tempfile`
$DIALOG --title "Configure" --clear \ $DIALOG --title "Configure" --clear \
--inputbox "Social database name:" 12 51 2> $tempfile --inputbox "Social database name:" 12 51 2> $tempfile
check_retval $?
db=`cat $tempfile` db=`cat $tempfile`
if [ "${dbms}" = 'mariadb' ] if [ "${dbms}" = 'mariadb' ]
then then
$DIALOG --title "Configure" --clear \ $DIALOG --title "Configure" --clear \
--inputbox "Database user:" 12 51 2> $tempfile --inputbox "Database user:" 12 51 2> $tempfile
user=`cat $tempfile` check_retval $?
user=`cat $tempfile`
check_input $user
fi fi
$DIALOG --title "Configure" --clear \ $DIALOG --title "Configure" --clear \
--inputbox "Database password:" 12 51 2> $tempfile --inputbox "Database password:" 12 51 2> $tempfile
check_retval $?
password=`cat $tempfile` password=`cat $tempfile`
check_input $password
$DIALOG --title "Configure" --clear \ $DIALOG --title "Configure" --clear \
--inputbox "Sitename:" 12 51 2> $tempfile --inputbox "Sitename:" 12 51 2> $tempfile
check_retval $?
sitename=`cat $tempfile` sitename=`cat $tempfile`
check_input $sitename
$DIALOG --title "Configure" --clear \ $DIALOG --title "Configure" --clear \
--inputbox "Admin nickname:" 12 51 2> $tempfile --inputbox "Admin nickname:" 12 51 2> $tempfile
check_retval $?
admin_nick=`cat $tempfile` admin_nick=`cat $tempfile`
check_input $admin_nick
$DIALOG --title "Configure" --clear \ $DIALOG --title "Configure" --clear \
--inputbox "Admin password:" 12 51 2> $tempfile --inputbox "Admin password:" 12 51 2> $tempfile
check_retval $?
admin_password=`cat $tempfile` admin_password=`cat $tempfile`
check_input $admin_password
$DIALOG --clear --title "Configure" \ $DIALOG --clear --title "Configure" \
--menu "Site profile:" 12 51 4 \ --menu "Site profile:" 12 51 4 \
@ -100,11 +137,14 @@ $DIALOG --clear --title "Configure" \
"private" "" \ "private" "" \
"community" "" \ "community" "" \
"single_user" "" 2> $tempfile "single_user" "" 2> $tempfile
check_retval $?
profile=`cat $tempfile` profile=`cat $tempfile`
$DIALOG --title "Configure" --clear \ $DIALOG --title "Configure" --clear \
--inputbox "Mailer dsn:" 12 51 2> $tempfile --inputbox "Mailer dsn:" 12 51 2> $tempfile
check_retval $?
mailer_dsn=`cat $tempfile` mailer_dsn=`cat $tempfile`
check_input $mailer_dsn
mkdir -p ./docker/db mkdir -p ./docker/db
@ -163,8 +203,7 @@ $DIALOG --title "Services" --clear \
3 "php" on \ 3 "php" on \
4 "db" on \ 4 "db" on \
5 "redis" on 2> $tempfile 5 "redis" on 2> $tempfile
retval=$? check_retval $?
choice=`cat $tempfile` choice=`cat $tempfile`
echo "\nservices:" >> docker-compose.yaml echo "\nservices:" >> docker-compose.yaml