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

42 lines
1.1 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
#=================================================
# PERSONAL HELPERS
#=================================================
2022-07-28 03:39:57 +02:00
2017-09-22 19:33:28 +02:00
# Clean & copy files needed to final folder
myynh_clean_source () {
2023-10-03 23:43:58 +02:00
find "$install_dir" -type f -name ".htaccess" -delete
if [ -e "$install_dir/.gitignore" ]; then
ynh_secure_remove "$install_dir/.gitignore"
fi
2017-10-11 21:21:48 +02:00
}
2019-11-18 10:23:03 +01:00
2023-10-03 23:43:58 +02:00
# Convert --data to --data-urlencode before ynh_local_curl
2020-01-05 19:49:24 +01:00
myynh_urlencode() {
2023-10-03 23:43:58 +02: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
#=================================================