mirror of
https://github.com/XTLS/Xray-install.git
synced 2024-11-21 14:51:27 +00:00
Support multi-parameter (#8)
This commit is contained in:
parent
288e0ae2c2
commit
4ab608ccba
|
@ -148,49 +148,58 @@ identify_the_operating_system_and_architecture() {
|
||||||
|
|
||||||
## Demo function for processing parameters
|
## Demo function for processing parameters
|
||||||
judgment_parameters() {
|
judgment_parameters() {
|
||||||
|
HELP='0'
|
||||||
|
CHECK='0'
|
||||||
|
REMOVE='0'
|
||||||
|
LOCAL_INSTALL='0'
|
||||||
|
local temp_version='0'
|
||||||
while [[ "$#" -gt '0' ]]; do
|
while [[ "$#" -gt '0' ]]; do
|
||||||
case "$1" in
|
case "$1" in
|
||||||
'--remove')
|
'--remove')
|
||||||
if [[ "$#" -gt '1' ]]; then
|
|
||||||
echo 'error: Please enter the correct parameters.'
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
REMOVE='1'
|
REMOVE='1'
|
||||||
;;
|
;;
|
||||||
'--version')
|
'--version')
|
||||||
VERSION="${2:?error: Please specify the correct version.}"
|
if [[ -z "$2" ]]; then
|
||||||
break
|
echo "error: Please specify the correct version."
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
temp_version='1'
|
||||||
|
VERSION="$2"
|
||||||
|
shift
|
||||||
;;
|
;;
|
||||||
'-c' | '--check')
|
'-c' | '--check')
|
||||||
CHECK='1'
|
CHECK='1'
|
||||||
break
|
|
||||||
;;
|
;;
|
||||||
'-f' | '--force')
|
'-f' | '--force')
|
||||||
FORCE='1'
|
FORCE='1'
|
||||||
break
|
|
||||||
;;
|
;;
|
||||||
'-h' | '--help')
|
'-h' | '--help')
|
||||||
HELP='1'
|
HELP='1'
|
||||||
break
|
|
||||||
;;
|
;;
|
||||||
'-l' | '--local')
|
'-l' | '--local')
|
||||||
LOCAL_INSTALL='1'
|
LOCAL_INSTALL='1'
|
||||||
LOCAL_FILE="${2:?error: Please specify the correct local file.}"
|
if [[ -z "$2" ]]; then
|
||||||
break
|
echo "error: Please specify the correct local file."
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
LOCAL_FILE="$2"
|
||||||
|
shift
|
||||||
;;
|
;;
|
||||||
'-p' | '--proxy')
|
'-p' | '--proxy')
|
||||||
if [[ -z "${2:?error: Please specify the proxy server address.}" ]]; then
|
if [[ -z "$2" ]]; then
|
||||||
|
echo "error: Please specify the proxy server address."
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
PROXY="$2"
|
PROXY="$2"
|
||||||
shift
|
shift
|
||||||
;;
|
;;
|
||||||
'-u' | '--install-user')
|
'-u' | '--install-user')
|
||||||
if [[ -z "${2:?error: Please specify the install user.}" ]]; then
|
if [[ -z "$2" ]]; then
|
||||||
|
echo "error: Please specify the install user.}"
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
INSTALL_USER="$2"
|
INSTALL_USER="$2"
|
||||||
break
|
shift
|
||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
echo "$0: unknown option -- -"
|
echo "$0: unknown option -- -"
|
||||||
|
@ -199,6 +208,18 @@ judgment_parameters() {
|
||||||
esac
|
esac
|
||||||
shift
|
shift
|
||||||
done
|
done
|
||||||
|
if ((HELP+CHECK+REMOVE>1)); then
|
||||||
|
echo "--help, --check and --remove can't be used together."
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
if ((temp_version+LOCAL_INSTALL>1)); then
|
||||||
|
echo "--version and --local can't be used together."
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
if ((temp_version+CHECK>1)); then
|
||||||
|
echo "--version and --check can't be used together."
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
check_install_user() {
|
check_install_user() {
|
||||||
|
@ -232,24 +253,33 @@ install_software() {
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
get_current_version() {
|
||||||
|
if [[ -f '/usr/local/bin/xray' ]]; then
|
||||||
|
CURRENT_VERSION="$(/usr/local/bin/xray -version | awk 'NR==1 {print $2}')"
|
||||||
|
CURRENT_VERSION="v${CURRENT_VERSION#v}"
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
get_version() {
|
get_version() {
|
||||||
# 0: Install or update Xray.
|
# 0: There is a version can be installed (RELEASE_VERSION).
|
||||||
# 1: Installed or no new version of Xray.
|
# 1: The current version is the latest.
|
||||||
# 2: Install the specified version of Xray.
|
# 2: The specified version is same to the current version.
|
||||||
|
# RELEASE_VERSION, RELEASE_LATEST and CURRENT_VERSION will be used in a later process
|
||||||
|
|
||||||
|
# Get the CURRENT_VERSION
|
||||||
|
get_current_version
|
||||||
|
|
||||||
|
# Check if there is a specified version
|
||||||
if [[ -n "$VERSION" ]]; then
|
if [[ -n "$VERSION" ]]; then
|
||||||
RELEASE_VERSION="v${VERSION#v}"
|
RELEASE_VERSION="v${VERSION#v}"
|
||||||
return 2
|
if [[ "$RELEASE_VERSION" == "$CURRENT_VERSION" ]]; then
|
||||||
fi
|
return 2
|
||||||
# Determine the version number for Xray installed from a local file
|
else
|
||||||
if [[ -f '/usr/local/bin/xray' ]]; then
|
return 0
|
||||||
VERSION="$(/usr/local/bin/xray -version | awk 'NR==1 {print $2}')"
|
|
||||||
CURRENT_VERSION="v${VERSION#v}"
|
|
||||||
if [[ "$LOCAL_INSTALL" -eq '1' ]]; then
|
|
||||||
RELEASE_VERSION="$CURRENT_VERSION"
|
|
||||||
return
|
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
# Get Xray release version number
|
|
||||||
|
# Get Xray latest release version number
|
||||||
TMP_FILE="$(mktemp)"
|
TMP_FILE="$(mktemp)"
|
||||||
if ! curl -x "${PROXY}" -sS -H "Accept: application/vnd.github.v3+json" -o "$TMP_FILE" 'https://api.github.com/repos/XTLS/Xray-core/releases/latest'; then
|
if ! curl -x "${PROXY}" -sS -H "Accept: application/vnd.github.v3+json" -o "$TMP_FILE" 'https://api.github.com/repos/XTLS/Xray-core/releases/latest'; then
|
||||||
"rm" "$TMP_FILE"
|
"rm" "$TMP_FILE"
|
||||||
|
@ -257,9 +287,15 @@ get_version() {
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
RELEASE_LATEST="$(sed 'y/,/\n/' "$TMP_FILE" | grep 'tag_name' | awk -F '"' '{print $4}')"
|
RELEASE_LATEST="$(sed 'y/,/\n/' "$TMP_FILE" | grep 'tag_name' | awk -F '"' '{print $4}')"
|
||||||
|
if [[ -z "$RELEASE_LATEST" ]]; then
|
||||||
|
echo "error: Failed to get the latest release version"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
"rm" "$TMP_FILE"
|
"rm" "$TMP_FILE"
|
||||||
RELEASE_VERSION="v${RELEASE_LATEST#v}"
|
RELEASE_LATEST="v${RELEASE_LATEST#v}"
|
||||||
# Compare Xray version numbers
|
|
||||||
|
# Check if the current version is latest
|
||||||
|
RELEASE_VERSION="${RELEASE_LATEST}"
|
||||||
if [[ "$RELEASE_VERSION" != "$CURRENT_VERSION" ]]; then
|
if [[ "$RELEASE_VERSION" != "$CURRENT_VERSION" ]]; then
|
||||||
RELEASE_VERSIONSION_NUMBER="${RELEASE_VERSION#v}"
|
RELEASE_VERSIONSION_NUMBER="${RELEASE_VERSION#v}"
|
||||||
RELEASE_MAJOR_VERSION_NUMBER="${RELEASE_VERSIONSION_NUMBER%%.*}"
|
RELEASE_MAJOR_VERSION_NUMBER="${RELEASE_VERSIONSION_NUMBER%%.*}"
|
||||||
|
@ -488,7 +524,7 @@ check_update() {
|
||||||
get_version
|
get_version
|
||||||
local get_ver_exit_code=$?
|
local get_ver_exit_code=$?
|
||||||
if [[ "$get_ver_exit_code" -eq '0' ]]; then
|
if [[ "$get_ver_exit_code" -eq '0' ]]; then
|
||||||
echo "info: Found the latest release of Xray $RELEASE_VERSION . (Current release: $CURRENT_VERSION)"
|
echo "info: Found the latest release of Xray $RELEASE_LATEST . (Current release: $CURRENT_VERSION)"
|
||||||
elif [[ "$get_ver_exit_code" -eq '1' ]]; then
|
elif [[ "$get_ver_exit_code" -eq '1' ]]; then
|
||||||
echo "info: No new version. The current version of Xray is $CURRENT_VERSION ."
|
echo "info: No new version. The current version of Xray is $CURRENT_VERSION ."
|
||||||
fi
|
fi
|
||||||
|
@ -538,8 +574,8 @@ remove_xray() {
|
||||||
|
|
||||||
# Explanation of parameters in the script
|
# Explanation of parameters in the script
|
||||||
show_help() {
|
show_help() {
|
||||||
echo "usage: $0 [--remove | --version number | -c | -f | -h | -l | -p]"
|
echo "usage: $0 [OPTION]..."
|
||||||
echo ' [-p address] [--version number | -c | -f]'
|
echo 'OPTION:'
|
||||||
echo ' --remove Remove Xray'
|
echo ' --remove Remove Xray'
|
||||||
echo ' --version Install the specified version of Xray, e.g., --version v1.0.0'
|
echo ' --version Install the specified version of Xray, e.g., --version v1.0.0'
|
||||||
echo ' -c, --check Check if Xray can be updated'
|
echo ' -c, --check Check if Xray can be updated'
|
||||||
|
@ -555,7 +591,6 @@ main() {
|
||||||
check_if_running_as_root
|
check_if_running_as_root
|
||||||
identify_the_operating_system_and_architecture
|
identify_the_operating_system_and_architecture
|
||||||
judgment_parameters "$@"
|
judgment_parameters "$@"
|
||||||
check_install_user
|
|
||||||
|
|
||||||
install_software "$package_provide_tput" 'tput'
|
install_software "$package_provide_tput" 'tput'
|
||||||
red=$(tput setaf 1)
|
red=$(tput setaf 1)
|
||||||
|
@ -568,6 +603,9 @@ main() {
|
||||||
[[ "$CHECK" -eq '1' ]] && check_update
|
[[ "$CHECK" -eq '1' ]] && check_update
|
||||||
[[ "$REMOVE" -eq '1' ]] && remove_xray
|
[[ "$REMOVE" -eq '1' ]] && remove_xray
|
||||||
|
|
||||||
|
# Check if the user is effective
|
||||||
|
check_install_user
|
||||||
|
|
||||||
# Two very important variables
|
# Two very important variables
|
||||||
TMP_DIRECTORY="$(mktemp -d)"
|
TMP_DIRECTORY="$(mktemp -d)"
|
||||||
ZIP_FILE="${TMP_DIRECTORY}/Xray-linux-$MACHINE.zip"
|
ZIP_FILE="${TMP_DIRECTORY}/Xray-linux-$MACHINE.zip"
|
||||||
|
@ -584,7 +622,7 @@ main() {
|
||||||
install_software 'curl' 'curl'
|
install_software 'curl' 'curl'
|
||||||
get_version
|
get_version
|
||||||
NUMBER="$?"
|
NUMBER="$?"
|
||||||
if [[ "$NUMBER" -eq '0' ]] || [[ "$FORCE" -eq '1' ]] || [[ "$NUMBER" -eq 2 ]]; then
|
if [[ "$NUMBER" -eq '0' ]] || [[ "$FORCE" -eq '1' ]]; then
|
||||||
echo "info: Installing Xray $RELEASE_VERSION for $(uname -m)"
|
echo "info: Installing Xray $RELEASE_VERSION for $(uname -m)"
|
||||||
download_xray
|
download_xray
|
||||||
if [[ "$?" -eq '1' ]]; then
|
if [[ "$?" -eq '1' ]]; then
|
||||||
|
@ -597,6 +635,9 @@ main() {
|
||||||
elif [[ "$NUMBER" -eq '1' ]]; then
|
elif [[ "$NUMBER" -eq '1' ]]; then
|
||||||
echo "info: No new version. The current version of Xray is $CURRENT_VERSION ."
|
echo "info: No new version. The current version of Xray is $CURRENT_VERSION ."
|
||||||
exit 0
|
exit 0
|
||||||
|
elif [[ "$NUMBER" -eq '2' ]]; then
|
||||||
|
echo "info: The current version is same as the specified version. The version is $CURRENT_VERSION ."
|
||||||
|
exit 0
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
@ -641,10 +682,8 @@ main() {
|
||||||
fi
|
fi
|
||||||
"rm" -r "$TMP_DIRECTORY"
|
"rm" -r "$TMP_DIRECTORY"
|
||||||
echo "removed: $TMP_DIRECTORY"
|
echo "removed: $TMP_DIRECTORY"
|
||||||
if [[ "$LOCAL_INSTALL" -eq '1' ]]; then
|
get_current_version
|
||||||
get_version
|
echo "info: Xray $CURRENT_VERSION is installed."
|
||||||
fi
|
|
||||||
echo "info: Xray $RELEASE_VERSION is installed."
|
|
||||||
echo "You may need to execute a command to remove dependent software: $PACKAGE_MANAGEMENT_REMOVE curl unzip"
|
echo "You may need to execute a command to remove dependent software: $PACKAGE_MANAGEMENT_REMOVE curl unzip"
|
||||||
if [[ "$XRAY_RUNNING" -eq '1' ]]; then
|
if [[ "$XRAY_RUNNING" -eq '1' ]]; then
|
||||||
start_xray
|
start_xray
|
||||||
|
|
Loading…
Reference in a new issue