From 7991901d3f74146678b9f9c64b66aca2b3fae2e4 Mon Sep 17 00:00:00 2001 From: flsabourin Date: Fri, 10 Apr 2020 01:00:20 +0200 Subject: [PATCH 1/1] Add Upload password capabilities --- script.php | 10 ++++++++++ 1 file changed, 10 insertions(+) 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" -- 2.34.1