1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/bozon_ynh.git synced 2024-09-03 18:16:09 +02:00
bozon_ynh/scripts/_common.sh

65 lines
2 KiB
Bash
Raw Normal View History

2020-01-05 19:49:24 +01:00
#!/bin/bash
2020-01-05 19:49:24 +01:00
#=================================================
# COMMON VARIABLES
#=================================================
2020-01-05 19:49:24 +01:00
# dependencies used by the app
pkg_dependencies="php-zip php-curl php-gd"
#=================================================
# PERSONAL HELPERS
#=================================================
# Check if directory/file already exists (path in argument)
myynh_check_path () {
2020-01-05 19:49:24 +01:00
[ -z "$1" ] && ynh_die --message="No argument supplied"
[ ! -e "$1" ] || ynh_die --message="$1 already exists"
}
# Create directory only if not already exists (path in argument)
myynh_create_dir () {
2020-01-05 19:49:24 +01:00
[ -z "$1" ] && ynh_die --message="No argument supplied"
2017-10-11 21:21:48 +02:00
[ -d "$1" ] || mkdir -p "$1"
}
2017-09-22 19:33:28 +02:00
# Clean & copy files needed to final folder
myynh_clean_source () {
2020-01-05 19:49:24 +01:00
find "$tmpdir" -type f -name ".htaccess" | xargs rm
2020-11-27 07:20:16 +01:00
[ -e "$tmpdir/.gitignore" ] && ynh_secure_remove "$tmpdir/.gitignore"
2017-09-22 19:33:28 +02:00
}
2017-07-07 17:03:57 +02:00
myynh_set_permissions () {
2017-10-11 21:21:48 +02:00
[ $(find "$final_path" -type f | wc -l) -gt 0 ] && find "$final_path" -type f | xargs chmod 0644
[ $(find "$final_path" -type d | wc -l) -gt 0 ] && find "$final_path" -type d | xargs chmod 0755
[ $(find "$data_path" -type f | wc -l) -gt 0 ] && find "$data_path" -type f | xargs chmod 0644
[ $(find "$data_path" -type d | wc -l) -gt 0 ] && find "$data_path" -type d | xargs chmod 0755
chown -R root:"$app" "$final_path"
chown -R "$app": "$final_path/private"
chown -R "$app": "$data_path"
chown root: "$data_path"
}
2019-11-18 10:23:03 +01:00
2019-11-18 16:26:21 +01:00
#Convert --data to --data-urlencode before ynh_local_curl
2020-01-05 19:49:24 +01:00
myynh_urlencode() {
2019-11-18 16:26:21 +01:00
local data
if [[ $# != 1 ]]; then
echo "Usage: $0 string-to-urlencode"
return 1
fi
data="$(curl -s -o /dev/null -w %{url_effective} --get --data-urlencode "$1" "")"
if [[ $? != 3 ]]; then
echo "Unexpected error" 1>&2
return 2
fi
echo "${data##/?}"
return 0
2019-11-18 10:23:03 +01:00
}
2020-01-05 19:49:24 +01:00
#=================================================
# EXPERIMENTAL HELPERS
#=================================================
#=================================================
# FUTURE OFFICIAL HELPERS
#=================================================