123 lines
2.5 KiB
Bash
Executable file
123 lines
2.5 KiB
Bash
Executable file
#!/usr/bin/env bash
|
|
HOST="[::1]:9842"
|
|
NAME="openmedialibrary"
|
|
PID="/tmp/$NAME.$USER.pid"
|
|
|
|
cd "`dirname "$0"`"
|
|
if [ -e oml ]; then
|
|
cd ..
|
|
fi
|
|
BASE=`pwd`
|
|
SYSTEM=`uname -s`
|
|
PLATFORM=`uname -m`
|
|
|
|
if [ $SYSTEM == "Linux" ]; then
|
|
SYSTEM="${SYSTEM}_${PLATFORM}"
|
|
fi
|
|
export PLATFORM_ENV="$BASE/platform/$SYSTEM"
|
|
if [ $SYSTEM == "Darwin" ]; then
|
|
export DYLD_FALLBACK_LIBRARY_PATH="$PLATFORM_ENV/lib"
|
|
fi
|
|
PATH="$PLATFORM_ENV/bin:$PATH"
|
|
|
|
SHARED_ENV="$BASE/platform/Shared"
|
|
export SHARED_ENV
|
|
|
|
PATH="$SHARED_ENV/bin:$PATH"
|
|
export PATH
|
|
|
|
PYTHONPATH="$PLATFORM_ENV/lib/python3.4/site-packages:$SHARED_ENV/lib/python3.4/site-packages:$BASE/$NAME"
|
|
export PYTHONPATH
|
|
|
|
oxCACHE="$BASE/config/ox"
|
|
export oxCACHE
|
|
|
|
#must be called to update commands in $PATH
|
|
hash -r 2>/dev/null
|
|
|
|
# allow more open files
|
|
ulimit -S -n 2048
|
|
|
|
if [ "$1" == "start" ]; then
|
|
cd "$BASE/$NAME"
|
|
if [ -e $PID ]; then
|
|
echo openmedialibrary already running
|
|
exit 1
|
|
fi
|
|
if [ ! -d "$BASE/$NAME/.git" ]; then
|
|
python3 oml install_update
|
|
cd "$BASE/$NAME"
|
|
fi
|
|
python3 oml server $PID
|
|
rm -f $PID
|
|
exit $?
|
|
fi
|
|
if [ "$1" == "debug" ]; then
|
|
cd "$BASE/$NAME"
|
|
if [ -e $PID ]; then
|
|
echo openmedialibrary already running
|
|
exit 1
|
|
fi
|
|
shift
|
|
python3 oml server $@
|
|
exit $?
|
|
fi
|
|
if [ "$1" == "stop" ]; then
|
|
test -e $PID && kill `cat $PID`
|
|
test -e $PID && rm $PID
|
|
exit $?
|
|
fi
|
|
if [ "$1" == "restart" ]; then
|
|
if [ -e $PID ]; then
|
|
"$0" stop
|
|
"$0" start
|
|
exit $?
|
|
else
|
|
"$0" start
|
|
exit $?
|
|
fi
|
|
fi
|
|
if [ "$1" == "open" ]; then
|
|
"$0" start &
|
|
#time to switch to python and use webbrowser.open_tab?
|
|
if [ $SYSTEM == "Darwin" ]; then
|
|
open "$BASE/$NAME/static/html/load.html"
|
|
else
|
|
xdg-open "$BASE/$NAME/static/html/load.html"
|
|
fi
|
|
exit 0
|
|
fi
|
|
if [ "$1" == "ui" ]; then
|
|
shift
|
|
python3 $NAME/oml/ui.py $@
|
|
exit $?
|
|
fi
|
|
if [ "$1" == "update" ]; then
|
|
cd "$BASE/$NAME"
|
|
if [ -d "$BASE/$NAME/.git" ]; then
|
|
OLD=`"$0" version`
|
|
cd "$BASE/platform"
|
|
echo Update platform..
|
|
git pull
|
|
echo Update $NAME..
|
|
cd "$BASE/$NAME"
|
|
find . -name "*.pyc" -exec rm "{}" \;
|
|
git pull
|
|
"$0" update_static > /dev/null
|
|
NEW=`"$0" version`
|
|
"$0" postupdate -o $OLD -n $NEW
|
|
else
|
|
python3 oml update
|
|
fi
|
|
exit $?
|
|
fi
|
|
if [ "$1" == "python" ]; then
|
|
cd "$BASE/$NAME"
|
|
shift
|
|
python3 $@
|
|
exit $?
|
|
fi
|
|
|
|
cd "$BASE/$NAME"
|
|
python3 oml $@
|
|
exit $?
|