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

Last change on this file since 11968 was 11821, checked in by uli, 10 years ago

Test integer values as expensive action blockers.

  • Property svn:keywords set to Id
File size: 10.3 KB
RevLine 
[7358]1## $Id: utils.py 11821 2014-09-26 11:05:08Z uli $
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##
[7819]18"""General helper utilities for Kofa.
[7358]19"""
20import grok
[11815]21import psutil
[7365]22import string
[8181]23import pytz
[9866]24from copy import deepcopy
[8181]25from random import SystemRandom as r
[7734]26from zope.i18n import translate
[7819]27from waeup.kofa.interfaces import IKofaUtils
[7811]28from waeup.kofa.interfaces import MessageFactory as _
29from waeup.kofa.smtp import send_mail as send_mail_internally
[7969]30from waeup.kofa.utils.helpers import get_sorted_preferred
[7358]31
[11814]32
33def send_mail(from_name, from_addr,
34              rcpt_name, rcpt_addr,
35              subject, body, config):
[7811]36    """Wrapper for the real SMTP functionality in :mod:`waeup.kofa.smtp`.
[7382]37
[7471]38    Merely here to stay compatible with lots of calls to this place.
[7400]39    """
[7471]40    mail_id = send_mail_internally(
41        from_name, from_addr, rcpt_name, rcpt_addr,
42        subject, body, config)
[7399]43    return True
44
[11814]45
[7874]46#: A list of phone prefixes (order num, country, prefix).
47#: Items with same order num will be sorted alphabetically.
48#: The lower the order num, the higher the precedence.
49INT_PHONE_PREFIXES = [
50    (99, _('Germany'), '49'),
[11814]51    (1, _('Nigeria'), '234'),
[7874]52    (99, _('U.S.'), '1'),
53    ]
54
[11814]55
56def sorted_phone_prefixes(data=INT_PHONE_PREFIXES, request=None):
[7874]57    """Sorted tuples of phone prefixes.
58
59    Ordered as shown above and formatted for use in select boxes.
60
61    If request is given, we'll try to translate all country names in
62    order to sort alphabetically correctly.
63
64    XXX: This is a function (and not a constant) as different
65    languages might give different orders. This is not tested yet.
66
67    XXX: If we really want to use alphabetic ordering here, we might
68    think about caching results of translations.
69    """
70    if request is not None:
71        data = [
72            (x, translate(y, context=request), z)
73            for x, y, z in data]
74    return tuple([
[11814]75        ('%s (+%s)' % (x[1], x[2]), '+%s' % x[2])
[7874]76        for x in sorted(data)
77        ])
78
[11814]79
[7831]80class KofaUtils(grok.GlobalUtility):
[7678]81    """A collection of parameters and methods subject to customization.
[7829]82
[7358]83    """
[7831]84    grok.implements(IKofaUtils)
[7678]85    # This the only place where we define the portal language
86    # which is used for the translation of system messages
87    # (e.g. object histories).
[7744]88    PORTAL_LANGUAGE = 'en'
[7358]89
[7701]90    PREFERRED_LANGUAGES_DICT = {
[11814]91        'en': (1, u'English'),
92        'fr': (2, u'Français'),
93        'de': (3, u'Deutsch'),
94        'ha': (4, u'Hausa'),
95        'yo': (5, u'Yoruba'),
96        'ig': (6, u'Igbo'),
[7701]97        }
98
[7874]99    #: A function to return
100    @classmethod
101    def sorted_phone_prefixes(cls, data=INT_PHONE_PREFIXES, request=None):
102        return sorted_phone_prefixes(data, request)
[7871]103
[7841]104    EXAM_SUBJECTS_DICT = {
[7843]105        'math': 'Mathematics',
106        'computer_science': 'Computer Science',
[7841]107        }
[7836]108
[7917]109    #: Exam grades. The tuple is sorted as it should be displayed in
110    #: select boxes.
111    EXAM_GRADES = (
112        ('A', 'Best'),
113        ('B', 'Better'),
114        ('C', 'Good'),
115        )
[7836]116
[7841]117    INST_TYPES_DICT = {
[8084]118        'none': '',
[7681]119        'faculty': 'Faculty of',
120        'department': 'Department of',
121        'school': 'School of',
122        'office': 'Office for',
123        'centre': 'Centre for',
124        'institute': 'Institute of',
125        'school_for': 'School for',
[8084]126        'college': 'College of',
[10302]127        'directorate': 'Directorate of',
[7681]128        }
129
[7841]130    STUDY_MODES_DICT = {
[9131]131        'transfer': 'Transfer',
[7843]132        'ug_ft': 'Undergraduate Full-Time',
133        'ug_pt': 'Undergraduate Part-Time',
[7993]134        'pg_ft': 'Postgraduate Full-Time',
135        'pg_pt': 'Postgraduate Part-Time',
[7681]136        }
137
[11451]138    DISABLE_PAYMENT_GROUP_DICT = {
139        'sf_all': 'School Fee - All Students',
140        }
141
[7841]142    APP_CATS_DICT = {
[7843]143        'basic': 'Basic Application',
[7681]144        'no': 'no application',
145        'pg': 'Postgraduate',
146        'sandwich': 'Sandwich',
147        'cest': 'Part-Time, Diploma, Certificate'
148        }
149
[7841]150    SEMESTER_DICT = {
[10437]151        1: '1st Semester',
152        2: '2nd Semester',
[7681]153        3: 'Combined',
154        9: 'N/A'
155        }
156
[9400]157    SPECIAL_HANDLING_DICT = {
158        'regular': 'Regular Hostel',
159        'blocked': 'Blocked Hostel',
[10831]160        'pg': 'Postgraduate Hostel'
[9400]161        }
162
[10831]163    SPECIAL_APP_DICT = {
164        'transcript': 'Transcript Fee Payment',
[11575]165        'clearance': 'Acceptance Fee',
[10831]166        }
167
[9405]168    PAYMENT_CATEGORIES = {
169        'schoolfee': 'School Fee',
170        'clearance': 'Acceptance Fee',
171        'bed_allocation': 'Bed Allocation Fee',
172        'hostel_maintenance': 'Hostel Maintenance Fee',
173        'transfer': 'Transfer Fee',
174        'gown': 'Gown Hire Fee',
[9866]175        'application': 'Application Fee',
[10449]176        'transcript': 'Transcript Fee',
[9405]177        }
178
[9866]179    SELECTABLE_PAYMENT_CATEGORIES = deepcopy(PAYMENT_CATEGORIES)
[9730]180
[9866]181    PREVIOUS_PAYMENT_CATEGORIES = deepcopy(SELECTABLE_PAYMENT_CATEGORIES)
[9862]182
[9868]183    BALANCE_PAYMENT_CATEGORIES = {
[9867]184        'schoolfee': 'School Fee',
185        }
[9864]186
[9649]187    MODE_GROUPS = {
[11814]188        'All': ('all',),
189        'Undergraduate Full-Time': ('ug_ft',),
190        'Undergraduate Part-Time': ('ug_pt',),
191        'Postgraduate Full-Time': ('pg_ft',),
192        'Postgraduate Part-Time': ('pg_pt',),
[9649]193        }
194
[11800]195    #: Set positive number for allowed max, negative for required min
196    #: avail.
197    #:
198    #: Use integer for bytes value, float for percent
199    #: value. `cpu-load`, of course, accepts float values only.
200    #: `swap-mem` = Swap Memory, `virt-mem` = Virtual Memory,
201    #: `phys-mem` = Physical Memory, `cpu-load` = CPU load in percent.
202    SYSTEM_MAX_LOAD = {
203        'swap-mem': None,
204        'virt-mem': None,
205        'phys-mem': None,
206        'cpu-load': 100.0,
207        }
208
[11814]209    def sendContactForm(self, from_name, from_addr, rcpt_name, rcpt_addr,
210                        from_username, usertype, portal, body, subject):
[7358]211        """Send an email with data provided by forms.
212        """
213        config = grok.getSite()['configuration']
[7734]214        text = _(u"""Fullname: ${a}
215User Id: ${b}
216User Type: ${c}
217Portal: ${d}
[7358]218
[7734]219${e}
220""")
[11814]221        text = _(text, mapping={
222            'a': from_name,
223            'b': from_username,
224            'c': usertype,
225            'd': portal,
226            'e': body})
[7811]227        body = translate(text, 'waeup.kofa',
[7734]228            target_language=self.PORTAL_LANGUAGE)
[8436]229        if not (from_addr and rcpt_addr):
230            return False
[7400]231        return send_mail(
[11814]232            from_name, from_addr, rcpt_name, rcpt_addr,
233            subject, body, config)
[7359]234
[8181]235    @property
236    def tzinfo(self):
237        # For Nigeria: pytz.timezone('Africa/Lagos')
[9543]238        # For Germany: pytz.timezone('Europe/Berlin')
[8181]239        return pytz.utc
240
[11814]241    def fullname(self, firstname, lastname, middlename=None):
[7477]242        """Full name constructor.
243        """
[7359]244        # We do not necessarily have the middlename attribute
245        if middlename:
[8603]246            name = '%s %s %s' % (firstname, middlename, lastname)
[7359]247        else:
[8603]248            name = '%s %s' % (firstname, lastname)
[11814]249        return string.capwords(
250            name.replace('-', ' - ')).replace(' - ', '-')
[7365]251
252    def genPassword(self, length=8, chars=string.letters + string.digits):
[7477]253        """Generate a random password.
254        """
[7365]255        return ''.join([r().choice(chars) for i in range(length)])
256
[8853]257    def sendCredentials(self, user, password=None, url_info=None, msg=None):
[7399]258        """Send credentials as email.
259
260        Input is the applicant for which credentials are sent and the
261        password.
262
263        Returns True or False to indicate successful operation.
[7365]264        """
[7819]265        subject = 'Your Kofa credentials'
[7734]266        text = _(u"""Dear ${a},
[7365]267
[7734]268${b}
[7365]269Student Registration and Information Portal of
[7734]270${c}.
[7365]271
[7734]272Your user name: ${d}
273Your password: ${e}
[8853]274${f}
[7365]275
276Please remember your user name and keep
277your password secret!
278
[7382]279Please also note that passwords are case-sensitive.
280
[7365]281Regards
[7734]282""")
[7399]283        config = grok.getSite()['configuration']
284        from_name = config.name_admin
[7402]285        from_addr = config.email_admin
[7407]286        rcpt_name = user.title
287        rcpt_addr = user.email
[11814]288        text = _(text, mapping={
289            'a': rcpt_name,
290            'b': msg,
291            'c': config.name,
292            'd': user.name,
293            'e': password,
294            'f': url_info})
[7734]295
[7811]296        body = translate(text, 'waeup.kofa',
[7734]297            target_language=self.PORTAL_LANGUAGE)
[7399]298        return send_mail(
[11814]299            from_name, from_addr, rcpt_name, rcpt_addr,
300            subject, body, config)
[9987]301
302    def getPaymentItem(self, payment):
303        """Return payment item.
304
305        This method can be used to customize the display_item property method.
306        """
307        return payment.p_item
[11815]308
309    def expensive_actions_allowed(self, type=None, request=None):
310        """Tell, whether expensive actions are currently allowed.
311
312        Check system load/health (or other external circumstances) and
313        locally set values to see, whether expensive actions should be
314        allowed (`True`) or better avoided (`False`).
315
316        Use this to allow or forbid exports, report generations, or
317        similar actions.
318        """
319        max_values = self.SYSTEM_MAX_LOAD
[11816]320        for (key, func) in (
321            ('swap-mem', psutil.swap_memory),
[11818]322            ('virt-mem', psutil.virtual_memory),
[11819]323            ('phys-mem', psutil.phymem_usage),
[11816]324            ):
325            max_val = max_values.get(key, None)
326            if max_val is None:
327                continue
328            mem_val = func()
[11815]329            if isinstance(max_val, float):
[11816]330                # percents
[11821]331                if max_val < 0.0:
332                    max_val = 100.0 + max_val
[11816]333                if mem_val.percent > max_val:
[11815]334                    return False
335            else:
[11816]336                # number of bytes
[11821]337                if max_val < 0:
338                    max_val = mem_val.total + max_val
[11816]339                if mem_val.used > max_val:
[11815]340                    return False
341        return True
Note: See TracBrowser for help on using the repository browser.