-
-
Notifications
You must be signed in to change notification settings - Fork 743
/
install.sh
executable file
·220 lines (179 loc) · 6.72 KB
/
install.sh
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
#!/bin/bash
cd $(dirname -- "$0")
source ./common/utils.sh
NAME="0-install"
LOG_FILE="$(log_file $NAME)"
# Fix the installation directory
if [ ! -d "/opt/hiddify-manager/" ] && [ -d "/opt/hiddify-server/" ]; then
mv /opt/hiddify-server /opt/hiddify-manager
ln -s /opt/hiddify-manager /opt/hiddify-server
fi
if [ ! -d "/opt/hiddify-manager/" ] && [ -d "/opt/hiddify-config/" ]; then
mv /opt/hiddify-config/ /opt/hiddify-manager/
ln -s /opt/hiddify-manager /opt/hiddify-config
fi
export DEBIAN_FRONTEND=noninteractive
if [ "$(id -u)" -ne 0 ]; then
echo 'This script must be run by root' >&2
exit 1
fi
function main() {
update_progress "Please wait..." "We are going to install Hiddify..." 0
export ERROR=0
export PROGRESS_ACTION="Installing..."
if [ "$MODE" == "apply_users" ];then
export DO_NOT_INSTALL="true"
elif [ -d "/hiddify-data-default/" ] && [ -z "$(ls -A /hiddify-data/ 2>/dev/null)" ]; then
cp -r /hiddify-data-default/* /hiddify-data/
fi
if [ "$DO_NOT_INSTALL" == "true" ];then
PROGRESS_ACTION="Applying..."
fi
if [ "$HIDDIFY_DEBUG" = "1" ]; then
export USE_VENV=true
install_python
else
activate_python_venv
fi
if [ "$MODE" != "apply_users" ]; then
clean_files
update_progress "${PROGRESS_ACTION}" "Common Tools and Requirements" 2
runsh install.sh common
install_run other/redis
install_run other/mysql
# Because we need to generate reality pair in panel
# is_installed xray || bash -c "$(curl -L https://github.com/XTLS/Xray-install/raw/main/install-release.sh)" @ install --version 1.8.4
install_run hiddify-panel
fi
# source common/set_config_from_hpanel.sh
update_progress "HiddifyPanel" "Reading Configs from Panel..." 5
set_config_from_hpanel
update_progress "Applying Configs" "..." 8
bash common/replace_variables.sh
if [ "$MODE" != "apply_users" ]; then
bash ./other/deprecated/remove_deprecated.sh
update_progress "Configuring..." "System and Firewall settings" 10
runsh run.sh common
update_progress "${PROGRESS_ACTION}" "Nginx" 15
install_run nginx
update_progress "${PROGRESS_ACTION}" "Haproxy for Spliting Traffic" 20
install_run haproxy
update_progress "${PROGRESS_ACTION}" "Getting Certificates" 30
install_run acme.sh
update_progress "${PROGRESS_ACTION}" "Personal SpeedTest" 35
install_run other/speedtest $(hconfig "speed_test")
update_progress "${PROGRESS_ACTION}" "Telegram Proxy" 40
install_run other/telegram $(hconfig "telegram_enable")
update_progress "${PROGRESS_ACTION}" "FakeTlS Proxy" 45
install_run other/ssfaketls $(hconfig "ssfaketls_enable")
# update_progress "${PROGRESS_ACTION}" "V2ray WS Proxy" 50
# install_run other/v2ray $ENABLE_V2RAY
update_progress "${PROGRESS_ACTION}" "SSH Proxy" 55
install_run other/ssh $(hconfig "ssh_server_enable")
#update_progress "${PROGRESS_ACTION}" "ShadowTLS" 60
#install_run other/shadowtls $(hconfig "shadowtls_enable")
update_progress "${PROGRESS_ACTION}" "Xray" 70
if [[ $(hconfig "core_type") == "xray" ]];then
install_run xray 1
else
install_run xray 0
fi
update_progress "${PROGRESS_ACTION}" "Warp" 75
if [[ $(hconfig "warp_mode") != "disable" ]];then
install_run other/warp 1
else
install_run other/warp 0
fi
update_progress "${PROGRESS_ACTION}" "HiddifyCli" 90
install_run other/hiddify-cli $(hconfig "hiddifycli_enable")
fi
update_progress "${PROGRESS_ACTION}" "Wireguard" 85
install_run other/wireguard $(hconfig "wireguard_enable")
update_progress "${PROGRESS_ACTION}" "Singbox" 95
install_run singbox
update_progress "${PROGRESS_ACTION}" "Almost Finished" 98
echo "---------------------Finished!------------------------"
remove_lock $NAME
if [ "$MODE" != "apply_users" ]; then
systemctl kill -s SIGTERM hiddify-panel
fi
systemctl start hiddify-panel
update_progress "${PROGRESS_ACTION}" "Done" 100
}
function clean_files() {
rm -rf log/system/xray*
rm -rf /opt/hiddify-manager/xray/configs/*.json
rm -rf /opt/hiddify-manager/singbox/configs/*.json
rm -rf /opt/hiddify-manager/haproxy/*.cfg
find ./ -type f -name "*.template" -exec rm -f {} \;
}
function cleanup() {
error "Script interrupted. Exiting..."
# disable_ansii_modes
remove_lock $NAME
exit 9
}
# Trap the Ctrl+C signal and call the cleanup function
trap cleanup SIGINT
function set_config_from_hpanel() {
reload_all_configs >/dev/null
if [[ $? != 0 ]]; then
error "Exception in Hiddify Panel. Please send the log to [email protected]"
exit 4
fi
export SERVER_IP=$(curl --connect-timeout 1 -s https://v4.ident.me/)
export SERVER_IPv6=$(curl --connect-timeout 1 -s https://v6.ident.me/)
}
function install_run() {
echo "==========================================================="
if [ "$MODE" == "install-docker" ];then
runsh install.sh $1
return
elif [ "$DO_NOT_INSTALL" != "true" ];then
runsh install.sh $@
if [ "$MODE" != "apply_users" ]; then
systemctl daemon-reload
fi
fi
runsh run.sh $@
echo "==========================================================="
}
function runsh() {
command=$1
if [[ $3 == "false" || $3 == "0" ]]; then
command=disable.sh
fi
pushd $2 >>/dev/null
# if [[ $? != 0]];then
# echo "$2 not found"
# fi
if [[ $? == 0 && -f $command ]]; then
echo "===$command $2"
bash $command
fi
popd >>/dev/null
}
if [[ " $@ " == *" --no-gui "* ]]; then
set -- "${@/--no-gui/}"
export MODE="$1"
set_lock $NAME
if [[ " $@ " == *" --no-log "* ]]; then
set -- "${@/--no-log/}"
main
else
main |& tee $LOG_FILE
fi
error_code=$?
remove_lock $NAME
else
show_progress_window --subtitle $(get_installed_config_version) --log $LOG_FILE ./install.sh $@ --no-gui --no-log
error_code=$?
if [[ $error_code != "0" ]]; then
# echo less -r -P"Installation Failed! Press q to exit" +G "$log_file"
msg_with_hiddify "Installation Failed! $error_code"
else
msg_with_hiddify "The installation has successfully completed."
check_hiddify_panel $@ |& tee -a $LOG_FILE
fi
fi
exit $error_code