Proxmox/misc/filebrowser.sh

97 lines
2.6 KiB
Bash
Raw Normal View History

2022-05-19 03:47:54 +02:00
#!/usr/bin/env bash
2023-02-07 18:15:22 +01:00
# Copyright (c) 2021-2023 tteck
# Author: tteck (tteckster)
# License: MIT
# https://github.com/tteck/Proxmox/raw/main/LICENSE
2023-01-12 15:48:24 +01:00
function header_info {
cat <<"EOF"
_______ __ ____
/ ____(_) /__ / __ )_________ _ __________ _____
/ /_ / / / _ \/ __ / ___/ __ \ | /| / / ___/ _ \/ ___/
/ __/ / / / __/ /_/ / / / /_/ / |/ |/ (__ ) __/ /
/_/ /_/_/\___/_____/_/ \____/|__/|__/____/\___/_/
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)"
2022-05-19 03:47:54 +02:00
set -o errexit
set -o errtrace
set -o nounset
set -o pipefail
shopt -s expand_aliases
alias die='EXIT=$? LINE=$LINENO error_exit'
trap die ERR
function error_exit() {
2022-10-30 02:04:45 +01:00
trap - ERR
local reason="Unknown failure occured."
local msg="${1:-$reason}"
local flag="${RD}‼ ERROR ${CL}$EXIT@$LINE"
echo -e "$flag $msg" 1>&2
exit $EXIT
2022-05-19 03:47:54 +02:00
}
2023-01-12 15:48:24 +01:00
clear
header_info
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
clear
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}"
}
msg_info "Installing ${APP}"
RELEASE=$(curl -fsSL https://api.github.com/repos/filebrowser/filebrowser/releases/latest | grep -o '"tag_name": ".*"' | sed 's/"//g' | sed 's/tag_name: //g')
curl -fsSL https://github.com/filebrowser/filebrowser/releases/download/v2.23.0/linux-amd64-filebrowser.tar.gz | tar -xzv -C /usr/local/bin &>/dev/null
2022-05-19 03:53:34 +02:00
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
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"
service_path="/etc/systemd/system/filebrowser.service"
echo "[Unit]
Description=Filebrowser
After=network-online.target
[Service]
User=root
WorkingDirectory=/root/
ExecStart=/usr/local/bin/filebrowser -r /
[Install]
2022-10-30 02:04:45 +01:00
WantedBy=default.target" >$service_path
2022-05-19 03:47:54 +02:00
2022-05-19 03:59:38 +02:00
systemctl enable --now filebrowser.service &>/dev/null
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"