Blame Scripts/Bash/Functions/Render/Svg/svg_groupBy.sh

878a2b
#!/bin/bash
878a2b
#
878a2b
# svg_groupBy.sh -- This function provides post-rendition action to
878a2b
# group files inside directories named as their file extensions.  For
878a2b
# example: if the current file is a .png file, it is moved inside a
878a2b
# Png/ directory; if the current file is a .jpg file, it is stored
878a2b
# inside a Jpg/ directory, and so on.
878a2b
#
878a2b
# For this function to work correctly, you need to specify which file
878a2b
# type you want to group. This is done in the post-rendition ACTIONS
878a2b
# array inside the appropriate `render.conf.sh' pre-configuration
878a2b
# script. This function cannot be used as last-rendition action.
878a2b
#
03486a
# Copyright (C) 2009, 2010, 2011, 2012 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 svg_groupBy {
878a2b
878a2b
    local SOURCE=''
878a2b
    local TARGET=''
878a2b
878a2b
    # Sanitate file types passed from render.conf.sh pre-rendition
878a2b
    # configuration script.
878a2b
    local FORMAT=''
878a2b
    local FORMATS=$(render_getConfigOption "$ACTION" '2-')
878a2b
878a2b
    for FORMAT in $FORMATS;do
878a2b
878a2b
        # Redifine source file we want to move.
878a2b
        SOURCE=${FILE}.${FORMAT}
878a2b
878a2b
        # Define target directory where source file will be moved
878a2b
        # into.
878a2b
        TARGET=$(dirname "$FILE")/$(cli_getRepoName $FORMAT -d)
878a2b
878a2b
        # Check existence of source file.
140cd9
        cli_checkFiles -e $SOURCE
878a2b
878a2b
        # Check existence of target directory.
878a2b
        if [[ ! -d $TARGET ]];then
878a2b
            mkdir -p $TARGET
878a2b
        fi
878a2b
878a2b
        # Redifine file path to add file and its type.
878a2b
        TARGET=${TARGET}/$(cli_getRepoName $FILE -f).${FORMAT}
878a2b
878a2b
        # Move file into its final location.
878a2b
        cli_printMessage "$TARGET" --as-movedto-line
878a2b
        mv ${SOURCE} ${TARGET}
878a2b
878a2b
    done
878a2b
878a2b
}