Check syntax errors before commit

Git uses hooks to perform actions at specific stages of your workflow. For instance:

  • Before committing (pre-commit)
  • Sending emails after a push (post-receive)

Committing code with syntax errors is annoying and if you ever broke a build because you pushed code with errors, than you should consider to do an automated syntax check before committing.

For our PHP-Code at Myra Security we are using this script for checking for syntax errors:

#!/bin/bash
#
# Check whether a commit would introduce errors
#
# Checks for
#     * PHP syntax errors
#     * Leftover conflict markers
#     * Twig syntax errors
#
# Use this script as a pre-commit hook in Git. For automatic deployment
# please put this file into $HOME/.git_template/hooks and /etc/skel.
#
# Author: Hakan Kuecuekyilamz, , 2011-10-21.

# All but (D)eleted
GIT_OPTIONS='diff-index --cached --full-index --diff-filter=ACMRTUXB'
 
ERR=0
 
# Which checks to run
CHECK_PHP=1
CHECK_MERGE=1
CHECK_TWIG=1
 
#
# Check for PHP syntax errors
#
if [ "$CHECK_PHP" = "1" ]; then
    RET1=$(git $GIT_OPTIONS HEAD | grep -E '.(php)$' | {
            while read i; do
                OLD_MODE='field 1' # Not used
                NEW_MODE='field 2' # Not used
                OLD_HASH='field 3' # Not used
                NEW_HASH=$(echo $i | awk '{ print $4 }')
                STATUS='field 5'   # Not used
                FILE_NAME=$(echo $i | awk '{ print $6 }')
 
                TMP=$(git cat-file -p $NEW_HASH | php -l 2> /dev/null)
                if [ $? -ne 0 ]; then
                    echo '  '$FILE_NAME
                fi
            done
         }
    )
 
    if [ "$RET1" != "" ]; then
        echo "[ERROR]: At least one of your PHP file has a syntax error."
        echo "  Please check your file(s) with php -l for syntax errors,"
        echo "  fix them, and try again!"
        echo
        echo "$RET1"
        echo
 
        ERR=1
    fi
fi
 
#
# Check for files with merge conflict markers
#
if [ "$CHECK_MERGE" = "1" ]; then
    RET2=$(git $GIT_OPTIONS HEAD | {
            while read i; do
                OLD_MODE='field 1' # Not used
                NEW_MODE='field 2' # Not used
                OLD_HASH='field 3' # Not used
                NEW_HASH=$(echo $i | awk '{ print $4 }')
                STATUS='field 5'   # Not used
                FILE_NAME=$(echo $i | awk '{ print $6 }')
 
                TMP=$(git cat-file -p $NEW_HASH | grep -E '^(<<<<<<<|>>>>>>>)' > /dev/null 2>&1)
                if [ $? -eq 0 ]; then
                    echo '  '$FILE_NAME
                fi
            done
         }
    )
 
    if [ "$RET2" != "" ];then
        echo "[ERROR]: At least one of your files has merge conflict markers."
        echo "  Please check your file(s) for <<<<<<< and/or >>>>>>>,"
        echo "  fix your merge conflict(s), and try again!"
        echo
        echo "$RET2"
        echo
 
        ERR=2
    fi
fi
 
#
# Check for files with Twig syntax errors
#
if [ "$CHECK_TWIG" = "1" ]; then
    RET3=$(git $GIT_OPTIONS HEAD | grep -E '.(twig)$' | {
            while read i; do
                OLD_MODE='field 1' # Not used
                NEW_MODE='field 2' # Not used
                OLD_HASH='field 3' # Not used
                NEW_HASH=$(echo $i | awk '{ print $4 }')
                STATUS='field 5'   # Not used
                FILE_NAME=$(echo $i | awk '{ print $6 }')
 
                TMP=$(git cat-file -p $NEW_HASH | php app/console twig:lint > /dev/null 2>&1)
                if [ $? -ne 0 ]; then
                    echo '  '$FILE_NAME
                fi
            done
         }
    )
 
    if [ "$RET3" != "" ];then
        echo "[ERROR]: At least one of your TWIG files has a syntax error."
        echo "  Please check your file(s) with php app/console twig:lint for syntax errors,"
        echo "  fix them, and try again!"
        echo
        echo "$RET3"
        echo
 
        ERR=3
    fi
