412 lines
10 KiB
Bash
412 lines
10 KiB
Bash
#!/bin/bash
|
|
|
|
author=233boy
|
|
# github=https://github.com/233boy/v2ray
|
|
|
|
# bash fonts colors
|
|
red='\e[31m'
|
|
yellow='\e[33m'
|
|
gray='\e[90m'
|
|
green='\e[92m'
|
|
blue='\e[94m'
|
|
magenta='\e[95m'
|
|
cyan='\e[96m'
|
|
none='\e[0m'
|
|
_red() { echo -e ${red}$@${none}; }
|
|
_blue() { echo -e ${blue}$@${none}; }
|
|
_cyan() { echo -e ${cyan}$@${none}; }
|
|
_green() { echo -e ${green}$@${none}; }
|
|
_yellow() { echo -e ${yellow}$@${none}; }
|
|
_magenta() { echo -e ${magenta}$@${none}; }
|
|
_red_bg() { echo -e "\e[41m$@${none}"; }
|
|
|
|
is_err=$(_red_bg 错误!)
|
|
is_warn=$(_red_bg 警告!)
|
|
|
|
err() {
|
|
echo -e "\n$is_err $@\n" && exit 1
|
|
}
|
|
|
|
warn() {
|
|
echo -e "\n$is_warn $@\n"
|
|
}
|
|
|
|
# root
|
|
[[ $EUID != 0 ]] && err "当前非 ${yellow}ROOT用户.${none}"
|
|
|
|
# yum or apt-get, ubuntu/debian/centos
|
|
cmd=$(type -P apt-get || type -P yum)
|
|
[[ ! $cmd ]] && err "此脚本仅支持 ${yellow}(Ubuntu or Debian or CentOS)${none}."
|
|
|
|
# systemd
|
|
[[ ! $(type -P systemctl) ]] && {
|
|
err "此系统缺少 ${yellow}(systemctl)${none}, 请尝试执行:${yellow} ${cmd} update -y;${cmd} install systemd -y ${none}来修复此错误."
|
|
}
|
|
|
|
# wget installed or none
|
|
is_wget=$(type -P wget)
|
|
|
|
# x64
|
|
case $(uname -m) in
|
|
amd64 | x86_64)
|
|
is_core_arch="64"
|
|
;;
|
|
*aarch64* | *armv8*)
|
|
is_core_arch="arm64-v8a"
|
|
;;
|
|
*)
|
|
err "此脚本仅支持 64 位系统..."
|
|
;;
|
|
esac
|
|
|
|
is_core=v2ray
|
|
is_core_name=V2Ray
|
|
is_core_dir=/etc/$is_core
|
|
is_core_bin=$is_core_dir/bin/$is_core
|
|
is_core_repo=v2fly/$is_core-core
|
|
is_conf_dir=$is_core_dir/conf
|
|
is_log_dir=/var/log/$is_core
|
|
is_sh_bin=/usr/local/bin/$is_core
|
|
is_sh_dir=$is_core_dir/sh
|
|
is_sh_repo=$author/$is_core
|
|
is_pkg="wget unzip jq"
|
|
is_config_json=$is_core_dir/config.json
|
|
tmp_var_lists=(
|
|
tmpcore
|
|
tmpsh
|
|
is_core_ok
|
|
is_sh_ok
|
|
is_pkg_ok
|
|
)
|
|
|
|
# tmp dir
|
|
tmpdir=$(mktemp -u)
|
|
[[ ! $tmpdir ]] && {
|
|
tmpdir=/tmp/tmp-$RANDOM
|
|
}
|
|
|
|
# set up var
|
|
for i in ${tmp_var_lists[*]}; do
|
|
export $i=$tmpdir/$i
|
|
done
|
|
|
|
# load bash script.
|
|
load() {
|
|
. $is_sh_dir/src/$1
|
|
}
|
|
|
|
# wget add --no-check-certificate
|
|
_wget() {
|
|
[[ $proxy ]] && export https_proxy=$proxy
|
|
wget --no-check-certificate $*
|
|
}
|
|
|
|
# print a mesage
|
|
msg() {
|
|
case $1 in
|
|
warn)
|
|
local color=$yellow
|
|
;;
|
|
err)
|
|
local color=$red
|
|
;;
|
|
ok)
|
|
local color=$green
|
|
;;
|
|
esac
|
|
|
|
echo -e "${color}$(date +'%T')${none}) ${2}"
|
|
}
|
|
|
|
# show help msg
|
|
show_help() {
|
|
echo -e "Usage: $0 [-f xxx | -l | -p xxx | -v xxx | -h]"
|
|
echo -e " -f, --core-file <path> 自定义 $is_core_name 文件路径, e.g., -f /root/${is_core}-linux-64.zip"
|
|
echo -e " -l, --local-install 本地获取安装脚本, 使用当前目录"
|
|
echo -e " -p, --proxy <addr> 使用代理下载, e.g., -p http://127.0.0.1:2333 or -p socks5://127.0.0.1:2333"
|
|
echo -e " -v, --core-version <ver> 自定义 $is_core_name 版本, e.g., -v v5.4.1"
|
|
echo -e " -h, --help 显示此帮助界面\n"
|
|
|
|
exit 0
|
|
}
|
|
|
|
# install dependent pkg
|
|
install_pkg() {
|
|
cmd_not_found=
|
|
for i in $*; do
|
|
[[ ! $(type -P $i) ]] && cmd_not_found="$cmd_not_found,$i"
|
|
done
|
|
if [[ $cmd_not_found ]]; then
|
|
pkg=$(echo $cmd_not_found | sed 's/,/ /g')
|
|
msg warn "安装依赖包 >${pkg}"
|
|
$cmd install -y $pkg &>/dev/null
|
|
if [[ $? != 0 ]]; then
|
|
[[ $cmd =~ yum ]] && yum install epel-release -y &>/dev/null
|
|
$cmd update -y &>/dev/null
|
|
$cmd install -y $pkg &>/dev/null
|
|
[[ $? == 0 ]] && >$is_pkg_ok
|
|
else
|
|
>$is_pkg_ok
|
|
fi
|
|
else
|
|
>$is_pkg_ok
|
|
fi
|
|
}
|
|
|
|
# download file
|
|
download() {
|
|
case $1 in
|
|
core)
|
|
link=https://github.com/${is_core_repo}/releases/latest/download/${is_core}-linux-${is_core_arch}.zip
|
|
[[ $is_core_ver ]] && link="https://github.com/${is_core_repo}/releases/download/${is_core_ver}/${is_core}-linux-${is_core_arch}.zip"
|
|
name=$is_core_name
|
|
tmpfile=$tmpcore
|
|
is_ok=$is_core_ok
|
|
;;
|
|
sh)
|
|
link=https://github.com/${is_sh_repo}/releases/latest/download/code.zip
|
|
name="$is_core_name 脚本"
|
|
tmpfile=$tmpsh
|
|
is_ok=$is_sh_ok
|
|
;;
|
|
esac
|
|
|
|
msg warn "下载 ${name} > ${link}"
|
|
if _wget -t 3 -q -c $link -O $tmpfile; then
|
|
mv -f $tmpfile $is_ok
|
|
fi
|
|
}
|
|
|
|
# get server ip
|
|
get_ip() {
|
|
export "$(_wget -4 -qO- https://www.cloudflare.com/cdn-cgi/trace | grep ip=)" &>/dev/null
|
|
[[ -z $ip ]] && export "$(_wget -6 -qO- https://www.cloudflare.com/cdn-cgi/trace | grep ip=)" &>/dev/null
|
|
}
|
|
|
|
# check background tasks status
|
|
check_status() {
|
|
# dependent pkg install fail
|
|
[[ ! -f $is_pkg_ok ]] && {
|
|
msg err "安装依赖包失败"
|
|
is_fail=1
|
|
}
|
|
|
|
# download file status
|
|
if [[ $is_wget ]]; then
|
|
[[ ! -f $is_core_ok ]] && {
|
|
msg err "下载 ${is_core_name} 失败"
|
|
is_fail=1
|
|
}
|
|
[[ ! -f $is_sh_ok ]] && {
|
|
msg err "下载 ${is_core_name} 脚本失败"
|
|
is_fail=1
|
|
}
|
|
else
|
|
[[ ! $is_fail ]] && {
|
|
is_wget=1
|
|
[[ ! $is_core_file ]] && download core &
|
|
[[ ! $local_install ]] && download sh &
|
|
get_ip
|
|
wait
|
|
check_status
|
|
}
|
|
fi
|
|
|
|
# found fail status, remove tmp dir and exit.
|
|
[[ $is_fail ]] && {
|
|
exit_and_del_tmpdir
|
|
}
|
|
}
|
|
|
|
# parameters check
|
|
pass_args() {
|
|
while [[ $# -gt 0 ]]; do
|
|
case $1 in
|
|
online)
|
|
err "如果想要安装旧版本, 请转到: https://github.com/233boy/v2ray/tree/old"
|
|
;;
|
|
-f | --core-file)
|
|
[[ -z $2 ]] && {
|
|
err "($1) 缺少必需参数, 正确使用示例: [$1 /root/$is_core-linux-64.zip]"
|
|
} || [[ ! -f $2 ]] && {
|
|
err "($2) 不是一个常规的文件."
|
|
}
|
|
is_core_file=$2
|
|
shift 2
|
|
;;
|
|
-l | --local-install)
|
|
[[ ! -f ${PWD}/src/core.sh || ! -f ${PWD}/$is_core.sh ]] && {
|
|
err "当前目录 (${PWD}) 非完整的脚本目录."
|
|
}
|
|
local_install=1
|
|
shift 1
|
|
;;
|
|
-p | --proxy)
|
|
[[ -z $2 ]] && {
|
|
err "($1) 缺少必需参数, 正确使用示例: [$1 http://127.0.0.1:2333 or -p socks5://127.0.0.1:2333]"
|
|
}
|
|
proxy=$2
|
|
shift 2
|
|
;;
|
|
-v | --core-version)
|
|
[[ -z $2 ]] && {
|
|
err "($1) 缺少必需参数, 正确使用示例: [$1 v1.8.1]"
|
|
}
|
|
is_core_ver=v${2#v}
|
|
shift 2
|
|
;;
|
|
-h | --help)
|
|
show_help
|
|
;;
|
|
*)
|
|
echo -e "\n${is_err} ($@) 为未知参数...\n"
|
|
show_help
|
|
;;
|
|
esac
|
|
done
|
|
[[ $is_core_ver && $is_core_file ]] && {
|
|
err "无法同时自定义 ${is_core_name} 版本和 ${is_core_name} 文件."
|
|
}
|
|
}
|
|
|
|
# exit and remove tmpdir
|
|
exit_and_del_tmpdir() {
|
|
rm -rf $tmpdir
|
|
[[ ! $1 ]] && {
|
|
msg err "哦豁.."
|
|
msg err "安装过程出现错误..."
|
|
echo -e "反馈问题) https://github.com/${is_sh_repo}/issues"
|
|
echo
|
|
exit 1
|
|
}
|
|
exit
|
|
}
|
|
|
|
# main
|
|
main() {
|
|
|
|
# check old version
|
|
[[ -f $is_sh_bin && -d $is_core_dir/bin && -d $is_sh_dir && -d $is_conf_dir ]] && {
|
|
err "检测到脚本已安装, 如需重装请使用${green} ${is_core} reinstall ${none}命令."
|
|
}
|
|
|
|
# check parameters
|
|
[[ $# -gt 0 ]] && pass_args $@
|
|
|
|
# show welcome msg
|
|
clear
|
|
echo
|
|
echo "........... $is_core_name script by $author .........."
|
|
echo
|
|
|
|
# start installing...
|
|
msg warn "开始安装..."
|
|
[[ $is_core_ver ]] && msg warn "${is_core_name} 版本: ${yellow}$is_core_ver${none}"
|
|
[[ $proxy ]] && msg warn "使用代理: ${yellow}$proxy${none}"
|
|
# create tmpdir
|
|
mkdir -p $tmpdir
|
|
# if is_core_file, copy file
|
|
[[ $is_core_file ]] && {
|
|
cp -f $is_core_file $is_core_ok
|
|
msg warn "${is_core_name} 文件使用 > ${yellow}$is_core_file${none}"
|
|
}
|
|
# local dir install sh script
|
|
[[ $local_install ]] && {
|
|
>$is_sh_ok
|
|
msg warn "${yellow}本地获取安装脚本 > $PWD ${none}"
|
|
}
|
|
|
|
timedatectl set-ntp true &>/dev/null
|
|
[[ $? != 0 ]] && {
|
|
msg warn "${yellow}\e[4m提醒!!! 无法设置自动同步时间, 可能会影响使用 VMess 协议.${none}"
|
|
}
|
|
|
|
# install dependent pkg
|
|
install_pkg $is_pkg &
|
|
|
|
# if wget installed. download core, sh, get ip
|
|
[[ $is_wget ]] && {
|
|
[[ ! $is_core_file ]] && download core &
|
|
[[ ! $local_install ]] && download sh &
|
|
get_ip
|
|
}
|
|
|
|
# waiting for background tasks is done
|
|
wait
|
|
|
|
# check background tasks status
|
|
check_status
|
|
|
|
# test $is_core_file
|
|
if [[ $is_core_file ]]; then
|
|
unzip -qo $is_core_ok -d $tmpdir/testzip &>/dev/null
|
|
[[ $? != 0 ]] && {
|
|
msg err "${is_core_name} 文件无法通过测试."
|
|
exit_and_del_tmpdir
|
|
}
|
|
for i in ${is_core} geoip.dat geosite.dat; do
|
|
[[ ! -f $tmpdir/testzip/$i ]] && is_file_err=1 && break
|
|
done
|
|
[[ $is_file_err ]] && {
|
|
msg err "${is_core_name} 文件无法通过测试."
|
|
exit_and_del_tmpdir
|
|
}
|
|
fi
|
|
|
|
# get server ip.
|
|
[[ ! $ip ]] && {
|
|
msg err "获取服务器 IP 失败."
|
|
exit_and_del_tmpdir
|
|
}
|
|
|
|
# create sh dir...
|
|
mkdir -p $is_sh_dir
|
|
|
|
# copy sh file or unzip sh zip file.
|
|
if [[ $local_install ]]; then
|
|
cp -rf $PWD/* $is_sh_dir
|
|
else
|
|
unzip -qo $is_sh_ok -d $is_sh_dir
|
|
fi
|
|
|
|
# create core bin dir
|
|
mkdir -p $is_core_dir/bin
|
|
# copy core file or unzip core zip file
|
|
if [[ $is_core_file ]]; then
|
|
cp -rf $tmpdir/testzip/* $is_core_dir/bin
|
|
else
|
|
unzip -qo $is_core_ok -d $is_core_dir/bin
|
|
fi
|
|
chmod +x $is_core_bin
|
|
|
|
# add alias
|
|
echo "alias $is_core=$is_sh_bin" >>/root/.bashrc
|
|
|
|
# core command
|
|
ln -sf $is_sh_dir/$is_core.sh $is_sh_bin
|
|
chmod +x $is_sh_bin
|
|
|
|
# create log dir
|
|
mkdir -p $is_log_dir
|
|
|
|
# show a tips msg
|
|
msg ok "生成配置文件..."
|
|
|
|
# create systemd service
|
|
load systemd.sh
|
|
is_new_install=1
|
|
install_service $is_core &>/dev/null
|
|
|
|
# create condf dir
|
|
mkdir -p $is_conf_dir
|
|
|
|
load core.sh
|
|
# create a tcp config
|
|
add tcp
|
|
# remove tmp dir and exit.
|
|
exit_and_del_tmpdir ok
|
|
}
|
|
|
|
# start.
|
|
main $@
|