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