Merge master into federation #48

Manually merged
nutomic merged 120 commits from merge-master into federation 2020-06-09 18:07:02 +00:00
2 changed files with 139 additions and 47 deletions
Showing only changes of commit d17316508c - Show all commits

73
install.sh vendored
View File

@ -1,4 +1,4 @@
#!/bin/bash #!/bin/sh
set -e set -e
# Set the database variable to the default first. # Set the database variable to the default first.
@ -10,25 +10,55 @@ export LEMMY_DATABASE_URL=postgres://lemmy:password@localhost:5432/lemmy
export JWT_SECRET=changeme export JWT_SECRET=changeme
export HOSTNAME=rrr export HOSTNAME=rrr
yes_no_prompt_invalid() {
echo "Invalid input. Please enter either \"y\" or \"n\"." 1>&2
}
ask_to_init_db() {
init_db_valid=0
init_db_final=0
while [ "$init_db_valid" == 0 ]
do
read -p "Initialize database (y/n)? " init_db
case "$init_db" in
[yY]* ) init_db_valid=1; init_db_final=1;;
[nN]* ) init_db_valid=1; init_db_final=0;;
* ) yes_no_prompt_invalid;;
esac
echo
done
if [ "$init_db_final" = 1 ]
then
source ./server/db-init.sh
read -n 1 -s -r -p "Press ANY KEY to continue execution of this script, press CTRL+C to quit..."
echo
fi
}
ask_to_auto_reload() {
auto_reload_valid=0
auto_reload_final=0
while [ "$auto_reload_valid" == 0 ]
do
echo "Automagically reload the project when source files are changed?"
echo "ONLY ENABLE THIS FOR DEVELOPMENT!"
read -p "(y/n) " auto_reload
case "$auto_reload" in
[yY]* ) auto_reload_valid=1; auto_reload_final=1;;
[nN]* ) auto_reload_valid=1; auto_reload_final=0;;
* ) yes_no_prompt_invalid;;
esac
echo
done
if [ "$auto_reload_final" = 1 ]
then
cd ui && yarn start
cd server && cargo watch -x run
fi
}
# Optionally initialize the database # Optionally initialize the database
init_db_valid=0 ask_to_init_db
init_db_final=0
while [ "$init_db_valid" == 0 ]
do
read -p "Initialize database (y/n)? " init_db
case "$init_db" in
[yY]* ) init_db_valid=1; init_db_final=1;;
[nN]* ) init_db_valid=1; init_db_final=0;;
* ) echo "Invalid input. Please enter either \"y\" or \"n\"." 1>&2;;
esac
echo
done
if [ "$init_db_final" = 1 ]
then
source ./server/db-init.sh
read -n 1 -s -r -p "Press ANY KEY to continue execution of this script, press CTRL+C to quit..."
echo
fi
# Build the web client # Build the web client
cd ui cd ui
@ -39,6 +69,5 @@ yarn build
cd ../server cd ../server
RUST_LOG=debug cargo run RUST_LOG=debug cargo run
# For live coding, where both the front and back end, automagically reload on any save, do: # For live coding, where both the front and back end, automagically reload on any save
# cd ui && yarn start ask_to_auto_reload
# cd server && cargo watch -x run

113
server/db-init.sh vendored
View File

@ -1,43 +1,106 @@
#!/bin/bash #!/bin/sh
# Default configurations
username=lemmy username=lemmy
dbname=lemmy dbname=lemmy
port=5432 port=5432
password="" yes_no_prompt_invalid() {
password_confirm="" echo "Invalid input. Please enter either \"y\" or \"n\"." 1>&2
password_valid=0 }
while [ "$password_valid" == 0 ] print_config() {
do echo " database name: $dbname"
read -p "Enter database password: " -s password echo " username: $username"
echo " port: $port"
}
ask_for_db_config() {
echo "The default database configuration is:"
print_config
echo echo
read -p "Verify database password: " -s password_confirm default_config_final=0
echo default_config_valid=0
echo while [ "$default_config_valid" == 0 ]
do
# Start the loop from the top if either check fails read -p "Use this configuration (y/n)? " default_config
if [ -z "$password" ] case "$default_config" in
then [yY]* ) default_config_valid=1; default_config_final=1;;
echo "Error: Password cannot be empty." 1>&2 [nN]* ) default_config_valid=1; default_config_final=0;;
* ) yes_no_prompt_invalid;;
esac
echo echo
continue done
fi
if [ "$password" != "$password_confirm" ] if [ "$default_config_final" == 0 ]
then then
echo "Error: Passwords don't match." 1>&2 config_ok_final=0
echo while [ "$config_ok_final" == 0 ]
continue do
read -p "Database name: " dbname
read -p "Username: " username
read -p "Port: " port
#echo
#echo "The database configuration is:"
#print_config
#echo
config_ok_valid=0
while [ "$config_ok_valid" == 0 ]
do
read -p "Use this configuration (y/n)? " config_ok
case "$config_ok" in
[yY]* ) config_ok_valid=1; config_ok_final=1;;
[nN]* ) config_ok_valid=1; config_ok_final=0;;
* ) yes_no_prompt_invalid;;
esac
echo
done
done
fi fi
}
# Set the password_valid variable to break out of the loop ask_for_password() {
password_valid=1 password=""
done password_confirm=""
password_valid=0
while [ "$password_valid" == 0 ]
do
read -p "Enter database password: " -s password
echo
read -p "Verify database password: " -s password_confirm
echo
echo
# Start the loop from the top if either check fails
if [ -z "$password" ]
then
echo "Error: Password cannot be empty." 1>&2
echo
continue
fi
if [ "$password" != "$password_confirm" ]
then
echo "Error: Passwords don't match." 1>&2
echo
continue
fi
# Set the password_valid variable to break out of the loop
password_valid=1
done
}
ask_for_db_config
ask_for_password
psql -c "CREATE USER $username WITH PASSWORD '$password' SUPERUSER;" -U postgres psql -c "CREATE USER $username WITH PASSWORD '$password' SUPERUSER;" -U postgres
psql -c "CREATE DATABASE $dbname WITH OWNER $username;" -U postgres psql -c "CREATE DATABASE $dbname WITH OWNER $username;" -U postgres
export LEMMY_DATABASE_URL=postgres://$username:$password@localhost:$port/$dbname export LEMMY_DATABASE_URL=postgres://$username:$password@localhost:$port/$dbname
echo $LEMMY_DATABASE_URL echo "The database URL is $LEMMY_DATABASE_URL"