#!/bin/sh
# Copyright 2012 The Go Authors. All rights reserved.
# Use of this source code is governed by a BSD-style
# license that can be found in the LICENSE file.

# git gofmt, go vet, and golint pre-commit hook
#
# To use, store as .git/hooks/pre-commit inside your repository and make sure
# it has execute permissions.
#
# This script does not handle file names that contain spaces.

# Please keep the pre-push hook in sync with this file.
#
# It would be possible to factor out the common code into an included
# file, since git hooks always run in the root of the repo (
# https://stackoverflow.com/questions/7065224/ ), but we symlink these
# files from the KBFS repo, so it would fail there unless the includes
# were also symlinked. It might be possible to create a
# install-git-hooks script that does it all for you, or to do some
# more bash magic to resolve the symlink (difficult to do
# cross-platform!), but it's not worth the effort right now,
# especially since it's possible that the two repos will eventually be
# merged.

check_go_fmt() {
	gofiles=$(git diff --cached --name-only --diff-filter=ACM | grep '.go$' | grep -v go/vendor/ | grep -v vendor/)
	[ -z "$gofiles" ] && return 0

	unformatted=$(gofmt -l $gofiles)
	[ -z "$unformatted" ] && return 0

	# Some files are not gofmt'd. Print message and fail.

	echo >&2 "Go files must be formatted with gofmt. Please run:"
	for fn in $unformatted; do
		echo >&2 "  gofmt -w $PWD/$fn"
	done

	exit 1
}

check_go_vet() {
	gofiles=$(git diff --cached --name-only --diff-filter=ACM | grep '.go$' | grep -v go/vendor/)
	[ -z "$gofiles" ] && return 0

	warnings=$(go vet $(go list ./... 2>/dev/null | grep -v vendor) 2>&1)
	[ -z "$warnings" ] && return 0

	# go vet found issues

	echo >&2 "go vet found issues:"
	echo >&2 $warnings

	exit 1
}

check_make_lint() {
    if ! which golint > /dev/null 2>&1 ; then
      echo >&2 "golint is not installed"
      exit 1
    fi
    # Try the root dir.  If that doesn't work, see if there's a go subdir.
    lint=$(make -s lint 2> /dev/null)
    if [ $? -eq 2 ] ; then
        lint=$(make -s -C go lint 2> /dev/null)
    fi
    [ -z "$lint" -o "$lint" = "Lint-free!" ] && return 0

    # make lint found issues
    echo >&2 "go lint found issues:"
    echo >&2 "$lint"

    exit 1
}

#-----------------------------------------------------------------------------

check_go_fmt
check_go_vet
check_make_lint
