[7512] | 1 | ## $Id: fix_import_file.py 7666 2012-02-19 08:21:39Z henrik $ |
---|
| 2 | ## |
---|
[7518] | 3 | ## Copyright (C) 2012 Uli Fouquet & Henrik Bettermann |
---|
[7512] | 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 | """ |
---|
[7518] | 19 | Fix exports from old SRP portal to make them importable by current portal. |
---|
[7512] | 20 | |
---|
| 21 | Usage: |
---|
| 22 | |
---|
| 23 | Change into this directory, set the options below (files are assumed |
---|
| 24 | to be in the same directory) and then run |
---|
| 25 | |
---|
[7518] | 26 | python fix_import_file.py <filename> |
---|
[7512] | 27 | |
---|
| 28 | Errors/warnings will be displayed on the shell, the output will be put |
---|
| 29 | into the specified output file. |
---|
| 30 | """ |
---|
[7573] | 31 | import csv |
---|
| 32 | import datetime |
---|
[7575] | 33 | import re |
---|
[7573] | 34 | import sys |
---|
[7512] | 35 | |
---|
| 36 | ## |
---|
| 37 | ## CONFIGURATION SECTION |
---|
| 38 | ## |
---|
| 39 | # keys are fieldnames in input file, values are methods of class |
---|
| 40 | # Converter (see below) |
---|
| 41 | OPTIONS = { |
---|
| 42 | 'sex': 'gender', |
---|
| 43 | 'birthday': 'date', |
---|
| 44 | 'request_date': 'datetime', |
---|
[7514] | 45 | 'marit_stat': 'marit_stat', |
---|
[7537] | 46 | 'session': 'session', |
---|
[7514] | 47 | 'entry_session': 'session', |
---|
| 48 | 'current_session': 'session', |
---|
[7602] | 49 | 'session_id': 'session', |
---|
[7632] | 50 | 'entry_mode': 'mode', |
---|
[7526] | 51 | 'reg_state': 'reg_state', |
---|
| 52 | 'password': 'password', |
---|
[7575] | 53 | 'phone': 'phone', |
---|
[7602] | 54 | 'level': 'level', |
---|
| 55 | 'start_level': 'level', |
---|
| 56 | 'end_level': 'level', |
---|
| 57 | 'level_id': 'level', |
---|
| 58 | 'current_level': 'level', |
---|
| 59 | 'semester': 'semester', |
---|
| 60 | 'application_category': 'application_category', |
---|
[7610] | 61 | 'lga': 'lga', |
---|
[7628] | 62 | 'order_id': 'no_int', |
---|
[7512] | 63 | } |
---|
[7516] | 64 | |
---|
| 65 | # Mapping input file colnames --> output file colnames |
---|
| 66 | COLNAME_MAPPING = { |
---|
[7666] | 67 | # base data |
---|
[7518] | 68 | 'jamb_reg_no': 'reg_number', |
---|
[7645] | 69 | 'matric_no': 'matric_number', |
---|
[7516] | 70 | 'birthday': 'date_of_birth', |
---|
[7526] | 71 | 'clr_ac_pin': 'clr_code', |
---|
[7550] | 72 | # study course |
---|
[7530] | 73 | 'study_course': 'certificate', |
---|
[7550] | 74 | # study level |
---|
[7537] | 75 | 'session': 'level_session', |
---|
| 76 | 'verdict': 'level_verdict', |
---|
[7550] | 77 | # course ticket |
---|
| 78 | 'level_id': 'level', |
---|
[7666] | 79 | 'core_or_elective': 'mandatory', |
---|
[7628] | 80 | # payment ticket |
---|
| 81 | 'order_id': 'p_id', |
---|
| 82 | 'status': 'p_state', |
---|
| 83 | 'category': 'p_category', |
---|
| 84 | 'resp_pay_reference': 'r_pay_reference', |
---|
| 85 | 'resp_desc': 'r_desc', |
---|
| 86 | 'resp_approved_amount': 'r_amount_approved', |
---|
| 87 | 'item': 'p_item', |
---|
| 88 | 'amount': 'amount_auth', |
---|
| 89 | 'resp_card_num': 'r_card_num', |
---|
| 90 | 'resp_code': 'r_code', |
---|
| 91 | 'date': 'creation_date', |
---|
| 92 | 'surcharge': 'surcharge_1', |
---|
| 93 | 'session_id': 'p_session', |
---|
[7516] | 94 | } |
---|
[7526] | 95 | |
---|
| 96 | # Mapping input regh_state --> output reg_state |
---|
| 97 | REGSTATE_MAPPING = { |
---|
| 98 | 'student_created': 'created', |
---|
| 99 | 'admitted': 'admitted', |
---|
[7610] | 100 | 'objection_raised': 'clearance started', |
---|
[7526] | 101 | 'clearance_pin_entered': 'clearance started', |
---|
| 102 | 'clearance_requested': 'clearance requested', |
---|
| 103 | 'cleared_and_validated': 'cleared', |
---|
| 104 | 'school_fee_paid': 'school fee paid', |
---|
| 105 | 'returning': 'returning', |
---|
| 106 | 'courses_registered': 'courses registered', |
---|
| 107 | 'courses_validated': 'courses validated', |
---|
| 108 | } |
---|
| 109 | |
---|
[7512] | 110 | ## |
---|
| 111 | ## END OF CONFIG |
---|
| 112 | ## |
---|
| 113 | |
---|
[7575] | 114 | # Look for the first sequence of numbers |
---|
| 115 | RE_PHONE = re.compile('[^\d]*(\d*)[^\d]*') |
---|
| 116 | |
---|
[7516] | 117 | def convert_fieldnames(fieldnames): |
---|
| 118 | """Replace input fieldnames by fieldnames of COLNAME_MAPPING. |
---|
| 119 | """ |
---|
| 120 | header = dict([(name, name) for name in fieldnames]) |
---|
| 121 | for in_name, out_name in COLNAME_MAPPING.items(): |
---|
| 122 | if in_name not in header: |
---|
| 123 | continue |
---|
| 124 | header[in_name] = out_name |
---|
[7514] | 125 | return header |
---|
| 126 | |
---|
[7512] | 127 | class Converters(): |
---|
| 128 | """Converters to turn old-style values into new ones. |
---|
| 129 | """ |
---|
| 130 | @classmethod |
---|
[7526] | 131 | def reg_state(self, value): |
---|
| 132 | """ 'courses_validated' --> 'courses validated' |
---|
| 133 | """ |
---|
| 134 | return REGSTATE_MAPPING.get(value,value) |
---|
| 135 | |
---|
| 136 | @classmethod |
---|
[7602] | 137 | def level(self, value): |
---|
| 138 | """ '000' --> '10' |
---|
| 139 | """ |
---|
| 140 | try: |
---|
| 141 | number = int(value) |
---|
| 142 | except ValueError: |
---|
| 143 | return 9999 |
---|
| 144 | if number == 0: |
---|
| 145 | return 10 |
---|
| 146 | return number |
---|
| 147 | |
---|
| 148 | @classmethod |
---|
| 149 | def semester(self, value): |
---|
| 150 | """ '0' --> '9' |
---|
| 151 | """ |
---|
| 152 | try: |
---|
| 153 | number = int(value) |
---|
| 154 | except ValueError: |
---|
| 155 | return 9999 |
---|
| 156 | if number == 0: |
---|
| 157 | return 9 |
---|
| 158 | return number |
---|
| 159 | |
---|
| 160 | @classmethod |
---|
| 161 | def application_category(self, value): |
---|
| 162 | """ '' --> 'no' |
---|
| 163 | """ |
---|
| 164 | if value == '': |
---|
| 165 | return 'no' |
---|
| 166 | return value |
---|
| 167 | |
---|
[7610] | 168 | @classmethod |
---|
| 169 | def lga(self, value): |
---|
| 170 | """ Remove apostrophe |
---|
| 171 | """ |
---|
| 172 | if value == 'akwa_ibom_uru_offong_oruko': |
---|
| 173 | return 'akwa_ibom_urue-offong-oruko' |
---|
| 174 | try: |
---|
| 175 | value = value.replace("'","") |
---|
| 176 | value = value.lower() |
---|
| 177 | except: |
---|
| 178 | return '' |
---|
| 179 | return value |
---|
[7602] | 180 | |
---|
[7610] | 181 | |
---|
[7602] | 182 | @classmethod |
---|
[7514] | 183 | def session(self, value): |
---|
| 184 | """ '08' --> '2008' |
---|
| 185 | """ |
---|
| 186 | try: |
---|
| 187 | number = int(value) |
---|
| 188 | except ValueError: |
---|
[7602] | 189 | #import pdb; pdb.set_trace() |
---|
[7514] | 190 | return 9999 |
---|
| 191 | if number < 14: |
---|
| 192 | return number + 2000 |
---|
| 193 | elif number in range(2000,2015): |
---|
| 194 | return number |
---|
| 195 | else: |
---|
| 196 | return 9999 |
---|
| 197 | |
---|
| 198 | @classmethod |
---|
| 199 | def marit_stat(self, value): |
---|
| 200 | """ 'True'/'False' --> 'married'/'unmarried' |
---|
| 201 | """ |
---|
[7610] | 202 | if value in ('True','married'): |
---|
[7514] | 203 | value = 'married' |
---|
[7610] | 204 | elif value in ('False','unmarried'): |
---|
[7514] | 205 | value = 'unmarried' |
---|
| 206 | else: |
---|
| 207 | value = '' |
---|
| 208 | return value |
---|
| 209 | |
---|
| 210 | @classmethod |
---|
| 211 | def gender(self, value): |
---|
[7526] | 212 | """ 'True'/'False' --> 'f'/'m' |
---|
[7514] | 213 | """ |
---|
[7610] | 214 | if value in ('True','f'): |
---|
[7526] | 215 | value = 'f' |
---|
[7610] | 216 | elif value in ('False','m'): |
---|
[7526] | 217 | value = 'm' |
---|
[7514] | 218 | else: |
---|
| 219 | value = '' |
---|
| 220 | return value |
---|
| 221 | |
---|
| 222 | @classmethod |
---|
[7512] | 223 | def date(self, value): |
---|
| 224 | """ 'yyyy/mm/dd' --> 'yyyy-mm-dd' |
---|
| 225 | """ |
---|
| 226 | if value == "None": |
---|
| 227 | value = "" |
---|
| 228 | elif value == "": |
---|
| 229 | value = "" |
---|
| 230 | else: |
---|
| 231 | value = value.replace('/', '-') |
---|
[7514] | 232 | # We add the hash symbol to avoid automatic date transformation |
---|
| 233 | # in Excel and Calc for further processing |
---|
| 234 | value += '#' |
---|
[7512] | 235 | return value |
---|
| 236 | |
---|
| 237 | @classmethod |
---|
[7628] | 238 | def no_int(self, value): |
---|
| 239 | """ Add hash. |
---|
| 240 | """ |
---|
| 241 | # We add the hash symbol to avoid automatic number transformation |
---|
| 242 | # in Excel and Calc for further processing |
---|
| 243 | value += '#' |
---|
| 244 | return value |
---|
| 245 | |
---|
| 246 | |
---|
| 247 | @classmethod |
---|
[7512] | 248 | def datetime(self, value): |
---|
| 249 | """ 'yyyy/mm/dd' --> 'yyyy-mm-dd' |
---|
| 250 | """ |
---|
| 251 | #print "IN: ", value |
---|
| 252 | if value == "None": |
---|
| 253 | value = "" |
---|
| 254 | elif value == "": |
---|
| 255 | value = "" |
---|
| 256 | else: |
---|
| 257 | #value = datetime.datetime.strptime(value, '%Y/%m/%d') |
---|
| 258 | #value = datetime.datetime.strftime(value, '%Y-%m-%d') |
---|
| 259 | pass |
---|
| 260 | #print "OUT: ", value |
---|
| 261 | return value |
---|
| 262 | |
---|
[7526] | 263 | @classmethod |
---|
[7632] | 264 | def mode(self, value): |
---|
| 265 | if value == "transfer_fulltime": |
---|
| 266 | return "transfer_ft" |
---|
| 267 | return value |
---|
| 268 | |
---|
| 269 | @classmethod |
---|
[7526] | 270 | def password(self, value): |
---|
| 271 | if value == "not set": |
---|
| 272 | return "" |
---|
| 273 | return value |
---|
| 274 | |
---|
[7575] | 275 | @classmethod |
---|
| 276 | def phone(self, value): |
---|
| 277 | """ '<num-seq1>-<num-seq2> asd' -> '--<num-seq1><num-seq2>' |
---|
[7526] | 278 | |
---|
[7575] | 279 | Dashes and slashes are removed before looking for sequences |
---|
| 280 | of numbers. |
---|
| 281 | """ |
---|
| 282 | value = value.replace('-', '') |
---|
| 283 | value = value.replace('/', '') |
---|
| 284 | match = RE_PHONE.match(value) |
---|
| 285 | phone = match.groups()[0] |
---|
| 286 | value = '--%s' % phone |
---|
| 287 | return value |
---|
| 288 | |
---|
| 289 | |
---|
[7572] | 290 | def main(): |
---|
[7573] | 291 | input_file = '%s' % sys.argv[1] |
---|
| 292 | output_file = '%s_edited.csv' % sys.argv[1].split('.')[0] |
---|
| 293 | reader = csv.DictReader(open(input_file, 'rb')) |
---|
[7572] | 294 | writer = None |
---|
[7512] | 295 | |
---|
[7572] | 296 | for num, row in enumerate(reader): |
---|
| 297 | if num == 0: |
---|
[7573] | 298 | writer = csv.DictWriter(open(output_file, 'wb'), reader.fieldnames) |
---|
[7572] | 299 | print "FIELDS: " |
---|
| 300 | for x, y in enumerate(reader.fieldnames): |
---|
| 301 | print x, y |
---|
| 302 | header = convert_fieldnames(reader.fieldnames) |
---|
| 303 | writer.writerow(header) |
---|
| 304 | for key, value in row.items(): |
---|
| 305 | if not key in OPTIONS.keys(): |
---|
| 306 | continue |
---|
| 307 | conv_name = OPTIONS[key] |
---|
| 308 | converter = getattr(Converters, conv_name, None) |
---|
| 309 | if converter is None: |
---|
| 310 | print "WARNING: cannot find converter %s" % conv_name |
---|
| 311 | continue |
---|
| 312 | row[key] = converter(row[key]) |
---|
[7602] | 313 | try: |
---|
| 314 | writer.writerow(row) |
---|
| 315 | except: |
---|
| 316 | print row['student_id'] |
---|
[7512] | 317 | |
---|
[7573] | 318 | print "Output written to %s" % output_file |
---|
[7572] | 319 | |
---|
| 320 | |
---|
| 321 | if __name__ == '__main__': |
---|
| 322 | if len(sys.argv) != 2: |
---|
| 323 | print 'Usage: %s <filename>' % __file__ |
---|
| 324 | sys.exit(1) |
---|
| 325 | main() |
---|