Proxmox/misc/filebrowser.sh

105 lines
2.9 KiB
Bash
Raw Permalink Normal View History

2022-05-19 03:47:54 +02:00
#!/usr/bin/env bash
2023-02-07 18:15:22 +01:00
2024-01-01 18:13:05 +01:00
# Copyright (c) 2021-2024 tteck
2023-02-07 18:15:22 +01:00
# Author: tteck (tteckster)
# License: MIT
# https://github.com/tteck/Proxmox/raw/main/LICENSE
2023-01-12 15:48:24 +01:00
function header_info {
clear
2023-01-12 15:48:24 +01:00
cat <<"EOF"
_______ __ ____
2023-01-12 15:48:24 +01:00
/ ____(_) /__ / __ )_________ _ __________ _____
/ /_ / / / _ \/ __ / ___/ __ \ | /| / / ___/ _ \/ ___/
/ __/ / / / __/ /_/ / / / /_/ / |/ |/ (__ ) __/ /
/_/ /_/_/\___/_____/_/ \____/|__/|__/____/\___/_/
2023-01-12 15:48:24 +01:00
EOF
}
IP=$(hostname -I | awk '{print $1}')
2022-10-30 02:04:45 +01:00
YW=$(echo "\033[33m")
BL=$(echo "\033[36m")
RD=$(echo "\033[01;31m")
BGN=$(echo "\033[4;92m")
GN=$(echo "\033[1;92m")
DGN=$(echo "\033[32m")
CL=$(echo "\033[m")
2022-05-19 03:47:54 +02:00
BFR="\\r\\033[K"
HOLD="-"
CM="${GN}${CL}"
APP="FileBrowser"
2022-08-04 22:20:52 +02:00
hostname="$(hostname)"
2023-01-12 15:48:24 +01:00
header_info
if [ -f /root/filebrowser.db ]; then
read -r -p "Would you like to uninstall ${APP} on $hostname.? <y/N> " prompt
if [[ "${prompt,,}" =~ ^(y|yes)$ ]]; then
systemctl disable -q --now filebrowser.service
rm -rf /usr/local/bin/filebrowser /root/filebrowser.db /etc/systemd/system/filebrowser.service
echo "$APP Removed"
sleep 2
clear
exit
else
clear
exit
fi
fi
2022-05-19 03:47:54 +02:00
while true; do
2022-08-04 22:20:52 +02:00
read -p "This will Install ${APP} on $hostname. Proceed(y/n)?" yn
2022-05-19 03:47:54 +02:00
case $yn in
2022-10-30 02:04:45 +01:00
[Yy]*) break ;;
[Nn]*) exit ;;
*) echo "Please answer yes or no." ;;
2022-05-19 03:47:54 +02:00
esac
done
header_info
function msg_info() {
local msg="$1"
echo -ne " ${HOLD} ${YW}${msg}..."
}
function msg_ok() {
local msg="$1"
echo -e "${BFR} ${CM} ${GN}${msg}${CL}"
}
read -r -p "Would you like to use No Authentication? <y/N> " prompt
2022-05-19 03:47:54 +02:00
msg_info "Installing ${APP}"
2024-04-11 02:02:02 +02:00
apt-get install -y curl &>/dev/null
RELEASE=$(curl -fsSL https://api.github.com/repos/filebrowser/filebrowser/releases/latest | grep -o '"tag_name": ".*"' | sed 's/"//g' | sed 's/tag_name: //g')
2023-09-08 12:02:47 +02:00
curl -fsSL https://github.com/filebrowser/filebrowser/releases/download/$RELEASE/linux-amd64-filebrowser.tar.gz | tar -xzv -C /usr/local/bin &>/dev/null
if [[ "${prompt,,}" =~ ^(y|yes)$ ]]; then
filebrowser config init -a '0.0.0.0' &>/dev/null
filebrowser config set -a '0.0.0.0' &>/dev/null
filebrowser config init --auth.method=noauth &>/dev/null
filebrowser config set --auth.method=noauth &>/dev/null
filebrowser users add ID 1 --perm.admin &>/dev/null
else
filebrowser config init -a '0.0.0.0' &>/dev/null
filebrowser config set -a '0.0.0.0' &>/dev/null
filebrowser users add admin changeme --perm.admin &>/dev/null
fi
2022-08-04 22:20:52 +02:00
msg_ok "Installed ${APP} on $hostname"
2022-05-19 03:47:54 +02:00
msg_info "Creating Service"
cat <<EOF >/etc/systemd/system/filebrowser.service
[Unit]
2022-05-19 03:47:54 +02:00
Description=Filebrowser
After=network-online.target
[Service]
User=root
WorkingDirectory=/root/
ExecStart=/usr/local/bin/filebrowser -r /
[Install]
WantedBy=default.target
EOF
systemctl enable -q --now filebrowser.service
2022-05-19 03:47:54 +02:00
msg_ok "Created Service"
msg_ok "Completed Successfully!\n"
echo -e "${APP} should be reachable by going to the following URL.
${BL}http://$IP:8080${CL} \n"