forked from ToyoDAdoubi/doubi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pserver.sh
376 lines (368 loc) · 12.6 KB
/
pserver.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
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
#!/usr/bin/env bash
PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:~/bin
export PATH
#=================================================
# System Required: CentOS/Debian/Ubuntu
# Description: Peerflix Server
# Version: 1.1.0
# Author: Toyo
# Blog: https://doub.io/wlzy-13/
#=================================================
sh_ver="1.1.0"
node_ver="v8.11.3"
node_file="/etc/node"
ps_file="/etc/node/lib/node_modules/peerflix-server"
conf_file="/etc/peerflix-server"
ps_conf="/etc/peerflix-server/peerflix-server.conf"
ps_log="/tmp/peerflix-server.log"
bt_port="6881"
Green_font_prefix="\033[32m" && Red_font_prefix="\033[31m" && Green_background_prefix="\033[42;37m" && Red_background_prefix="\033[41;37m" && Font_color_suffix="\033[0m"
Info="${Green_font_prefix}[信息]${Font_color_suffix}"
Error="${Red_font_prefix}[错误]${Font_color_suffix}"
Tip="${Green_font_prefix}[注意]${Font_color_suffix}"
check_root(){
[[ $EUID != 0 ]] && echo -e "${Error} 当前非ROOT账号(或没有ROOT权限),无法继续操作,请更换ROOT账号或使用 ${Green_background_prefix}sudo su${Font_color_suffix} 命令获取临时ROOT权限(执行后可能会提示输入当前账号的密码)。" && exit 1
}
#检查系统
check_sys(){
if [[ -f /etc/redhat-release ]]; then
release="centos"
elif cat /etc/issue | grep -q -E -i "debian"; then
release="debian"
elif cat /etc/issue | grep -q -E -i "ubuntu"; then
release="ubuntu"
elif cat /etc/issue | grep -q -E -i "centos|red hat|redhat"; then
release="centos"
elif cat /proc/version | grep -q -E -i "debian"; then
release="debian"
elif cat /proc/version | grep -q -E -i "ubuntu"; then
release="ubuntu"
elif cat /proc/version | grep -q -E -i "centos|red hat|redhat"; then
release="centos"
fi
bit=$(uname -m)
}
check_installed_status(){
[[ ! -e ${ps_file} ]] && echo -e "${Error} Peerflix Server 没有安装,请检查 !" && exit 1
}
check_pid(){
PID=$(ps -ef | grep peerflix-server | grep -v grep |grep -v "init.d" |grep -v "service" |awk '{print $2}')
}
Download_ps(){
echo -e "${Info} 开始安装 node-js ..."
if [[ ! -e ${node_file} ]]; then
cd /tmp
if [[ ${bit} == "x86_64" ]]; then
node_name="node-${node_ver}-linux-x64"
wget --no-check-certificate -O node.tar.xz "https://nodejs.org/dist/${node_ver}/node-${node_ver}-linux-x64.tar.xz"
else
node_name="node-${node_ver}-linux-x86"
wget --no-check-certificate -O node.tar.xz "https://nodejs.org/dist/${node_ver}/node-${node_ver}-linux-x86.tar.xz"
fi
[[ ! -e "node.tar.xz" ]] && echo -e "${Error} Peerflix Server 压缩包下载失败 !" && Download_shanhou 0
xz -d node.tar.xz
[[ ! -e "node.tar" ]] && echo -e "${Error} Peerflix Server 解压失败(可能是 压缩包损坏 或者 没有安装 XZ) !" && Download_shanhou 1
tar -xvf "node.tar" -C "/etc"
[[ ! -e "node.tar" ]] && echo -e "${Error} Peerflix Server 解压失败(可能是 压缩包损坏 或者 没有安装 Tar) !" && Download_shanhou 2
mv "/etc/${node_name}" ${node_file}
[[ ! -e "${node_file}" ]] && echo -e "${Error} Peerflix Server 文件夹重命名失败!" && Download_shanhou 4
rm -rf "/tmp/node.tar.xz"
rm -rf "/tmp/node.tar"
ln -s ${node_file}/bin/node /usr/local/bin/node
ln -s ${node_file}/bin/npm /usr/local/bin/npm
echo -e "${Info} node-js 安装完成,开始安装 peerflix-server ..."
else
echo -e "${Info} node-js 已安装,开始安装 peerflix-server ..."
fi
npm install -g peerflix-server
if [[ ! -e ${ps_file} ]]; then
echo -e "${Error} Peerflix Server 安装失败,请检查 !" && exit 1
else
echo -e "${Info} Peerflix Server 安装成功,继续..."
fi
}
Download_shanhou(){
if [[ $1 == 0 ]]; then
rm -rf ${conf_file}
elif [[ $1 == 1 ]]; then
rm -rf ${conf_file}
rm -rf "/tmp/node.tar.xz"
elif [[ $1 == 2 ]]; then
rm -rf ${conf_file}
rm -rf "/tmp/node.tar.xz"
rm -rf "/tmp/node.tar"
elif [[ $1 == 3 ]]; then
rm -rf ${conf_file}
rm -rf "/tmp/node.tar.xz"
rm -rf "/tmp/node.tar"
rm -rf "/etc/node-${node_ver}-linux-x64"
elif [[ $1 == 4 ]]; then
rm -rf ${conf_file}
rm -rf "/tmp/node.tar.xz"
rm -rf "/tmp/node.tar"
rm -rf "/etc/node-${node_ver}-linux-x86"
fi
exit 1
}
Service_ps(){
if [[ ${release} = "centos" ]]; then
if ! wget --no-check-certificate "https://raw.githubusercontent.com/ToyoDAdoubi/doubi/master/service/pserver_centos" -O /etc/init.d/pserver; then
echo -e "${Error} Peerflix Server服务 管理脚本下载失败 !" && exit 1
fi
chmod +x /etc/init.d/pserver
chkconfig --add pserver
chkconfig pserver on
else
if ! wget --no-check-certificate "https://raw.githubusercontent.com/ToyoDAdoubi/doubi/master/service/pserver_debian" -O /etc/init.d/pserver; then
echo -e "${Error} Peerflix Server服务 管理脚本下载失败 !" && exit 1
fi
chmod +x /etc/init.d/pserver
update-rc.d -f pserver defaults
fi
echo -e "${Info} Peerflix Server服务 管理脚本下载完成 !"
}
Installation_dependency(){
xz_ver=$(xz -V)
tar_ver=$(tar --version)
[[ -z ${xz_ver} ]] && pack_name="xz "
[[ -z ${tar_ver} ]] && pack_name="${pack_name}tar"
if [[ ! -z ${pack_name} ]]; then
if [[ ${release} == "centos" ]]; then
yum update
yum install -y ${pack_name}
else
apt-get update
apt-get install -y ${pack_name}
fi
fi
mkdir "${conf_file}"
}
Write_config(){
echo -e "port = ${ps_port}" > ${ps_conf}
}
Read_config(){
[[ ! -e ${ps_conf} ]] && echo -e "${Error} Peerflix Server 配置文件不存在 !" && exit 1
port=`cat ${ps_conf}|grep "port = "|awk -F "port = " '{print $NF}'`
}
Set_port(){
while true
do
echo -e "请输入 Peerflix Server 监听端口 [1-65535](如果是绑定的域名,那么建议80端口)"
read -e -p "(默认端口: 9000):" ps_port
[[ -z "${ps_port}" ]] && ps_port="9000"
echo $((${ps_port}+0)) &>/dev/null
if [[ $? -eq 0 ]]; then
if [[ ${ps_port} -ge 1 ]] && [[ ${ps_port} -le 65535 ]]; then
echo && echo "========================"
echo -e " 端口 : ${Red_background_prefix} ${ps_port} ${Font_color_suffix}"
echo "========================" && echo
break
else
echo "输入错误, 请输入正确的端口。"
fi
else
echo "输入错误, 请输入正确的端口。"
fi
done
}
Set_ps(){
check_installed_status
Set_port
Read_config
Del_iptables
Write_config
Add_iptables
Save_iptables
Restart_ps
}
Install_ps(){
check_root
[[ -e ${ps_file} ]] && echo -e "${Error} 检测到 Peerflix Server 已安装 !" && exit 1
check_sys
echo -e "${Info} 开始设置 用户配置..."
Set_port
echo -e "${Info} 开始安装/配置 依赖..."
Installation_dependency
echo -e "${Info} 开始下载/安装..."
Download_ps
echo -e "${Info} 开始下载/安装 服务脚本(init)..."
Service_ps
echo -e "${Info} 开始写入 配置文件..."
Write_config
echo -e "${Info} 开始设置 iptables防火墙..."
Set_iptables
echo -e "${Info} 开始添加 iptables防火墙规则..."
Add_iptables
echo -e "${Info} 开始保存 iptables防火墙规则..."
Save_iptables
echo -e "${Info} 所有步骤 安装完毕,开始启动..."
Start_ps
}
Start_ps(){
check_installed_status
check_pid
[[ ! -z ${PID} ]] && echo -e "${Error} Peerflix Server 正在运行,请检查 !" && exit 1
/etc/init.d/pserver start
}
Stop_ps(){
check_installed_status
check_pid
[[ -z ${PID} ]] && echo -e "${Error} Peerflix Server 没有运行,请检查 !" && exit 1
/etc/init.d/pserver stop
}
Restart_ps(){
check_installed_status
check_pid
[[ ! -z ${PID} ]] && /etc/init.d/pserver stop
/etc/init.d/pserver start
}
Log_ps(){
[[ ! -e "${ps_log}" ]] && echo -e "${Error} Peerflix Server 日志文件不存在 !" && exit 1
echo && echo -e "${Tip} 按 ${Red_font_prefix}Ctrl+C${Font_color_suffix} 终止查看日志" && echo -e "如果需要查看完整日志内容,请用 ${Red_font_prefix}cat ${ps_log}${Font_color_suffix} 命令。" && echo
tail -f "${ps_log}"
}
Uninstall_ps(){
check_installed_status
echo "确定要卸载 Peerflix Server ? (y/N)"
echo
read -e -p "(默认: n):" unyn
[[ -z ${unyn} ]] && unyn="n"
if [[ ${unyn} == [Yy] ]]; then
check_pid
[[ ! -z $PID ]] && kill -9 ${PID}
port=`cat ${ps_conf}|grep "port = "|awk -F "port = " '{print $NF}'`
Del_iptables
rm -rf /usr/local/bin/node
rm -rf /usr/local/bin/npm
rm -rf ${node_file}
rm -rf ${conf_file}
rm -rf /etc/init.d/pserver
if [[ ${release} = "centos" ]]; then
chkconfig --del pserver
else
update-rc.d -f pserver remove
fi
echo && echo "Peerflix Server 卸载完成 !" && echo
else
echo && echo "卸载已取消..." && echo
fi
}
View_ps(){
check_installed_status
Read_config
ip=$(wget -qO- -t1 -T2 ipinfo.io/ip)
if [[ -z "${ip}" ]]; then
ip=$(wget -qO- -t1 -T2 api.ip.sb/ip)
if [[ -z "${ip}" ]]; then
ip=$(wget -qO- -t1 -T2 members.3322.org/dyndns/getip)
if [[ -z "${ip}" ]]; then
ip="VPS_IP"
fi
fi
fi
clear && echo "————————————————" && echo
echo -e " Peerflix Server 信息 :" && echo
echo -e " 地址\t: ${Green_font_prefix}http://${ip}:${port}${Font_color_suffix}"
echo && echo "————————————————"
}
Add_iptables(){
iptables -I INPUT -m state --state NEW -m tcp -p tcp --dport ${ps_port} -j ACCEPT
iptables -I INPUT -m state --state NEW -m udp -p udp --dport ${ps_port} -j ACCEPT
iptables -I INPUT -m state --state NEW -m tcp -p tcp --dport ${bt_port} -j ACCEPT
iptables -I INPUT -m state --state NEW -m udp -p udp --dport ${bt_port} -j ACCEPT
iptables -I OUTPUT -m state --state NEW -m tcp -p tcp --dport ${bt_port} -j ACCEPT
iptables -I OUTPUT -m state --state NEW -m udp -p udp --dport ${bt_port} -j ACCEPT
}
Del_iptables(){
iptables -D INPUT -m state --state NEW -m tcp -p tcp --dport ${port} -j ACCEPT
iptables -D INPUT -m state --state NEW -m udp -p udp --dport ${port} -j ACCEPT
iptables -D INPUT -m state --state NEW -m tcp -p tcp --dport ${bt_port} -j ACCEPT
iptables -D INPUT -m state --state NEW -m udp -p udp --dport ${bt_port} -j ACCEPT
iptables -D OUTPUT -m state --state NEW -m tcp -p tcp --dport ${bt_port} -j ACCEPT
iptables -D OUTPUT -m state --state NEW -m udp -p udp --dport ${bt_port} -j ACCEPT
}
Save_iptables(){
if [[ ${release} == "centos" ]]; then
service iptables save
else
iptables-save > /etc/iptables.up.rules
fi
}
Set_iptables(){
if [[ ${release} == "centos" ]]; then
service iptables save
chkconfig --level 2345 iptables on
else
iptables-save > /etc/iptables.up.rules
echo -e '#!/bin/bash\n/sbin/iptables-restore < /etc/iptables.up.rules' > /etc/network/if-pre-up.d/iptables
chmod +x /etc/network/if-pre-up.d/iptables
fi
}
Update_Shell(){
sh_new_ver=$(wget --no-check-certificate -qO- -t1 -T3 "https://raw.githubusercontent.com/ToyoDAdoubi/doubi/master/pserver.sh"|grep 'sh_ver="'|awk -F "=" '{print $NF}'|sed 's/\"//g'|head -1) && sh_new_type="github"
[[ -z ${sh_new_ver} ]] && echo -e "${Error} 无法链接到 Github !" && exit 0
if [[ -e "/etc/init.d/pserver" ]]; then
rm -rf /etc/init.d/pserver
Service_ps
fi
wget -N --no-check-certificate "https://raw.githubusercontent.com/ToyoDAdoubi/doubi/master/pserver.sh" && chmod +x pserver.sh
echo -e "脚本已更新为最新版本[ ${sh_new_ver} ] !(注意:因为更新方式为直接覆盖当前运行的脚本,所以可能下面会提示一些报错,无视即可)" && exit 0
}
echo && echo -e " Peerflix Server 一键管理脚本 ${Red_font_prefix}[v${sh_ver}]${Font_color_suffix}
---- Toyo | doub.io/wlzy-13/ ----
${Green_font_prefix}0.${Font_color_suffix} 升级脚本
${Green_font_prefix}1.${Font_color_suffix} 安装 Peerflix Server
${Green_font_prefix}2.${Font_color_suffix} 卸载 Peerflix Server
————————————
${Green_font_prefix}3.${Font_color_suffix} 启动 Peerflix Server
${Green_font_prefix}4.${Font_color_suffix} 停止 Peerflix Server
${Green_font_prefix}5.${Font_color_suffix} 重启 Peerflix Server
————————————
${Green_font_prefix}6.${Font_color_suffix} 设置 Peerflix Server 端口
${Green_font_prefix}7.${Font_color_suffix} 查看 Peerflix Server 信息
${Green_font_prefix}8.${Font_color_suffix} 查看 Peerflix Server 日志
————————————" && echo
if [[ -e ${ps_file} ]]; then
check_pid
if [[ ! -z "${PID}" ]]; then
echo -e " 当前状态: ${Green_font_prefix}已安装${Font_color_suffix} 并 ${Green_font_prefix}已启动${Font_color_suffix}"
else
echo -e " 当前状态: ${Green_font_prefix}已安装${Font_color_suffix} 但 ${Red_font_prefix}未启动${Font_color_suffix}"
fi
else
echo -e " 当前状态: ${Red_font_prefix}未安装${Font_color_suffix}"
fi
echo
read -e -p " 请输入数字 [0-8]:" num
case "$num" in
0)
Update_Shell
;;
1)
Install_ps
;;
2)
Uninstall_ps
;;
3)
Start_ps
;;
4)
Stop_ps
;;
5)
Restart_ps
;;
6)
Set_ps
;;
7)
View_ps
;;
8)
Log_ps
;;
*)
echo "请输入正确数字 [0-8]"
;;
esac