#! /usr/bin/env python
#
# Copyright (C) 1998,1999,2000 by the Free Software Foundation, Inc.
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
# 
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
# 
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software 
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.

"""Set the site password, prompting from the terminal.

The site password can be used in most if not all places that the list
administrator's password can be used, which in turn can be used in most places
that a list users password can be used.

Usage: %(PROGRAM)s [options] [password]

Options:

    -h/--help
        Print this help message and exit.

If password is not given on the command line, it will be prompted for.
"""

import sys
import getpass
import getopt

import paths
from Mailman import Utils

PROGRAM = sys.argv[0]



def usage(code, msg=''):
    print __doc__ % globals()
    if msg:
        print msg
    sys.exit(code)



def main():
    try:
        opts, args = getopt.getopt(sys.argv[1:], 'h', ['help'])
    except getopt.error, msg:
        usage(1, msg)

    for opt, arg in opts:
        if opt in ('-h', '--help'):
            usage(0)

    if len(args) == 1:
        pw1 = args[0]
    else:
        try:
            pw1 = getpass.getpass("New Password: ")
            pw2 = getpass.getpass("Again to confirm password: ")
            if pw1 <> pw2:
                print 'Passwords do not match; no changes made.'
                sys.exit(1)
        except KeyboardInterrupt:
            print "Interrupted..."
            sys.exit(0)
    # Set the site password by writing it to a local file.  Make sure the
    # permissions don't allow other+read.
    Utils.SetSiteAdminPassword(pw1)
    if Utils.CheckSiteAdminPassword(pw1):
        print 'Password changed.'
    else:
        print 'Password change failed.'



if __name__ == '__main__':
    main()
