mirror of
https://github.com/monlor/MIXBOX-ARCHIVE.git
synced 2026-03-14 17:31:35 +00:00
2018-12-31
This commit is contained in:
BIN
apps/filebrowser/bin/filebrowser_darwin_x86_64
Normal file
BIN
apps/filebrowser/bin/filebrowser_darwin_x86_64
Normal file
Binary file not shown.
BIN
apps/filebrowser/bin/filebrowser_linux_arm
Normal file
BIN
apps/filebrowser/bin/filebrowser_linux_arm
Normal file
Binary file not shown.
BIN
apps/filebrowser/bin/filebrowser_linux_mips
Normal file
BIN
apps/filebrowser/bin/filebrowser_linux_mips
Normal file
Binary file not shown.
BIN
apps/filebrowser/bin/filebrowser_linux_x86_64
Normal file
BIN
apps/filebrowser/bin/filebrowser_linux_x86_64
Normal file
Binary file not shown.
7
apps/filebrowser/config/filebrowser.uci
Normal file
7
apps/filebrowser/config/filebrowser.uci
Normal file
@@ -0,0 +1,7 @@
|
||||
service="FileBrowser"
|
||||
appname="filebrowser"
|
||||
needver="0.0.1"
|
||||
appinfo="Web文件浏览器"
|
||||
supports="linux_arm,linux_mips,linux_x86_64,darwin_x86_64"
|
||||
backupfiles="config/filebrowser.conf"
|
||||
version="0.0.2"
|
||||
41
apps/filebrowser/config/mixbox.conf
Normal file
41
apps/filebrowser/config/mixbox.conf
Normal file
@@ -0,0 +1,41 @@
|
||||
#------------------【FileBrowser】--------------------
|
||||
filebrowser() {
|
||||
|
||||
eval `mbdb export filebrowser`
|
||||
source /etc/mixbox/bin/base
|
||||
uciset="mbdb set $appname.main"
|
||||
echo "********* $service ***********"
|
||||
echo "[${appinfo}]"
|
||||
readsh "启动${appname}服务[1/0] " "enable" "1"
|
||||
|
||||
if [ "$enable" == '1' ]; then
|
||||
# Scripts Here
|
||||
[ -z "${port}" ] && port=1086
|
||||
read -p "修改${appname}端口号(${port})?[1/0] " res
|
||||
if [ "$res" == '1' ]; then
|
||||
read -p "请输入端口号:" res
|
||||
[ -n "$res" ] && mbdb set $appname.main.port="$res"
|
||||
fi
|
||||
[ -z "$scope" ] && scope="$mbdisk"
|
||||
read -p "修改${appname}默认访问路径($scope)?[1/0] " res
|
||||
if [ "$res" == '1' ]; then
|
||||
while(true)
|
||||
do
|
||||
read -p "请输入默认访问路径:" res
|
||||
[ -z "$res" ] && break
|
||||
if [ ! -d "$res" ]; then
|
||||
echo "输入的路径不存在!"
|
||||
else
|
||||
[ -n "$res" ] && mbdb set $appname.main.scope="$res"
|
||||
break
|
||||
fi
|
||||
done
|
||||
fi
|
||||
readsh "请输入${appname}外网访问配置[1/0]" "openport" "1"
|
||||
${mbroot}/apps/${appname}/scripts/${appname}.sh restart
|
||||
else
|
||||
${mbroot}/apps/${appname}/scripts/${appname}.sh stop
|
||||
fi
|
||||
|
||||
}
|
||||
#------------------【FileBrowser】--------------------
|
||||
1
apps/filebrowser/config/version.txt
Normal file
1
apps/filebrowser/config/version.txt
Normal file
@@ -0,0 +1 @@
|
||||
1.0.3
|
||||
62
apps/filebrowser/scripts/filebrowser.sh
Normal file
62
apps/filebrowser/scripts/filebrowser.sh
Normal file
@@ -0,0 +1,62 @@
|
||||
#!/bin/sh
|
||||
source /etc/mixbox/bin/base
|
||||
eval `mbdb export filebrowser`
|
||||
|
||||
[ -z "${port}" ] && port=1086
|
||||
[ -z "$scope" ] && scope="$mbdisk"
|
||||
|
||||
|
||||
start() {
|
||||
|
||||
[ -n "$(pidof ${appname})" ] && logsh "【$service】" "${appname}已经在运行!" && exit 1
|
||||
logsh "【$service】" "正在启动${appname}服务... "
|
||||
cru a "${appname}" "0 6 * * * ${mbroot}/apps/${appname}/scripts/${appname}.sh restart"
|
||||
# Scripts Here
|
||||
open_port
|
||||
write_firewall_start
|
||||
daemon ${mbroot}/apps/${appname}/bin/${appname} -p ${port} -d ${mbroot}/apps/${appname}/config/${appname}.db -l ${mbroot}/var/log/${appname}.log -s $scope
|
||||
if [ $? -ne 0 ]; then
|
||||
logsh "【$service】" "启动${appname}服务失败!"
|
||||
else
|
||||
logsh "【$service】" "启动${appname}服务完成!"
|
||||
logsh "【$service】" "请在浏览器中访问[http://$lanip:${port}],默认用户名密码admin"
|
||||
fi
|
||||
|
||||
}
|
||||
|
||||
stop() {
|
||||
|
||||
logsh "【$service】" "正在停止${appname}服务... "
|
||||
close_port
|
||||
remove_firewall_start
|
||||
killall -9 ${appname} &> /dev/null
|
||||
[ "$enable" == '0' ] && destroy
|
||||
|
||||
}
|
||||
|
||||
destroy() {
|
||||
|
||||
# End app, Scripts here
|
||||
cru d "${appname}"
|
||||
return
|
||||
|
||||
}
|
||||
|
||||
|
||||
status() {
|
||||
|
||||
if [ -z "$(pidof ${appname})" ]; then
|
||||
status="未运行|0"
|
||||
else
|
||||
status="运行端口号:${port}|1"
|
||||
fi
|
||||
mbdb set $appname.main.status="$status"
|
||||
}
|
||||
|
||||
case "$1" in
|
||||
start) start ;;
|
||||
stop) stop ;;
|
||||
restart) stop; start ;;
|
||||
reload) close_port && open_port ;;
|
||||
status) status ;;
|
||||
esac
|
||||
Reference in New Issue
Block a user