source: main/waeup.kofa/trunk/src/waeup/kofa/utils/utils.py @ 16478

Last change on this file since 16478 was 16431, checked in by Henrik Bettermann, 3 years ago

Add payment option (p_option) field to payment tickets and add
select box on online payment add form pages. Disable this feature
in the base package.

  • Property svn:keywords set to Id
File size: 14.1 KB
Line 
1## $Id: utils.py 16431 2021-03-25 09:45: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"""General helper utilities for Kofa.
19"""
20import grok
21import psutil
22import string
23import pytz
24import decimal
25from copy import deepcopy
26from random import SystemRandom as r
27from zope.i18n import translate
28from waeup.kofa.interfaces import IKofaUtils
29from waeup.kofa.interfaces import MessageFactory as _
30from waeup.kofa.smtp import send_mail as send_mail_internally
31from waeup.kofa.utils.helpers import get_sorted_preferred
32from waeup.kofa.utils.degrees import DEGREES_DICT
33
34
35def send_mail(from_name, from_addr,
36              rcpt_name, rcpt_addr,
37              subject, body, config,
38              cc=None, bcc=None):
39    """Wrapper for the real SMTP functionality in :mod:`waeup.kofa.smtp`.
40
41    Merely here to stay compatible with lots of calls to this place.
42    """
43    mail_id = send_mail_internally(
44        from_name, from_addr, rcpt_name, rcpt_addr,
45        subject, body, config, cc, bcc)
46    return True
47
48
49#: A list of phone prefixes (order num, country, prefix).
50#: Items with same order num will be sorted alphabetically.
51#: The lower the order num, the higher the precedence.
52INT_PHONE_PREFIXES = [
53    (99, _('Germany'), '49'),
54    (1, _('Nigeria'), '234'),
55    (99, _('U.S.'), '1'),
56    ]
57
58
59def sorted_phone_prefixes(data=INT_PHONE_PREFIXES, request=None):
60    """Sorted tuples of phone prefixes.
61
62    Ordered as shown above and formatted for use in select boxes.
63
64    If request is given, we'll try to translate all country names in
65    order to sort alphabetically correctly.
66
67    XXX: This is a function (and not a constant) as different
68    languages might give different orders. This is not tested yet.
69
70    XXX: If we really want to use alphabetic ordering here, we might
71    think about caching results of translations.
72    """
73    if request is not None:
74        data = [
75            (x, translate(y, context=request), z)
76            for x, y, z in data]
77    return tuple([
78        ('%s (+%s)' % (x[1], x[2]), '+%s' % x[2])
79        for x in sorted(data)
80        ])
81
82
83class KofaUtils(grok.GlobalUtility):
84    """A collection of parameters and methods subject to customization.
85    """
86    grok.implements(IKofaUtils)
87
88    #: This the only place where we define the portal language
89    #: which is used for the translation of system messages
90    #: (e.g. object histories) pdf slips.
91    PORTAL_LANGUAGE = 'en'
92
93    DEGREES_DICT = DEGREES_DICT
94
95    PREFERRED_LANGUAGES_DICT = {
96        'en': (1, u'English'),
97        'fr': (2, u'Français'),
98        'de': (3, u'Deutsch'),
99        'ha': (4, u'Hausa'),
100        'yo': (5, u'Yoruba'),
101        'ig': (6, u'Igbo'),
102        }
103
104    #: A function to return
105    @classmethod
106    def sorted_phone_prefixes(cls, data=INT_PHONE_PREFIXES, request=None):
107        return sorted_phone_prefixes(data, request)
108
109    EXAM_SUBJECTS_DICT = {
110        'math': 'Mathematics',
111        'computer_science': 'Computer Science',
112        }
113
114    #: Exam grades. The tuple is sorted as it should be displayed in
115    #: select boxes.
116    EXAM_GRADES = (
117        ('A', 'Best'),
118        ('B', 'Better'),
119        ('C', 'Good'),
120        )
121
122    INST_TYPES_DICT = {
123        'none': '',
124        'faculty': 'Faculty of',
125        'department': 'Department of',
126        'school': 'School of',
127        'office': 'Office for',
128        'centre': 'Centre for',
129        'institute': 'Institute of',
130        'school_for': 'School for',
131        'college': 'College of',
132        'directorate': 'Directorate of',
133        }
134
135    STUDY_MODES_DICT = {
136        'transfer': 'Transfer',
137        'ug_ft': 'Undergraduate Full-Time',
138        'ug_pt': 'Undergraduate Part-Time',
139        'pg_ft': 'Postgraduate Full-Time',
140        'pg_pt': 'Postgraduate Part-Time',
141        }
142
143    DISABLE_PAYMENT_GROUP_DICT = {
144        'sf_all': 'School Fee - All Students',
145        }
146
147    APP_CATS_DICT = {
148        'basic': 'Basic Application',
149        'no': 'no application',
150        'pg': 'Postgraduate',
151        'sandwich': 'Sandwich',
152        'cest': 'Part-Time, Diploma, Certificate'
153        }
154
155    SEMESTER_DICT = {
156        1: '1st Semester',
157        2: '2nd Semester',
158        3: 'Combined',
159        9: 'N/A'
160        }
161
162    COURSE_CATEGORY_DICT = {
163        }
164
165    SPECIAL_HANDLING_DICT = {
166        'regular': 'Regular Hostel',
167        'blocked': 'Blocked Hostel',
168        'pg': 'Postgraduate Hostel'
169        }
170
171    SPECIAL_APP_DICT = {
172        'transcript': 'Transcript Fee Payment',
173        'clearance': 'Acceptance Fee',
174        }
175
176    PAYMENT_CATEGORIES = {
177        'schoolfee': 'School Fee',
178        'clearance': 'Acceptance Fee',
179        'bed_allocation': 'Bed Allocation Fee',
180        'hostel_maintenance': 'Hostel Maintenance Fee',
181        'transfer': 'Transfer Fee',
182        'gown': 'Gown Hire Fee',
183        'application': 'Application Fee',
184        'app_balance': 'Application Fee Balance',
185        'transcript': 'Transcript Fee',
186        'late_registration': 'Late Course Registration Fee',
187        'combi': 'Combi Payment',
188        }
189
190    #: If PAYMENT_OPTIONS is empty, payment option fields won't show up.
191    PAYMENT_OPTIONS = {
192        #'credit_card': 'Credit Card',
193        #'debit_card': 'Debit Card',
194        }
195
196    def selectable_payment_categories(self, student):
197        return self.PAYMENT_CATEGORIES
198
199    def selectable_payment_options(self, student):
200        return self.PAYMENT_OPTIONS
201
202    PREVIOUS_PAYMENT_CATEGORIES = deepcopy(PAYMENT_CATEGORIES)
203
204    REPORTABLE_PAYMENT_CATEGORIES = {
205        'schoolfee': 'School Fee',
206        'clearance': 'Acceptance Fee',
207        'hostel_maintenance': 'Hostel Maintenance Fee',
208        'gown': 'Gown Hire Fee',
209        }
210
211    BALANCE_PAYMENT_CATEGORIES = {
212        'schoolfee': 'School Fee',
213        }
214
215    COMBI_PAYMENT_CATEGORIES = {
216        'gown': 'Gown Hire Fee',
217        'transcript': 'Transcript Fee',
218        'late_registration': 'Late Course Registration Fee',
219        }
220
221    MODE_GROUPS = {
222        'All': ('all',),
223        'Undergraduate Full-Time': ('ug_ft',),
224        'Undergraduate Part-Time': ('ug_pt',),
225        'Postgraduate Full-Time': ('pg_ft',),
226        'Postgraduate Part-Time': ('pg_pt',),
227        }
228
229    VERDICTS_DICT = {
230        '0': _('(not yet)'),
231        'A': 'Successful student',
232        'B': 'Student with carryover courses',
233        'C': 'Student on probation',
234        }
235
236    #: Set positive number for allowed max, negative for required min
237    #: avail.
238    #: Use integer for bytes value, float for percent
239    #: value. `cpu-load`, of course, accepts float values only.
240    #: `swap-mem` = Swap Memory, `virt-mem` = Virtual Memory,
241    #: `cpu-load` = CPU load in percent.
242    SYSTEM_MAX_LOAD = {
243        'swap-mem': None,
244        'virt-mem': None,
245        'cpu-load': 100.0,
246        }
247
248    #: Maximum number of files listed in `finished` subfolder
249    MAX_FILES = 100
250
251    #: Maximum size in Bytes of passport images in the applicants and
252    #: students section
253    MAX_PASSPORT_SIZE = 50 * 1024
254
255    #: Temporary passwords and parents password validity period
256    TEMP_PASSWORD_MINUTES = 10
257
258    def sendContactForm(self, from_name, from_addr, rcpt_name, rcpt_addr,
259                        from_username, usertype, portal, body, subject,
260                        bcc_to=None):
261        """Send an email with data provided by forms.
262        """
263        config = grok.getSite()['configuration']
264        text = _(u"""${e}
265
266---
267${a} (id: ${b})
268${d}
269""")
270        text = _(text, mapping={
271            'a': from_name,
272            'b': from_username,
273            'c': usertype,
274            'd': portal,
275            'e': body})
276        body = translate(text, 'waeup.kofa',
277            target_language=self.PORTAL_LANGUAGE)
278        if not (from_addr and rcpt_addr):
279            return False
280        return send_mail(
281            from_name, from_addr, rcpt_name, rcpt_addr,
282            subject, body, config, None, bcc_to)
283
284    def getUsers(self):
285        users = sorted(
286            grok.getSite()['users'].items(), key=lambda x: x[1].title)
287        for key, val in users:
288            yield(dict(name=key, val="%s (%s)" % (val.title, val.name)))
289
290    @property
291    def tzinfo(self):
292        """Time zone of the university.
293        """
294        # For Nigeria: pytz.timezone('Africa/Lagos')
295        # For Germany: pytz.timezone('Europe/Berlin')
296        return pytz.utc
297
298    def fullname(self, firstname, lastname, middlename=None):
299        """Construct fullname.
300        """
301        # We do not necessarily have the middlename attribute
302        if middlename:
303            name = '%s %s %s' % (firstname, middlename, lastname)
304        else:
305            name = '%s %s' % (firstname, lastname)
306        if '<' in name:
307            return 'XXX'
308        return string.capwords(
309            name.replace('-', ' - ')).replace(' - ', '-')
310
311    def genPassword(self, length=4, chars=string.letters + string.digits):
312        """Generate a random password.
313        """
314        return ''.join([
315            r().choice(string.uppercase) +
316            r().choice(string.lowercase) +
317            r().choice(string.digits) for i in range(length)])
318
319    def sendCredentials(self, user, password=None, url_info=None, msg=None):
320        """Send credentials as email. Input is the user for which credentials
321        are sent and the password. Method returns True or False to indicate
322        successful operation.
323        """
324        subject = 'Your Kofa credentials'
325        text = _(u"""Dear ${a},
326
327${b}
328Student Registration and Information Portal of
329${c}.
330
331Your user name: ${d}
332Your password: ${e}
333${f}
334
335Please remember your user name and keep
336your password secret!
337
338Please also note that passwords are case-sensitive.
339
340Regards
341""")
342        config = grok.getSite()['configuration']
343        from_name = config.name_admin
344        from_addr = config.email_admin
345        rcpt_name = user.title
346        rcpt_addr = user.email
347        text = _(text, mapping={
348            'a': rcpt_name,
349            'b': msg,
350            'c': config.name,
351            'd': user.name,
352            'e': password,
353            'f': url_info})
354
355        body = translate(text, 'waeup.kofa',
356            target_language=self.PORTAL_LANGUAGE)
357        return send_mail(
358            from_name, from_addr, rcpt_name, rcpt_addr,
359            subject, body, config)
360
361    def inviteReferee(self, referee, applicant, url_info=None):
362        """Send invitation email to referee.
363        """
364        config = grok.getSite()['configuration']
365        subject = 'Request for referee report from %s' % config.name
366        text = _(u"""Dear ${a},
367
368The candidate with Id ${b} and name ${c} applied to
369the ${d} to study ${e} for the ${f} session.
370The candidate has listed you as referee. You are thus required to kindly use
371the link below to provide your referral remarks on or before
372${g}.
373
374${h}
375
376Thank You
377
378The Secretary
379Post Graduate School
380${d}
381""")
382        from_name = config.name_admin
383        from_addr = config.email_admin
384        rcpt_name = referee.name
385        rcpt_addr = referee.email
386        session = '%s/%s' % (
387            applicant.__parent__.year, applicant.__parent__.year+1)
388        text = _(text, mapping={
389            'a': rcpt_name,
390            'b': applicant.applicant_id,
391            'c': applicant.display_fullname,
392            'd': config.name,
393            'e': applicant.course1.title,
394            'f': session,
395            'g': applicant.__parent__.enddate,
396            'h': url_info,
397            })
398
399        body = translate(text, 'waeup.kofa',
400            target_language=self.PORTAL_LANGUAGE)
401        return send_mail(
402            from_name, from_addr, rcpt_name, rcpt_addr,
403            subject, body, config)
404
405    def getPaymentItem(self, payment):
406        """Return payment item. This method can be used to customize the
407        `display_item` property attribute, e.g. in order to hide bed coordinates
408        if maintenance fee is not paid.
409        """
410        return payment.p_item
411
412    def expensive_actions_allowed(self, type=None, request=None):
413        """Tell, whether expensive actions are currently allowed.
414        Check system load/health (or other external circumstances) and
415        locally set values to see, whether expensive actions should be
416        allowed (`True`) or better avoided (`False`).
417        Use this to allow or forbid exports, report generations, or
418        similar actions.
419        """
420        max_values = self.SYSTEM_MAX_LOAD
421        for (key, func) in (
422            ('swap-mem', psutil.swap_memory),
423            ('virt-mem', psutil.virtual_memory),
424            ):
425            max_val = max_values.get(key, None)
426            if max_val is None:
427                continue
428            mem_val = func()
429            if isinstance(max_val, float):
430                # percents
431                if max_val < 0.0:
432                    max_val = 100.0 + max_val
433                if mem_val.percent > max_val:
434                    return False
435            else:
436                # number of bytes
437                if max_val < 0:
438                    max_val = mem_val.total + max_val
439                if mem_val.used > max_val:
440                    return False
441        return True
442
443    def export_disabled_message(self):
444        export_disabled_message = grok.getSite()[
445            'configuration'].export_disabled_message
446        if export_disabled_message:
447            return export_disabled_message
448        return None
449
450    def format_float(self, value, prec):
451        # >>> 4.6 * 100
452        # 459.99999999999994
453        value = decimal.Decimal(str(value))
454        # cut floating point value
455        value = int(pow(10, prec)*value) / (1.0*pow(10, prec))
456        return '{:{width}.{prec}f}'.format(value, width=0, prec=prec)
Note: See TracBrowser for help on using the repository browser.