1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/freshrss_ynh.git synced 2024-09-03 18:36:33 +02:00
freshrss_ynh/hooks/post_app_addaccess

54 lines
2 KiB
Text
Raw Normal View History

#!/bin/bash
app=$1
new_users=$2
2014-09-20 10:56:59 +02:00
app_path=/var/www/freshrss
if [[ "freshrss" = "$app" ]];
then
2016-09-04 15:19:28 +02:00
db_user=freshrss
db_name=freshrss
db_pwd=$(sudo yunohost app setting freshrss mysqlpwd)
2016-09-04 15:19:28 +02:00
#check wallabag
if [[ $(sudo yunohost app list --installed -f wallabag2) -eq 0 ]]; then
echo "Detected wallabag V2"
wallabagPath=$(sudo yunohost app setting wallabag2 path)
wallabagUrl=$domain$wallabagPath
sharingWallabag="'sharing' => \n\tarray( \n\t\t0 => \n\t\tarray(\n\t\t\t'type' => 'wallabag',\n\t\t\t'name' => 'Wallabag',\n\t\t\t'url' => 'https://$wallabagUrl',\n\t\t),"
sharingEnable=1
elif [[ $(sudo yunohost app list --installed -f wallabag) -eq 0 ]]; then
echo "Detected wallabag"
wallabagPath=$(sudo yunohost app setting wallabag path)
wallabagUrl=$domain$wallabagPath
sharingWallabag="'sharing' => \n\tarray( \n\t\t0 => \n\t\tarray(\n\t\t\t'type' => 'wallabag',\n\t\t\t'name' => 'Wallabag',\n\t\t\t'url' => 'https://$wallabagUrl',\n\t\t),"
sharingEnable=1
fi
for myuser in $(echo "$new_users" | sed "s/,/ /g")
do
#copy sql
2017-01-22 12:24:39 +01:00
sudo cp $app_path/app/SQL/install_ynh.sql /tmp/$myuser-install.sql
# $app_path/cli/create-user.php --user --email
2017-01-22 12:13:06 +01:00
2016-09-04 15:19:28 +02:00
#change username in sql
sudo sed -i "s/YnoUser/$myuser/g" /tmp/$myuser-install.sql
#create tables
ynh_mysql_connect_as "$db_user" "$db_pwd" "$db_name" \
< "/tmp/$myuser-install.sql"
#remove temp sql
sudo rm /tmp/$myuser-install.sql
#copy default conf
sudo cp -r $app_path/data/users/_ $app_path/data/users/$myuser/
sudo mv $app_path/data/users/$myuser/config.default.php $app_path/data/users/$myuser/config.php
#add wallabag sharing
if [[ $sharingEnable -eq 1 ]]; then
sudo sed -i "s@'sharing'\ =>\ array\ (@$sharingWallabag@g" $app_path/data/users/$myuser/config.php
fi
sudo chown -R www-data: $app_path/data/users/$myuser/
done
fi