1 | ## $Id: vocabularies.py 11997 2014-11-19 17:02:48Z henrik $ |
---|
2 | ## |
---|
3 | ## Copyright (C) 2014 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 | """Vocabularies and sources for the customer section. |
---|
19 | """ |
---|
20 | from zope.component import getUtility, queryUtility |
---|
21 | from zope.catalog.interfaces import ICatalog |
---|
22 | from zope.interface import implements, directlyProvides |
---|
23 | from zope.schema.interfaces import ISource, IContextSourceBinder |
---|
24 | from zope.schema.interfaces import ValidationError |
---|
25 | from zc.sourcefactory.basic import BasicSourceFactory |
---|
26 | from zc.sourcefactory.contextual import BasicContextualSourceFactory |
---|
27 | from waeup.ikoba.interfaces import SimpleIkobaVocabulary |
---|
28 | from waeup.ikoba.interfaces import MessageFactory as _ |
---|
29 | from waeup.ikoba.utils.helpers import get_sorted_preferred |
---|
30 | from waeup.ikoba.utils.countries import COUNTRIES |
---|
31 | |
---|
32 | |
---|
33 | #: a tuple of tuples (<COUNTRY-NAME>, <ISO-CODE>) with Nigeria first. |
---|
34 | COUNTRIES = get_sorted_preferred(COUNTRIES, ['NG']) |
---|
35 | nats_vocab = SimpleIkobaVocabulary(*COUNTRIES) |
---|
36 | |
---|
37 | |
---|
38 | class GenderSource(BasicSourceFactory): |
---|
39 | """A gender source delivers basically a mapping |
---|
40 | ``{'m': 'Male', 'f': 'Female'}`` |
---|
41 | |
---|
42 | Using a source, we make sure that the tokens (which are |
---|
43 | stored/expected for instance from CSV files) are something one |
---|
44 | can expect and not cryptic IntIDs. |
---|
45 | """ |
---|
46 | def getValues(self): |
---|
47 | return ['m', 'f'] |
---|
48 | |
---|
49 | def getToken(self, value): |
---|
50 | return value[0].lower() |
---|
51 | |
---|
52 | def getTitle(self, value): |
---|
53 | if value == 'm': |
---|
54 | return _('male') |
---|
55 | if value == 'f': |
---|
56 | return _('female') |
---|
57 | |
---|
58 | |
---|
59 | class RegNumNotInSource(ValidationError): |
---|
60 | """Registration number exists already |
---|
61 | """ |
---|
62 | # The docstring of ValidationErrors is used as error description |
---|
63 | # by zope.formlib. |
---|
64 | pass |
---|
65 | |
---|
66 | |
---|
67 | class RegNumberSource(object): |
---|
68 | """A source that accepts any entry for a certain field if not used |
---|
69 | already. |
---|
70 | |
---|
71 | Using this kind of source means a way of setting an invariant. |
---|
72 | |
---|
73 | We accept a value iff: |
---|
74 | - the value cannot be found in catalog or |
---|
75 | - the value can be found as part of some item but the bound item |
---|
76 | is the context object itself. |
---|
77 | """ |
---|
78 | implements(ISource) |
---|
79 | cat_name = 'customers_catalog' |
---|
80 | field_name = 'reg_number' |
---|
81 | validation_error = RegNumNotInSource |
---|
82 | comp_field = 'customer_id' |
---|
83 | |
---|
84 | def __init__(self, context): |
---|
85 | self.context = context |
---|
86 | return |
---|
87 | |
---|
88 | def __contains__(self, value): |
---|
89 | """We accept all values not already given to other customers. |
---|
90 | """ |
---|
91 | cat = queryUtility(ICatalog, self.cat_name) |
---|
92 | if cat is None: |
---|
93 | return True |
---|
94 | kw = {self.field_name: (value, value)} |
---|
95 | results = cat.searchResults(**kw) |
---|
96 | for entry in results: |
---|
97 | if not hasattr(self.context, self.comp_field): |
---|
98 | # we have no context with comp_field (most probably |
---|
99 | # while adding a new object, where the container is |
---|
100 | # the context) which means that the value was given |
---|
101 | # already to another object (as _something_ was found in |
---|
102 | # the catalog with that value). Fail on first round. |
---|
103 | raise self.validation_error(value) |
---|
104 | if getattr(entry, self.comp_field) != getattr( |
---|
105 | self.context, self.comp_field): |
---|
106 | # An entry already given to another customer is not in our |
---|
107 | # range of acceptable values. |
---|
108 | raise self.validation_error(value) |
---|
109 | #return False |
---|
110 | return True |
---|
111 | |
---|
112 | |
---|
113 | def contextual_reg_num_source(context): |
---|
114 | source = RegNumberSource(context) |
---|
115 | return source |
---|
116 | |
---|
117 | directlyProvides(contextual_reg_num_source, IContextSourceBinder) |
---|