Blame Scripts/Bash/Functions/cli_checkPathComponent.sh

878a2b
#!/bin/bash
878a2b
#
878a2b
# cli_checkPathComponent.sh -- This function checks parts/components
878a2b
# from repository paths.
878a2b
#
878a2b
# Copyright (C) 2009, 2010, 2011 The CentOS Project
878a2b
#
878a2b
# This program is free software; you can redistribute it and/or modify
878a2b
# it under the terms of the GNU General Public License as published by
878a2b
# the Free Software Foundation; either version 2 of the License, or (at
878a2b
# your option) any later version.
878a2b
#
878a2b
# This program is distributed in the hope that it will be useful, but
878a2b
# WITHOUT ANY WARRANTY; without even the implied warranty of
878a2b
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
878a2b
# General Public License for more details.
878a2b
#
878a2b
# You should have received a copy of the GNU General Public License
878a2b
# along with this program; if not, write to the Free Software
878a2b
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
878a2b
#
878a2b
# ----------------------------------------------------------------------
878a2b
# $Id$
878a2b
# ----------------------------------------------------------------------
878a2b
878a2b
function cli_checkPathComponent {
878a2b
878a2b
    # Define short options.
878a2b
    local ARGSS=''
878a2b
878a2b
    # Define long options.
878a2b
    local ARGSL='release,architecture,motif'
878a2b
878a2b
    # Initialize arguments with an empty value and set it as local
878a2b
    # variable to this function scope.
878a2b
    local ARGUMENTS=''
878a2b
878a2b
    # Initialize file variable as local to avoid conflicts outside
878a2b
    # this function scope. In the file variable will set the file path
878a2b
    # we are going to verify.
878a2b
    local FILE=''
878a2b
878a2b
    # Redefine ARGUMENTS variable using current positional parameters. 
878a2b
    cli_parseArgumentsReDef "$@"
878a2b
878a2b
    # Redefine ARGUMENTS variable using getopt output.
878a2b
    cli_parseArguments
878a2b
878a2b
    # Redefine positional parameters using ARGUMENTS variable.
878a2b
    eval set -- "$ARGUMENTS"
878a2b
878a2b
    # Define list of locations we want to apply verifications to.
878a2b
    local FILES=$(echo $@ | sed -r 's!^.*--[[:space:]](.+)$!\1!')
878a2b
878a2b
    # Verify list of locations, it is required that one location be
878a2b
    # present in the list and also be a valid file.
878a2b
    if [[ $FILES == '--' ]];then
878a2b
        cli_printMessage "You need to provide one file at least." --as-error-line 
878a2b
    fi
878a2b
878a2b
    # Look for options passed through positional parameters.
878a2b
    while true; do
878a2b
878a2b
        case "$1" in
878a2b
878a2b
            --release )
878a2b
                for FILE in $(echo $FILES);do
878a2b
                    if [[ ! $FILE =~ "^.+/$(cli_getPathComponent --release-pattern)/.*$" ]];then
878a2b
                        cli_printMessage "`eval_gettext "The release \\\"\\\$FILE\\\" is not valid."`" --as-error-line
878a2b
                    fi
878a2b
                done
878a2b
                shift 2
878a2b
                break
878a2b
                ;;
878a2b
878a2b
            --architecture )
878a2b
                for FILE in $(echo $FILES);do
878a2b
                    if [[ ! $FILE =~ $(cli_getPathComponent --architecture-pattern) ]];then
878a2b
                        cli_printMessage "`eval_gettext "The architecture \\\"\\\$FILE\\\" is not valid."`" --as-error-line
878a2b
                    fi
878a2b
                done
878a2b
                shift 2
878a2b
                break
878a2b
                ;;
878a2b
878a2b
            --motif )
878a2b
                for FILE in $(echo $FILES);do
878a2b
                    if [[ ! $FILE =~ $(cli_getPathComponent --motif-pattern) ]];then
878a2b
                        cli_printMessage "`eval_gettext "The theme \\\"\\\$FILE\\\" is not valid."`" --as-error-line
878a2b
                    fi
878a2b
                done
878a2b
                shift 2
878a2b
                break
878a2b
                ;;
878a2b
878a2b
            -- )
878a2b
                for FILE in $(echo $FILES);do
878a2b
                    if [[ $FILE == '' ]] \
878a2b
                        || [[ $FILE =~ '(\.\.(/)?)' ]] \
878a2b
                        || [[ ! $FILE =~ '^[A-Za-z0-9\.:/_-]+$' ]]; then 
878a2b
                        cli_printMessage "`eval_gettext "The value \\\"\\\$FILE\\\" is not valid."`" --as-error-line
878a2b
                    fi
878a2b
                done
878a2b
                shift 2
878a2b
                break
878a2b
                ;;
878a2b
878a2b
        esac
878a2b
    done
878a2b
878a2b
}