@ -112,54 +112,99 @@ fn_fetch_trap(){
fn_fetch_file( ) {
fn_fetch_file( ) {
remote_fileurl = " ${ 1 } "
remote_fileurl = " ${ 1 } "
local_filedir = " ${ 2 } "
remote_fileurl_backup = " ${ 2 } "
local_filename = " ${ 3 } "
remote_fileurl_name = " ${ 3 } "
chmodx = " ${ 4 :- 0 } "
remote_fileurl_backup_name = " ${ 4 } "
run = " ${ 5 :- 0 } "
local_filedir = " ${ 5 } "
forcedl = " ${ 6 :- 0 } "
local_filename = " ${ 6 } "
md5 = " ${ 7 :- 0 } "
chmodx = " ${ 7 :- 0 } "
run = " ${ 8 :- 0 } "
forcedl = " ${ 9 :- 0 } "
md5 = " ${ 10 :- 0 } "
# Download file if missing or download forced.
# Download file if missing or download forced.
if [ ! -f " ${ local_filedir } / ${ local_filename } " ] || [ " ${ forcedl } " = = "forcedl" ] ; then
if [ ! -f " ${ local_filedir } / ${ local_filename } " ] || [ " ${ forcedl } " = = "forcedl" ] ; then
if [ ! -d " ${ local_filedir } " ] ; then
# If backup fileurl exists include it.
mkdir -p " ${ local_filedir } "
if [ -n " ${ remote_fileurl_backup } " ] ; then
fi
# counter set to 0 to allow second try
# Trap will remove part downloaded files if canceled.
counter = 0
trap fn_fetch_trap INT
remote_fileurls_array = ( remote_fileurl remote_fileurl_backup )
# Larger files show a progress bar.
if [ " ${ local_filename ##*. } " = = "bz2" ] || [ " ${ local_filename ##*. } " = = "gz" ] || [ " ${ local_filename ##*. } " = = "zip" ] || [ " ${ local_filename ##*. } " = = "jar" ] || [ " ${ local_filename ##*. } " = = "xz" ] ; then
echo -en " downloading ${ local_filename } ... "
fn_sleep_time
echo -en "\033[1K"
curlcmd = $( curl --progress-bar --fail -L -o " ${ local_filedir } / ${ local_filename } " " ${ remote_fileurl } " )
echo -en " downloading ${ local_filename } ... "
else
else
echo -en " fetching ${ local_filename } ...\c "
# counter set to 1 to not allow second try
curlcmd = $( curl -s --fail -L -o " ${ local_filedir } / ${ local_filename } " " ${ remote_fileurl } " 2>& 1)
counter = 1
remote_fileurls_array = ( remote_fileurl )
fi
fi
local exitcode = $?
for remote_fileurl_array in " ${ remote_fileurls_array [@] } "
if [ ${ exitcode } -ne 0 ] ; then
do
fn_print_fail_eol_nl
if [ " ${ remote_fileurl_array } " = = "remote_fileurl" ] ; then
if [ -f " ${ lgsmlog } " ] ; then
fileurl = " ${ remote_fileurl } "
fn_script_log_fatal " Downloading ${ local_filename } "
fileurl_name = " ${ remote_fileurl_name } "
echo -e " ${ remote_fileurl } " >> " ${ lgsmlog } "
elif [ " ${ remote_fileurl_array } " = = "remote_fileurl_backup" ] ; then
echo -e " ${ curlcmd } " >> " ${ lgsmlog } "
fileurl = " ${ remote_fileurl_backup } "
fileurl_name = " ${ remote_fileurl_backup_name } "
fi
fi
echo -e " ${ remote_fileurl } "
counter = $(( counter+1))
echo -e " ${ curlcmd } "
if [ ! -d " ${ local_filedir } " ] ; then
core_exit.sh
mkdir -p " ${ local_filedir } "
else
fn_print_ok_eol_nl
if [ -f " ${ lgsmlog } " ] ; then
fn_script_log_pass " Downloading ${ local_filename } "
fi
fi
fi
# Trap will remove part downloaded files if canceled.
# Remove trap.
trap fn_fetch_trap INT
trap - INT
# Larger files show a progress bar.
# Make file executable if chmodx is set.
if [ " ${ local_filename ##*. } " = = "bz2" ] || [ " ${ local_filename ##*. } " = = "gz" ] || [ " ${ local_filename ##*. } " = = "zip" ] || [ " ${ local_filename ##*. } " = = "jar" ] || [ " ${ local_filename ##*. } " = = "xz" ] ; then
if [ " ${ chmodx } " = = "chmodx" ] ; then
echo -en " downloading ${ local_filename } ... "
chmod +x " ${ local_filedir } / ${ local_filename } "
fn_sleep_time
fi
echo -en "\033[1K"
curlcmd = $( curl --progress-bar --fail -L -o " ${ local_filedir } / ${ local_filename } " " ${ fileurl } " )
echo -en " downloading ${ local_filename } ... "
else
echo -en " fetching ${ fileurl_name } ${ local_filename } ...\c "
curlcmd = $( curl -s --fail -L -o " ${ local_filedir } / ${ local_filename } " " ${ fileurl } " 2>& 1)
fi
local exitcode = $?
# Download will fail if downloads a html file.
if [ -f " ${ local_filedir } / ${ local_filename } " ] ; then
if [ -n " $( head " ${ local_filedir } / ${ local_filename } " | grep "DOCTYPE" ) " ] ; then
rm " ${ local_filedir : ? } / ${ local_filename : ? } "
local exitcode = 2
fi
fi
# On first try will error. On second try will fail.
if [ ${ exitcode } -ne 0 ] ; then
if [ ${ counter } -ge 2 ] ; then
fn_print_fail_eol_nl
if [ -f " ${ lgsmlog } " ] ; then
fn_script_log_fatal " Downloading ${ local_filename } "
fn_script_log_fatal " ${ fileurl } "
fi
core_exit.sh
else
fn_print_error_eol_nl
if [ -f " ${ lgsmlog } " ] ; then
fn_script_log_error " Downloading ${ local_filename } "
fn_script_log_error " ${ fileurl } "
fi
fi
else
fn_print_ok_eol
sleep 0.3
echo -en "\033[2K\\r"
if [ -f " ${ lgsmlog } " ] ; then
fn_script_log_pass " Downloading ${ local_filename } "
fi
# Make file executable if chmodx is set.
if [ " ${ chmodx } " = = "chmodx" ] ; then
chmod +x " ${ local_filedir } / ${ local_filename } "
fi
# Remove trap.
trap - INT
break
fi
done
fi
fi
if [ -f " ${ local_filedir } / ${ local_filename } " ] ; then
if [ -f " ${ local_filedir } / ${ local_filename } " ] ; then
@ -187,13 +232,19 @@ fn_fetch_file(){
# forcedl: Optional, force re-download of file even if exists
# forcedl: Optional, force re-download of file even if exists
# md5: Optional, set an md5 sum and will compare it against the file.
# md5: Optional, set an md5 sum and will compare it against the file.
# Fetches any files from the GitHub repo.
# Fetches files from the Git repo.
fn_fetch_file_github( ) {
fn_fetch_file_github( ) {
github_file_url_dir = " ${ 1 } "
github_file_url_dir = " ${ 1 } "
github_file_url_name = " ${ 2 } "
github_file_url_name = " ${ 2 } "
githuburl = " https://raw.githubusercontent.com/ ${ githubuser } / ${ githubrepo } / ${ githubbranch } / ${ github_file_url_dir } / ${ github_file_url_name } "
if [ " ${ githubbranch } " = = "master" ] && [ " ${ commandname } " != "UPDATE-LGSM" ] ; then
remote_fileurl = " https://raw.githubusercontent.com/ ${ githubuser } / ${ githubrepo } / ${ version } / ${ github_file_url_dir } / ${ github_file_url_name } "
remote_fileurl = " ${ githuburl } "
remote_fileurl_backup = " https://bitbucket.org/ ${ githubuser } / ${ githubrepo } /raw/ ${ version } / ${ github_file_url_dir } / ${ github_file_url_name } "
else
remote_fileurl = " https://raw.githubusercontent.com/ ${ githubuser } / ${ githubrepo } / ${ githubbranch } / ${ github_file_url_dir } / ${ github_file_url_name } "
remote_fileurl_backup = " https://bitbucket.org/ ${ githubuser } / ${ githubrepo } /raw/ ${ githubbranch } / ${ github_file_url_dir } / ${ github_file_url_name } "
fi
remote_fileurl_name = "GitHub"
remote_fileurl_backup_name = "Bitbucket"
local_filedir = " ${ 3 } "
local_filedir = " ${ 3 } "
local_filename = " ${ github_file_url_name } "
local_filename = " ${ github_file_url_name } "
chmodx = " ${ 4 :- 0 } "
chmodx = " ${ 4 :- 0 } "
@ -201,15 +252,22 @@ fn_fetch_file_github(){
forcedl = " ${ 6 :- 0 } "
forcedl = " ${ 6 :- 0 } "
md5 = " ${ 7 :- 0 } "
md5 = " ${ 7 :- 0 } "
# Passes vars to the file download function.
# Passes vars to the file download function.
fn_fetch_file " ${ remote_fileurl } " " ${ local_filedir } " " ${ local_filename } " " ${ chmodx } " " ${ run } " " ${ forcedl } " " ${ md5 } "
fn_fetch_file " ${ remote_fileurl } " " ${ remote_fileurl_backup } " " ${ remote_fileurl_name } " " ${ remote_fileurl_backup_name } " " ${ local_filedir } " " ${ local_filename } " " ${ chmodx } " " ${ run } " " ${ forcedl } " " ${ md5 } "
}
}
# Fetches config files from the Git repo.
fn_fetch_config( ) {
fn_fetch_config( ) {
github_file_url_dir = " ${ 1 } "
github_file_url_dir = " ${ 1 } "
github_file_url_name = " ${ 2 } "
github_file_url_name = " ${ 2 } "
githuburl = " https://raw.githubusercontent.com/ ${ githubuser } / ${ githubrepo } / ${ githubbranch } / ${ github_file_url_dir } / ${ github_file_url_name } "
if [ " ${ githubbranch } " = = "master" ] && [ " ${ commandname } " != "UPDATE-LGSM" ] ; then
remote_fileurl = " https://raw.githubusercontent.com/ ${ githubuser } / ${ githubrepo } / ${ version } / ${ github_file_url_dir } / ${ github_file_url_name } "
remote_fileurl = " ${ githuburl } "
remote_fileurl_backup = " https://bitbucket.org/ ${ githubuser } / ${ githubrepo } /raw/ ${ version } / ${ github_file_url_dir } / ${ github_file_url_name } "
else
remote_fileurl = " https://raw.githubusercontent.com/ ${ githubuser } / ${ githubrepo } / ${ githubbranch } / ${ github_file_url_dir } / ${ github_file_url_name } "
remote_fileurl_backup = " https://bitbucket.org/ ${ githubuser } / ${ githubrepo } /raw/ ${ githubbranch } / ${ github_file_url_dir } / ${ github_file_url_name } "
fi
remote_fileurl_name = "GitHub"
remote_fileurl_backup_name = "Bitbucket"
local_filedir = " ${ 3 } "
local_filedir = " ${ 3 } "
local_filename = " ${ 4 } "
local_filename = " ${ 4 } "
chmodx = "nochmodx"
chmodx = "nochmodx"
@ -217,16 +275,22 @@ fn_fetch_config(){
forcedl = "noforce"
forcedl = "noforce"
md5 = "nomd5"
md5 = "nomd5"
# Passes vars to the file download function.
# Passes vars to the file download function.
fn_fetch_file " ${ remote_fileurl } " " ${ local_filedir } " " ${ local_filename } " " ${ chmodx } " " ${ run } " " ${ forcedl } " " ${ md5 } "
fn_fetch_file " ${ remote_fileurl } " " ${ remote_fileurl_backup } " " ${ remote_fileurl_name } " " ${ remote_fileurl_backup_name } " " ${ local_filedir } " " ${ local_filename } " " ${ chmodx } " " ${ run } " " ${ forcedl } " " ${ md5 } "
}
}
# Fetches functions .
# Fetches modules from the Git repo during first download .
fn_fetch_function( ) {
fn_fetch_function( ) {
github_file_url_dir = "lgsm/functions"
github_file_url_dir = "lgsm/functions"
github_file_url_name = " ${ functionfile } "
github_file_url_name = " ${ functionfile } "
githuburl = " https://raw.githubusercontent.com/ ${ githubuser } / ${ githubrepo } / ${ githubbranch } / ${ github_file_url_dir } / ${ github_file_url_name } "
if [ " ${ githubbranch } " = = "master" ] && [ " ${ commandname } " != "UPDATE-LGSM" ] ; then
remote_fileurl = " https://raw.githubusercontent.com/ ${ githubuser } / ${ githubrepo } / ${ version } / ${ github_file_url_dir } / ${ github_file_url_name } "
remote_fileurl = " ${ githuburl } "
remote_fileurl_backup = " https://bitbucket.org/ ${ githubuser } / ${ githubrepo } /raw/ ${ version } / ${ github_file_url_dir } / ${ github_file_url_name } "
else
remote_fileurl = " https://raw.githubusercontent.com/ ${ githubuser } / ${ githubrepo } / ${ githubbranch } / ${ github_file_url_dir } / ${ github_file_url_name } "
remote_fileurl_backup = " https://bitbucket.org/ ${ githubuser } / ${ githubrepo } /raw/ ${ githubbranch } / ${ github_file_url_dir } / ${ github_file_url_name } "
fi
remote_fileurl_name = "GitHub"
remote_fileurl_backup_name = "Bitbucket"
local_filedir = " ${ functionsdir } "
local_filedir = " ${ functionsdir } "
local_filename = " ${ github_file_url_name } "
local_filename = " ${ github_file_url_name } "
chmodx = "chmodx"
chmodx = "chmodx"
@ -234,23 +298,31 @@ fn_fetch_function(){
forcedl = "noforce"
forcedl = "noforce"
md5 = "nomd5"
md5 = "nomd5"
# Passes vars to the file download function.
# Passes vars to the file download function.
fn_fetch_file " ${ remote_fileurl } " " ${ local_filedir } " " ${ local_filename } " " ${ chmodx } " " ${ run } " " ${ forcedl } " " ${ md5 } "
fn_fetch_file " ${ remote_fileurl } " " ${ remote_fileurl_backup } " " ${ remote_fileurl_name } " " ${ remote_fileurl_backup_name } " " ${ local_filedir } " " ${ local_filename } " " ${ chmodx } " " ${ run } " " ${ forcedl } " " ${ md5 } "
}
}
# Fetches modules from the Git repo during update-lgsm.
fn_update_function( ) {
fn_update_function( ) {
exitbypass = 1
github_file_url_dir = "lgsm/functions"
github_file_url_dir = "lgsm/functions"
github_file_url_name = " ${ functionfile } "
github_file_url_name = " ${ functionfile } "
githuburl = " https://raw.githubusercontent.com/ ${ githubuser } / ${ githubrepo } / ${ githubbranch } / ${ github_file_url_dir } / ${ github_file_url_name } "
if [ " ${ githubbranch } " = = "master" ] && [ " ${ commandname } " != "UPDATE-LGSM" ] ; then
remote_fileurl = " https://raw.githubusercontent.com/ ${ githubuser } / ${ githubrepo } / ${ version } / ${ github_file_url_dir } / ${ github_file_url_name } "
remote_fileurl = " ${ githuburl } "
remote_fileurl_backup = " https://bitbucket.org/ ${ githubuser } / ${ githubrepo } /raw/ ${ version } / ${ github_file_url_dir } / ${ github_file_url_name } "
else
remote_fileurl = " https://raw.githubusercontent.com/ ${ githubuser } / ${ githubrepo } / ${ githubbranch } / ${ github_file_url_dir } / ${ github_file_url_name } "
remote_fileurl_backup = " https://bitbucket.org/ ${ githubuser } / ${ githubrepo } /raw/ ${ githubbranch } / ${ github_file_url_dir } / ${ github_file_url_name } "
fi
remote_fileurl_name = "GitHub"
remote_fileurl_backup_name = "Bitbucket"
local_filedir = " ${ functionsdir } "
local_filedir = " ${ functionsdir } "
local_filename = " ${ github_file_url_name } "
local_filename = " ${ github_file_url_name } "
chmodx = "chmodx"
chmodx = "chmodx"
run = "norun"
run = "norun"
forcedl = "noforce"
forcedl = "noforce"
md5 = "nomd5"
md5 = "nomd5"
fn_fetch_file " ${ remote_fileurl } " " ${ local_filedir } " " ${ local_filename } " " ${ chmodx } " " ${ run } " " ${ forcedl } " " ${ md5 } "
# Passes vars to the file download function.
fn_fetch_file " ${ remote_fileurl } " " ${ remote_fileurl_backup } " " ${ remote_fileurl_name } " " ${ remote_fileurl_backup_name } " " ${ local_filedir } " " ${ local_filename } " " ${ chmodx } " " ${ run } " " ${ forcedl } " " ${ md5 } "
}
}
# Check that curl is installed
# Check that curl is installed