-
Notifications
You must be signed in to change notification settings - Fork 30
/
alist.sh
275 lines (244 loc) · 9.34 KB
/
alist.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
#!/bin/bash
#························································································································
# 【安装Alist】
# wget -O alist.sh https://cdn.jsdelivr.net/gh/BlueSkyXN/ChangeSource/alist.sh && chmod +x alist.sh && clear && ./alist.sh install
# wget -O alist.sh https://fastly.jsdelivr.net/gh/BlueSkyXN/ChangeSource/alist.sh && chmod +x alist.sh && clear && ./alist.sh install
# wget -O alist.sh https://gcore.jsdelivr.net/gh/BlueSkyXN/ChangeSource/alist.sh && chmod +x alist.sh && clear && ./alist.sh install
# wget -O alist.sh https://testingcf.jsdelivr.net/gh/BlueSkyXN/ChangeSource/alist.sh && chmod +x alist.sh && clear && ./alist.sh install
# wget -O alist.sh https://raw.githubusercontent.com/BlueSkyXN/ChangeSource/master/alist.sh && chmod +x alist.sh && clear && ./alist.sh install
#························································································································
# 【刷新脚本缓存】
# curl https://purge.jsdelivr.net/gh/BlueSkyXN/ChangeSource/alist.sh
#························································································································
# INSTALL_PATH='/opt/alist'
VERSION='latest'
if [ ! -n "$2" ]; then
INSTALL_PATH='/opt/alist'
else
if [[ $2 == */ ]]; then
INSTALL_PATH=${2%?}
else
INSTALL_PATH=$2
fi
if ! [[ $INSTALL_PATH == */alist ]]; then
INSTALL_PATH="$INSTALL_PATH/alist"
fi
fi
RED_COLOR='\e[1;31m'
GREEN_COLOR='\e[1;32m'
YELLOW_COLOR='\e[1;33m'
BLUE_COLOR='\e[1;34m'
PINK_COLOR='\e[1;35m'
SHAN='\e[1;33;5m'
RES='\e[0m'
clear
# Get platform
if command -v arch >/dev/null 2>&1; then
platform=$(arch)
else
platform=$(uname -m)
fi
ARCH="UNKNOWN"
if [ "$platform" = "x86_64" ]; then
ARCH=amd64
elif [ "$platform" = "aarch64" ]; then
ARCH=arm64
fi
GH_PROXY='https://mirror.ghproxy.com/'
if [ "$(id -u)" != "0" ]; then
echo -e "\r\n${RED_COLOR}出错了,请使用 root 权限重试!${RES}\r\n" 1>&2
exit 1
elif [ "$ARCH" == "UNKNOWN" ]; then
echo -e "\r\n${RED_COLOR}出错了${RES},一键安装目前仅支持 x86_64和arm64 平台。\r\n其它平台请参考:${GREEN_COLOR}https://alist.nn.ci${RES}\r\n"
exit 1
elif ! command -v systemctl >/dev/null 2>&1; then
echo -e "\r\n${RED_COLOR}出错了${RES},无法确定你当前的 Linux 发行版。\r\n建议手动安装:${GREEN_COLOR}https://alist.nn.ci${RES}\r\n"
exit 1
else
if command -v netstat >/dev/null 2>&1; then
check_port=$(netstat -lnp | grep 5244 | awk '{print $7}' | awk -F/ '{print $1}')
else
echo -e "${GREEN_COLOR}端口检查 ...${RES}"
if command -v yum >/dev/null 2>&1; then
yum install net-tools -y >/dev/null 2>&1
check_port=$(netstat -lnp | grep 5244 | awk '{print $7}' | awk -F/ '{print $1}')
else
apt-get update >/dev/null 2>&1
apt-get install net-tools -y >/dev/null 2>&1
check_port=$(netstat -lnp | grep 5244 | awk '{print $7}' | awk -F/ '{print $1}')
fi
fi
fi
CHECK() {
if [ -f "$INSTALL_PATH/alist" ]; then
echo "此位置已经安装,请选择其他位置,或使用更新命令"
exit 0
fi
if [ $check_port ]; then
kill -9 $check_port
fi
if [ ! -d "$INSTALL_PATH/" ]; then
mkdir -p $INSTALL_PATH
else
rm -rf $INSTALL_PATH && mkdir -p $INSTALL_PATH
fi
}
INSTALL() {
# 提供一个交互式菜单让用户选择 GitHub 代理
echo "请选择一个 GitHub 代理:"
echo "1) https://mirror.ghproxy.com/"
echo "2) Github官方源"
echo "3) https://gh.api.99988866.xyz/"
read -p "输入你的选择(1-3):" choice
case "$choice" in
1) GH_PROXY="https://mirror.ghproxy.com/";;
2) GH_PROXY="";;
3) GH_PROXY="https://gh.api.99988866.xyz/";;
*) echo "无效的选择"; exit 1;;
esac
# 下载 Alist 程序
echo -e "\r\n${GREEN_COLOR} 下载 Alist $VERSION ...${RES}"
echo -e "\r\n${GREEN_COLOR} 你当前正在下载 ${GH_PROXY}https://github.com/alist-org/alist/releases/latest/download/alist-linux-musl-$ARCH.tar.gz"
curl -L ${GH_PROXY}https://github.com/alist-org/alist/releases/latest/download/alist-linux-musl-$ARCH.tar.gz -o /tmp/alist.tar.gz $CURL_BAR
tar zxf /tmp/alist.tar.gz -C $INSTALL_PATH/
if [ -f $INSTALL_PATH/alist ]; then
echo -e "${GREEN_COLOR} 下载成功 ${RES}"
else
echo -e "${RED_COLOR}下载 alist-linux-musl-$ARCH.tar.gz 失败!${RES}"
exit 1
fi
# 删除下载缓存
rm -f /tmp/alist*
}
INIT() {
if [ ! -f "$INSTALL_PATH/alist" ]; then
echo -e "\r\n${RED_COLOR}出错了${RES},当前系统未安装 Alist\r\n"
exit 1
else
rm -f $INSTALL_PATH/alist.db
fi
# 创建 systemd
cat >/etc/systemd/system/alist.service <<EOF
[Unit]
Description=Alist service
Wants=network.target
After=network.target network.service
[Service]
Type=simple
WorkingDirectory=$INSTALL_PATH
ExecStart=$INSTALL_PATH/alist server
KillMode=process
[Install]
WantedBy=multi-user.target
EOF
# 添加开机启动
systemctl daemon-reload
systemctl enable alist >/dev/null 2>&1
}
SUCCESS() {
clear
echo "Alist 安装成功!"
echo -e "\r\n访问地址:${GREEN_COLOR}http://YOUR_IP:5244/${RES}\r\n"
echo -e "配置文件路径:${GREEN_COLOR}$INSTALL_PATH/data/config.json${RES}"
# sleep 1s
# cd $INSTALL_PATH
# get_password=$(./alist password 2>&1)
# echo -e "初始管理密码:${GREEN_COLOR}$(echo $get_password | awk -F'your password: ' '{print $2}')${RES}"
echo -e "---------如何获取密码?--------"
echo -e "先cd到alist所在目录:"
echo -e "${GREEN_COLOR}cd $INSTALL_PATH${RES}"
echo -e "随机设置新密码:"
echo -e "${GREEN_COLOR}./alist admin random${RES}"
echo -e "或者手动设置新密码:"
echo -e "${GREEN_COLOR}./alist admin set ${RES}${RED_COLOR}NEW_PASSWORD${RES}"
echo -e "----------------------------"
echo -e "启动服务中"
systemctl restart alist
echo
echo -e "查看状态:${GREEN_COLOR}systemctl status alist${RES}"
echo -e "启动服务:${GREEN_COLOR}systemctl start alist${RES}"
echo -e "重启服务:${GREEN_COLOR}systemctl restart alist${RES}"
echo -e "停止服务:${GREEN_COLOR}systemctl stop alist${RES}"
echo -e "\r\n温馨提示:如果端口无法正常访问,请检查 \033[36m服务器安全组、本机防火墙、Alist状态\033[0m"
echo
}
UNINSTALL() {
echo -e "\r\n${GREEN_COLOR}卸载 Alist ...${RES}\r\n"
echo -e "${GREEN_COLOR}停止进程${RES}"
systemctl disable alist >/dev/null 2>&1
systemctl stop alist >/dev/null 2>&1
echo -e "${GREEN_COLOR}清除残留文件${RES}"
rm -rf $INSTALL_PATH /etc/systemd/system/alist.service
# 兼容之前的版本
rm -f /lib/systemd/system/alist.service
systemctl daemon-reload
echo -e "\r\n${GREEN_COLOR}Alist 已在系统中移除!${RES}\r\n"
}
UPDATE() {
if [ ! -f "$INSTALL_PATH/alist" ]; then
echo -e "\r\n${RED_COLOR}出错了${RES},当前系统未安装 Alist\r\n"
exit 1
else
config_content=$(cat $INSTALL_PATH/data/config.json)
if [[ "${config_content}" == *"assets"* ]]; then
echo -e "\r\n${RED_COLOR}出错了${RES},V3与V2不兼容,请先卸载V2或更换位置安装V3\r\n"
exit 1
fi
echo
echo -e "${GREEN_COLOR}停止 Alist 进程${RES}\r\n"
systemctl stop alist
# 备份 alist 二进制文件,供下载更新失败回退
cp $INSTALL_PATH/alist /tmp/alist.bak
echo -e "${GREEN_COLOR}下载 Alist $VERSION ...${RES}"
curl -L ${GH_PROXY}https://github.com/xhofe/alist-org/releases/latest/download/alist-linux-musl-$ARCH.tar.gz -o /tmp/alist.tar.gz $CURL_BAR
tar zxf /tmp/alist.tar.gz -C $INSTALL_PATH/
if [ -f $INSTALL_PATH/alist ]; then
echo -e "${GREEN_COLOR} 下载成功 ${RES}"
else
echo -e "${RED_COLOR}下载 alist-linux-musl-$ARCH.tar.gz 出错,更新失败!${RES}"
echo "回退所有更改 ..."
mv /tmp/alist.bak $INSTALL_PATH/alist
systemctl start alist
exit 1
fi
echo -e "---------如何获取密码?--------"
echo -e "先cd到alist所在目录:"
echo -e "${GREEN_COLOR}cd $INSTALL_PATH${RES}"
echo -e "随机设置新密码:"
echo -e "${GREEN_COLOR}./alist admin random${RES}"
echo -e "或者手动设置新密码:"
echo -e "${GREEN_COLOR}./alist admin set ${RES}${RED_COLOR}NEW_PASSWORD${RES}"
echo -e "----------------------------"
echo -e "\r\n${GREEN_COLOR}启动 Alist 进程${RES}"
systemctl start alist
echo -e "\r\n${GREEN_COLOR}Alist 已更新到最新稳定版!${RES}\r\n"
# 删除临时文件
rm -f /tmp/alist*
fi
}
# CURL 进度显示
if curl --help | grep progress-bar >/dev/null 2>&1; then # $CURL_BAR
CURL_BAR="--progress-bar"
fi
# The temp directory must exist
if [ ! -d "/tmp" ]; then
mkdir -p /tmp
fi
# Fuck bt.cn (BT will use chattr to lock the php isolation config)
chattr -i -R $INSTALL_PATH >/dev/null 2>&1
if [ "$1" = "uninstall" ]; then
UNINSTALL
elif [ "$1" = "update" ]; then
UPDATE
elif [ "$1" = "install" ]; then
CHECK
INSTALL
INIT
if [ -f "$INSTALL_PATH/alist" ]; then
SUCCESS
else
echo -e "${RED_COLOR} 安装失败${RES}"
fi
else
echo -e "${RED_COLOR} 错误的命令${RES}"
fi