You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gns3-server/scripts/update-bundled-web-ui.sh

68 lines
1.8 KiB

#!/usr/bin/env bash
#
# Copyright (C) 2018 GNS3 Technologies Inc.
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
# Syncs WebUI with gns3server
#
# For updating with fresh latest repo just type:
# $ sh update-bundled-web-ui.sh
#
# It's also possible to update with custom repo and branch by:
# $ sh update-bundled-web-ui.sh ../my-custom-web-ui-repo/
#
CURRENT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
GNS3SERVER_DIR=$(realpath "$CURRENT_DIR/..")
REPO_DIR="/tmp/gns3-web-ui"
CUSTOM_REPO=false
if [ $# -eq 1 ]; then
PARAM="$1"
CUSTOM_REPO=true
REPO_DIR=$(realpath "$PWD/${PARAM%/}")
echo "Custom repo dir: $REPO_DIR"
fi
echo "Removing: $GNS3SERVER_DIR/gns3server/static/web-ui/*"
rm -rf $GNS3SERVER_DIR/gns3server/static/web-ui/*
echo "Re-create: $GNS3SERVER_DIR/gns3server/static/web-ui"
mkdir -p "$GNS3SERVER_DIR/gns3server/static/web-ui/"
if [ "$CUSTOM_REPO" = false ] ; then
if [ ! -d /tmp/gns3-web-ui ]; then
git clone https://github.com/GNS3/gns3-web-ui.git "$REPO_DIR"
fi
fi
echo "Current working dir $REPO_DIR"
cd "$REPO_DIR"
yarn install
yarn ng build -e prod --base-href /static/web-ui/
cp -R $REPO_DIR/dist/* "$GNS3SERVER_DIR/gns3server/static/web-ui/"
cd "$GNS3SERVER_DIR"
#git add .
#git commit -m "Sync WebUI"