[7195] | 1 | ## $Id: browser.py 7649 2012-02-14 15:00:47Z 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 | ## |
---|
[5082] | 18 | """UI components for accesscodes. |
---|
| 19 | """ |
---|
| 20 | import grok |
---|
[5088] | 21 | from datetime import datetime |
---|
[6450] | 22 | from hurry.workflow.interfaces import InvalidTransitionError |
---|
[6455] | 23 | from waeup.sirp.browser.resources import datatable |
---|
[7488] | 24 | from waeup.sirp.browser import SIRPPage, SIRPAddFormPage, NullValidator |
---|
[5082] | 25 | from waeup.sirp.browser.breadcrumbs import Breadcrumb |
---|
[5129] | 26 | from waeup.sirp.browser.viewlets import ( |
---|
[5381] | 27 | AdminTask, AddActionButton, SearchActionButton, BatchOpButton, ManageLink) |
---|
[7321] | 28 | from waeup.sirp.interfaces import ISIRPObject |
---|
[5082] | 29 | |
---|
[5088] | 30 | from waeup.sirp.accesscodes.interfaces import ( |
---|
| 31 | IAccessCodeBatchContainer, IAccessCodeBatch, |
---|
| 32 | ) |
---|
[6450] | 33 | from waeup.sirp.accesscodes.catalog import search |
---|
[7459] | 34 | from waeup.sirp.browser.layout import action |
---|
[5082] | 35 | |
---|
[7321] | 36 | grok.context(ISIRPObject) |
---|
[5082] | 37 | |
---|
[7321] | 38 | class BatchContainerPage(SIRPPage): |
---|
[5082] | 39 | grok.name('index') |
---|
| 40 | grok.context(IAccessCodeBatchContainer) |
---|
| 41 | grok.template('batchcontainer') |
---|
[5104] | 42 | grok.require('waeup.manageACBatches') |
---|
[5082] | 43 | |
---|
[7467] | 44 | label = 'Access Code Batches' |
---|
[5082] | 45 | pnav = 0 |
---|
| 46 | |
---|
[5117] | 47 | def update(self, batches=None, archive=None, delete=None): |
---|
| 48 | if archive is None and delete is None: |
---|
| 49 | return |
---|
[5124] | 50 | if not batches: |
---|
| 51 | self.flash('No batch selected.') |
---|
| 52 | return |
---|
[5117] | 53 | if isinstance(batches, basestring): |
---|
| 54 | batches = [batches] |
---|
| 55 | for name in batches: |
---|
| 56 | batch = self.context[name] |
---|
| 57 | csv_file = batch.archive() |
---|
| 58 | self.flash('Archived %s (%s)' % (name, csv_file)) |
---|
| 59 | if delete is None: |
---|
| 60 | continue |
---|
| 61 | del self.context[name] |
---|
| 62 | self.flash('Deleted batch %s' % name) |
---|
[5104] | 63 | |
---|
[7321] | 64 | class AddBatchPage(SIRPAddFormPage): |
---|
[5084] | 65 | grok.name('add') |
---|
| 66 | grok.context(IAccessCodeBatchContainer) |
---|
[5104] | 67 | grok.require('waeup.manageACBatches') |
---|
[5084] | 68 | |
---|
[7459] | 69 | label = 'Create Access Code Batch' |
---|
[5084] | 70 | pnav = 0 |
---|
| 71 | |
---|
[5088] | 72 | form_fields = grok.AutoFields(IAccessCodeBatch).select( |
---|
[6417] | 73 | 'prefix', 'entry_num', 'cost') |
---|
[5088] | 74 | |
---|
[7488] | 75 | @action('Create batch', style='primary') |
---|
[5084] | 76 | def createBatch(self, **data): |
---|
[5088] | 77 | creator = self.request.principal.id |
---|
| 78 | creation_date = datetime.now() |
---|
| 79 | data.update(creation_date=creation_date, creator=creator) |
---|
[5126] | 80 | batch = self.context.createBatch(**data) |
---|
[5113] | 81 | csv_file = batch.createCSVLogFile() |
---|
[5088] | 82 | self.context._p_changed = True |
---|
| 83 | self.flash('Batch created (%s entries)' % data['entry_num']) |
---|
[5113] | 84 | self.flash('Data written to %s' % csv_file) |
---|
[5084] | 85 | self.redirect(self.url(self.context)) |
---|
| 86 | |
---|
[7488] | 87 | @action('Cancel', validator=NullValidator) |
---|
| 88 | def cancel(self, *args, **kw): |
---|
| 89 | self.flash('Batch creation cancelled.') |
---|
| 90 | self.redirect(self.url(self.context)) |
---|
| 91 | |
---|
[7321] | 92 | class ReimportBatchPage(SIRPPage): |
---|
[5132] | 93 | """Screen for reimporting AC batches. |
---|
| 94 | """ |
---|
[5130] | 95 | grok.name('reimport') |
---|
| 96 | grok.context(IAccessCodeBatchContainer) |
---|
| 97 | grok.template('reimportbatchpage') |
---|
| 98 | grok.require('waeup.manageACBatches') |
---|
| 99 | |
---|
[7467] | 100 | label = 'Reimport Access Code Batches' |
---|
[5130] | 101 | pnav = 0 |
---|
| 102 | |
---|
[5132] | 103 | def update(self, filenames=None, reimport=None, cancel=None): |
---|
| 104 | if cancel is not None: |
---|
| 105 | self.flash('Reimport cancelled.') |
---|
| 106 | self.redirect(self.url(self.context)) |
---|
| 107 | return |
---|
| 108 | if reimport is None: |
---|
| 109 | return |
---|
| 110 | if not filenames: |
---|
| 111 | self.flash('No file chosen. Action cancelled.') |
---|
| 112 | self.redirect(self.url(self.context)) |
---|
| 113 | return |
---|
| 114 | if isinstance(filenames, basestring): |
---|
| 115 | filenames = [filenames] |
---|
| 116 | userid = self.request.principal.id |
---|
| 117 | for filename in filenames: |
---|
| 118 | try: |
---|
| 119 | self.context.reimport(filename, userid) |
---|
| 120 | except KeyError: |
---|
| 121 | self.flash('This batch already exists: %s' % filename) |
---|
| 122 | continue |
---|
| 123 | self.flash('Successfully reimported: %s' % filename) |
---|
| 124 | self.redirect(self.url(self.context)) |
---|
[6388] | 125 | |
---|
[7321] | 126 | class BatchContainerSearchPage(SIRPPage): |
---|
[5155] | 127 | grok.name('search') |
---|
| 128 | grok.context(IAccessCodeBatchContainer) |
---|
| 129 | grok.template('searchpage') |
---|
| 130 | grok.require('waeup.manageACBatches') |
---|
| 131 | pnav = 0 |
---|
[7467] | 132 | label = 'Search and Manage Access Codes' |
---|
[5155] | 133 | |
---|
[6450] | 134 | def update(self, *args, **kw): |
---|
[6455] | 135 | datatable.need() |
---|
[6450] | 136 | form = self.request.form |
---|
| 137 | self.hitlist = [] |
---|
| 138 | if 'searchterm' in form and form['searchterm']: |
---|
| 139 | self.searchterm = form['searchterm'] |
---|
| 140 | self.searchtype = form['searchtype'] |
---|
| 141 | elif 'old_searchterm' in form: |
---|
| 142 | self.searchterm = form['old_searchterm'] |
---|
| 143 | self.searchtype = form['old_searchtype'] |
---|
| 144 | else: |
---|
[5155] | 145 | return |
---|
[6450] | 146 | if not 'entries' in form: |
---|
| 147 | self.hitlist = search(query=self.searchterm, |
---|
| 148 | searchtype=self.searchtype, view=self) |
---|
| 149 | return |
---|
| 150 | entries = form['entries'] |
---|
[5155] | 151 | if isinstance(entries, basestring): |
---|
| 152 | entries = [entries] |
---|
| 153 | for entry in entries: |
---|
[6450] | 154 | if 'disable' in form: |
---|
| 155 | try: |
---|
[6471] | 156 | comment = u"AC disabled" |
---|
[6459] | 157 | self.context.disable(entry, comment) |
---|
[6450] | 158 | self.flash('%s disabled.' % entry) |
---|
| 159 | except InvalidTransitionError: |
---|
[6451] | 160 | self.flash('%s: Disable transition not allowed.' % entry) |
---|
[6450] | 161 | elif 'enable' in form: |
---|
| 162 | try: |
---|
[6471] | 163 | comment = u"AC re-enabled" |
---|
[6459] | 164 | self.context.enable(entry, comment) |
---|
[6450] | 165 | self.flash('%s (re-)enabled.' % entry) |
---|
| 166 | except InvalidTransitionError: |
---|
[6451] | 167 | self.flash('%s: Re-enable transition not allowed.' % entry) |
---|
[6450] | 168 | self.hitlist = search(query=self.searchterm, |
---|
| 169 | searchtype=self.searchtype, view=self) |
---|
[5155] | 170 | return |
---|
| 171 | |
---|
[5082] | 172 | class BatchContainerBreadcrumb(Breadcrumb): |
---|
| 173 | """A breadcrumb for ac batch containers. |
---|
[5104] | 174 | """ |
---|
| 175 | grok.require('waeup.manageACBatches') |
---|
[5082] | 176 | grok.context(IAccessCodeBatchContainer) |
---|
| 177 | title = u'Access Code Batches' |
---|
| 178 | parent_viewname = 'administration' |
---|
| 179 | |
---|
[7488] | 180 | #class BatchContainerSearchBreadcrumb(Breadcrumb): |
---|
| 181 | # """A breadcrumb for ac batch containers search page. |
---|
| 182 | # """ |
---|
| 183 | # grok.require('waeup.manageACBatches') |
---|
| 184 | # grok.context(IAccessCodeBatchContainer) |
---|
| 185 | # grok.name('search') |
---|
| 186 | # title = u'Search Access Codes' |
---|
| 187 | # viewname = 'search' |
---|
| 188 | # parent_viewname = 'index' |
---|
[5155] | 189 | |
---|
[5082] | 190 | class AdminTaskManageACBatches(AdminTask): |
---|
| 191 | """Entry on administration page that links to batch container. |
---|
| 192 | """ |
---|
| 193 | grok.order(5) |
---|
[5104] | 194 | grok.require('waeup.manageACBatches') |
---|
[5082] | 195 | grok.template('admintaskacbatches') |
---|
| 196 | |
---|
[5412] | 197 | link_title = 'Access Code Batches' |
---|
[5082] | 198 | target_viewname = 'accesscodes' |
---|
[5084] | 199 | |
---|
| 200 | class CreateBatchButton(AddActionButton): |
---|
| 201 | """Action button on batch container page which links to batch creation. |
---|
| 202 | """ |
---|
| 203 | grok.context(IAccessCodeBatchContainer) |
---|
| 204 | grok.view(BatchContainerPage) |
---|
[5104] | 205 | grok.require('waeup.manageACBatches') |
---|
[6450] | 206 | text = 'Add Access Code Batch' |
---|
[5104] | 207 | |
---|
[5129] | 208 | class ReimportBatchButton(BatchOpButton): |
---|
| 209 | """Action button on batch container page which links to batch reimport. |
---|
| 210 | """ |
---|
| 211 | grok.context(IAccessCodeBatchContainer) |
---|
| 212 | grok.view(BatchContainerPage) |
---|
| 213 | grok.require('waeup.manageACBatches') |
---|
| 214 | target = 'reimport' |
---|
[6450] | 215 | text = 'Reimport Access Code Batch' |
---|
[5129] | 216 | |
---|
[5155] | 217 | class SearchAccessCodeButton(SearchActionButton): |
---|
| 218 | """Action button on batch container page which links to search. |
---|
| 219 | """ |
---|
| 220 | grok.context(IAccessCodeBatchContainer) |
---|
| 221 | grok.view(BatchContainerPage) |
---|
| 222 | grok.require('waeup.manageACBatches') |
---|
[6450] | 223 | text = 'Search Access Codes' |
---|
[6388] | 224 | |
---|
[5381] | 225 | class ManageAccessCodes(ManageLink): |
---|
| 226 | """Link in upper left box to access code management. |
---|
[5104] | 227 | """ |
---|
| 228 | grok.order(6) |
---|
| 229 | grok.require('waeup.manageACBatches') |
---|
| 230 | |
---|
[5381] | 231 | link = u'accesscodes' |
---|
[5412] | 232 | text = u'Access Codes' |
---|