fi
 
exit $ERR

# All but (D)eleted
GIT_OPTIONS=’diff-index –cached –full-index –diff-filter=ACMRTUXB’

ERR=0

# Which checks to run
CHECK_PHP=1
CHECK_MERGE=1
CHECK_TWIG=1

#
# Check for PHP syntax errors
#
if [ "$CHECK_PHP" = "1" ]; then
RET1=$(git $GIT_OPTIONS HEAD | grep -E ‘.(php)$’ | {
while read i; do
OLD_MODE=’field 1′ # Not used
NEW_MODE=’field 2′ # Not used
OLD_HASH=’field 3′ # Not used
NEW_HASH=$(echo $i | awk ‘{ print $4 }’)
STATUS=’field 5′ # Not used
FILE_NAME=$(echo $i | awk ‘{ print $6 }’)

TMP=$(git cat-file -p $NEW_HASH | php -l 2> /dev/null)
if [ $? -ne 0 ]; then
echo ‘ ‘$FILE_NAME
fi
done
}
)

if [ "$RET1" != "" ]; then
echo "[ERROR]: At least one of your PHP file has a syntax error."
echo " Please check your file(s) with php -l for syntax errors,"
echo " fix them, and try again!"
echo
echo "$RET1"
echo

ERR=1
fi
fi

#
# Check for files with merge conflict markers
#
if [ "$CHECK_MERGE" = "1" ]; then
RET2=$(git $GIT_OPTIONS HEAD | {
while read i; do
OLD_MODE=’field 1′ # Not used
NEW_MODE=’field 2′ # Not used
OLD_HASH=’field 3’ # Not used
NEW_HASH=$(echo $i | awk ‘{ print $4 }’)
STATUS=’field 5′ # Not used
FILE_NAME=$(echo $i | awk ‘{ print $6 }’)

TMP=$(git cat-file -p $NEW_HASH | grep -E ‘^(<<<<<<<|>>>>>>>)’ > /dev/null 2>&1)
if [ $? -eq 0 ]; then
echo ‘ ‘$FILE_NAME
fi
done
}
)

if [ "$RET2" != "" ];then
echo "[ERROR]: At least one of your files has merge conflict markers."
echo " Please check your file(s) for <<<<<<< and/or >>>>>>>,"
echo " fix your merge conflict(s), and try again!"
echo
echo "$RET2"
echo

ERR=2
fi
fi

#
# Check for files with Twig syntax errors
#
if [ "$CHECK_TWIG" = "1" ]; then
RET3=$(git $GIT_OPTIONS HEAD | grep -E ‘.(twig)$’ | {
while read i; do
OLD_MODE=’field 1′ # Not used
NEW_MODE=’field 2′ # Not used
OLD_HASH=’field 3′ # Not used
NEW_HASH=$(echo $i | awk ‘{ print $4 }’)
STATUS=’field 5′ # Not used
FILE_NAME=$(echo $i | awk ‘{ print $6 }’)

TMP=$(git cat-file -p $NEW_HASH | php app/console twig:lint > /dev/null 2>&1)
if [ $? -ne 0 ]; then
echo ‘ ‘$FILE_NAME
fi
done
}
)

if [ "$RET3" != "" ];then
echo "[ERROR]: At least one of your TWIG files has a syntax error."
echo " Please check your file(s) with php app/console twig:lint for syntax errors,"
echo " fix them, and try again!"
echo
echo "$RET3"
echo

ERR=3
fi
fi

exit $ERR

This entry was posted in Development, Myra Security and tagged , . Bookmark the permalink.

Leave a Reply

Your email address will not be published. Required fields are marked *


*


This site uses Akismet to reduce spam. Learn how your comment data is processed.