[920] | 1 | ## Script (Python) "search_students" |
---|
| 2 | ##bind container=container |
---|
| 3 | ##bind context=context |
---|
| 4 | ##bind namespace= |
---|
| 5 | ##bind script=script |
---|
| 6 | ##bind subpath=traverse_subpath |
---|
| 7 | ##parameters=REQUEST |
---|
| 8 | ##title= |
---|
| 9 | ## |
---|
| 10 | # $Id: search_students.py 911 2006-11-20 15:11:29Z henrik $ |
---|
| 11 | """ |
---|
| 12 | list Students for ClearanceOfficers |
---|
| 13 | """ |
---|
[2873] | 14 | try: |
---|
| 15 | from Products.zdb import set_trace |
---|
| 16 | except: |
---|
| 17 | def set_trace(): |
---|
| 18 | pass |
---|
[1278] | 19 | import logging |
---|
[1571] | 20 | logger = logging.getLogger('Skins.search_students') |
---|
[2249] | 21 | #from DateTime import DateTime |
---|
[1278] | 22 | # |
---|
| 23 | #with_timer = True |
---|
[2249] | 24 | #with_timer = False |
---|
[1278] | 25 | # |
---|
[920] | 26 | request = REQUEST |
---|
[1033] | 27 | form = request.form |
---|
| 28 | fget = form.get |
---|
[920] | 29 | mtool = context.portal_membership |
---|
| 30 | member = mtool.getAuthenticatedMember() |
---|
[1096] | 31 | is_anon = mtool.isAnonymousUser() |
---|
[1065] | 32 | lt = context.portal_layouts |
---|
| 33 | path_info = request.get('PATH_INFO').split('/') |
---|
[1096] | 34 | |
---|
| 35 | allowed = True |
---|
[2431] | 36 | if is_anon or context.isStudent(): |
---|
[1096] | 37 | allowed = False |
---|
[1845] | 38 | from Products.AdvancedQuery import Eq, Between, Le,In |
---|
[920] | 39 | try: |
---|
[1845] | 40 | aq_portal = context.portal_catalog.evalAdvancedQuery |
---|
[920] | 41 | except: |
---|
[1845] | 42 | aq_portal = context.portal_catalog_real.evalAdvancedQuery |
---|
| 43 | aq_students = context.students_catalog.evalAdvancedQuery |
---|
[920] | 44 | |
---|
| 45 | def cmp_id(a,b): |
---|
| 46 | if a.getId() > b.getId(): |
---|
| 47 | return 1 |
---|
| 48 | return -1 |
---|
| 49 | |
---|
| 50 | student_subobjects = ("StudentApplication", |
---|
| 51 | "StudentPersonal", |
---|
| 52 | "StudentStudyCourse", |
---|
| 53 | "StudentAccommodation", |
---|
| 54 | "StudentStudyLevel",) |
---|
| 55 | |
---|
[1065] | 56 | #student_objects = student_subobjects + ("Student",) |
---|
| 57 | student_objects = ("Student",) |
---|
[920] | 58 | |
---|
[1065] | 59 | user_info = {} |
---|
[920] | 60 | items = [] |
---|
| 61 | validate = request.has_key("cpsdocument_edit_button") |
---|
[1006] | 62 | |
---|
| 63 | state = "all" |
---|
[1065] | 64 | user_info['member'] = str(member) |
---|
| 65 | user_info['departments'] = [] |
---|
| 66 | user_info['faculties'] = [] |
---|
| 67 | co_view = False |
---|
[1557] | 68 | ca_view = False |
---|
[1278] | 69 | faculties = fget('faculties') |
---|
| 70 | departments = fget('departments') |
---|
[2253] | 71 | certificate_levels = fget('certificate_levels') |
---|
| 72 | dep_str = fac_str = certificate_levels_str = '' |
---|
[1006] | 73 | if "ClearanceOfficers" in member.getGroups(): |
---|
| 74 | state = "clearance_requested" |
---|
[1065] | 75 | only_review = False |
---|
| 76 | co_view = True |
---|
[1278] | 77 | if faculties or departments: |
---|
| 78 | #from Products.zdb import set_trace;set_trace() |
---|
| 79 | if faculties: |
---|
| 80 | fac_str = faculties |
---|
| 81 | faculties = faculties.split() |
---|
| 82 | if departments: |
---|
| 83 | dep_str = departments |
---|
| 84 | departments = departments.split() |
---|
| 85 | else: |
---|
| 86 | query = In('portal_type',('Faculty',)) &\ |
---|
| 87 | In('localUsersWithRoles', ("user:%s" % member,)) |
---|
[1845] | 88 | res = aq_portal(query) |
---|
[1571] | 89 | logger.info('ClearanceOfficer %s initiated student_search' % member) |
---|
[1278] | 90 | faculties = [] |
---|
| 91 | if res: |
---|
| 92 | faculties = [f.getId for f in res] |
---|
| 93 | user_info['faculties'] = faculties |
---|
| 94 | fac_str = " ".join(faculties) |
---|
| 95 | query = In('portal_type',('Department',)) &\ |
---|
| 96 | In('localUsersWithRoles', ("user:%s" % member,)) |
---|
[1845] | 97 | res = aq_portal(query) |
---|
[1278] | 98 | departments = [] |
---|
| 99 | if res: |
---|
| 100 | departments = [f.getId for f in res] |
---|
| 101 | user_info['departments'] = departments |
---|
| 102 | dep_str = " ".join(departments) |
---|
[1557] | 103 | elif "CourseAdvisers" in member.getGroups(): |
---|
| 104 | state = "courses_registered" |
---|
| 105 | only_review = False |
---|
| 106 | ca_view = True |
---|
[2253] | 107 | if certificate_levels: |
---|
| 108 | certificate_levels_str = certificate_levels |
---|
| 109 | certificate_levels = certificate_levels.split() |
---|
[1557] | 110 | else: |
---|
| 111 | query = In('portal_type',('StudyLevel',)) &\ |
---|
| 112 | In('localUsersWithRoles', ("user:%s" % member,)) |
---|
[1845] | 113 | res = aq_portal(query) |
---|
[1571] | 114 | logger.info('CourseAdviser %s initiated student_search' % member) |
---|
[2253] | 115 | certificate_levels = [] |
---|
[1557] | 116 | if res: |
---|
[2253] | 117 | certificate_levels = ['/'.join(f.getPath().split('/')[-2:]) for f in res] |
---|
[2873] | 118 | cert_ids = [] |
---|
| 119 | level_ids = [] |
---|
| 120 | for cl in certificate_levels: |
---|
| 121 | c,l = cl.split('/') |
---|
| 122 | level_ids += l, |
---|
| 123 | if c not in cert_ids: |
---|
| 124 | cert_ids += c, |
---|
| 125 | cert_brains = aq_portal(In("id",cert_ids)) |
---|
| 126 | end_levels = {} |
---|
| 127 | for cert_brain in cert_brains: |
---|
| 128 | end_levels[cert_brain.getId] = cert_brain.getObject().getContent().end_level |
---|
| 129 | for cl in certificate_levels[:]: |
---|
| 130 | c,l = cl.split('/') |
---|
| 131 | for prob in (10,20): |
---|
| 132 | certificate_levels += "%s/%s" % (c,int(l) + prob), |
---|
| 133 | if l == end_levels[c]: |
---|
| 134 | certificate_levels += "%s/%s" % (c,int(l) + 100), |
---|
[2253] | 135 | user_info['certificate_levels'] = certificate_levels |
---|
| 136 | certificate_levels_str = " ".join(certificate_levels) |
---|
| 137 | |
---|
[1071] | 138 | default = {'search_mode': 'student_id', |
---|
[1006] | 139 | 'review_state': state, |
---|
[920] | 140 | 'search_string': '' |
---|
| 141 | } |
---|
| 142 | rend,psm,ds = lt.renderLayout(layout_id= 'student_search', |
---|
| 143 | schema_id= 'student_search', |
---|
| 144 | context=context, |
---|
[1192] | 145 | mapping=validate and REQUEST, |
---|
[920] | 146 | ob=default, |
---|
| 147 | layout_mode='edit', |
---|
[971] | 148 | formaction="search_students", |
---|
[1278] | 149 | faculties = fac_str, |
---|
| 150 | departments = dep_str, |
---|
[2253] | 151 | certificate_levels = certificate_levels_str, |
---|
[971] | 152 | commit = False, |
---|
[920] | 153 | ) |
---|
| 154 | if psm == '': |
---|
| 155 | return context.search_students_form(rendered = rend, |
---|
| 156 | psm = psm, |
---|
| 157 | #psm = "%s, %s" % (psm,ds), |
---|
[1065] | 158 | info = user_info, |
---|
[971] | 159 | students = [], |
---|
[1096] | 160 | allowed = allowed, |
---|
[920] | 161 | ) |
---|
| 162 | what = ds.get('search_mode') |
---|
| 163 | state = ds.get('review_state') |
---|
| 164 | st = term = ds.get('search_string') |
---|
| 165 | err = False |
---|
| 166 | with_review = state != "all" |
---|
| 167 | only_review = with_review and not term |
---|
| 168 | bools = "with_review = %s<br\> only_review = %s<br\>" % (with_review,only_review) |
---|
| 169 | if not term and not with_review: |
---|
| 170 | psm = "You must specify a search string when searching 'all states'!" |
---|
| 171 | err = True |
---|
| 172 | elif '*' in term: |
---|
| 173 | psm = "Wildcards are not supported!" |
---|
| 174 | err = True |
---|
| 175 | if err: |
---|
| 176 | return context.search_students_form(rendered = rend, |
---|
| 177 | psm = psm, |
---|
| 178 | #psm = "%s, %s" % (psm,ds), |
---|
[1065] | 179 | info = user_info, |
---|
[920] | 180 | students = items, |
---|
[1096] | 181 | allowed = allowed, |
---|
[920] | 182 | ) |
---|
[1479] | 183 | #st_queries = ('jamb_reg_no','matric_no','name') |
---|
[920] | 184 | review_res = None |
---|
| 185 | query = None |
---|
[1071] | 186 | items = [] |
---|
| 187 | res = [] |
---|
[1034] | 188 | review_set = [] |
---|
[1043] | 189 | search_set = [] |
---|
[920] | 190 | if len(term) > 0: |
---|
| 191 | if what == "student_id": |
---|
[1065] | 192 | students_folder = context.portal_url.getPortalObject().campus.students |
---|
[1033] | 193 | if hasattr(students_folder,term.strip()): |
---|
[1571] | 194 | logger.info('%s searches for student with id %s' % (member,term)) |
---|
[1033] | 195 | request.RESPONSE.redirect("%s/%s" % (students_folder.absolute_url(),term)) |
---|
| 196 | return context.search_students_form(rendered = rend, |
---|
| 197 | psm = "No student found!", |
---|
| 198 | students = [], |
---|
[1096] | 199 | allowed = allowed, |
---|
[1033] | 200 | ) |
---|
[1034] | 201 | elif what == "department": |
---|
| 202 | res = context.students_catalog(department=term.strip()) |
---|
[1571] | 203 | logger.info('%s searches for student in department %s' % (member,term)) |
---|
[1034] | 204 | search_set = [r.id for r in res] |
---|
[1278] | 205 | elif what == "matric_no": |
---|
| 206 | res = context.students_catalog(matric_no=term.strip()) |
---|
[1571] | 207 | logger.info('%s searches for student with matric_no %s' % (member,term)) |
---|
[1278] | 208 | search_set = [r.id for r in res] |
---|
[1479] | 209 | elif what == "jamb_reg_no": |
---|
[1500] | 210 | st_l = "%s" % term.strip().lower() |
---|
| 211 | st_u = "%s" % term.strip().upper() |
---|
| 212 | res = aq_students(In('jamb_reg_no',(st_l,st_u))) |
---|
[1571] | 213 | logger.info('%s searches for student with jamb_reg_no %s' % (member,term)) |
---|
[1479] | 214 | search_set = [r.id for r in res] |
---|
| 215 | elif what == "name": |
---|
[2278] | 216 | if len(term) < 4: |
---|
| 217 | return context.search_students_form(rendered = rend, |
---|
[2280] | 218 | psm = "Name too short!", |
---|
[2278] | 219 | students = [], |
---|
| 220 | allowed = allowed, |
---|
| 221 | ) |
---|
[1479] | 222 | pt = ('StudentPersonal') |
---|
[920] | 223 | query = In('portal_type',pt) & Eq('SearchableText',"%s*" % term.strip()) |
---|
[1571] | 224 | logger.info('%s searches for student with name %s' % (member,term)) |
---|
[1845] | 225 | res = aq_portal(query) |
---|
[1033] | 226 | if res: |
---|
| 227 | for r in res: |
---|
| 228 | pl = r.getPath().split('/') |
---|
| 229 | search_set.append(pl[pl.index('students') + 1]) |
---|
[1479] | 230 | |
---|
[2250] | 231 | if only_review or with_review or co_view: |
---|
| 232 | #query = Eq('review_state',state) |
---|
| 233 | #review_res = aq_portal(query) |
---|
| 234 | #review_res = context.portal_catalog(review_state = state) |
---|
[1479] | 235 | |
---|
[1278] | 236 | query = Eq('review_state',state) |
---|
[2250] | 237 | review_res = aq_students(query) |
---|
[1571] | 238 | logger.info('%s searches for students in review_state %s' % (member,state)) |
---|
[2253] | 239 | |
---|
[1278] | 240 | if co_view: |
---|
[1065] | 241 | only_review = False |
---|
[1278] | 242 | with_review = True |
---|
[1096] | 243 | query = In('faculty',faculties) | In('department',departments) |
---|
[1065] | 244 | res = aq_students(query) |
---|
| 245 | search_set = [r.id for r in res] |
---|
[1557] | 246 | elif ca_view: |
---|
| 247 | only_review = False |
---|
| 248 | with_review = True |
---|
[2253] | 249 | courses = [cl.split('/')[0] for cl in certificate_levels] |
---|
| 250 | levels = [cl.split('/')[1] for cl in certificate_levels] |
---|
[1557] | 251 | query = In('course',courses) & In('level',levels) |
---|
| 252 | res = aq_students(query) |
---|
| 253 | search_set = [r.id for r in res] |
---|
[1034] | 254 | if review_res: |
---|
[2250] | 255 | review_set = [r.id for r in review_res] |
---|
| 256 | |
---|
[2253] | 257 | #from Products.zdb import set_trace;set_trace() |
---|
[2250] | 258 | |
---|
[1073] | 259 | if only_review: |
---|
| 260 | all = review_set |
---|
| 261 | elif with_review: |
---|
| 262 | all = [] |
---|
| 263 | for i in search_set: |
---|
| 264 | if i in review_set: |
---|
| 265 | all.append(i) |
---|
| 266 | else: |
---|
| 267 | all = search_set |
---|
[2253] | 268 | |
---|
[1065] | 269 | items = all[:500] |
---|
[920] | 270 | students = [] |
---|
| 271 | if items: |
---|
| 272 | for item in items: |
---|
[1006] | 273 | stcat = context.students_catalog |
---|
[1446] | 274 | record = stcat(id = item) |
---|
| 275 | if record: |
---|
| 276 | record = record[0] |
---|
| 277 | else: |
---|
| 278 | return item+' not found in students_catalog' |
---|
[971] | 279 | info = {} |
---|
[1006] | 280 | for field in stcat.schema() + stcat.indexes(): |
---|
| 281 | info[field] = getattr(record, field) |
---|
[920] | 282 | else: |
---|
[1011] | 283 | students.append(info) |
---|
[920] | 284 | return context.search_students_form(rendered = rend, |
---|
| 285 | psm = "", |
---|
[1065] | 286 | info = user_info, |
---|
[920] | 287 | students = students, |
---|
[1096] | 288 | allowed = allowed, |
---|
[920] | 289 | co_view = co_view, |
---|
[1582] | 290 | ca_view = ca_view |
---|
[920] | 291 | ) |
---|
| 292 | return context.search_students_form(rendered = rend, |
---|
| 293 | psm = "No student found!", |
---|
[1065] | 294 | info = user_info, |
---|
[920] | 295 | students = students, |
---|
[1096] | 296 | allowed = allowed, |
---|
[920] | 297 | ) |
---|
| 298 | |
---|
| 299 | |
---|