openmedialibrary/ctl

119 lines
2.3 KiB
Plaintext
Raw Normal View History

2014-05-04 17:26:43 +00:00
#!/usr/bin/env bash
2014-05-12 23:43:27 +00:00
HOST="[::1]:9842"
2014-05-04 17:26:43 +00:00
NAME="openmedialibrary"
PID="/tmp/$NAME.pid"
cd "`dirname "$0"`"
2014-05-04 17:26:43 +00:00
if [ -e oml ]; then
cd ..
fi
BASE=`pwd`
SYSTEM=`uname -s`
2014-05-17 18:13:58 +00:00
PLATFORM=`uname -m`
2014-05-04 17:26:43 +00:00
2014-05-17 18:13:58 +00:00
if [ $SYSTEM == "Linux" ]; then
SYSTEM="${SYSTEM}_${PLATFORM}"
fi
2014-05-04 17:26:43 +00:00
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/python2.7/site-packages:$SHARED_ENV/lib/python2.7/site-packages:$BASE/$NAME"
export PYTHONPATH
2014-05-14 18:46:31 +00:00
oxCACHE="$BASE/config/ox"
export oxCACHE
2014-05-04 17:26:43 +00:00
#must be called to update commands in $PATH
hash -r 2>/dev/null
2014-05-27 18:10:30 +00:00
# allow more open files
ulimit -S -n 2048
2014-05-04 17:26:43 +00:00
if [ "$1" == "start" ]; then
2014-05-20 10:30:53 +00:00
cd "$BASE/$NAME"
2014-05-04 17:26:43 +00:00
if [ -e $PID ]; then
echo openmedialibrary already running
exit 1
fi
2014-05-27 14:53:06 +00:00
python2 oml server $PID
rm -f $PID
2014-05-04 17:26:43 +00:00
exit $?
fi
if [ "$1" == "debug" ]; then
2014-05-20 10:30:53 +00:00
cd "$BASE/$NAME"
2014-05-04 17:26:43 +00:00
if [ -e $PID ]; then
echo openmedialibrary already running
exit 1
fi
shift
2014-05-16 08:06:11 +00:00
python2 oml server $@
2014-05-04 17:26:43 +00:00
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
2014-05-20 10:30:53 +00:00
"$0" stop
"$0" start
2014-05-04 17:26:43 +00:00
exit $?
else
exit 1
fi
fi
if [ "$1" == "open" ]; then
#time to switch to python and use webbrowser.open_tab?
if [ $SYSTEM == "Darwin" ]; then
2014-05-20 10:30:53 +00:00
open "http://$HOST/"
2014-05-04 17:26:43 +00:00
else
2014-05-20 10:30:53 +00:00
xdg-open "http://$HOST/"
2014-05-04 17:26:43 +00:00
fi
exit 0
fi
2014-05-16 15:48:48 +00:00
if [ "$1" == "ui" ]; then
shift
python2 $NAME/oml/ui.py $@
exit $?
fi
2014-05-17 11:40:51 +00:00
if [ "$1" == "update" ]; then
2014-08-05 09:47:16 +00:00
if [ -e $BASE/$NAME/.git ]; then
cd "$BASE/$NAME"
OLD=`"$0" version`
cd "$BASE/platform"
echo Update platform..
git pull
echo Update $NAME..
cd "$BASE/$NAME"
git pull
find . -name '*.pyc' -exec rm "{}" \;
$0 setup
$0 update_static > /dev/null
NEW=`"$0" version`
$0 postupdate -o $OLD -n $NEW
exit
else
python2 oml update
fi
2014-05-17 11:40:51 +00:00
fi
2014-05-19 20:14:24 +00:00
if [ "$1" == "python" ]; then
2014-05-20 10:30:53 +00:00
cd "$BASE/$NAME"
2014-05-19 20:14:24 +00:00
shift
python2 $@
exit $?
fi
2014-05-04 17:26:43 +00:00
2014-05-20 10:30:53 +00:00
cd "$BASE/$NAME"
2014-05-16 08:06:11 +00:00
python2 oml $@
2014-05-04 17:26:43 +00:00
exit $?