Skip to content

Commit

Permalink
fix jq install; dns check
Browse files Browse the repository at this point in the history
  • Loading branch information
233boy committed Aug 7, 2023
1 parent 67387eb commit 83d1e04
Show file tree
Hide file tree
Showing 8 changed files with 65 additions and 16 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@ Usage: v2ray [options]... [args]...
dd, ddel [name...] 删除多个配置**
fix [name] 修复一个配置
fix-all 修复全部配置
fix-caddyfile 修复 Caddyfile
fix-config.json 修复 config.json
管理:
Expand Down
40 changes: 33 additions & 7 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,11 @@ is_wget=$(type -P wget)
# x64
case $(uname -m) in
amd64 | x86_64)
is_jq_arch=amd64
is_core_arch="64"
;;
*aarch64* | *armv8*)
is_jq_arch=arm64
is_core_arch="arm64-v8a"
;;
*)
Expand All @@ -69,13 +71,15 @@ 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_pkg="wget unzip"
is_config_json=$is_core_dir/config.json
tmp_var_lists=(
tmpcore
tmpsh
tmpjq
is_core_ok
is_sh_ok
is_jq_ok
is_pkg_ok
)

Expand Down Expand Up @@ -169,6 +173,12 @@ download() {
tmpfile=$tmpsh
is_ok=$is_sh_ok
;;
jq)
link=https://github.com/jqlang/jq/releases/download/jq-1.7rc1/jq-linux-$is_jq_arch
name="jq"
tmpfile=$tmpjq
is_ok=$is_jq_ok
;;
esac

msg warn "下载 ${name} > ${link}"
Expand All @@ -179,8 +189,8 @@ download() {

# 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
export "$(_wget -4 -qO- https://cloudflare-dns.com/cdn-cgi/trace | grep ip=)" &>/dev/null
[[ -z $ip ]] && export "$(_wget -6 -qO- https://cloudflare-dns.com/cdn-cgi/trace | grep ip=)" &>/dev/null
}

