v2024.11.08

This commit is contained in:
kittykat 2024-11-08 10:07:54 +00:00
parent 808d64768b
commit d97ea22fc1
2 changed files with 7 additions and 4 deletions

7
hosts/up2share.sh Executable file → Normal file
View file

@ -1,6 +1,6 @@
#! Name: up2share.sh
#! Author: kittykat
#! Version: 2024.09.13
#! Version: 2024.11.08
#! Desc: Add support for downloading and processing of urls for a new host
#! Usage: Copy this file into the ./${ScriptDir}/hosts/ folder
#!
@ -170,7 +170,7 @@ up2share_FetchFileInfo() {
return 1
fi
if grep -Eqi 'start automatically, <a href=' <<< "$response" ; then
download_url="http://up2sha.re"$(grep -oPi '(?<=start automatically, <a href=").*?(?=">click here</a>)' <<< "$response")
download_url="https://up2sha.re"$(grep -oPi '(?<=start automatically, <a href=").*?(?=">click here</a>)' <<< "$response")
printf "\\n"
break
else
@ -244,7 +244,8 @@ up2share_FetchFileInfo() {
fi
fi
fi
file_size_bytes=$(grep -oPi '(?<=content-length: ).*' <<< "$file_header")
subSearch=$(awk '/content-type: application\/octet-stream/,/content-transfer-encoding: binary/' <<< "$file_header")
file_size_bytes=$(grep -oPi '(?<=content-length: ).*?(?=$)' <<< "$subSearch")
file_size_bytes=${file_size_bytes//[$'\t\r\n']}
if [[ -z "$file_size_bytes" ]]; then
if [ $j == $maxfetchretries ] ; then