mirror of
https://github.com/bolucat/Archive.git
synced 2026-04-22 16:07:49 +08:00
85 lines
2.4 KiB
Bash
Executable File
85 lines
2.4 KiB
Bash
Executable File
#!/bin/sh
|
|
|
|
. /usr/share/passwall/utils.sh
|
|
|
|
test_url() {
|
|
local url=$1
|
|
local try=1
|
|
[ -n "$2" ] && try=$2
|
|
local timeout=2
|
|
[ -n "$3" ] && timeout=$3
|
|
local extra_params=$4
|
|
curl --help all | grep "\-\-retry-all-errors" > /dev/null
|
|
[ $? == 0 ] && extra_params="--retry-all-errors ${extra_params}"
|
|
status=$(/usr/bin/curl -I -o /dev/null -skL $extra_params --connect-timeout ${timeout} --retry ${try} -w %{http_code} "$url")
|
|
case "$status" in
|
|
204|\
|
|
200)
|
|
status=200
|
|
;;
|
|
esac
|
|
echo $status
|
|
}
|
|
|
|
test_proxy() {
|
|
result=0
|
|
status=$(test_url "https://www.google.com/generate_204" ${retry_num} ${connect_timeout})
|
|
if [ "$status" = "200" ]; then
|
|
result=0
|
|
else
|
|
status2=$(test_url "https://www.baidu.com" ${retry_num} ${connect_timeout})
|
|
if [ "$status2" = "200" ]; then
|
|
result=1
|
|
else
|
|
result=2
|
|
ping -c 3 -W 1 223.5.5.5 > /dev/null 2>&1
|
|
[ $? -eq 0 ] && {
|
|
result=1
|
|
}
|
|
fi
|
|
fi
|
|
echo $result
|
|
}
|
|
|
|
url_test_node() {
|
|
result=0
|
|
local node_id=$1
|
|
local _type=$(echo $(config_n_get ${node_id} type) | tr 'A-Z' 'a-z')
|
|
[ -n "${_type}" ] && {
|
|
if [ "${_type}" == "socks" ]; then
|
|
local _address=$(config_n_get ${node_id} address)
|
|
local _port=$(config_n_get ${node_id} port)
|
|
[ -n "${_address}" ] && [ -n "${_port}" ] && {
|
|
local curlx="socks5h://${_address}:${_port}"
|
|
local _username=$(config_n_get ${node_id} username)
|
|
local _password=$(config_n_get ${node_id} password)
|
|
[ -n "${_username}" ] && [ -n "${_password}" ] && curlx="socks5h://${_username}:${_password}@${_address}:${_port}"
|
|
}
|
|
else
|
|
local _tmp_port=$(get_new_port 48900 tcp,udp)
|
|
NO_REC_PROCESS=1 /usr/share/${CONFIG}/app.sh run_socks flag="url_test_${node_id}" node=${node_id} bind=127.0.0.1 socks_port=${_tmp_port} config_file=url_test_${node_id}.json
|
|
local curlx="socks5h://127.0.0.1:${_tmp_port}"
|
|
fi
|
|
sleep 2s
|
|
local probeUrl=$(config_t_get global_other url_test_url https://www.google.com/generate_204)
|
|
result=$(curl --connect-timeout 3 --max-time 5 -o /dev/null -I -skL -w "%{http_code}:%{time_pretransfer}" -x ${curlx} "${probeUrl}")
|
|
# 结束 SS 插件进程
|
|
local pid_file="/tmp/etc/${CONFIG}/url_test_${node_id}_plugin.pid"
|
|
[ -s "$pid_file" ] && kill -9 "$(head -n 1 "$pid_file")" >/dev/null 2>&1
|
|
pgrep -af "url_test_${node_id}" | awk '! /test\.sh/{print $1}' | xargs kill -9 >/dev/null 2>&1
|
|
rm -rf /tmp/etc/${CONFIG}/*url_test_${node_id}*.*
|
|
}
|
|
echo $result
|
|
}
|
|
|
|
arg1=$1
|
|
shift
|
|
case $arg1 in
|
|
test_url)
|
|
test_url $@
|
|
;;
|
|
url_test_node)
|
|
url_test_node $@
|
|
;;
|
|
esac
|