blob: c7f42be4e83828d9dc44d5ff85adf1232b2b51ba (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
|
#!/bin/sh
ROFI_CMD="rofi -dmenu -theme-str listview{enabled:false;} -p"
LOCAL_STORAGE=~/.local/share/toggle
TMP_PATH=/tmp/vpn-status
V2RAYA_URL="http://localhost:2017"
DBUS_INTERFACE="com.vpn_status"
DBUS_MEMBER="StatusChanged"
set_token() {
login=$(echo "" | $ROFI_CMD "Enter login > ")
password=$(echo "" | $ROFI_CMD "Enter password > " -theme-str 'entry {enabled: false;}')
response=$(curl -s -X POST \
"${V2RAYA_URL}/api/login" \
-d "{\"username\": \"${login}\", \"password\": \"${password}\"}")
code=$(echo $response | jq -r ".code")
echo "${response}" | jq ".data.token" -r > "${LOCAL_STORAGE}/token"
}
get_status() {
token=$1
response=$(curl -s -X GET \
"${V2RAYA_URL}/api/touch" \
-H "Authorization: ${token}")
echo $response | jq ".data.running" -r
}
toggle() {
token=$1
method=$2
response=$(curl -s -X ${method} \
"${V2RAYA_URL}/api/v2ray" \
-H "Authorization: ${token}")
code=$(echo $response | jq ".code" -r)
echo $response | jq ".data.running" -r
}
check_status() {
case $(cat $TMP_PATH) in
true)
output='{"text": ""}'
;;
*)
output='{"text": ""}'
;;
esac
echo $output | jq --unbuffered --compact-output
}
if [[ ! -d "${LOCAL_STORAGE}" ]]; then
mkdir "${LOCAL_STORAGE}"
fi
if [[ ! -e "${LOCAL_STORAGE}/token" ]]; then
touch "${LOCAL_STORAGE}/token"
fi
TOKEN=$(cat "${LOCAL_STORAGE}/token")
if [[ -z "${TOKEN}" ]]; then
set_token
TOKEN=$(cat "${LOCAL_STORAGE}/token")
fi
STATUS=$(get_status $TOKEN)
echo $STATUS > $TMP_PATH
if [[ $1 == "waybar" ]]; then
check_status
dbus-monitor --profile "interface='${DBUS_INTERFACE}',member='${DBUS_MEMBER}'" |
while read -r line; do
check_status
done
else
if [[ $STATUS == "true" ]]; then
NEW_STATUS=$(toggle $TOKEN DELETE)
else
NEW_STATUS=$(toggle $TOKEN POST)
fi
if [[ $NEW_STATUS == "null" ]]; then
set_token
exit 0
fi
echo $NEW_STATUS > $TMP_PATH
dbus-send --type=signal / "${DBUS_INTERFACE}.${DBUS_MEMBER}"
notify-send v2rayA "running: ${NEW_STATUS}"
fi
|