etherpad-lite/bin/installDeps.sh

115 lines
2.9 KiB
Bash
Raw Normal View History

#!/bin/sh
2011-07-27 15:37:12 +02:00
#Move to the folder where ep-lite is installed
cd `dirname $0`
2011-07-27 15:37:12 +02:00
#Was this script started in the bin folder? if yes move out
if [ -d "../bin" ]; then
cd "../"
fi
#Is gnu-grep (ggrep) installed on SunOS (Solaris)
if [ $(uname) = "SunOS" ]; then
hash ggrep > /dev/null 2>&1 || {
echo "Please install ggrep (pkg install gnu-grep)" >&2
exit 1
}
fi
2013-11-12 10:58:22 +01:00
#Is curl installed?
2011-08-09 11:54:55 +02:00
hash curl > /dev/null 2>&1 || {
echo "Please install curl" >&2
2011-07-27 15:37:12 +02:00
exit 1
}
#Is node installed?
hash node > /dev/null 2>&1 || {
echo "Please install node.js ( http://nodejs.org )" >&2
2011-07-27 15:37:12 +02:00
exit 1
}
#Is npm installed?
hash npm > /dev/null 2>&1 || {
echo "Please install npm ( http://npmjs.org )" >&2
exit 1
}
2011-08-11 16:09:05 +02:00
#check npm version
NPM_VERSION=$(npm --version)
if [ ! $(echo $NPM_VERSION | cut -d "." -f 1) = "1" ]; then
echo "You're running a wrong version of npm, you're using $NPM_VERSION, we need 1.x" >&2
2011-08-11 16:09:05 +02:00
exit 1
fi
2012-01-26 12:55:54 +01:00
#check node version
NODE_VERSION=$(node --version)
2012-07-05 19:33:11 +02:00
NODE_V_MINOR=$(echo $NODE_VERSION | cut -d "." -f 1-2)
2013-11-14 23:46:58 +01:00
if [ ! $NODE_V_MINOR = "v0.8" ] && [ ! $NODE_V_MINOR = "v0.10" ] && [ ! $NODE_V_MINOR = "v0.11" ]; then
echo "You're running a wrong version of node, you're using $NODE_VERSION, we need v0.8.x, v0.10.x or v0.11.x" >&2
2012-01-26 12:55:54 +01:00
exit 1
fi
#Get the name of the settings file
settings="settings.json"
a='';
for arg in $*; do
if [ "$a" = "--settings" ] || [ "$a" = "-s" ]; then settings=$arg; fi
a=$arg
done
#Does a $settings exist? if no copy the template
if [ ! -f $settings ]; then
echo "Copy the settings template to $settings..."
cp settings.json.template $settings || exit 1
2011-07-27 15:37:12 +02:00
fi
2013-02-10 04:17:04 +01:00
echo "Ensure that all dependencies are up to date... If this is the first time you have run Etherpad please be patient."
2012-02-26 13:31:47 +01:00
(
mkdir -p node_modules
cd node_modules
[ -e ep_etherpad-lite ] || ln -s ../src ep_etherpad-lite
cd ep_etherpad-lite
2012-11-19 15:19:59 +01:00
npm install --loglevel warn
2012-02-26 13:31:47 +01:00
) || {
2011-08-09 12:14:09 +02:00
rm -rf node_modules
exit 1
}
2011-07-27 15:37:12 +02:00
echo "Ensure jQuery is downloaded and up to date..."
DOWNLOAD_JQUERY="true"
2013-02-10 02:55:50 +01:00
NEEDED_VERSION="1.9.1"
2012-02-26 13:31:47 +01:00
if [ -f "src/static/js/jquery.js" ]; then
2012-11-16 22:12:04 +01:00
if [ $(uname) = "SunOS" ]; then
VERSION=$(cat src/static/js/jquery.js | head -n 3 | ggrep -o "v[0-9]\.[0-9]\(\.[0-9]\)\?");
else
VERSION=$(cat src/static/js/jquery.js | head -n 3 | grep -o "v[0-9]\.[0-9]\(\.[0-9]\)\?");
fi
2011-07-27 15:37:12 +02:00
if [ ${VERSION#v} = $NEEDED_VERSION ]; then
DOWNLOAD_JQUERY="false"
fi
fi
if [ $DOWNLOAD_JQUERY = "true" ]; then
2012-02-26 13:31:47 +01:00
curl -lo src/static/js/jquery.js http://code.jquery.com/jquery-$NEEDED_VERSION.js || exit 1
2011-07-27 15:37:12 +02:00
fi
#Remove all minified data to force node creating it new
echo "Clear minfified cache..."
rm -f var/minified*
2011-07-30 17:33:35 +02:00
echo "ensure custom css/js files are created..."
2011-07-31 18:21:01 +02:00
for f in "index" "pad" "timeslider"
2011-07-30 17:33:35 +02:00
do
2012-02-26 13:31:47 +01:00
if [ ! -f "src/static/custom/$f.js" ]; then
cp "src/static/custom/js.template" "src/static/custom/$f.js" || exit 1
2011-07-31 18:21:01 +02:00
fi
2012-02-26 13:31:47 +01:00
if [ ! -f "src/static/custom/$f.css" ]; then
cp "src/static/custom/css.template" "src/static/custom/$f.css" || exit 1
2011-07-30 17:33:35 +02:00
fi
done
2011-07-27 15:37:12 +02:00
exit 0