Browse Source

New fetching system

pull/820/merge
UltimateByte 9 years ago
parent
commit
8254dca8be
  1. 73
      PiratesVikingandKnightsII/pvkiiserver

73
PiratesVikingandKnightsII/pvkiiserver

@ -9,7 +9,7 @@ if [ -f ".dev-debug" ]; then
set -x set -x
fi fi
version="271215" version="150316"
#### Variables #### #### Variables ####
@ -83,55 +83,62 @@ consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%d-%m-%Y-%H-%M-
##### Script ##### ##### Script #####
# Do not edit # Do not edit
fn_getgithubfile(){ # Fetches core_dl for file downloads
filename=$1 fn_fetch_core_dl(){
exec=$2 github_file_url_dir="lgsm/functions"
fileurl=${3:-$filename} github_file_url_name="${functionfile}"
filepath="${rootdir}/${filename}" filedir="${functionsdir}"
filedir=$(dirname "${filepath}") filename="${github_file_url_name}"
# If the function file is missing, then download githuburl="https://raw.githubusercontent.com/${githubuser}/${githubrepo}/${githubbranch}/${github_file_url_dir}/${github_file_url_name}"
if [ ! -f "${filepath}" ]; then # If the file is missing, then download
if [ ! -f "${filedir}/${filename}" ]; then
if [ ! -d "${filedir}" ]; then if [ ! -d "${filedir}" ]; then
mkdir "${filedir}" mkdir -p "${filedir}"
fi fi
githuburl="https://raw.githubusercontent.com/${githubuser}/${githubrepo}/${githubbranch}/${fileurl}"
echo -e " fetching ${filename}...\c" echo -e " fetching ${filename}...\c"
if [ "$(command -v curl)" ]||[ "$(which curl >/dev/null 2>&1)" ]||[ -f "/usr/bin/curl" ]||[ -f "/bin/curl" ]; then # Check curl exists and use available path
: curlpaths="$(command -v curl 2>/dev/null) $(which curl >/dev/null 2>&1) /usr/bin/curl /bin/curl /usr/sbin/curl /sbin/curl)"
else for curlcmd in ${curlpaths}
do
if [ -x "${curlcmd}" ]; then
break
fi
done
# If curl exists download file
if [ "$(basename ${curlcmd})" == "curl" ]; then
curlfetch=$(${curlcmd} -s --fail -o "${filedir}/${filename}" "${githuburl}" 2>&1)
if [ $? -ne 0 ]; then
echo -e "\e[0;31mFAIL\e[0m\n"
echo "${curlfetch}"
echo -e "${githuburl}\n"
exit 1
else
echo -e "\e[0;32mOK\e[0m"
fi
else
echo -e "\e[0;31mFAIL\e[0m\n" echo -e "\e[0;31mFAIL\e[0m\n"
echo "Curl is not installed!" echo "Curl is not installed!"
echo -e "" echo -e ""
exit exit 1
fi
curl=$(curl --fail -o "${filepath}" "${githuburl}" 2>&1)
if [ $? -ne 0 ]; then
echo -e "\e[0;31mFAIL\e[0m\n"
echo "${curl}"
echo -e "${githuburl}\n"
exit
else
echo -e "\e[0;32mOK\e[0m"
fi
if [ "${exec}" ]; then
chmod +x "${filepath}"
fi fi
chmod +x "${filedir}/${filename}"
fi fi
if [ "${exec}" ]; then source "${filedir}/${filename}"
source "${filepath}"
fi
} }
fn_runfunction(){ core_dl.sh(){
fn_getgithubfile "functions/${functionfile}" 1 # Functions are defined in core_functions.sh.
functionfile="${FUNCNAME}"
fn_fetch_core_dl
} }
core_functions.sh(){ core_functions.sh(){
# Functions are defined in core_functions.sh. # Functions are defined in core_functions.sh.
functionfile="${FUNCNAME}" functionfile="${FUNCNAME}"
fn_runfunction fn_fetch_core_dl
} }
core_dl.sh
core_functions.sh core_functions.sh
getopt=$1 getopt=$1

Loading…
Cancel
Save