Blame Scripts/Functions/Tuneup/tuneup_doBaseActions.sh

66b51c
#!/bin/bash
66b51c
#
66b51c
# tuneup_doBaseActions.sh -- This function builds the list of files to
8b1490
# process and performs maintainance tasks, file by file.
66b51c
#
3b0984
# Copyright (C) 2009, 2010, 2011 The CentOS Artwork SIG
fa95b1
#
fa95b1
# This program is free software; you can redistribute it and/or modify
fa95b1
# it under the terms of the GNU General Public License as published by
dcd347
# the Free Software Foundation; either version 2 of the License, or (at
dcd347
# your option) any later version.
fa95b1
#
74a058
# This program is distributed in the hope that it will be useful, but
74a058
# WITHOUT ANY WARRANTY; without even the implied warranty of
66b51c
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
66b51c
# General Public License for more details.
66b51c
#
66b51c
# You should have received a copy of the GNU General Public License
66b51c
# along with this program; if not, write to the Free Software
dcd347
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
7ac5a5
#
66b51c
# ----------------------------------------------------------------------
66b51c
# $Id$
66b51c
# ----------------------------------------------------------------------
66b51c
66b51c
function tuneup_doBaseActions {
66b51c
66b51c
    local FILE=''
66b51c
    local FILES=''
66b51c
    local EXTENSION=''
66b51c
66b51c
    # Define file extensions we'll look files for. This is, the
66b51c
    # extension of files we want to perform maintainance tasks for.
66b51c
    EXTENSION='(svg|xhtml|sh)'
66b51c
66b51c
    # Build list of files to process using action value as reference.
040e4a
    FILES=$(cli_getFilesList ${ACTIONVAL} --pattern="${FLAG_FILTER}.*\.${EXTENSION}")
66b51c
be7de3
    # Print separator line.
4a423a
    cli_printMessage '-' --as-separator-line
be7de3
66b51c
    # Process list of files and perform maintainance tasks
66b51c
    # accordingly.
66b51c
    for FILE in $FILES;do
66b51c
0a3f74
        # Print action message.
4a423a
        cli_printMessage "$FILE" --as-tuningup-line
0a3f74
8b1490
        # Define what to do based on file extension.
66b51c
        if [[ $FILE =~ '\.svg$' ]];then
8df18d
            ${FUNCNAM}_svg
66b51c
        elif [[ $FILE =~ '\.xhtml$' ]];then
8df18d
            ${FUNCNAM}_xhtml
66b51c
        elif [[ $FILE =~ '\.sh$' ]];then
8df18d
            ${FUNCNAM}_shell
66b51c
        fi
66b51c
66b51c
    done
66b51c
66b51c
}