summaryrefslogtreecommitdiff
path: root/cgi/handle_opts
blob: 63106d42645cc3d4786c61c2cdfe55e2729a4aaa (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
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
#!/usr/local/bin/python
# Copyright (C) 1998 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 0211-1307, USA.

"""Process input to user options form."""

__version__ = "$Revision: 539 $"

import sys
sys.path.append('/home/mailman/mailman/modules')

import os, cgi, string
import mm_utils, maillist, mm_err, mm_cfg, htmlformat

try:
    sys.stderr = mm_utils.StampedLogger("error", label = 'handle_opts',
                                        manual_reprime=1, nofail=0)
except IOError:
    pass                        # Oh well - SOL on redirect, errors show thru.


doc = htmlformat.Document()

path = os.environ['PATH_INFO']
list_info = mm_utils.GetPathPieces(path)

if len(list_info) < 2:
    doc.AddItem(htmlformat.Header(2, "Error"))
    doc.AddItem(htmlformat.Bold("Invalid options to CGI script."))
    print doc.Format(bgcolor="#ffffff")
    sys.exit(0)

list_name = string.lower(list_info[0])
user = list_info[1]

if len(list_info) < 2:
    doc.AddItem(htmlformat.Header(2, "Error"))
    doc.AddItem(htmlformat.Bold("Invalid options to CGI script."))
    print doc.Format(bgcolor="#ffffff")
    sys.exit(0)

try:
    list = maillist.MailList(list_name)
except:
    doc.AddItem(htmlformat.Header(2, "Error"))
    doc.AddItem(htmlformat.Bold("%s: No such list." % list_name))
    print doc.Format(bgcolor="#ffffff")
    sys.exit(0)

if not list._ready:
    doc.AddItem(htmlformat.Header(2, "Error"))
    doc.AddItem(htmlformat.Bold("%s: No such list." % list_name))
    print doc.Format(bgcolor="#ffffff")
    sys.exit(0)


def PrintResults(results):
    replacements = list.GetStandardReplacements()
    replacements['<mm-results>'] = results
    replacements['<mm-operation>'] = operation
    output = list.ParseTags('handle_opts.html', replacements)

    doc.AddItem(output)
    print doc.Format(bgcolor="#ffffff")
    list.Unlock()
    sys.exit(0)

form = cgi.FieldStorage()

error = 0
operation = ""

if string.lower(user) not in list.members + list.digest_members:
    PrintResults("%s not a member!<p>" % user)

if form.has_key("unsub"):
    operation = "Unsubscribe"
    if not form.has_key("upw"):
	PrintResults("You must give your password to unsubscribe.<p>")
    else:
	try:
	    pw = form["upw"].value
	    if list.ConfirmUserPassword(user, pw):
		list.DeleteMember(user, "web cmd")
	except mm_err.MMListNotReady:
	    PrintResults("List is not functional.")
	except mm_err.MMNoSuchUserError:
	    PrintResults("You seem to already be not a member.<p>")
	except mm_err.MMBadUserError:
	    PrintResults("Your account has gone awry - "
                         "please contact the list administrator!<p>")
	except mm_err.MMBadPasswordError:
	    PrintResults("That password was incorrect.<p>")
#	except:
#	    PrintResults('''An unknown error occured.  <p>
#Please send mail to <a href=%s>%s</a> explaining 
#exactly what you did to get this error.<p>''' % (mm_cfg.MAILMAN_OWNER,
#                                                 mm_cfg.MAILMAN_OWNER))

    PrintResults("You have been unsubscribed.<p>")
elif form.has_key("emailpw"):
	try:
            list.MailUserPassword(user)
            PrintResults("A reminder of your password "
                         "has been emailed to you.<p>")
        except mm_err.MMBadUserError:
            PrintResults("Your password entry has not been found.  The list "
                         "manager is being notified.<p>")
            
elif form.has_key("changepw"):
    if (form.has_key('opw')
        and form.has_key('newpw')
        and form.has_key('confpw')):
	try:
	    list.ConfirmUserPassword(user, form['opw'].value)
	    list.ChangeUserPassword(user, 
				    form['newpw'].value, form['confpw'].value)
	except mm_err.MMListNotReady:
	    PrintResults("The list is currently not funcitonal.")
	except mm_err.MMNotAMemberError:
	    PrintResults("You seem to no longer be a list member.")
	except mm_err.MMBadPasswordError:
	    PrintResults("The old password you supplied was incorrect.")
	except mm_err.MMPasswordsMustMatch:
	    PrintResults("Passwords must match.")
	except:
	    PrintResults('''An unknown error occured.  <p>
Please send mail to <a href=%s>%s</a> explaining 
exactly what you did to get this error.<p>''' % (mm_cfg.MAILMAN_OWNER, mm_cfg.MAILMAN_OWNER))


	PrintResults("Your password has been changed.")
    else:
	PrintResults("You must supply your old password,"
                     " and your new password twice.")

else:
    # If keys don't exist, set them to whatever they were. (essentially a noop)
    if form.has_key("digest"):
	digest_value = eval(form["digest"].value)
    else:
	digest_value = list.GetUserOption(user, mm_cfg.Digests)
    if form.has_key("mime"):
	mime = eval(form["mime"].value)
    else:
	mime = list.GetUserOption(user, mm_cfg.DisableMime)
    if form.has_key("dontreceive"):
	dont_receive = eval(form["dontreceive"].value)
    else:
	dont_receive = list.GetUserOption(user, mm_cfg.DontReceiveOwnPosts)
    if form.has_key("ackposts"):
	ack_posts    = eval(form["ackposts"].value)
    else:
	ack_posts    = list.GetUserOption(user, mm_cfg.AcknowlegePosts)
    if form.has_key("disablemail"):
	disable_mail = eval(form["disablemail"].value)
    else:
	disable_mail = list.GetUserOption(user, mm_cfg.DisableDelivery)
    if form.has_key("conceal"):
	conceal = eval(form["conceal"].value)
    else:
	conceal = list.GetUserOption(user, mm_cfg.ConcealSubscription)

    if not form.has_key("digpw"):
	PrintResults("You must supply a password to change options.")
    try:
	list.ConfirmUserPassword(user, form['digpw'].value)
    except mm_err.MMAlreadyDigested:
	pass
    except mm_err.MMAlreadyUndigested:
	pass
    except mm_err.MMMustDigestError:
	PrintResults("List only accepts digest members.")
    except mm_err.MMCantDigestError:
	PrintResults("List doesn't accept digest members.")
    except mm_err.MMNotAMemberError:
	PrintResults("%s isn't subscribed to this list." % mail.GetSender())
    except mm_err.MMListNotReady:
	PrintResults("List is not functional.")
    except mm_err.MMNoSuchUserError:
	PrintResults("%s is not subscribed to this list." %mail.GetSender())
    except mm_err.MMBadPasswordError:
	PrintResults("You gave the wrong password.")
    except:
	PrintResults('''An unknown error occured.  <p>
Please send mail to <a href=%s>%s</a> explaining
exactly what you did to get this error.<p>''' % (mm_cfg.MAILMAN_OWNER))
    

    list.SetUserOption(user, mm_cfg.DisableDelivery, disable_mail)
    list.SetUserOption(user, mm_cfg.DontReceiveOwnPosts, dont_receive)
    list.SetUserOption(user, mm_cfg.AcknowlegePosts, ack_posts)
    list.SetUserOption(user, mm_cfg.DisableMime, mime)
    try:
        list.SetUserDigest(user, digest_value)
    except (mm_err.MMAlreadyDigested, mm_err.MMAlreadyUndigested):
	pass
    list.SetUserOption(user, mm_cfg.ConcealSubscription, conceal)
    PrintResults("You have successfully set your options.")