Compare commits
4 Commits
Author | SHA1 | Date | |
---|---|---|---|
![]() |
15bab2b2ed | ||
![]() |
0cac60d3e3 | ||
![]() |
86bb946091 | ||
![]() |
7270c1a16d |
@@ -127,7 +127,7 @@ show_help() {
|
|||||||
echo -e "Usage: $0 [-f xxx | -l | -p xxx | -v xxx | -h]"
|
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 " -f, --core-file <path> 自定义 $is_core_name 文件路径, e.g., -f /root/${is_core}-linux-64.zip"
|
||||||
echo -e " -l, --local-install 本地获取安装脚本, 使用当前目录"
|
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 " -p, --proxy <addr> 使用代理下载, e.g., -p http://127.0.0.1:2333"
|
||||||
echo -e " -v, --core-version <ver> 自定义 $is_core_name 版本, e.g., -v v5.4.1"
|
echo -e " -v, --core-version <ver> 自定义 $is_core_name 版本, e.g., -v v5.4.1"
|
||||||
echo -e " -h, --help 显示此帮助界面\n"
|
echo -e " -h, --help 显示此帮助界面\n"
|
||||||
|
|
||||||
@@ -198,6 +198,7 @@ check_status() {
|
|||||||
# dependent pkg install fail
|
# dependent pkg install fail
|
||||||
[[ ! -f $is_pkg_ok ]] && {
|
[[ ! -f $is_pkg_ok ]] && {
|
||||||
msg err "安装依赖包失败"
|
msg err "安装依赖包失败"
|
||||||
|
msg err "请尝试手动安装依赖包: $cmd update -y; $cmd install -y $pkg"
|
||||||
is_fail=1
|
is_fail=1
|
||||||
}
|
}
|
||||||
|
|
||||||
|
33
src/core.sh
33
src/core.sh
@@ -124,7 +124,7 @@ get_uuid() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
get_ip() {
|
get_ip() {
|
||||||
[[ $ip || $is_no_auto_tls || $is_gen ]] && return
|
[[ $ip || $is_no_auto_tls || $is_gen || $is_dont_get_ip ]] && return
|
||||||
export "$(_wget -4 -qO- https://one.one.one.one/cdn-cgi/trace | grep ip=)" &>/dev/null
|
export "$(_wget -4 -qO- https://one.one.one.one/cdn-cgi/trace | grep ip=)" &>/dev/null
|
||||||
[[ ! $ip ]] && export "$(_wget -6 -qO- https://one.one.one.one/cdn-cgi/trace | grep ip=)" &>/dev/null
|
[[ ! $ip ]] && export "$(_wget -6 -qO- https://one.one.one.one/cdn-cgi/trace | grep ip=)" &>/dev/null
|
||||||
[[ ! $ip ]] && {
|
[[ ! $ip ]] && {
|
||||||
@@ -167,7 +167,7 @@ show_list() {
|
|||||||
is_test() {
|
is_test() {
|
||||||
case $1 in
|
case $1 in
|
||||||
number)
|
number)
|
||||||
echo $2 | egrep '^[1-9][0-9]?+$'
|
echo $2 | grep -E '^[1-9][0-9]?+$'
|
||||||
;;
|
;;
|
||||||
port)
|
port)
|
||||||
if [[ $(is_test number $2) ]]; then
|
if [[ $(is_test number $2) ]]; then
|
||||||
@@ -178,13 +178,13 @@ is_test() {
|
|||||||
[[ $(is_port_used $2) && ! $is_cant_test_port ]] && echo ok
|
[[ $(is_port_used $2) && ! $is_cant_test_port ]] && echo ok
|
||||||
;;
|
;;
|
||||||
domain)
|
domain)
|
||||||
echo $2 | egrep -i '^\w(\w|\-|\.)?+\.\w+$'
|
echo $2 | grep -E -i '^\w(\w|\-|\.)?+\.\w+$'
|
||||||
;;
|
;;
|
||||||
path)
|
path)
|
||||||
echo $2 | egrep -i '^\/\w(\w|\-|\/)?+\w$'
|
echo $2 | grep -E -i '^\/\w(\w|\-|\/)?+\w$'
|
||||||
;;
|
;;
|
||||||
uuid)
|
uuid)
|
||||||
echo $2 | egrep -i '[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}'
|
echo $2 | grep -E -i '[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}'
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
@@ -732,6 +732,8 @@ change() {
|
|||||||
|
|
||||||
# delete config.
|
# delete config.
|
||||||
del() {
|
del() {
|
||||||
|
# dont get ip
|
||||||
|
is_dont_get_ip=1
|
||||||
[[ $is_conf_dir_empty ]] && return # not found any json file.
|
[[ $is_conf_dir_empty ]] && return # not found any json file.
|
||||||
# get a config file
|
# get a config file
|
||||||
[[ ! $is_config_file ]] && get info $1
|
[[ ! $is_config_file ]] && get info $1
|
||||||
@@ -761,6 +763,7 @@ del() {
|
|||||||
warn "当前配置目录为空! 因为你刚刚删除了最后一个配置文件."
|
warn "当前配置目录为空! 因为你刚刚删除了最后一个配置文件."
|
||||||
is_conf_dir_empty=1
|
is_conf_dir_empty=1
|
||||||
fi
|
fi
|
||||||
|
unset is_dont_get_ip
|
||||||
[[ $is_dont_auto_exit ]] && unset is_config_file
|
[[ $is_dont_auto_exit ]] && unset is_config_file
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -908,7 +911,7 @@ add() {
|
|||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
for v in ${protocol_list[@]}; do
|
for v in ${protocol_list[@]}; do
|
||||||
[[ $(egrep -i "^$is_lower$" <<<$v) ]] && is_new_protocol=$v && break
|
[[ $(grep -E -i "^$is_lower$" <<<$v) ]] && is_new_protocol=$v && break
|
||||||
done
|
done
|
||||||
|
|
||||||
[[ ! $is_new_protocol ]] && err "无法识别 ($1), 请使用: $is_core add [protocol] [args... | auto]"
|
[[ ! $is_new_protocol ]] && err "无法识别 ($1), 请使用: $is_core add [protocol] [args... | auto]"
|
||||||
@@ -1058,7 +1061,7 @@ add() {
|
|||||||
ask set_header_type
|
ask set_header_type
|
||||||
}
|
}
|
||||||
for v in ${is_tmp_list[@]}; do
|
for v in ${is_tmp_list[@]}; do
|
||||||
[[ $(egrep -i "^${is_use_header_type}${is_use_method}$" <<<$v) ]] && is_tmp_use_type=$v && break
|
[[ $(grep -E -i "^${is_use_header_type}${is_use_method}$" <<<$v) ]] && is_tmp_use_type=$v && break
|
||||||
done
|
done
|
||||||
[[ ! ${is_tmp_use_type} ]] && {
|
[[ ! ${is_tmp_use_type} ]] && {
|
||||||
warn "(${is_use_header_type}${is_use_method}) 不是一个可用的${is_tmp_use_name}."
|
warn "(${is_use_header_type}${is_use_method}) 不是一个可用的${is_tmp_use_name}."
|
||||||
@@ -1184,6 +1187,7 @@ get() {
|
|||||||
[[ ! $is_addr ]] && {
|
[[ ! $is_addr ]] && {
|
||||||
get_ip
|
get_ip
|
||||||
is_addr=$ip
|
is_addr=$ip
|
||||||
|
[[ $(grep ":" <<<$ip) ]] && is_addr="[$ip]"
|
||||||
}
|
}
|
||||||
;;
|
;;
|
||||||
new)
|
new)
|
||||||
@@ -1194,8 +1198,8 @@ get() {
|
|||||||
file)
|
file)
|
||||||
is_file_str=$2
|
is_file_str=$2
|
||||||
[[ ! $is_file_str ]] && is_file_str='.json$'
|
[[ ! $is_file_str ]] && is_file_str='.json$'
|
||||||
# is_all_json=("$(ls $is_conf_dir | egrep $is_file_str)")
|
# is_all_json=("$(ls $is_conf_dir | grep -E $is_file_str)")
|
||||||
readarray -t is_all_json <<<"$(ls $is_conf_dir | egrep -i "$is_file_str" | sed '/dynamic-port-.*-link/d' | head -233)" # limit max 233 lines for show.
|
readarray -t is_all_json <<<"$(ls $is_conf_dir | grep -E -i "$is_file_str" | sed '/dynamic-port-.*-link/d' | head -233)" # limit max 233 lines for show.
|
||||||
[[ ! $is_all_json ]] && err "无法找到相关的配置文件: $2"
|
[[ ! $is_all_json ]] && err "无法找到相关的配置文件: $2"
|
||||||
[[ ${#is_all_json[@]} -eq 1 ]] && is_config_file=$is_all_json && is_auto_get_config=1
|
[[ ${#is_all_json[@]} -eq 1 ]] && is_config_file=$is_all_json && is_auto_get_config=1
|
||||||
[[ ! $is_config_file ]] && {
|
[[ ! $is_config_file ]] && {
|
||||||
@@ -1240,7 +1244,7 @@ get() {
|
|||||||
[[ $? != 0 ]] && err "无法读取动态端口文件: $is_dynamic_port"
|
[[ $? != 0 ]] && err "无法读取动态端口文件: $is_dynamic_port"
|
||||||
fi
|
fi
|
||||||
if [[ $is_caddy && $host && -f $is_caddy_conf/$host.conf ]]; then
|
if [[ $is_caddy && $host && -f $is_caddy_conf/$host.conf ]]; then
|
||||||
is_tmp_https_port=$(egrep -o "$host:[1-9][0-9]?+" $is_caddy_conf/$host.conf | sed s/.*://)
|
is_tmp_https_port=$(grep -E -o "$host:[1-9][0-9]?+" $is_caddy_conf/$host.conf | sed s/.*://)
|
||||||
fi
|
fi
|
||||||
[[ $is_tmp_https_port ]] && is_https_port=$is_tmp_https_port
|
[[ $is_tmp_https_port ]] && is_https_port=$is_tmp_https_port
|
||||||
[[ $is_client && $host ]] && port=$is_https_port
|
[[ $is_client && $host ]] && port=$is_https_port
|
||||||
@@ -1303,7 +1307,7 @@ get() {
|
|||||||
net=socks
|
net=socks
|
||||||
[[ ! $is_socks_user ]] && is_socks_user=233boy
|
[[ ! $is_socks_user ]] && is_socks_user=233boy
|
||||||
[[ ! $is_socks_pass ]] && is_socks_pass=$uuid
|
[[ ! $is_socks_pass ]] && is_socks_pass=$uuid
|
||||||
json_str='settings:{auth:"password",accounts:[{user:'\"$is_socks_user\"',pass:'\"$is_socks_pass\"'}],udp:true}'
|
json_str='settings:{auth:"password",accounts:[{user:'\"$is_socks_user\"',pass:'\"$is_socks_pass\"'}],udp:true,ip:"0.0.0.0"}'
|
||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
err "无法识别协议: $is_config_file"
|
err "无法识别协议: $is_config_file"
|
||||||
@@ -1533,7 +1537,7 @@ info() {
|
|||||||
is_can_change=(0 1 5 10 11)
|
is_can_change=(0 1 5 10 11)
|
||||||
is_info_show=(0 1 2 3 15 8 16 17 18)
|
is_info_show=(0 1 2 3 15 8 16 17 18)
|
||||||
is_info_str=($is_protocol $is_addr $port $uuid xtls-rprx-vision reality $is_servername "ios" $is_public_key)
|
is_info_str=($is_protocol $is_addr $port $uuid xtls-rprx-vision reality $is_servername "ios" $is_public_key)
|
||||||
is_url="$is_protocol://$uuid@$ip:$port?encryption=none&security=reality&flow=xtls-rprx-vision&type=tcp&sni=$is_servername&pbk=$is_public_key&fp=ios#233boy-$net-$is_addr"
|
is_url="$is_protocol://$uuid@$is_addr:$port?encryption=none&security=reality&flow=xtls-rprx-vision&type=tcp&sni=$is_servername&pbk=$is_public_key&fp=ios#233boy-$net-$is_addr"
|
||||||
;;
|
;;
|
||||||
door)
|
door)
|
||||||
is_can_change=(0 1 8 9)
|
is_can_change=(0 1 8 9)
|
||||||
@@ -1845,8 +1849,9 @@ main() {
|
|||||||
get_ip
|
get_ip
|
||||||
msg $ip
|
msg $ip
|
||||||
;;
|
;;
|
||||||
log | logerr)
|
log | logerr | errlog)
|
||||||
get $@
|
load log.sh
|
||||||
|
log_set $@
|
||||||
;;
|
;;
|
||||||
url | qr)
|
url | qr)
|
||||||
url_qr $@
|
url_qr $@
|
||||||
|
@@ -13,7 +13,7 @@ get_latest_version() {
|
|||||||
url="https://api.github.com/repos/$is_caddy_repo/releases/latest?v=$RANDOM"
|
url="https://api.github.com/repos/$is_caddy_repo/releases/latest?v=$RANDOM"
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
latest_ver=$(_wget -qO- $url | grep tag_name | egrep -o 'v([0-9.]+)')
|
latest_ver=$(_wget -qO- $url | grep tag_name | grep -E -o 'v([0-9.]+)')
|
||||||
[[ ! $latest_ver ]] && {
|
[[ ! $latest_ver ]] && {
|
||||||
err "获取 ${name} 最新版本失败."
|
err "获取 ${name} 最新版本失败."
|
||||||
}
|
}
|
||||||
|
@@ -130,8 +130,8 @@ if [[ -f $is_caddy_bin && -d $is_caddy_dir && $is_caddy_service ]]; then
|
|||||||
systemctl restart caddy &
|
systemctl restart caddy &
|
||||||
}
|
}
|
||||||
is_caddy_ver=$($is_caddy_bin version | head -n1 | cut -d " " -f1)
|
is_caddy_ver=$($is_caddy_bin version | head -n1 | cut -d " " -f1)
|
||||||
is_tmp_http_port=$(egrep '^ {2,}http_port|^http_port' $is_caddyfile | egrep -o [0-9]+)
|
is_tmp_http_port=$(grep -E '^ {2,}http_port|^http_port' $is_caddyfile | grep -E -o [0-9]+)
|
||||||
is_tmp_https_port=$(egrep '^ {2,}https_port|^https_port' $is_caddyfile | egrep -o [0-9]+)
|
is_tmp_https_port=$(grep -E '^ {2,}https_port|^https_port' $is_caddyfile | grep -E -o [0-9]+)
|
||||||
[[ $is_tmp_http_port ]] && is_http_port=$is_tmp_http_port
|
[[ $is_tmp_http_port ]] && is_http_port=$is_tmp_http_port
|
||||||
[[ $is_tmp_https_port ]] && is_https_port=$is_tmp_https_port
|
[[ $is_tmp_https_port ]] && is_https_port=$is_tmp_https_port
|
||||||
if [[ $(pgrep -f $is_caddy_bin) ]]; then
|
if [[ $(pgrep -f $is_caddy_bin) ]]; then
|
||||||
|
54
src/log.sh
Normal file
54
src/log.sh
Normal file
@@ -0,0 +1,54 @@
|
|||||||
|
is_log_level_list=(
|
||||||
|
debug
|
||||||
|
info
|
||||||
|
warning
|
||||||
|
error
|
||||||
|
none
|
||||||
|
del
|
||||||
|
)
|
||||||
|
log_set() {
|
||||||
|
if [[ $2 ]]; then
|
||||||
|
for v in ${is_log_level_list[@]}; do
|
||||||
|
[[ $(grep -E -i "^${2,,}$" <<<$v) ]] && is_log_level_use=$v && break
|
||||||
|
done
|
||||||
|
[[ ! $is_log_level_use ]] && {
|
||||||
|
err "无法识别 log 参数: $@ \n请使用 $is_core log [${is_log_level_list[@]}] 进行相关设定.\n备注: del 参数仅临时删除 log 文件; none 参数将不会生成 log 文件."
|
||||||
|
}
|
||||||
|
case $is_log_level_use in
|
||||||
|
del)
|
||||||
|
rm -rf $is_log_dir/*.log
|
||||||
|
msg "\n $(_green 已临时删除 log 文件, 如果你想要完全禁止生成 log 文件请使用: $is_core log none)\n"
|
||||||
|
;;
|
||||||
|
none)
|
||||||
|
rm -rf $is_log_dir/*.log
|
||||||
|
cat <<<$(jq '.log={"loglevel":"none"}' $is_config_json) >$is_config_json
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
cat <<<$(jq '.log={access:"/var/log/'$is_core'/access.log",error:"/var/log/'$is_core'/error.log",loglevel:"'$is_log_level_use'"}' $is_config_json) >$is_config_json
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
manage restart &
|
||||||
|
[[ $2 != 'del' ]] && msg "\n已更新 Log 设定为: $(_green $is_log_level_use)\n"
|
||||||
|
else
|
||||||
|
case $1 in
|
||||||
|
log)
|
||||||
|
if [[ -f $is_log_dir/access.log ]]; then
|
||||||
|
msg "\n 提醒: 按 $(_green Ctrl + C) 退出\n"
|
||||||
|
tail -f $is_log_dir/access.log
|
||||||
|
else
|
||||||
|
err "无法找到 log 文件."
|
||||||
|
fi
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
if [[ -f $is_log_dir/error.log ]]; then
|
||||||
|
msg "\n 提醒: 按 $(_green Ctrl + C) 退出\n"
|
||||||
|
tail -f $is_log_dir/error.log
|
||||||
|
else
|
||||||
|
err "无法找到 log 文件."
|
||||||
|
fi
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
fi
|
||||||
|
}
|
@@ -100,7 +100,7 @@ if [[ $is_old_use ]]; then
|
|||||||
is_dont_show_info=1
|
is_dont_show_info=1
|
||||||
if [[ $shadowsocks ]]; then
|
if [[ $shadowsocks ]]; then
|
||||||
for v in ${ss_method_list[@]}; do
|
for v in ${ss_method_list[@]}; do
|
||||||
[[ $(egrep -i "^${ssciphers}$" <<<$v) ]] && ss_method=$v && break
|
[[ $(grep -E -i "^${ssciphers}$" <<<$v) ]] && ss_method=$v && break
|
||||||
done
|
done
|
||||||
if [[ $ss_method ]]; then
|
if [[ $ss_method ]]; then
|
||||||
add ss $ssport $sspass $ss_method
|
add ss $ssport $sspass $ss_method
|
||||||
|
Reference in New Issue
Block a user