[7358] | 1 | ## $Id: utils.py 9987 2013-02-24 11:15:47Z 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 | """ |
---|
[7568] | 20 | import os |
---|
[7358] | 21 | import grok |
---|
[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 |
---|
[7829] | 27 | from zope.interface import implements |
---|
[7819] | 28 | from waeup.kofa.interfaces import IKofaUtils |
---|
[7811] | 29 | from waeup.kofa.interfaces import MessageFactory as _ |
---|
| 30 | from waeup.kofa.smtp import send_mail as send_mail_internally |
---|
[7969] | 31 | from waeup.kofa.utils.countries import COUNTRIES |
---|
| 32 | from waeup.kofa.utils.helpers import get_sorted_preferred |
---|
[7358] | 33 | |
---|
[7471] | 34 | def send_mail(from_name,from_addr,rcpt_name,rcpt_addr,subject,body,config): |
---|
[7811] | 35 | """Wrapper for the real SMTP functionality in :mod:`waeup.kofa.smtp`. |
---|
[7382] | 36 | |
---|
[7471] | 37 | Merely here to stay compatible with lots of calls to this place. |
---|
[7400] | 38 | """ |
---|
[7471] | 39 | mail_id = send_mail_internally( |
---|
| 40 | from_name, from_addr, rcpt_name, rcpt_addr, |
---|
| 41 | subject, body, config) |
---|
[7399] | 42 | return True |
---|
| 43 | |
---|
[7874] | 44 | #: A list of phone prefixes (order num, country, prefix). |
---|
| 45 | #: Items with same order num will be sorted alphabetically. |
---|
| 46 | #: The lower the order num, the higher the precedence. |
---|
| 47 | INT_PHONE_PREFIXES = [ |
---|
| 48 | (99, _('Germany'), '49'), |
---|
| 49 | ( 1, _('Nigeria'), '234'), |
---|
| 50 | (99, _('U.S.'), '1'), |
---|
| 51 | ] |
---|
| 52 | |
---|
| 53 | def sorted_phone_prefixes(data = INT_PHONE_PREFIXES, request=None): |
---|
| 54 | """Sorted tuples of phone prefixes. |
---|
| 55 | |
---|
| 56 | Ordered as shown above and formatted for use in select boxes. |
---|
| 57 | |
---|
| 58 | If request is given, we'll try to translate all country names in |
---|
| 59 | order to sort alphabetically correctly. |
---|
| 60 | |
---|
| 61 | XXX: This is a function (and not a constant) as different |
---|
| 62 | languages might give different orders. This is not tested yet. |
---|
| 63 | |
---|
| 64 | XXX: If we really want to use alphabetic ordering here, we might |
---|
| 65 | think about caching results of translations. |
---|
| 66 | """ |
---|
| 67 | if request is not None: |
---|
| 68 | data = [ |
---|
| 69 | (x, translate(y, context=request), z) |
---|
| 70 | for x, y, z in data] |
---|
| 71 | return tuple([ |
---|
| 72 | ('%s (+%s)' % (x[1],x[2]), '+%s' % x[2]) |
---|
| 73 | for x in sorted(data) |
---|
| 74 | ]) |
---|
| 75 | |
---|
[7831] | 76 | class KofaUtils(grok.GlobalUtility): |
---|
[7678] | 77 | """A collection of parameters and methods subject to customization. |
---|
[7829] | 78 | |
---|
[7358] | 79 | """ |
---|
[7831] | 80 | grok.implements(IKofaUtils) |
---|
[7678] | 81 | # This the only place where we define the portal language |
---|
| 82 | # which is used for the translation of system messages |
---|
| 83 | # (e.g. object histories). |
---|
[7744] | 84 | PORTAL_LANGUAGE = 'en' |
---|
[7358] | 85 | |
---|
[7701] | 86 | PREFERRED_LANGUAGES_DICT = { |
---|
| 87 | 'en':(1, u'English'), |
---|
| 88 | 'fr':(2, u'Français'), |
---|
| 89 | 'de':(3, u'Deutsch'), |
---|
| 90 | 'ha':(4, u'Hausa'), |
---|
| 91 | 'yo':(5, u'Yoruba'), |
---|
[7722] | 92 | 'ig':(6, u'Igbo'), |
---|
[7701] | 93 | } |
---|
| 94 | |
---|
[7874] | 95 | #: A function to return |
---|
| 96 | @classmethod |
---|
| 97 | def sorted_phone_prefixes(cls, data=INT_PHONE_PREFIXES, request=None): |
---|
| 98 | return sorted_phone_prefixes(data, request) |
---|
[7871] | 99 | |
---|
[7841] | 100 | EXAM_SUBJECTS_DICT = { |
---|
[7843] | 101 | 'math': 'Mathematics', |
---|
| 102 | 'computer_science': 'Computer Science', |
---|
[7841] | 103 | } |
---|
[7836] | 104 | |
---|
[7917] | 105 | #: Exam grades. The tuple is sorted as it should be displayed in |
---|
| 106 | #: select boxes. |
---|
| 107 | EXAM_GRADES = ( |
---|
| 108 | ('A', 'Best'), |
---|
| 109 | ('B', 'Better'), |
---|
| 110 | ('C', 'Good'), |
---|
| 111 | ) |
---|
[7836] | 112 | |
---|
[7841] | 113 | INST_TYPES_DICT = { |
---|
[8084] | 114 | 'none': '', |
---|
[7681] | 115 | 'faculty': 'Faculty of', |
---|
| 116 | 'department': 'Department of', |
---|
| 117 | 'school': 'School of', |
---|
| 118 | 'office': 'Office for', |
---|
| 119 | 'centre': 'Centre for', |
---|
| 120 | 'institute': 'Institute of', |
---|
| 121 | 'school_for': 'School for', |
---|
[8084] | 122 | 'college': 'College of', |
---|
[7681] | 123 | } |
---|
| 124 | |
---|
[7841] | 125 | STUDY_MODES_DICT = { |
---|
[9131] | 126 | 'transfer': 'Transfer', |
---|
[7843] | 127 | 'ug_ft': 'Undergraduate Full-Time', |
---|
| 128 | 'ug_pt': 'Undergraduate Part-Time', |
---|
[7993] | 129 | 'pg_ft': 'Postgraduate Full-Time', |
---|
| 130 | 'pg_pt': 'Postgraduate Part-Time', |
---|
[7681] | 131 | } |
---|
| 132 | |
---|
[7841] | 133 | APP_CATS_DICT = { |
---|
[7843] | 134 | 'basic': 'Basic Application', |
---|
[7681] | 135 | 'no': 'no application', |
---|
| 136 | 'pg': 'Postgraduate', |
---|
| 137 | 'sandwich': 'Sandwich', |
---|
| 138 | 'cest': 'Part-Time, Diploma, Certificate' |
---|
| 139 | } |
---|
| 140 | |
---|
[7841] | 141 | SEMESTER_DICT = { |
---|
[7681] | 142 | 1: 'First Semester', |
---|
| 143 | 2: 'Second Semester', |
---|
| 144 | 3: 'Combined', |
---|
| 145 | 9: 'N/A' |
---|
| 146 | } |
---|
| 147 | |
---|
[9400] | 148 | SPECIAL_HANDLING_DICT = { |
---|
| 149 | 'regular': 'Regular Hostel', |
---|
| 150 | 'blocked': 'Blocked Hostel', |
---|
| 151 | 'pd': 'Postgraduate Hostel' |
---|
| 152 | } |
---|
| 153 | |
---|
[9405] | 154 | PAYMENT_CATEGORIES = { |
---|
| 155 | 'schoolfee': 'School Fee', |
---|
| 156 | 'clearance': 'Acceptance Fee', |
---|
| 157 | 'bed_allocation': 'Bed Allocation Fee', |
---|
| 158 | 'hostel_maintenance': 'Hostel Maintenance Fee', |
---|
| 159 | 'transfer': 'Transfer Fee', |
---|
| 160 | 'gown': 'Gown Hire Fee', |
---|
[9866] | 161 | 'application': 'Application Fee', |
---|
[9405] | 162 | } |
---|
| 163 | |
---|
[9866] | 164 | SELECTABLE_PAYMENT_CATEGORIES = deepcopy(PAYMENT_CATEGORIES) |
---|
[9730] | 165 | |
---|
[9866] | 166 | PREVIOUS_PAYMENT_CATEGORIES = deepcopy(SELECTABLE_PAYMENT_CATEGORIES) |
---|
[9862] | 167 | |
---|
[9868] | 168 | BALANCE_PAYMENT_CATEGORIES = { |
---|
[9867] | 169 | 'schoolfee': 'School Fee', |
---|
| 170 | } |
---|
[9864] | 171 | |
---|
[9649] | 172 | MODE_GROUPS = { |
---|
| 173 | 'All':('all',), |
---|
| 174 | 'Undergraduate Full-Time':('ug_ft',), |
---|
| 175 | 'Undergraduate Part-Time':('ug_pt',), |
---|
| 176 | 'Postgraduate Full-Time':('pg_ft',), |
---|
| 177 | 'Postgraduate Part-Time':('pg_pt',), |
---|
| 178 | } |
---|
| 179 | |
---|
[7404] | 180 | def sendContactForm(self,from_name,from_addr,rcpt_name,rcpt_addr, |
---|
[7402] | 181 | from_username,usertype,portal,body,subject): |
---|
[7358] | 182 | """Send an email with data provided by forms. |
---|
| 183 | """ |
---|
| 184 | config = grok.getSite()['configuration'] |
---|
[7734] | 185 | text = _(u"""Fullname: ${a} |
---|
| 186 | User Id: ${b} |
---|
| 187 | User Type: ${c} |
---|
| 188 | Portal: ${d} |
---|
[7358] | 189 | |
---|
[7734] | 190 | ${e} |
---|
| 191 | """) |
---|
| 192 | text = _(text, |
---|
| 193 | mapping = { |
---|
| 194 | 'a':from_name, |
---|
| 195 | 'b':from_username, |
---|
| 196 | 'c':usertype, |
---|
| 197 | 'd':portal, |
---|
| 198 | 'e':body}) |
---|
[7811] | 199 | body = translate(text, 'waeup.kofa', |
---|
[7734] | 200 | target_language=self.PORTAL_LANGUAGE) |
---|
[8436] | 201 | if not (from_addr and rcpt_addr): |
---|
| 202 | return False |
---|
[7400] | 203 | return send_mail( |
---|
[7402] | 204 | from_name,from_addr,rcpt_name,rcpt_addr,subject,body,config) |
---|
[7359] | 205 | |
---|
[8181] | 206 | @property |
---|
| 207 | def tzinfo(self): |
---|
| 208 | # For Nigeria: pytz.timezone('Africa/Lagos') |
---|
[9543] | 209 | # For Germany: pytz.timezone('Europe/Berlin') |
---|
[8181] | 210 | return pytz.utc |
---|
| 211 | |
---|
[7359] | 212 | def fullname(self,firstname,lastname,middlename=None): |
---|
[7477] | 213 | """Full name constructor. |
---|
| 214 | """ |
---|
[7359] | 215 | # We do not necessarily have the middlename attribute |
---|
| 216 | if middlename: |
---|
[8603] | 217 | name = '%s %s %s' % (firstname, middlename, lastname) |
---|
[7359] | 218 | else: |
---|
[8603] | 219 | name = '%s %s' % (firstname, lastname) |
---|
| 220 | return string.capwords(name.replace('-',' - ')).replace(' - ','-') |
---|
[7365] | 221 | |
---|
[8603] | 222 | |
---|
[7365] | 223 | def genPassword(self, length=8, chars=string.letters + string.digits): |
---|
[7477] | 224 | """Generate a random password. |
---|
| 225 | """ |
---|
[7365] | 226 | return ''.join([r().choice(chars) for i in range(length)]) |
---|
| 227 | |
---|
[7382] | 228 | |
---|
[8853] | 229 | def sendCredentials(self, user, password=None, url_info=None, msg=None): |
---|
[7399] | 230 | """Send credentials as email. |
---|
| 231 | |
---|
| 232 | Input is the applicant for which credentials are sent and the |
---|
| 233 | password. |
---|
| 234 | |
---|
| 235 | Returns True or False to indicate successful operation. |
---|
[7365] | 236 | """ |
---|
[7819] | 237 | subject = 'Your Kofa credentials' |
---|
[7734] | 238 | text = _(u"""Dear ${a}, |
---|
[7365] | 239 | |
---|
[7734] | 240 | ${b} |
---|
[7365] | 241 | Student Registration and Information Portal of |
---|
[7734] | 242 | ${c}. |
---|
[7365] | 243 | |
---|
[7734] | 244 | Your user name: ${d} |
---|
| 245 | Your password: ${e} |
---|
[8853] | 246 | ${f} |
---|
[7365] | 247 | |
---|
| 248 | Please remember your user name and keep |
---|
| 249 | your password secret! |
---|
| 250 | |
---|
[7382] | 251 | Please also note that passwords are case-sensitive. |
---|
| 252 | |
---|
[7365] | 253 | Regards |
---|
[7734] | 254 | """) |
---|
[7399] | 255 | config = grok.getSite()['configuration'] |
---|
| 256 | from_name = config.name_admin |
---|
[7402] | 257 | from_addr = config.email_admin |
---|
[7407] | 258 | rcpt_name = user.title |
---|
| 259 | rcpt_addr = user.email |
---|
[7734] | 260 | text = _(text, |
---|
| 261 | mapping = { |
---|
| 262 | 'a':rcpt_name, |
---|
| 263 | 'b':msg, |
---|
| 264 | 'c':config.name, |
---|
| 265 | 'd':user.name, |
---|
| 266 | 'e':password, |
---|
[8853] | 267 | 'f':url_info}) |
---|
[7734] | 268 | |
---|
[7811] | 269 | body = translate(text, 'waeup.kofa', |
---|
[7734] | 270 | target_language=self.PORTAL_LANGUAGE) |
---|
[7399] | 271 | return send_mail( |
---|
[7402] | 272 | from_name,from_addr,rcpt_name,rcpt_addr,subject,body,config) |
---|
[9987] | 273 | |
---|
| 274 | def getPaymentItem(self, payment): |
---|
| 275 | """Return payment item. |
---|
| 276 | |
---|
| 277 | This method can be used to customize the display_item property method. |
---|
| 278 | """ |
---|
| 279 | return payment.p_item |
---|