Blame Automation/centos-art.sh-render/Svg/svg_groupBy.sh

Alain Reguera Delgado 8f60cb
#!/bin/bash
Alain Reguera Delgado 8f60cb
#
Alain Reguera Delgado 8f60cb
# svg_groupBy.sh -- This function provides post-rendition action to
Alain Reguera Delgado 8f60cb
# group files inside directories named as their file extensions.  For
Alain Reguera Delgado 8f60cb
# example: if the current file is a .png file, it is moved inside a
Alain Reguera Delgado 8f60cb
# Png/ directory; if the current file is a .jpg file, it is stored
Alain Reguera Delgado 8f60cb
# inside a Jpg/ directory, and so on.
Alain Reguera Delgado 8f60cb
#
Alain Reguera Delgado 8f60cb
# For this function to work correctly, you need to specify which file
Alain Reguera Delgado 8f60cb
# type you want to group. This is done in the post-rendition ACTIONS
Alain Reguera Delgado 8f60cb
# array inside the appropriate `render.conf.sh' pre-configuration
Alain Reguera Delgado 8f60cb
# script. This function cannot be used as last-rendition action.
Alain Reguera Delgado 8f60cb
#
Alain Reguera Delgado 8f60cb
# Copyright (C) 2009-2013 The CentOS Project
Alain Reguera Delgado 8f60cb
#
Alain Reguera Delgado 8f60cb
# This program is free software; you can redistribute it and/or modify
Alain Reguera Delgado 8f60cb
# it under the terms of the GNU General Public License as published by
Alain Reguera Delgado 8f60cb
# the Free Software Foundation; either version 2 of the License, or (at
Alain Reguera Delgado 8f60cb
# your option) any later version.
Alain Reguera Delgado 8f60cb
#
Alain Reguera Delgado 8f60cb
# This program is distributed in the hope that it will be useful, but
Alain Reguera Delgado 8f60cb
# WITHOUT ANY WARRANTY; without even the implied warranty of
Alain Reguera Delgado 8f60cb
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Alain Reguera Delgado 8f60cb
# General Public License for more details.
Alain Reguera Delgado 8f60cb
#
Alain Reguera Delgado 8f60cb
# You should have received a copy of the GNU General Public License
Alain Reguera Delgado 8f60cb
# along with this program; if not, write to the Free Software
Alain Reguera Delgado 8f60cb
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
Alain Reguera Delgado 8f60cb
#
Alain Reguera Delgado 8f60cb
# ----------------------------------------------------------------------
Alain Reguera Delgado 8f60cb
# $Id$
Alain Reguera Delgado 8f60cb
# ----------------------------------------------------------------------
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 8f60cb
function svg_groupBy {
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 8f60cb
    local SOURCE=''
Alain Reguera Delgado 8f60cb
    local TARGET=''
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 8f60cb
    # Sanitate file types passed from render.conf.sh pre-rendition
Alain Reguera Delgado 8f60cb
    # configuration script.
Alain Reguera Delgado 8f60cb
    local FORMAT=''
Alain Reguera Delgado 8f60cb
    local FORMATS=$(render_getConfigOption "$ACTION" '2-')
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 8f60cb
    for FORMAT in $FORMATS;do
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 8f60cb
        # Redifine source file we want to move.
Alain Reguera Delgado 8f60cb
        SOURCE=${FILE}.${FORMAT}
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 8f60cb
        # Define target directory where source file will be moved
Alain Reguera Delgado 8f60cb
        # into.
Alain Reguera Delgado 8f60cb
        TARGET=$(dirname "$FILE")/$(cli_getRepoName $FORMAT -d)
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 8f60cb
        # Check existence of source file.
Alain Reguera Delgado 8f60cb
        cli_checkFiles -e $SOURCE
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 8f60cb
        # Check existence of target directory.
Alain Reguera Delgado 8f60cb
        if [[ ! -d $TARGET ]];then
Alain Reguera Delgado 8f60cb
            mkdir -p $TARGET
Alain Reguera Delgado 8f60cb
        fi
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 8f60cb
        # Redifine file path to add file and its type.
Alain Reguera Delgado 8f60cb
        TARGET=${TARGET}/$(cli_getRepoName $FILE -f).${FORMAT}
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 8f60cb
        # Move file into its final location.
Alain Reguera Delgado 8f60cb
        cli_printMessage "$TARGET" --as-movedto-line
Alain Reguera Delgado 8f60cb
        mv ${SOURCE} ${TARGET}
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 8f60cb
    done
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 8f60cb
}