1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/yourls_ynh.git synced 2024-09-03 20:35:59 +02:00
yourls_ynh/scripts/install

80 lines
2.5 KiB
Text
Raw Normal View History

2014-06-12 13:28:57 +02:00
#!/bin/bash
# Retrieve arguments
domain=$1
path=$2
admin_user=$3
2014-06-12 13:28:57 +02:00
# Check domain/path availability
sudo yunohost app checkurl $domain$path -a yourls
if [[ ! $? -eq 0 ]]; then
exit 1
fi
2014-06-13 09:47:35 +02:00
# Check that admin user is an existing account
sudo yunohost user list --json | grep -q "\"username\": \"$admin_user\""
if [[ ! $? -eq 0 ]]; then
echo "Error : the chosen admin user does not exist"
exit 1
fi
2014-06-12 18:16:54 +02:00
# Generate random password
db_pwd=$(dd if=/dev/urandom bs=1 count=200 2> /dev/null | tr -c -d 'A-Za-z0-9' | sed -n 's/\(.\{24\}\).*/\1/p')
# Use 'yourls' as database name and user
db_user=yourls
# Initialize database and store mysql password for upgrade
sudo yunohost app initdb $db_user -p $db_pwd
sudo yunohost app setting yourls mysqlpwd -v $db_pwd
2014-06-12 13:28:57 +02:00
# Copy files to the right place
final_path=/var/www/yourls
sudo mkdir -p $final_path
2014-06-12 18:16:54 +02:00
sudo cp -a ../sources/* $final_path
2014-07-01 07:21:26 +02:00
sudo cp ../conf/index.php $final_path/
2014-07-01 20:51:36 +02:00
sudo cp -r ../conf/yunohost_auth $final_path/user/plugins
2014-07-01 07:21:26 +02:00
# Change variable in yourls configuration
sudo cp ../conf/config.php $final_path/user/config.php
sudo sed -i "s/yunouser/$db_user/g" $final_path/user/config.php
sudo sed -i "s/yunopass/$db_pwd/g" $final_path/user/config.php
sudo sed -i "s/yunobase/$db_user/g" $final_path/user/config.php
2014-06-13 11:34:41 +02:00
sudo sed -i "s/yunodomain/$domain/g" $final_path/user/config.php
sudo sed -i "s/yourlsuser/$admin_user/g" $final_path/user/config.php
2014-07-04 09:57:52 +02:00
sudo sed -i "s@_yourlspath@$path@g" $final_path/user/config.php
2014-06-12 13:28:57 +02:00
# Set permissions
sudo chown -R www-data: $final_path
# Modify Nginx configuration file and copy it to Nginx conf directory
2014-07-03 12:26:56 +02:00
sed -i "s@LOCATIONTOCHANGE@$path@g" ../conf/nginx.conf*
sed -i "s@PATHTOCHANGE@${path%/}@g" ../conf/nginx.conf*
2014-07-01 07:21:26 +02:00
sed -i "s@DOMAINTOCHANGE@$domain@g" ../conf/nginx.conf*
2014-06-15 22:22:17 +02:00
sed -i "s@ALIASTOCHANGE@$final_path@g" ../conf/nginx.conf*
2014-06-13 09:47:35 +02:00
nginxconf=/etc/nginx/conf.d/$domain.d/yourls.conf
sudo cp ../conf/nginx.conf $nginxconf
sudo chown root: $nginxconf
sudo chmod 600 $nginxconf
# Reload Nginx and regenerate SSOwat conf
sudo service nginx reload
2014-07-01 20:51:36 +02:00
sudo yunohost app setting yourls unprotected_uris -v "/"
sudo yunohost app ssowatconf
# Start Yourls install (database table creation)
curl -kL -X POST https://$domain$path/admin/install.php --data "install=dummy" > /dev/null 2>&1
# Activate auth plugin
mysql -u $db_user -p$db_pwd $db_user < ../conf/activate_plugins.sql
#sudo yunohost app setting yourls skipped_uris -d
#sudo yunohost app setting yourls unprotected_uris -v "/admin"
sudo service nginx reload
sudo yunohost app ssowatconf