mirror of
https://github.com/YunoHost-Apps/ampache_ynh.git
synced 2024-09-03 18:15:55 +02:00
83 lines
3 KiB
Bash
83 lines
3 KiB
Bash
#!/bin/bash
|
|
|
|
# Retrieve arguments
|
|
domain=$1
|
|
path=$2
|
|
admin_ampache=$3
|
|
|
|
debianversionname=$(lsb_release -a | grep Codename | awk -F' ' '{print $2}')
|
|
|
|
# Check domain/path availability
|
|
sudo yunohost app checkurl $domain$path -a ampache
|
|
if [[ ! $? -eq 0 ]]; then
|
|
exit 1
|
|
fi
|
|
|
|
# Check if admin exists
|
|
sudo yunohost user list --json | grep -qi "\"username\": \"$admin_ampache\""
|
|
if [[ ! $? -eq 0 ]]; then
|
|
echo "Wrong admin"
|
|
exit 1
|
|
fi
|
|
|
|
sudo yunohost app setting ampache admin -v $admin_ampache
|
|
|
|
# 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 'ampache' as database name and user
|
|
db_user=ampache
|
|
|
|
# Initialize database and store mysql password for upgrade
|
|
sudo yunohost app initdb $db_user -p $db_pwd -s $(readlink -e ../sources/sql/ampache.sql)
|
|
sudo yunohost app setting ampache mysqlpwd -v $db_pwd
|
|
|
|
# Copy files to the right place
|
|
final_path=/var/www/ampache
|
|
sudo mkdir -p $final_path/log
|
|
sudo cp -a ../sources/* $final_path
|
|
sudo cp ../conf/ampache.cfg.php $final_path/config/ampache.cfg.php
|
|
sudo cp ../conf/admin.sql /tmp/
|
|
|
|
# Change variables in Ampache configuration
|
|
sudo sed -i "s/yunouser/$db_user/g" $final_path/config/ampache.cfg.php
|
|
sudo sed -i "s/yunopass/$db_pwd/g" $final_path/config/ampache.cfg.php
|
|
sudo sed -i "s/yunobase/$db_user/g" $final_path/config/ampache.cfg.php
|
|
sudo sed -i "s/yunoadmin/$admin_ampache/g" /tmp/admin.sql
|
|
sudo sed -i "s@PATHTOCHANGE@${path%/}@g" $final_path/config/ampache.cfg.php
|
|
sudo sed -i "s@DOMAINTOCHANGE@$domain@g" $final_path/config/ampache.cfg.php
|
|
random_key=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')
|
|
sudo sed -i "s@RANDOMKEYTOCHANGE@$random_key@g" $final_path/config/ampache.cfg.php
|
|
|
|
# Set permissions to ampache directory
|
|
sudo chown -R www-data: $final_path
|
|
|
|
# Modify Nginx configuration file and copy it to Nginx conf directory
|
|
sed -i "s@PATHTOCHANGE@$path@g" ../conf/nginx.conf*
|
|
sed -i "s@ALIASTOCHANGE@$final_path/@g" ../conf/nginx.conf*
|
|
sudo cp ../conf/nginx.conf /etc/nginx/conf.d/$domain.d/ampache.conf
|
|
|
|
|
|
# Reload Nginx and regenerate SSOwat conf
|
|
sudo service nginx reload
|
|
sudo yunohost app setting ampache skipped_uris -v "/"
|
|
sudo yunohost app ssowatconf
|
|
|
|
# Install dependency
|
|
sudo apt-get install ffmpeg -y
|
|
|
|
# Ampache installation
|
|
echo "127.0.0.1 $domain #yunoampache" | sudo tee -a /etc/hosts
|
|
sleep 1
|
|
curl -kL -X POST http://$domain${path%/}/update.php?action=update > /dev/null 2>&1
|
|
sleep 5
|
|
[ "$debianversionname" == "wheezy" ] && \
|
|
sudo sed -i 's/;transcode_cmd = "ffmpeg"/transcode_cmd = "ffmpeg"/g' /var/www/ampache/config/ampache.cfg.php && \
|
|
sudo sed -i 's/^transcode_cmd = "avconv"/;transcode_cmd = "avconv"/g' /var/www/ampache/config/ampache.cfg.php
|
|
sudo yunohost app setting ampache skipped_uris -d
|
|
sudo yunohost app setting ampache skipped_uris -v "/rest"
|
|
sudo yunohost app ssowatconf
|
|
sudo sed '/yunoampache/d' /etc/hosts > /tmp/hosts.tmp
|
|
sudo cp /tmp/hosts.tmp /etc/hosts ; sudo rm -f /tmp/hosts.tmp
|
|
mysql -u $db_user -p$db_pwd $db_user < /tmp/admin.sql
|
|
sudo rm /tmp/admin.sql
|