2017-10-27 21:31:56 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
set -e
|
|
|
|
set -x
|
|
|
|
|
2017-10-30 09:17:57 +01:00
|
|
|
sudo apt-get install python3-virtualenv -y
|
2017-10-27 21:31:56 +02:00
|
|
|
|
|
|
|
if [ -z "$VIRTUAL_ENV" ]; then
|
|
|
|
virtualenv -p python3 DASHENV
|
2017-10-30 09:17:57 +01:00
|
|
|
|
|
|
|
echo export DASH_HOME=$(pwd) >> ./DASHENV/bin/activate
|
|
|
|
echo export DASH_CONFIG=$(pwd)/config/ >> ./DASHENV/bin/activate
|
|
|
|
|
2017-10-27 21:31:56 +02:00
|
|
|
. ./DASHENV/bin/activate
|
|
|
|
fi
|
|
|
|
|
|
|
|
pip3 install -U pip argparse redis zmq geoip2 flask
|
|
|
|
|
2017-10-30 09:17:57 +01:00
|
|
|
## config
|
|
|
|
if [ ! -f config/config.cfg ]; then
|
|
|
|
cp config/config.cfg.sample config/config.cfg
|
|
|
|
fi
|
|
|
|
|
2017-10-27 21:31:56 +02:00
|
|
|
## Web stuff
|
|
|
|
pushd static/
|
|
|
|
mkdir -p css fonts
|
|
|
|
popd
|
|
|
|
mkdir -p temp
|
|
|
|
|
|
|
|
wget http://www.misp-project.org/assets/images/misp-small.png -O static/pics/MISP.png
|
|
|
|
|
|
|
|
# jquery
|
|
|
|
JQVERSION="3.2.1"
|
|
|
|
wget http://code.jquery.com/jquery-${JQVERSION}.min.js -O ./static/js/jquery.min.js
|
|
|
|
|
|
|
|
FLOTVERSION="0.8.3"
|
|
|
|
wget http://www.flotcharts.org/downloads/flot-${FLOTVERSION}.zip -O ./temp/flot-${FLOTVERSION}.zip
|
|
|
|
unzip -o temp/flot-${FLOTVERSION}.zip -d temp/
|
|
|
|
mv temp/flot/jquery.flot.js ./static/js
|
|
|
|
mv temp/flot/jquery.flot.pie.min.js ./static/js
|
|
|
|
mv temp/flot/jquery.flot.resize.js ./static/js
|
|
|
|
|
|
|
|
|
|
|
|
JQUERYUIVERSION="1.12.1"
|
|
|
|
wget https://jqueryui.com/resources/download/jquery-ui-${JQUERYUIVERSION}.zip -O temp/jquery-ui.zip
|
|
|
|
unzip -o temp/jquery-ui.zip -d temp/
|
|
|
|
mv temp/jquery-ui-${JQUERYUIVERSION}/jquery-ui.min.js ./static/js/jquery-ui.min.js
|
|
|
|
mv temp/jquery-ui-${JQUERYUIVERSION}/jquery-ui.min.css ./static/css/jquery-ui.min.css
|
2017-10-27 21:36:22 +02:00
|
|
|
mkdir -p static/css/images
|
|
|
|
mv -f temp/jquery-ui-${JQUERYUIVERSION}/images/* ./static/css/images/
|
2017-10-27 21:31:56 +02:00
|
|
|
|
|
|
|
# boostrap
|
2017-10-27 22:24:14 +02:00
|
|
|
#BOOTSTRAP_VERSION='4.0.0-beta.2'
|
|
|
|
#wget https://github.com/twbs/bootstrap/releases/download/v${BOOTSTRAP_VERSION}/bootstrap-${BOOTSTRAP_VERSION}-dist.zip -O temp/bootstrap-${BOOTSTRAP_VERSION}.zip
|
|
|
|
#unzip -o temp/bootstrap-${BOOTSTRAP_VERSION}.zip -d temp/bootstrap-${BOOTSTRAP_VERSION}-dist/
|
|
|
|
#mv temp/bootstrap-${BOOTSTRAP_VERSION}-dist/js/* ./static/js/
|
|
|
|
#mv temp/bootstrap-${BOOTSTRAP_VERSION}-dist/css/* ./static/css/
|
2017-10-27 22:05:12 +02:00
|
|
|
|
|
|
|
# sb-admin2
|
2017-10-27 21:31:56 +02:00
|
|
|
SBADMIN_VERSION='3.3.7'
|
|
|
|
wget https://github.com/BlackrockDigital/startbootstrap-sb-admin-2/archive/v${SBADMIN_VERSION}.zip -O temp/${SBADMIN_VERSION}-2.zip
|
|
|
|
unzip -o temp/${SBADMIN_VERSION}-2.zip -d temp/
|
|
|
|
|
|
|
|
mv temp/startbootstrap-sb-admin-2-${SBADMIN_VERSION}/dist/js/* ./static/js/
|
|
|
|
mv temp/startbootstrap-sb-admin-2-${SBADMIN_VERSION}/dist/css/* ./static/css/
|
|
|
|
mv temp/startbootstrap-sb-admin-2-${SBADMIN_VERSION}/bower_components/font-awesome/fonts/* ./static/fonts
|
|
|
|
|
|
|
|
# leaflet
|
|
|
|
LEAFLET_VERSION="1.2.0"
|
|
|
|
wget http://cdn.leafletjs.com/leaflet/v${LEAFLET_VERSION}/leaflet.zip -O temp/leaflet.zip
|
|
|
|
unzip -o temp/leaflet.zip -d temp/
|
|
|
|
|
|
|
|
mv temp/leaflet.js ./static/js/
|
|
|
|
mv temp/leaflet.css ./static/css/
|
2017-10-30 09:55:50 +01:00
|
|
|
mv temp/images/* ./static/css/images/
|
2017-10-27 21:31:56 +02:00
|
|
|
|
|
|
|
# jvectormap
|
|
|
|
JVECTORMAP_VERSION="2.0.3"
|
|
|
|
wget http://jvectormap.com/binary/jquery-jvectormap-${JVECTORMAP_VERSION}.zip -O temp/jquery-jvectormap-${JVECTORMAP_VERSION}
|
|
|
|
unzip -o temp/jquery-jvectormap-${JVECTORMAP_VERSION} -d temp/
|
|
|
|
mv temp/jquery-jvectormap-2.0.3.css ./static/css
|
|
|
|
mv temp/jquery-jvectormap-2.0.3.min.js ./static/js
|
|
|
|
wget http://jvectormap.com/js/jquery-jvectormap-world-mill.js -O ./static/js/jquery-jvectormap-world-mill.js
|
|
|
|
|
2017-10-28 10:27:31 +02:00
|
|
|
mkdir data
|
|
|
|
pushd data
|
|
|
|
wget http://geolite.maxmind.com/download/geoip/database/GeoLite2-City.tar.gz -O GeoLite2-City.tar.gz
|
|
|
|
tar xvfz GeoLite2-City.tar.gz
|
|
|
|
rm -rf GeoLite2-City.tar.gz
|
2017-10-27 21:31:56 +02:00
|
|
|
rm -rf ./temp
|