# 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. """Provide a password-interface wrapper around private archives. Currently this is organized to obtain passwords for Mailman mailing list subscribers. """ import sys, os, string, cgi from Mailman import Utils, MailList, Errors from Mailman.htmlformat import * from Mailman.Logging.Utils import LogStdErr from Mailman import mm_cfg from Mailman.Logging.Syslog import syslog LogStdErr("error", "private") PAGE = ''' %(listname)s Private Archives Authentication
%(listname)s Private Archives Authentication

%(message)s

Address:
Password:

Important: From this point on, you must have cookies enabled in your browser, otherwise you will not be able to read the private archives.

Session cookies are used in the private archives so that you don\'t need to re-authenticate for every article your read. This cookie will expire automatically when you exit your browser.

''' login_attempted = 0 _list = None def true_path(path): "Ensure that the path is safe by removing .." path = string.replace(path, "../", "") path = string.replace(path, "./", "") return path[1:] def content_type(path): if path[-3:] == '.gz': path = path[:-3] if path[-4:] == '.txt': return 'text/plain' return 'text/html' def main(): doc = Document() try: path = os.environ['PATH_INFO'] except KeyError: doc.SetTitle("Private Archive Error") doc.AddItem(Header(3, "You must specify a list.")) print doc.Format(bgcolor="#FFFFFF") sys.exit(0) true_filename = os.path.join( mm_cfg.PRIVATE_ARCHIVE_FILE_DIR, true_path(path)) list_info = Utils.GetPathPieces(path) if len(list_info) < 1: doc.SetTitle("Private Archive Error") doc.AddItem(Header(3, "You must specify a list.")) print doc.Format(bgcolor="#FFFFFF") sys.exit(0) listname = string.lower(list_info[0]) # If it's a directory, we have to append index.html in this script. We # must also check for a gzipped file, because the text archives are # usually stored in compressed form. if os.path.isdir(true_filename): true_filename = true_filename + '/index.html' if not os.path.exists(true_filename) and \ os.path.exists(true_filename + '.gz'): # then true_filename = true_filename + '.gz' try: listobj = MailList.MailList(listname, lock=0) listobj.IsListInitialized() except Errors.MMListError, e: msg = 'No such list %s' % listname doc.SetTitle("Private Archive Error - %s" % msg) doc.AddItem(Header(2, msg)) print doc.Format(bgcolor="#FFFFFF") syslog('error', 'No such list "%s": %s\n' % (listname, e)) sys.exit(0) form = cgi.FieldStorage() user = password = None if form.has_key('username'): user = form['username'] if type(user) == type([]): user = user[0] user = user.value if form.has_key('password'): password = form['password'] if type(password) == type([]): password = password[0] password = password.value is_auth = 0 message = ("Please enter your %s subscription email address " "and password." % listobj.real_name) try: is_auth = listobj.WebAuthenticate(user=user, password=password, cookie='archive') except (Errors.MMBadUserError, Errors.MMBadPasswordError, Errors.MMNotAMemberError): message = ('Your email address or password were incorrect. ' 'Please try again.') except Errors.MMExpiredCookieError: message = 'Your cookie has gone stale, ' \ 'enter password to get a new one.', except Errors.MMInvalidCookieError: message = 'Error decoding authorization cookie.' except Errors.MMAuthenticationError: message = 'Authentication error.' if not is_auth: # Output the password form print 'Content-type: text/html\n\n' page = PAGE while path and path[0] == '/': path=path[1:] # Remove leading /'s basepath = os.path.split(listobj.GetBaseArchiveURL())[0] listname = listobj.real_name print page % vars() sys.exit(0) # Authorization confirmed... output the desired file try: if true_filename[-3:] == '.gz': import gzip f = gzip.open(true_filename, 'r') else: f = open(true_filename, 'r') except IOError: print 'Content-type: text/html\n' print "

Archive File Not Found

" print "No file", path, '(%s)' % true_filename else: print 'Content-type:', content_type(path), '\n' while (1): data = f.read(16384) if data == "": break sys.stdout.write(data) f.close()