1 | """UI components for accesscodes. |
---|
2 | """ |
---|
3 | import grok |
---|
4 | from datetime import datetime |
---|
5 | from waeup.sirp.browser import WAeUPPage, WAeUPAddFormPage |
---|
6 | from waeup.sirp.browser.breadcrumbs import Breadcrumb |
---|
7 | from waeup.sirp.browser.pages import UniversityPage |
---|
8 | from waeup.sirp.browser.viewlets import AdminTask, AddActionButton, LeftSidebar |
---|
9 | from waeup.sirp.interfaces import IWAeUPObject, IUniversity |
---|
10 | |
---|
11 | from waeup.sirp.accesscodes.accesscodes import AccessCodeBatch |
---|
12 | from waeup.sirp.accesscodes.interfaces import ( |
---|
13 | IAccessCodeBatchContainer, IAccessCodeBatch, |
---|
14 | ) |
---|
15 | |
---|
16 | grok.context(IWAeUPObject) |
---|
17 | |
---|
18 | class BatchContainerPage(WAeUPPage): |
---|
19 | grok.name('index') |
---|
20 | grok.context(IAccessCodeBatchContainer) |
---|
21 | grok.template('batchcontainer') |
---|
22 | grok.require('waeup.manageACBatches') |
---|
23 | |
---|
24 | title = 'Access Code Batches' |
---|
25 | pnav = 0 |
---|
26 | |
---|
27 | def update(self, batches=None, archive=None, delete=None): |
---|
28 | if archive is None and delete is None: |
---|
29 | return |
---|
30 | if not batches: |
---|
31 | self.flash('No batch selected.') |
---|
32 | return |
---|
33 | if isinstance(batches, basestring): |
---|
34 | batches = [batches] |
---|
35 | for name in batches: |
---|
36 | batch = self.context[name] |
---|
37 | csv_file = batch.archive() |
---|
38 | self.flash('Archived %s (%s)' % (name, csv_file)) |
---|
39 | if delete is None: |
---|
40 | continue |
---|
41 | del self.context[name] |
---|
42 | self.flash('Deleted batch %s' % name) |
---|
43 | |
---|
44 | class AddBatchPage(WAeUPAddFormPage): |
---|
45 | grok.name('add') |
---|
46 | grok.context(IAccessCodeBatchContainer) |
---|
47 | grok.require('waeup.manageACBatches') |
---|
48 | |
---|
49 | title = label = 'Create a WAeUP Scratch Card Batch' |
---|
50 | pnav = 0 |
---|
51 | |
---|
52 | form_fields = grok.AutoFields(IAccessCodeBatch).select( |
---|
53 | 'batch_prefix', 'entry_num', 'cost') |
---|
54 | |
---|
55 | @grok.action('Cancel') |
---|
56 | def cancel(self, *args, **kw): |
---|
57 | self.flash('Batch creation cancelled.') |
---|
58 | self.redirect(self.url(self.context)) |
---|
59 | |
---|
60 | @grok.action('Create batch') |
---|
61 | def createBatch(self, **data): |
---|
62 | creator = self.request.principal.id |
---|
63 | creation_date = datetime.now() |
---|
64 | data.update(creation_date=creation_date, creator=creator) |
---|
65 | batch = AccessCodeBatch(**data) |
---|
66 | self.context.addBatch(batch) |
---|
67 | csv_file = batch.createCSVLogFile() |
---|
68 | self.context._p_changed = True |
---|
69 | self.flash('Batch created (%s entries)' % data['entry_num']) |
---|
70 | self.flash('Data written to %s' % csv_file) |
---|
71 | self.redirect(self.url(self.context)) |
---|
72 | |
---|
73 | class BatchContainerBreadcrumb(Breadcrumb): |
---|
74 | """A breadcrumb for ac batch containers. |
---|
75 | """ |
---|
76 | grok.require('waeup.manageACBatches') |
---|
77 | grok.context(IAccessCodeBatchContainer) |
---|
78 | title = u'Access Code Batches' |
---|
79 | parent_viewname = 'administration' |
---|
80 | |
---|
81 | class AdminTaskManageACBatches(AdminTask): |
---|
82 | """Entry on administration page that links to batch container. |
---|
83 | """ |
---|
84 | grok.order(5) |
---|
85 | grok.require('waeup.manageACBatches') |
---|
86 | grok.template('admintaskacbatches') |
---|
87 | |
---|
88 | link_title = 'Manage access-code batches' |
---|
89 | target_viewname = 'accesscodes' |
---|
90 | |
---|
91 | class CreateBatchButton(AddActionButton): |
---|
92 | """Action button on batch container page which links to batch creation. |
---|
93 | """ |
---|
94 | grok.context(IAccessCodeBatchContainer) |
---|
95 | grok.view(BatchContainerPage) |
---|
96 | grok.require('waeup.manageACBatches') |
---|
97 | text = 'Add Scratch Card Batch' |
---|
98 | |
---|
99 | class ManageAccessCodes(grok.Viewlet): |
---|
100 | """Link on front page to access code management. |
---|
101 | """ |
---|
102 | grok.viewletmanager(LeftSidebar) |
---|
103 | grok.context(IUniversity) |
---|
104 | grok.view(UniversityPage) |
---|
105 | grok.order(6) |
---|
106 | grok.require('waeup.manageACBatches') |
---|
107 | |
---|
108 | def render(self): |
---|
109 | return u'<div class="portlet"><a href="accesscodes">Manage access-codes</a></div>' |
---|