source: main/waeup.ikoba/trunk/src/waeup/ikoba/mandates/browser.py @ 12816

Last change on this file since 12816 was 12816, checked in by Henrik Bettermann, 10 years ago

Ticket #11 compromise

Redirect to CustomerChangePasswordPage? if PasswordMandate? was used so that customers are reminded of changing the password. But we do not require a password change. Maybe customers feel comfortable with the generated password.

  • Property svn:keywords set to Id
File size: 1.8 KB
Line 
1## $Id: browser.py 12816 2015-03-23 16:47:58Z henrik $
2##
3## Copyright (C) 2011 Uli Fouquet & Henrik Bettermann
4## This program is free software; you can redistribute it and/or modify
5## it under the terms of the GNU General Public License as published by
6## the Free Software Foundation; either version 2 of the License, or
7## (at your option) any later version.
8##
9## This program is distributed in the hope that it will be useful,
10## but WITHOUT ANY WARRANTY; without even the implied warranty of
11## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12## GNU General Public License for more details.
13##
14## You should have received a copy of the GNU General Public License
15## along with this program; if not, write to the Free Software
16## Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17##
18"""Views for mandates.
19"""
20import grok
21from urllib import urlencode
22from waeup.ikoba.browser.layout import UtilityView
23from waeup.ikoba.interfaces import ICompany
24from waeup.ikoba.interfaces import MessageFactory as _
25
26class MandateView(UtilityView, grok.View):
27    """View to execute mandate.
28    """
29    grok.context(ICompany)
30    grok.name('mandate')
31    grok.require('waeup.Public')
32
33    def update(self, *args, **kw):
34        form = self.request.form
35        mandate_id = form.get('mandate_id', None)
36        if not mandate_id:
37            self.flash(_('Misuse'))
38            return
39        mandates = grok.getSite()['mandates']
40        mandate = mandates.get(mandate_id, None)
41        if mandate is None:
42            self.flash(_('No mandate.'))
43            return
44        msg = mandate.execute()
45        self.mandate_name = mandate.__class__.__name__
46        self.flash(msg)
47        return
48
49    def render(self):
50        args = {'camefrom': self.mandate_name}
51        self.redirect(self.url(self.context) + '/login?%s' % urlencode(args))
52        return
Note: See TracBrowser for help on using the repository browser.