Mercurial > hgweb > health
view tryton/gnuhealth_install.sh @ 1536:f60c74b93db5
FHIR: Add correct namespace, other attribute checks
| author | Chris Zimmerman <siv@riseup.net> |
|---|---|
| date | Thu, 18 Sep 2014 22:16:18 -0700 |
| parents | 0558acf75e87 |
| children | 32fdff235889 |
line wrap: on
line source
#!/bin/bash # GNU Health installer # Version for 2.6 series ############################################################################## # # GNU Health: The Free Health and Hospital Information System # Copyright (C) 2008-2014 Luis Falcon <falcon@gnu.org> # Bruno M. Villasanti <bvillasanti@thymbra.com> # # 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/>. # ############################################################################## #----------------------------------------------------------------------------- # Variables declaration #----------------------------------------------------------------------------- # Colors constants NONE="$(tput sgr0)" RED="$(tput setaf 1)" GREEN="$(tput setaf 2)" YELLOW="\n$(tput setaf 3)" BLUE="\n$(tput setaf 4)" # Params INSTDIR="$PWD" GNUHEALTH_INST_DIR="$PWD" GNUHEALTH_VERSION=$(cat version) TRYTON_VERSION="3.2" TRYTON_BASE_URL="http://downloads.tryton.org" #----------------------------------------------------------------------------- # Functions #----------------------------------------------------------------------------- message () { # $1 : Message # $2 : Color # return : Message colorized local NOW="[$(date +%H:%M:%S)]" echo -e "${2}${NOW}${1}${NONE}" } check_requirements() { # WGET command message "[INFO] Checking requirements" ${BLUE} echo -n " -> Looking for wget... " if ! type wget 2>/dev/null ; then message "[ERROR] wget command not found. Please install it or check your PATH variable" ${RED} exit 1 fi # PYTHON version [2.7.x < 3.x] echo -n " -> Looking for the Python Interpreter command... " if ! type python 2>/dev/null ; then message "[ERROR] Python interpreter not found. Please install it or check your PATH variable." ${RED} exit 1 fi local PVERSION=$(python -V 2>&1 | grep 2.[7-9].[0-9]) if test "${PVERSION}" ; then message "[INFO] Found ${PVERSION}" ${BLUE} else python -V message "[ERROR] Found an Incompatible Python version." ${RED} exit 1 fi # PIP command echo " -> Looking for PIP command..." # Alternative pip names on Debian/ArchLinux/RedHat based distros: local PIP_NAMES="pip pip2 pip-python" PIP_NAME="" for NAME in ${PIP_NAMES}; do if [[ $(which ${NAME} 2>/dev/null) ]]; then PIP_NAME=${NAME} break fi done if [[ ! ${PIP_NAME} ]]; then message "[ERROR] PIP command not found. Please install it or check your PATH variable." ${RED} exit 1 fi # Check main operating system case "$OSTYPE" in freebsd*) message "[INFO] Running on FreeBSD" ${GREEN} OS="FREEBSD" ;; linux*) message "[INFO] Running on GNU/LINUX" ${GREEN} OS="GNULINUX" # Check for GNU/Linux Distros GNU_LINUX_DISTRO=$(lsb_release -i -s) message "[INFO] GNU / Linux distro: $GNU_LINUX_DISTRO" ${GREEN} ;; *) message "[INFO] Running on Other OS: $OSTYPE" ${YELLOW} ;; esac message "[INFO] OK." ${GREEN} } install_directories() { # # Temporary/staging area. # message "[INFO] Creating temporary directory..." ${YELLOW} # global variable TMP_DIR="/tmp/gnuhealth_installer" if [[ -e ${TMP_DIR} ]]; then message "[ERROR] Directory ${TMP_DIR} exists. You need to delete it." ${RED} exit 1 else mkdir ${TMP_DIR} || exit 1 fi message "[INFO] OK." ${GREEN} # # Create the destination directories. # message "[INFO] Creating destination directories..." ${YELLOW} # global variables BASEDIR="$HOME/gnuhealth" TRYTON_BASEDIR="${BASEDIR}/tryton" TRYTOND_DIR="${TRYTON_BASEDIR}/server" MODULES_DIR="${TRYTOND_DIR}/modules" LOG_DIR="${BASEDIR}/logs" ATTACH_DIR="${HOME}/attach" CUSTOM_MODS_DIR="${MODULES_DIR}/custom" # Create GNU Health directories if [[ -e ${BASEDIR} ]]; then message "[ERROR] Directory ${BASEDIR} exists. You need to delete it." ${RED} exit 1 else mkdir -p ${MODULES_DIR} ${LOG_DIR} ${ATTACH_DIR} ${CUSTOM_MODS_DIR} || exit 1 fi message "[INFO] OK." ${GREEN} } install_python_dependencies() { local PIP_CMD=$(which $PIP_NAME) local PIP_VERSION="$(${PIP_CMD} --version | awk '{print $2}')" local PIP_ARGS="install --upgrade --user" # Python packages local PIP_LXML="lxml==3.3.5" local PIP_RELATORIO="relatorio==0.6.0" local PIP_DATEUTIL="python-dateutil==2.2" local PIP_PSYCOPG2="psycopg2==2.5.3" local PIP_PYTZ="pytz==2014.4" local PIP_LDAP="python-ldap==2.4.15" local PIP_VOBJECT="vobject==0.6.6" local PIP_PYWEBDAV="PyWebDAV==0.9.8" local PIP_QRCODE="qrcode==5.0.1" local PIP_SIX="six==1.7.3" local PIP_PILLOW="Pillow==2.4.0" local PIP_CALDAV="caldav==0.1.12" local PIP_POLIB="polib==1.0.4" local PIP_SQL="python-sql==0.3" # Operating System specific package selection # Skip PYTHON-LDAP installation since it tries to install / compile it system-wide message "[WARNING] Skipping local PYTHON-LDAP installation. Please refer to the Wikibook to install it" ${YELLOW} local PIP_PKGS="$PIP_PYTZ $PIP_SIX $PIP_LXML $PIP_RELATORIO $PIP_DATEUTIL $PIP_PSYCOPG2 $PIP_VOBJECT $PIP_PYWEBDAV $PIP_QRCODE $PIP_PILLOW $PIP_CALDAV $PIP_POLIB $PIP_SQL" message "[INFO] Installing python dependencies with pip-${PIP_VERSION} ..." ${YELLOW} for PKG in ${PIP_PKGS}; do message " >> ${PKG}" ${BLUE} ${PIP_CMD} ${PIP_ARGS} ${PKG} || exit 1 message " >> OK" ${GREEN} done } get_url() { # $1 : Module name # return : URL to download echo ${TRYTON_BASE_URL}/${TRYTON_VERSION}/$(wget --quiet -O- ${TRYTON_BASE_URL}/${TRYTON_VERSION} | egrep -o "${1}-${TRYTON_VERSION}.[0-9\.]+.tar.gz" | sort -V | tail -1) } install_tryton_modules() { # # Get the lastest revision number for each Tryton module. # message "[INFO] Getting list of lastest Tryton packages..." ${YELLOW} local TRYTOND_URL=$(get_url trytond) local TRYTOND_FILE=$(basename ${TRYTOND_URL}) local TRYTON_MODULES="account account_invoice account_product calendar company country currency party product stock stock_lot" local TRYTON_MODULES_FILE="" local TRYTON_MODULES_URL="" local AUX="" MODULE="" for MODULE in ${TRYTON_MODULES} do AUX=$(get_url trytond_${MODULE}) TRYTON_MODULES_URL="${TRYTON_MODULES_URL} ${AUX}" TRYTON_MODULES_FILE="${TRYTON_MODULES_FILE} $(basename ${AUX})" done message "[INFO] OK." ${GREEN} # # Download Tryton packages. # message "[INFO] Changing to temporary directory." ${BLUE} cd ${TMP_DIR} || exit 1 message "[INFO] Downloading the Tryton server..." ${YELLOW} wget ${TRYTOND_URL} || exit 1 message "[INFO] OK." ${GREEN} message "[INFO] Downloading Tryton modules..." ${YELLOW} local URL="" for URL in ${TRYTON_MODULES_URL}; do wget ${URL} || exit 1 done message "[INFO] OK." ${GREEN} # # Uncompress the Tryton packages. # message "[INFO] Uncompressing the Tryton server..." ${YELLOW} cd ${TRYTOND_DIR} tar -xzf ${TMP_DIR}/${TRYTOND_FILE} || exit 1 message "[INFO] OK." ${GREEN} message "[INFO] Uncompressing the Tryton modules..." ${YELLOW} cd ${MODULES_DIR} || exit 1 for MODULE in $(ls ${TMP_DIR}/trytond_*); do tar -xzf ${MODULE} || exit 1 done message "[INFO] OK." ${GREEN} # # Links to modules. # message "[INFO] Changing directory to <../trytond/modules>." ${BLUE} local TRYTOND_FOLDER=$(basename ${TRYTOND_FILE} .tar.gz) cd "${TRYTOND_DIR}/${TRYTOND_FOLDER}/trytond/modules" || exit 1 message "[INFO] Linking the Tryton modules..." ${YELLOW} local LNMOD="" for LNMOD in ${TRYTON_MODULES}; do ln -si ${MODULES_DIR}/trytond_${LNMOD}-* ${LNMOD} || exit 1 done message "[INFO] OK." ${GREEN} message "[INFO] Copying GNU Health modules to the Tryton modules directory..." ${YELLOW} cp -a ${GNUHEALTH_INST_DIR}/health* ${MODULES_DIR} || exit 1 local EXTRA_FILES="COPYING README version" for FILE in ${EXTRA_FILES}; do cp -a ${GNUHEALTH_INST_DIR}/${FILE} ${BASEDIR} || exit 1 done ln -si ${MODULES_DIR}/health* . message "[INFO] OK." ${GREEN} } bash_profile () { message "[INFO] Creating or Updating the BASH profile for GNU Health" ${BLUE} cd $INSTDIR PROFILE="$HOME/.gnuhealthrc" if [[ -e ${PROFILE} ]]; then # Make a backup copy of the GNU Health BASH profile if it exists message "[INFO] GNU Health BASH Profile exists. Making backup to ${PROFILE}.bak ." ${YELLOW} cp ${PROFILE} ${PROFILE}.bak || exit 1 fi cp gnuhealthrc ${PROFILE} || exit 1 # Load .gnuhealthrc from .bash_profile . If .bash_profile does not exist, create it. if [[ -e $HOME/.bash_profile ]]; then grep --silent "source ${PROFILE}" $HOME/.bash_profile || echo "[[ -f ${PROFILE} ]] && source ${PROFILE}" >> $HOME/.bash_profile else echo "[[ -f ${PROFILE} ]] && source ${PROFILE}" >> $HOME/.bash_profile fi # Include .gnuhealthrc in .bashrc for non-login shells if [[ -e $HOME/.bashrc ]]; then grep --silent "source ${PROFILE}" $HOME/.bashrc || echo "[[ -f ${PROFILE} ]] && source ${PROFILE}" >> $HOME/.bashrc else echo "[[ -f ${PROFILE} ]] && source ${PROFILE}" >> $HOME/.bashrc fi } cleanup() { message "[INFO] Cleaning Up..." ${YELLOW} rm -rf ${TMP_DIR} || exit 1 message "[INFO] OK." ${GREEN} } #----------------------------------------------------------------------------- # Main #----------------------------------------------------------------------------- main() { message "[INFO] Starting GNU Health ${GNUHEALTH_VERSION} installation..." ${BLUE} # (1) Check requirements. check_requirements # (2) Install directories. install_directories # (3) Install Python dependencies. install_python_dependencies # (4) Download Tryton modules. install_tryton_modules # (5) BASH Profile bash_profile # (6) Clean cleanup message "[INFO] Installed successfully in ${BASEDIR}." ${BLUE} } main "$@"
