summaryrefslogtreecommitdiff
path: root/.gitcheck
blob: b3405a9c36da4e3d32a6b75080609379dfa3f06c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
#!/usr/bin/env sh
# SPDX-FileCopyrightText: 2022 Caleb La Grange <thonkpeasant@protonmail.com>
# SPDX-FileCopyrightText: 2023 Leah Rowe <leah@libreboot.org>
# SPDX-License-Identifier: GPL-3.0-only

. "include/err.sh"

git_name="lbmkplaceholder"
git_email="placeholder@lbmkplaceholder.com"

main()
{
	[ "$(id -u)" = "0" ] && return 0

	if [ $# -gt 0 ]; then
		if [ "${1}" = "clean" ]; then
			clean 1> /dev/null
		else
			err "unsupported argument, \"${1}\""
		fi
	else
		set_placeholders 1> /dev/null
	fi
}

set_placeholders()
{
	set_git_credentials

	# Check coreboot as well to prevent errors during building
	[ -d coreboot ] || return 0
	for x in coreboot/*; do
		[ -d "${x}" ] || continue
		[ -e "${x}/.git" ] || continue
		(
		cd "${x}"
		set_git_credentials
		)
	done
}

set_git_credentials()
{
	# Check if username and or email is set.
	if ! git config user.name || git config user.email ; then
		git config user.name || git config user.name "${git_name}" || \
		    err "cannot set local git user.name"
		git config user.email || git config user.email "${git_email}" \
		    || err "cannot set local git user.email"
	fi
}

clean()
{
	unset_placeholders

	[ -d coreboot ] || return 0
	for x in coreboot/*; do
		[ -d "${x}" ] || continue
		[ -e "${x}/.git" ] || continue
		(
		cd "${x}"
		unset_placeholders
		)
	done
}

unset_placeholders()
{
	if [ "$(git config user.name)" = "${git_name}" ]; then
		git config --unset user.name || \
		    err "cannot unset local git user.name"
	fi

	if [ "$(git config user.email)" = "${git_email}" ]; then
		git config --unset user.email || \
		    err "cannot unset local git user.email"
	fi
}

main $@