etherpad-lite/bin/installDeps.sh

103 lines
2.6 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 wget 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)
if [ ! $(echo $NODE_VERSION | cut -d "." -f 1-2) = "v0.6" ]; then
echo "You're running a wrong version of node, you're using $NODE_VERSION, we need v0.6.x" >&2
exit 1
fi
2011-07-27 15:37:12 +02:00
#Does a settings.json exist? if no copy the template
if [ ! -f "settings.json" ]; then
echo "Copy the settings template to settings.json..."
cp -v settings.json.template settings.json || exit 1
fi
echo "Ensure that all dependencies are up to date..."
2011-08-09 12:14:09 +02:00
npm install || {
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"
NEEDED_VERSION="1.7.1"
if [ -f "static/js/jquery.js" ]; then
VERSION=$(cat static/js/jquery.js | head -n 3 | grep -o "v[0-9]\.[0-9]\(\.[0-9]\)\?");
2011-07-27 15:37:12 +02:00
if [ ${VERSION#v} = $NEEDED_VERSION ]; then
DOWNLOAD_JQUERY="false"
fi
fi
if [ $DOWNLOAD_JQUERY = "true" ]; then
curl -lo static/js/jquery.js http://code.jquery.com/jquery-$NEEDED_VERSION.js || exit 1
2011-07-27 15:37:12 +02:00
fi
2012-02-04 18:37:36 +01:00
echo "Ensure prefixfree is downloaded and up to date..."
DOWNLOAD_PREFIXFREE="true"
NEEDED_VERSION="1.0.4"
if [ -f "static/js/prefixfree.js" ]; then
VERSION=$(cat static/js/prefixfree.js | grep "PrefixFree" | grep -o "[0-9].[0-9].[0-9]");
2012-02-04 18:46:43 +01:00
if [ $VERSION = $NEEDED_VERSION ]; then
2012-02-04 18:37:36 +01:00
DOWNLOAD_PREFIXFREE="false"
fi
fi
if [ $DOWNLOAD_PREFIXFREE = "true" ]; then
curl -lo static/js/prefixfree.js -k https://raw.github.com/LeaVerou/prefixfree/master/prefixfree.js || exit 1
2012-02-04 18:37:36 +01:00
fi
2011-07-27 15:37:12 +02:00
#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
2011-07-31 18:21:01 +02:00
if [ ! -f "static/custom/$f.js" ]; then
cp -v "static/custom/js.template" "static/custom/$f.js" || exit 1
fi
if [ ! -f "static/custom/$f.css" ]; then
cp -v "static/custom/css.template" "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