mirror of
https://github.com/YunoHost-Apps/lstu_ynh.git
synced 2024-09-03 19:36:12 +02:00
add change theme
This commit is contained in:
parent
910740418c
commit
3c8a1640ba
4 changed files with 22 additions and 1 deletions
|
@ -33,7 +33,7 @@
|
||||||
|
|
||||||
# choose a theme. See the available themes in `themes` directory
|
# choose a theme. See the available themes in `themes` directory
|
||||||
# optional, default is 'default'
|
# optional, default is 'default'
|
||||||
theme => 'default',
|
theme => '__SELECTED_THEME__', # default or milligram
|
||||||
|
|
||||||
# number of URLs to be displayed per page in /stats
|
# number of URLs to be displayed per page in /stats
|
||||||
# optional, default is 10
|
# optional, default is 10
|
||||||
|
|
|
@ -49,6 +49,16 @@
|
||||||
"fr": "Est-ce une application publique ?"
|
"fr": "Est-ce une application publique ?"
|
||||||
},
|
},
|
||||||
"default": false
|
"default": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "theme",
|
||||||
|
"type": "string",
|
||||||
|
"ask": {
|
||||||
|
"en": "Choose a theme",
|
||||||
|
"fr": "Choisissez un theme"
|
||||||
|
},
|
||||||
|
"choices": ["default","milligram"],
|
||||||
|
"default": "milligram"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
|
@ -27,6 +27,7 @@ ynh_abort_if_errors
|
||||||
domain=$YNH_APP_ARG_DOMAIN
|
domain=$YNH_APP_ARG_DOMAIN
|
||||||
path_url=$YNH_APP_ARG_PATH
|
path_url=$YNH_APP_ARG_PATH
|
||||||
is_public=$YNH_APP_ARG_IS_PUBLIC
|
is_public=$YNH_APP_ARG_IS_PUBLIC
|
||||||
|
theme=$YNH_APP_ARG_THEME
|
||||||
|
|
||||||
app=$YNH_APP_INSTANCE_NAME
|
app=$YNH_APP_INSTANCE_NAME
|
||||||
|
|
||||||
|
@ -67,6 +68,7 @@ ynh_app_setting_set $app domain $domain
|
||||||
ynh_app_setting_set $app is_public $is_public
|
ynh_app_setting_set $app is_public $is_public
|
||||||
ynh_app_setting_set $app port $port
|
ynh_app_setting_set $app port $port
|
||||||
ynh_app_setting_set $app path $path_url
|
ynh_app_setting_set $app path $path_url
|
||||||
|
ynh_app_setting_set $app theme $theme
|
||||||
|
|
||||||
#=================================================
|
#=================================================
|
||||||
# INSTALL DEPENDENCIES
|
# INSTALL DEPENDENCIES
|
||||||
|
@ -122,6 +124,7 @@ ynh_replace_string "__PORT__" "$port" "${final_path}/lstu.conf"
|
||||||
ynh_replace_string "__DB_NAME__" "$db_name" "${final_path}/lstu.conf"
|
ynh_replace_string "__DB_NAME__" "$db_name" "${final_path}/lstu.conf"
|
||||||
ynh_replace_string "__DB_USER__" "$db_user" "${final_path}/lstu.conf"
|
ynh_replace_string "__DB_USER__" "$db_user" "${final_path}/lstu.conf"
|
||||||
ynh_replace_string "__DB_PWD__" "$db_pwd" "${final_path}/lstu.conf"
|
ynh_replace_string "__DB_PWD__" "$db_pwd" "${final_path}/lstu.conf"
|
||||||
|
ynh_replace_string "__SELECTED_THEME__" "$theme" "${final_path}/lstu.conf"
|
||||||
|
|
||||||
secret=$(ynh_string_random 24)
|
secret=$(ynh_string_random 24)
|
||||||
ynh_app_setting_set $app secret $secret
|
ynh_app_setting_set $app secret $secret
|
||||||
|
|
|
@ -35,6 +35,7 @@ secret=$(ynh_app_setting_get $app secret)
|
||||||
db_name=$(ynh_app_setting_get $app db_name)
|
db_name=$(ynh_app_setting_get $app db_name)
|
||||||
db_user=$db_name
|
db_user=$db_name
|
||||||
db_pwd=$(ynh_app_setting_get $app psqlpwd)
|
db_pwd=$(ynh_app_setting_get $app psqlpwd)
|
||||||
|
theme=$(ynh_app_setting_get $app theme)
|
||||||
|
|
||||||
#=================================================
|
#=================================================
|
||||||
# FIX OLD THINGS
|
# FIX OLD THINGS
|
||||||
|
@ -68,6 +69,12 @@ if [ -z "$db_pwd" ]; then
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
if [ -z "$theme" ]; then
|
||||||
|
theme="milligram"
|
||||||
|
ynh_app_setting_set $app theme $theme
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
#=================================================
|
#=================================================
|
||||||
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
||||||
#=================================================
|
#=================================================
|
||||||
|
@ -97,6 +104,7 @@ ynh_replace_string "__PORT__" "$port" "${final_path}/lstu.conf"
|
||||||
ynh_replace_string "__DB_NAME__" "$db_name" "${final_path}/lstu.conf"
|
ynh_replace_string "__DB_NAME__" "$db_name" "${final_path}/lstu.conf"
|
||||||
ynh_replace_string "__DB_USER__" "$db_user" "${final_path}/lstu.conf"
|
ynh_replace_string "__DB_USER__" "$db_user" "${final_path}/lstu.conf"
|
||||||
ynh_replace_string "__DB_PWD__" "$db_pwd" "${final_path}/lstu.conf"
|
ynh_replace_string "__DB_PWD__" "$db_pwd" "${final_path}/lstu.conf"
|
||||||
|
ynh_replace_string "__SELECTED_THEME__" "$theme" "${final_path}/lstu.conf"
|
||||||
|
|
||||||
ynh_replace_string "__SECRET__" "$secret" "${final_path}/lstu.conf"
|
ynh_replace_string "__SECRET__" "$secret" "${final_path}/lstu.conf"
|
||||||
ynh_store_file_checksum "${final_path}/lstu.conf"
|
ynh_store_file_checksum "${final_path}/lstu.conf"
|
||||||
|
|
Loading…
Reference in a new issue