mirror of
https://github.com/monlor/MIXBOX-ARCHIVE.git
synced 2026-04-28 13:36:29 +00:00
moxbox init
This commit is contained in:
BIN
apps/baidupcs/bin/baidupcs_darwin_x86_64
Executable file
BIN
apps/baidupcs/bin/baidupcs_darwin_x86_64
Executable file
Binary file not shown.
BIN
apps/baidupcs/bin/baidupcs_linux_arm
Executable file
BIN
apps/baidupcs/bin/baidupcs_linux_arm
Executable file
Binary file not shown.
BIN
apps/baidupcs/bin/baidupcs_linux_mips
Executable file
BIN
apps/baidupcs/bin/baidupcs_linux_mips
Executable file
Binary file not shown.
BIN
apps/baidupcs/bin/baidupcs_linux_x86_64
Executable file
BIN
apps/baidupcs/bin/baidupcs_linux_x86_64
Executable file
Binary file not shown.
8
apps/baidupcs/config/baidupcs.uci
Normal file
8
apps/baidupcs/config/baidupcs.uci
Normal file
@@ -0,0 +1,8 @@
|
||||
service="BaiduPCS"
|
||||
appname="baidupcs"
|
||||
needver="0.0.1"
|
||||
backupfiles=""
|
||||
supports="linux_arm,linux_mips,linux_x86_64,darwin_x86_64"
|
||||
appinfo="第三方百度网盘web客户端,基于Go语言"
|
||||
newinfo="二进制更新至3.7.0"
|
||||
version="0.0.6"
|
||||
20
apps/baidupcs/config/mixbox.conf
Normal file
20
apps/baidupcs/config/mixbox.conf
Normal file
@@ -0,0 +1,20 @@
|
||||
#------------------【BaiduPCS】--------------------
|
||||
baidupcs() {
|
||||
|
||||
eval `mbdb export baidupcs`
|
||||
source "$(mbdb get mixbox.main.path)"/bin/base
|
||||
echo "********* $service ***********"
|
||||
echo "[${appinfo}]"
|
||||
readsh "启动${appname}服务[1/0] " "enable" "1"
|
||||
if [ "$enable" == '1' ]; then
|
||||
# Scripts Here
|
||||
# readsh "请输入${appname}端口号" "port" "5299"
|
||||
readsh "请输入${appname}外网访问配置[1/0]" "openport" "0"
|
||||
readsh "重启${appname}服务[1/0] " "res" "1"
|
||||
[ "$res" = '1' -o -z "$res" ] && ${mbroot}/apps/${appname}/scripts/${appname}.sh restart
|
||||
else
|
||||
${mbroot}/apps/${appname}/scripts/${appname}.sh stop
|
||||
fi
|
||||
|
||||
}
|
||||
#------------------【BaiduPCS】--------------------
|
||||
69
apps/baidupcs/scripts/baidupcs.sh
Normal file
69
apps/baidupcs/scripts/baidupcs.sh
Normal file
@@ -0,0 +1,69 @@
|
||||
#!/bin/sh
|
||||
eval `mbdb export baidupcs`
|
||||
source "$(mbdb get mixbox.main.path)"/bin/base
|
||||
export BAIDUPCS_GO_CONFIG_DIR="${mbroot}/apps/${appname}/config"
|
||||
port="5299"
|
||||
|
||||
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}
|
||||
if [ $? -ne 0 ]; then
|
||||
logsh "【$service】" "启动${appname}服务失败!" && end
|
||||
else
|
||||
logsh "【$service】" "启动${appname}服务完成!"
|
||||
logsh "【$service】" "请在浏览器打开地址:http://$lanip:$port"
|
||||
logsh "【$service】" "注意登陆成功后先设置下载路径,例如:$mbdisk/下载"
|
||||
fi
|
||||
|
||||
}
|
||||
|
||||
stop() {
|
||||
|
||||
logsh "【$service】" "正在停止${appname}服务... "
|
||||
[ "$enable" == '0' ] && destroy
|
||||
# close_port
|
||||
# remove_firewall_start
|
||||
killall -9 ${appname} &> /dev/null
|
||||
|
||||
}
|
||||
|
||||
destroy() {
|
||||
|
||||
# End app, Scripts here
|
||||
# cru d "${appname}"
|
||||
return
|
||||
|
||||
}
|
||||
|
||||
end() {
|
||||
|
||||
mbdb set ${appname}.main.enable=0
|
||||
stop && exit 1
|
||||
|
||||
}
|
||||
|
||||
status() {
|
||||
|
||||
if [ -n "$(pidof ${appname})" ]; then
|
||||
status="运行中|1"
|
||||
else
|
||||
status="未运行|0"
|
||||
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