summaryrefslogtreecommitdiffstats
path: root/tools/git-migration/AUTHOR
blob: 08a5a8169f33073c53d7ba80ff2d62d59d1f2838 (plain) (blame)
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
#!/bin/sh

set -e
set -u

usage() {
    echo "Syntax: $0 <author>"
}
[ -n "${1:-}" ] && [ -z "${2:-}" ] || usage

author="$1"
real_author=$author
full_name=`getent passwd $author | cut -d: -f5 | sed 's/,.\+//'`;

if [ -z "$full_name" ]; then
    echo "Unable to get account information for $author" >& 2
    if echo $author  | grep -q -E -- '-guest$'; then
	echo "  trying without -guest suffix" >& 2
	author=`echo $author | sed 's/-guest$//'`
	full_name=`getent passwd $author | cut -d: -f5 | sed 's/,.\+//'`;
	if [ -z "$full_name" ]; then
	    echo "Unable to get account information for $author" >& 2
	    echo "  trying a hard-coded list of DDs" >& 2
	    author=`echo $author | sed 's/xaviero/xoswald/; s/hanska/dapal/; s/kitterma/kitterman/; s/ra28145/jjr/; s/ryan52/ryan/; s/thialme/franck/'`
	    full_name=`getent passwd $author | cut -d: -f5 | sed 's/,.\+//'`;
	    if [ -z "$full_name" ]; then
		echo "NO MORE WORKAROUNDS: Unable to get account information for $author" >& 2
		exit 0
	    fi
	fi
    else
    	exit 0
    fi
fi

if which curl > /dev/null; then
	CURL='curl -s'
else
	CURL='wget -q -O -'
fi

if echo $author | grep -E -q -e '-guest$'; then
    email=`$CURL https://alioth.debian.org/users/$author/ | grep sendmessage|grep touser|grep nospam|sed 's,.*<strong>.*<a href[^>]\+>,,; s/<.*//; s/ @nospam@ /@/'`;
    
    if [ -z "$email" ]; then
        email="$author@users.alioth.debian.org";
    fi;
else
    email="$author@debian.org";
fi;

echo "$real_author = $full_name <$email>"

# vim: set et sw=4 sts=4 ts=8 tw=78 ai :

© 2014-2024 Faster IT GmbH | imprint | privacy policy