etherpad-lite/bin/installDeps.sh

119 lines
3.1 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
2015-01-21 13:18:38 +01:00
hash ggrep > /dev/null 2>&1 || {
echo "Please install ggrep (pkg install gnu-grep)" >&2
2015-01-21 13:18:38 +01:00
exit 1
}
fi
2013-11-12 10:58:22 +01:00
#Is curl installed?
2015-01-21 13:18:38 +01:00
hash curl > /dev/null 2>&1 || {
2011-08-09 11:54:55 +02:00
echo "Please install curl" >&2
2015-01-21 13:18:38 +01:00
exit 1
2011-07-27 15:37:12 +02:00
}
#Is node installed?
#Not checking io.js, default installation creates a symbolic link to node
2015-01-21 13:18:38 +01:00
hash node > /dev/null 2>&1 || {
echo "Please install node.js ( https://nodejs.org )" >&2
2015-01-21 13:18:38 +01:00
exit 1
2011-07-27 15:37:12 +02:00
}
#Is npm installed?
2015-01-21 13:18:38 +01:00
hash npm > /dev/null 2>&1 || {
echo "Please install npm ( https://npmjs.org )" >&2
2015-01-21 13:18:38 +01:00
exit 1
2011-07-27 15:37:12 +02:00
}
#Check npm version
2011-08-11 16:09:05 +02:00
NPM_VERSION=$(npm --version)
2014-09-27 12:30:11 +02:00
NPM_MAIN_VERSION=$(echo $NPM_VERSION | cut -d "." -f 1)
if [ $(echo $NPM_MAIN_VERSION) = "0" ]; then
echo "You're running a wrong version of npm, you're using $NPM_VERSION, we need 1.x or higher" >&2
2015-01-21 13:18:38 +01:00
exit 1
2011-08-11 16:09:05 +02:00
fi
#Check node version
2012-01-26 12:55:54 +01:00
NODE_VERSION=$(node --version)
2012-07-05 19:33:11 +02:00
NODE_V_MINOR=$(echo $NODE_VERSION | cut -d "." -f 1-2)
2015-09-26 12:15:54 +02:00
NODE_V_MAIN=$(echo $NODE_VERSION | cut -d "." -f 1)
NODE_V_MAIN=${NODE_V_MAIN#"v"}
2016-03-27 07:31:00 +02:00
if [ ! $NODE_V_MINOR = "v0.10" ] && [ ! $NODE_V_MINOR = "v0.11" ] && [ ! $NODE_V_MINOR = "v0.12" ] && [ ! $NODE_V_MAIN -ge 4 ]; then
2016-03-20 15:21:56 +01:00
echo "You're running a wrong version of node. You're using $NODE_VERSION, we need node v0.10.x or higher" >&2
exit 1
2012-01-26 12:55:54 +01:00
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 not 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
2015-01-21 13:18:38 +01:00
) || {
2011-08-09 12:14:09 +02:00
rm -rf node_modules
2015-01-21 13:18:38 +01:00
exit 1
2011-08-09 12:14:09 +02:00
}
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
2015-01-08 12:54:08 +01:00
VERSION=$(head -n 3 src/static/js/jquery.js | ggrep -o "v[0-9]\.[0-9]\(\.[0-9]\)\?")
else
2015-01-08 12:54:08 +01:00
VERSION=$(head -n 3 src/static/js/jquery.js | 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
curl -lo src/static/js/jquery.js https://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
2015-04-04 17:30:41 +02:00
echo "Clearing minified cache..."
2011-07-27 15:37:12 +02:00
rm -f var/minified*
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
2015-01-21 13:18:38 +01:00
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