Blob Blame History Raw
#!/bin/bash
#
# centos-art.sh -- The CentOS Artwork Repository automation tool.
#
# Copyright (C) 2009, 2010, 2011, 2012 The CentOS Project
#
# 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 2 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, write to the Free Software
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
#
# ----------------------------------------------------------------------
# $Id$
# ----------------------------------------------------------------------

# Initialize relative path (from repository first directory level on)
# used to store bash scripts.
TCAR_BASHSCRIPTS='Scripts/Bash'

# Verify the working copy absolute path using the command path. It is
# not possible to consider relative paths here because we are using a
# symbolic link to create the connection between the centos-art.sh
# script and the centos-art command. The link location is stored
# inside ~/bin directory which is outside the repository directory
# structure. So we cannot use the command path as reference to define
# the repository working directory each time we run the command.
# Instead, in order to get the correct working directory path, it is
# required to finish the script execution when the absolute path
# points to the ~/bin directory and print an error message explaining
# the issue. This message cannot be translated to other languages
# because the TEXTDOMAINDIR variable hasn't been defined yet (it
# requires the working copy directory path to be defined first).
if [[ ! $TCAR_WORKDIR ]] || [[ $TCAR_WORKDIR == '' ]] ;then

    if [[ $0 =~ "^${HOME}/bin" ]];then
        echo "To run centos-art correctly, you need to prepare your workstation first."
        exit 1
    fi

fi

# Initialize absolute path to the working copy. Take care that, in
# some cases, you might execute centos-art.sh script from a path
# different to that set in TCAR_WORKDIR variable inside your
# ~/.bash_profile (e.g., you are changing your working copy from one
# location to another). In these cases, the last path must be used as
# reference whenever it doesn't point to user's bin directory. This is
# another reason to provide the centos-art.sh absolute path when you
# execute the prepare function.
if [[ ! $TCAR_WORKDIR =~ "^$(dirname $0)" ]] \
    && [[ ! $(dirname $0) =~ "^${HOME}/bin" ]];then
    TCAR_WORKDIR=$(dirname $0 | sed "s,/${TCAR_BASHSCRIPTS},,")
fi
# Redefine the working copy absolute path considering the (Subversion)
# previous directory structures used in the repository.
if [[ -d ${TCAR_WORKDIR}/trunk ]];then
    TCAR_WORKDIR=${TCAR_WORKDIR}/trunk
fi

# Initialize repository brand information.
if [[ ! $TCAR_BRAND ]] || [[ $TCAR_BRAND == "" ]];then
    TCAR_BRAND='centos'
fi

# Initialize script-specific configuration variables.
declare -xr CLI_NAME="${TCAR_BRAND}-art"
declare -xr CLI_VERSION='0.4'
declare -xr CLI_LANG_LC=$(echo ${LANG} | cut -d'.' -f1)
declare -xr CLI_LANG_LL=$(echo ${CLI_LANG_LC} | cut -d'_' -f1)
declare -xr CLI_LANG_CC=$(echo ${CLI_LANG_LC} | cut -d'_' -f2)
declare -xr CLI_BASEDIR="${TCAR_WORKDIR}/${TCAR_BASHSCRIPTS}"
declare -xr CLI_FUNCDIR="${CLI_BASEDIR}/Functions"

# Initialize internationalization through GNU gettext.
. gettext.sh
declare -xr TEXTDOMAIN=${CLI_NAME}.sh
declare -xr TEXTDOMAINDIR=${TCAR_WORKDIR}/Locales/${TCAR_BASHSCRIPTS}

# Initialize absolute path to temporal directory.
declare -xr TMPDIR="$(mktemp -p /tmp -d ${CLI_NAME}.sh-XXXXXX)"

# Initialize command-line interface.
if [[ -x ${CLI_FUNCDIR}/Commons/cli.sh ]];then
    . ${CLI_FUNCDIR}/Commons/cli.sh; export -f 'cli'; cli "$@"
fi