[8848] | 1 | ## $Id: browser.py 13990 2016-06-25 05:00:54Z 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 | """ |
---|
| 20 | import grok |
---|
[13989] | 21 | from urllib import urlencode |
---|
[8848] | 22 | from waeup.kofa.browser.layout import UtilityView |
---|
| 23 | from waeup.kofa.interfaces import IUniversity |
---|
| 24 | from waeup.kofa.interfaces import MessageFactory as _ |
---|
| 25 | |
---|
| 26 | class MandateView(UtilityView, grok.View): |
---|
| 27 | """View to execute mandate. |
---|
| 28 | """ |
---|
| 29 | grok.context(IUniversity) |
---|
| 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: |
---|
[13986] | 37 | (self.msg, self.redirect_path) = (_('Misuse'), '') |
---|
[8848] | 38 | return |
---|
| 39 | mandates = grok.getSite()['mandates'] |
---|
| 40 | mandate = mandates.get(mandate_id, None) |
---|
| 41 | if mandate is None: |
---|
[13986] | 42 | (self.msg, self.redirect_path) = (_('No mandate.'), '') |
---|
[8848] | 43 | return |
---|
[13986] | 44 | (self.msg, self.redirect_path) = mandate.execute() |
---|
[13989] | 45 | if mandate.REDIRECT_WITH_MANDATE_ID: |
---|
| 46 | args = {'mandate_id':mandate_id} |
---|
| 47 | self.redirect_path = self.redirect_path + '?%s' % urlencode(args) |
---|
[8848] | 48 | return |
---|
| 49 | |
---|
| 50 | def render(self): |
---|
[13990] | 51 | if self.msg: |
---|
| 52 | self.flash(self.msg, type='warning') |
---|
| 53 | self.redirect(self.url(self.context) + self.redirect_path) |
---|
[8848] | 54 | return |
---|