-
Notifications
You must be signed in to change notification settings - Fork 192
/
file_manager.sh
291 lines (249 loc) · 9.33 KB
/
file_manager.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
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
#!/bin/bash
# 定义当前版本号
fm_SCRIPT_VERSION="1.0.8"
# 检查是否提供了扩展名参数
if [ -z "$1" ]; then
echo "用法: $0 <文件扩展名> [<目录路径>]"
exit 1
fi
fm_EXTENSION="$1"
fm_WORKDIR="${2:-$(pwd)}"
# 检查目录是否存在
if [ ! -d "$fm_WORKDIR" ]; then
echo -e "\n"
log_echo "${Error} ${RedBG} 目录 $fm_WORKDIR 不存在 请检查路径 ${Font}"
exit 1
fi
# 保存当前工作目录
fm_original_dir=$(pwd)
# 切换到工作目录
cd "$fm_WORKDIR"
# 函数: 列出当前目录下所有指定扩展名的文件
fm_list_files() {
local max_length
log_echo "${GreenBG} 列出所有 .$fm_EXTENSION 文件 ${Font}"
# 设置 dotglob 选项,使通配符 * 包括以点开头的文件
shopt -s dotglob
# 使用数组存储匹配到的文件
files=(*.$fm_EXTENSION)
if [ ${#files[@]} -eq 0 ]; then
log_echo "${Warning} ${YellowBG} 没有找到 .$fm_EXTENSION 文件 ${Font}"
return 1
else
# 计算最大文件名长度
local max_length=0
for file in "${files[@]}"; do
local length=${#file}
if (( length > max_length )); then
max_length=$length
fi
done
# 确保最小宽度为 10
if (( max_length < 10 )); then
max_length=10
fi
# 计算总宽度(包括边框)
local total_width=$((max_length + 10))
# 打印表头
printf "%-${total_width}s\n" "$(printf '%*s' "$total_width" | tr ' ' '-')"
# 居中文本
local header_text="文件名"
local header_length=${#header_text}
local padding=$(( (total_width - header_length - 4) / 2 ))
local left_padding=$(( padding - 4 )) # 加上序号列的宽度
local right_padding=$(( padding - 4 ))
printf "| %-4s | %-${left_padding}s%-${header_length}s%-${right_padding}s |\n" "序号" "" "$header_text" ""
printf "%-${total_width}s\n" "$(printf '%*s' "$total_width" | tr ' ' '-')"
# 打印文件名
local index=1
for file in "${files[@]}"; do
printf "| %4d | %-*s |\n" $index $((max_length)) "$file"
((index++))
done
# 打印底部边框
printf "%-${total_width}s\n" "$(printf '%*s' "$total_width" | tr ' ' '-')"
return 0
fi
}
# 函数: 创建一个新的 serverNames 文件
fm_create_servername_file() {
local url
fm_list_files
echo -e "\n"
log_echo "${Green} 请输入网址 (例如 hey.run)"
log_echo "${Green} 不要包含 http:// 或 https:// 开头 ${Font}"
read_optimize "请输入: " url
if [[ $url =~ ^(http|https):// ]]; then
echo -e "\n"
log_echo "${Error} ${RedBG} 网址不能包含 http:// 或 https:// 开头 ${Font}"
return
fi
echo "${url} reality;" > "${url}.serverNames"
log_echo "${OK} ${GreenBG} 文件 ${url}.serverNames 已创建 ${Font}"
fm_restart_nginx_and_check_status
fm_list_files
}
# 函数: 创建一个新的 wsServers 或 grpcServers 文件
fm_create_ws_or_grpc_server_file() {
local host port weight content firewall_set_fq
fm_list_files
read_optimize "请输入主机 (host): " host
read_optimize "请输入端口 (port): " port "" 1 65535
read_optimize "请输入权重 (0~100 默认值 50): " weight "50" 0 100
content="server ${host}:${port} weight=${weight} max_fails=2 fail_timeout=10;"
echo "$content" > "${host}.${fm_EXTENSION}"
log_echo "${OK} ${GreenBG} 文件 ${host}.${fm_EXTENSION} 已创建 ${Font}"
# 询问是否需要修改防火墙
echo -e "\n"
log_echo "${GreenBG} 是否需要设置防火墙 [Y/${Red}N${Font}${GreenBG}]? ${Font}"
read -r firewall_set_fq
case $firewall_set_fq in
[yY][eE][sS] | [yY])
if [[ "${ID}" == "centos" ]]; then
pkg_install "iptables-services"
else
pkg_install "iptables-persistent"
fi
iptables -I INPUT -p tcp --dport ${port} -j ACCEPT
iptables -I INPUT -p udp --dport ${port} -j ACCEPT
iptables -I OUTPUT -p tcp --sport ${port} -j ACCEPT
iptables -I OUTPUT -p udp --sport ${port} -j ACCEPT
log_echo "${OK} ${GreenBG} 防火墙 追加 完成 ${Font}"
if [[ "${ID}" == "centos" && ${VERSION_ID} -ge 7 ]]; then
service iptables save
service iptables restart
log_echo "${OK} ${GreenBG} 防火墙 重启 完成 ${Font}"
else
netfilter-persistent save
systemctl restart iptables
log_echo "${OK} ${GreenBG} 防火墙 重启 完成 ${Font}"
fi
;;
*)
log_echo "${OK} ${GreenBG} 跳过防火墙设置 ${Font}"
;;
esac
fm_restart_nginx_and_check_status
fm_list_files
}
# 函数: 编辑一个已存在的指定扩展名的文件
fm_edit_file() {
fm_list_files
local num_files=${#files[@]}
local choice
read_optimize "请输入要编辑的文件编号 (1-$num_files): " choice "" 1 "$num_files"
local filename="${files[$((choice - 1))]}"
# 检查 vim 是否安装
if ! command -v vim &> /dev/null; then
log_echo "${Warning} ${YellowBG} vim 未安装 正在尝试安装 ${Font}"
pkg_install vim
fi
vim "$filename"
log_echo "${OK} ${GreenBG} 文件 $filename 已编辑 ${Font}"
fm_restart_nginx_and_check_status
}
# 函数: 删除一个已存在的指定扩展名的文件
fm_delete_file() {
if ! fm_list_files; then
return
fi
local num_files=${#files[@]}
local choice
read_optimize "请输入要删除的文件编号 (1-$num_files): " choice "" 1 "$num_files"
local filename="${files[$((choice - 1))]}"
rm "$filename"
log_echo "${OK} ${GreenBG} 文件 $filename 已删除 ${Font}"
fm_restart_nginx_and_check_status
fm_list_files
}
# 根据扩展名选择创建文件的方式
fm_create_file() {
case $fm_EXTENSION in
serverNames)
fm_create_servername_file
;;
wsServers|grpcServers)
fm_create_ws_or_grpc_server_file
;;
*)
echo -e "\n"
log_echo "${Error} ${RedBG} 不支持的文件扩展名 $fm_EXTENSION ${Font}"
;;
esac
}
# 主菜单循环
fm_main_menu() {
fm_list_files
while true; do
echo
log_echo "${GreenBG} 主菜单 ${Font}"
log_echo "1 ${Green}列出所有 $fm_EXTENSION 文件${Font}"
log_echo "2 ${Green}创建一个新的 $fm_EXTENSION 文件${Font}"
log_echo "3 ${Green}编辑一个已存在的 $fm_EXTENSION 文件${Font}"
log_echo "4 ${Green}删除一个已存在的 $fm_EXTENSION 文件${Font}"
log_echo "5 ${Green}退出${Font}"
local choice
read_optimize "请选择一个选项: " choice "" 1 5
case $choice in
1) fm_list_files ;;
2) fm_create_file ;;
3) fm_edit_file ;;
4) fm_delete_file ;;
5) source "$idleleo" ;;
*)
echo -e "\n"
log_echo "${Error} ${RedBG} 无效选项 请重试 ${Font}"
;;
esac
done
}
fm_check_for_updates() {
local latest_version
local update_choice
# 直接使用 curl 下载远程版本信息
latest_version=$(curl -s "$fm_remote_url" | grep 'fm_SCRIPT_VERSION=' | head -n 1 | sed 's/fm_SCRIPT_VERSION="//; s/"//')
if [ -n "$latest_version" ] && [ "$latest_version" != "$fm_SCRIPT_VERSION" ]; then
log_echo "${Warning} ${YellowBG} 新版本可用: $latest_version 当前版本: $fm_SCRIPT_VERSION ${Font}"
log_echo "${Warning} ${YellowBG} 请访问 https://github.com/hello-yunshu/Xray_bash_onekey 查看更新说明 ${Font}"
log_echo "${GreenBG} 是否要下载并安装新版本 [Y/${Red}N${Font}${GreenBG}]? ${Font}"
read -r update_choice
case $update_choice in
[yY][eE][sS] | [yY])
log_echo "${Info} ${Green} 正在下载新版本... ${Font}"
curl -sL "$fm_remote_url" -o "${idleleo_dir}/file_manager.sh"
if [ $? -eq 0 ]; then
chmod +x "${idleleo_dir}/file_manager.sh"
log_echo "${OK} ${Green} 下载完成,正在重新运行脚本... ${Font}"
bash "${idleleo}" --add-servernames
else
echo -e "\n"
log_echo "${Error} ${RedBG} 下载失败,请手动下载并安装新版本 ${Font}"
fi
;;
*)
log_echo "${OK} ${Green} 跳过更新 ${Font}"
;;
esac
else
log_echo "${OK} ${Green} 当前已经是最新版本: $fm_SCRIPT_VERSION ${Font}"
fi
}
fm_restart_nginx_and_check_status() {
if [[ -f ${nginx_systemd_file} ]]; then
systemctl restart nginx
if systemctl is-active --quiet nginx; then
echo -e "\n"
log_echo "${OK} ${GreenBG} Nginx 重启成功 ${Font}"
else
echo -e "\n"
log_echo "${Error} ${RedBG} Nginx 重启失败 请检查配置文件是否有误 ${Font}"
fm_edit_file
fi
fi
}
# 检查更新
fm_check_for_updates
# 运行主菜单
fm_main_menu
# 恢复原始工作目录
cd "$fm_original_dir" || exit 1