aboutsummaryrefslogtreecommitdiffstats
path: root/MgaRepo/commands/authoremail.py
blob: 27ffaf5d247fec1c859050f62231c9ef97c7a096 (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
from MgaRepo import Error, config
from MgaRepo.command import *
import sys
import getopt

HELP = """\
Usage: mgarepo authoremail [OPTIONS] AUTHOR

Shows the e-mail of an SVN author. It is just a simple interface to access
the [authors] section of mgarepo.conf.

Options:
    -h      Show this message

Examples:
    mgarepo authoremail john
"""

def parse_options():
    parser = OptionParser(help=HELP)
    opts, args = parser.parse_args()
    if len(args) != 1:
        raise Error("invalid arguments")
    opts.author = args[0]
    return opts

def print_author_email(author):
    email = config.get("users", author)
    if not email:
        raise Error("author not found")
    print(email)
    
def main():
    do_command(parse_options, print_author_email)

# vim:et:ts=4:sw=4