# check background tasks status
Expand All @@ -201,11 +211,16 @@ check_status() {
msg err "下载 ${is_core_name} 脚本失败"
is_fail=1
}
[[ ! -f $is_jq_ok ]] && {
msg err "下载 jq 失败"
is_fail=1
}
else
[[ ! $is_fail ]] && {
is_wget=1
[[ ! $is_core_file ]] && download core &
[[ ! $local_install ]] && download sh &
[[ $jq_not_found ]] && download jq &
get_ip
wait
check_status
Expand Down Expand Up @@ -308,7 +323,7 @@ main() {
# 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}"
msg warn "${yellow}${is_core_name} 文件使用 > $is_core_file${none}"
}
# local dir install sh script
[[ $local_install ]] && {
Expand All @@ -324,10 +339,17 @@ main() {
# install dependent pkg
install_pkg $is_pkg &

# if wget installed. download core, sh, get ip
# jq
if [[ $(type -P jq) ]]; then
>$is_jq_ok
else
jq_not_found=1
fi
# if wget installed. download core, sh, jq, get ip
[[ $is_wget ]] && {
[[ ! $is_core_file ]] && download core &
[[ ! $local_install ]] && download sh &
[[ $jq_not_found ]] && download jq &
get_ip
}

Expand Down Expand Up @@ -377,14 +399,18 @@ main() {
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

# jq
[[ $jq_not_found ]] && mv -f $is_jq_ok /usr/bin/jq

# chmod
chmod +x $is_core_bin $is_sh_bin /usr/bin/jq

# create log dir
mkdir -p $is_log_dir
Expand Down
4 changes: 4 additions & 0 deletions src/caddy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ caddy_config() {
# for more info, see https://233boy.com/$is_core/caddy-auto-tls/
# 不要编辑这个文件 #
# 更多相关请阅读此文章: https://233boy.com/$is_core/caddy-auto-tls/
# https://caddyserver.com/docs/caddyfile/options
{
admin off
}
import $is_caddy_conf/*.conf
import $is_caddy_dir/sites/*.conf
EOF
Expand Down
27 changes: 20 additions & 7 deletions src/core.sh
Original file line number Diff line number Diff line change
Expand Up @@ -125,8 +125,8 @@ get_uuid() {

get_ip() {
[[ $ip || $is_no_auto_tls || $is_gen ]] && return
export "$(_wget -4 -qO- https://www.cloudflare.com/cdn-cgi/trace | grep ip=)" &>/dev/null
[[ ! $ip ]] && export "$(_wget -6 -qO- https://www.cloudflare.com/cdn-cgi/trace | grep ip=)" &>/dev/null
export "$(_wget -4 -qO- https://cloudflare-dns.com/cdn-cgi/trace | grep ip=)" &>/dev/null
[[ ! $ip ]] && export "$(_wget -6 -qO- https://cloudflare-dns.com/cdn-cgi/trace | grep ip=)" &>/dev/null
[[ ! $ip ]] && {
err "获取服务器 IP 失败.."
}
Expand Down Expand Up @@ -1061,7 +1061,7 @@ add() {
fi

if [[ $is_use_tls ]]; then
if [[ ! $is_no_auto_tls && ! $is_caddy ]]; then
if [[ ! $is_no_auto_tls && ! $is_caddy && ! $is_gen ]]; then
# test auto tls
[[ $(is_test port_used 80) || $(is_test port_used 443) ]] && {
warn "端口 (80 或 443) 已经被占用, 无法完成自动配置 TLS. 请考虑使用 no-auto-tls"
Expand Down Expand Up @@ -1383,9 +1383,12 @@ get() {
[[ $? != 0 ]] && err "无法生成 Shadowsocks 2022 密码, 请安装 openssl."
;;
ping)
is_ip_type="-4"
[[ $(grep ":" <<<$ip) ]] && is_ip_type="-6"
is_host_dns=$(ping $host $is_ip_type -c 1 -W 2 | head -1)
# is_ip_type="-4"
# [[ $(grep ":" <<<$ip) ]] && is_ip_type="-6"
# is_host_dns=$(ping $host $is_ip_type -c 1 -W 2 | head -1)
is_dns_type="a"
[[ $(grep ":" <<<$ip) ]] && is_dns_type="aaaa"
is_host_dns=$(_wget -qO- --header="accept: application/dns-json" "https://cloudflare-dns.com/dns-query?name=$host&type=$is_dns_type")
;;
log | logerr)
msg "\n 提醒: 按 $(_green Ctrl + C) 退出\n"
Expand Down Expand Up @@ -1760,7 +1763,7 @@ main() {
msg "fix: $v"
change $v full
done
msg "\nfix 完成.\n"
_green "\nfix 完成.\n"
;;
*)
is_dont_auto_exit=1
Expand All @@ -1785,6 +1788,16 @@ main() {
fix-config.json)
create config.json
;;
fix-caddyfile)
if [[ $is_caddy ]]; then
load caddy.sh
caddy_config new
manage restart caddy &
_green "\nfix 完成.\n"
else
err "无法执行此操作"
fi
;;
i | info)
info $2
;;
Expand Down
4 changes: 4 additions & 0 deletions src/download.sh
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,10 @@ download() {
# https://github.com/caddyserver/caddy/releases/download/v2.6.4/caddy_2.6.4_linux_amd64.tar.gz
link="https://github.com/${is_caddy_repo}/releases/download/${latest_ver}/caddy_${latest_ver:1}_linux_${caddy_arch}.tar.gz"
download_file
[[ ! $(type -P tar) ]] && {
rm -rf $tmpdir
err "请安装 tar"
}
tar zxf $tmpfile -C $tmpdir
cp -f $tmpdir/caddy $is_caddy_bin
chmod +x $is_caddy_bin
Expand Down
1 change: 1 addition & 0 deletions src/help.sh
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ show_help() {
" dd, ddel [name...] 删除多个配置**"
" fix [name] 修复一个配置"
" fix-all 修复全部配置"
" fix-caddyfile 修复 Caddyfile"
" fix-config.json 修复 config.json\n"
"管理:"
" un, uninstall 卸载"
Expand Down
2 changes: 1 addition & 1 deletion src/init.sh
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ load() {
# wget add --no-check-certificate
_wget() {
# [[ $proxy ]] && export https_proxy=$proxy
wget --no-check-certificate $@
wget --no-check-certificate "$@"
}

load core.sh
Expand Down
2 changes: 1 addition & 1 deletion v2ray.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

args=$@
is_sh_ver=v4.12
is_sh_ver=v4.13

. /etc/v2ray/sh/src/init.sh

0 comments on commit 83d1e04

Please sign in to comment.