From: flsabourin Date: Thu, 9 Apr 2020 23:00:20 +0000 (+0200) Subject: Add Upload password capabilities X-Git-Tag: 4.2.0~59 X-Git-Url: https://git.p6c8.net/jirafeau_project.git/commitdiff_plain/7991901d3f74146678b9f9c64b66aca2b3fae2e4 Add Upload password capabilities --- diff --git a/script.php b/script.php index 105023f..695f6db 100644 --- a/script.php +++ b/script.php @@ -229,6 +229,7 @@ url='' # Or set JIRAFEAU_URL. time='' # Or set JIRAFEAU_TIME. one_time='' # Or set JIRAFEAU_ONE_TIME. curl='' # Or set JIRAFEAU_CURL_PATH. +upload_password='' # Or set JIRAFEAU_UPLOAD_PASSWD # Config end if [ -n "$JIRAFEAU_PROXY" ]; then @@ -251,6 +252,10 @@ if [ -n "$JIRAFEAU_ONE_TIME" ]; then one_time='1' fi +if [ -n "$UPLOAD_PASSWD" ]; then + upload_password="$JIRAFEAU_UPLOAD_PASSWORD" +fi + if [ -z "$curl" ]; then curl="$JIRAFEAU_CURL_PATH" fi @@ -285,6 +290,7 @@ if [ -z "$2" ]; then echo " JIRAFEAU_TIME : expiration time, eg. »minute«, »hour«, »day«, »week«, »month«, »quarter«, »year« or »none«" echo " JIRAFEAU_ONE_TIME : self-destroy after first download, eg. »1« to enable or »« (empty) to disable" echo " JIRAFEAU_CURL : alternative path to curl binary" + echo " JIRAFEAU_UPLOAD_PASSWD : upload password" exit 0 fi @@ -298,6 +304,10 @@ if [ -n "$one_time" ]; then options="$options -F one_time_download=1" fi +f [ -n "$upload_password" ]; then + options="$options -F upload_password=$upload_password" +fi + password='' if [ -n "$3" ]; then password="$3"