-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtasks.py
135 lines (105 loc) · 4.67 KB
/
tasks.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
# -*- coding: utf-8 -*-
#!/usr/bin/env python
import webapp2, jinja2, os, db, base, time
from webapp2_extras import i18n, sessions
import utils
JINJA_ENVIRONMENT = jinja2.Environment(
loader=jinja2.FileSystemLoader(os.path.dirname(__file__)),
extensions=['jinja2.ext.i18n', 'jinja2.ext.autoescape'],
autoescape=True)
JINJA_ENVIRONMENT.install_gettext_translations(i18n)
class TasksHandler(base.BaseHandler):
class Parser:
@staticmethod
def exportCsvStudentsFile(task):
students = task.getStudents().order(db.Student.dni)
fileContent = ""
for st in students:
mark = task.getStudentMark(st.key)
if mark is not None:
mark = round(mark, 2)
fileContent += "%s;%s\n" % (st.dni, mark)
return fileContent
def get(self, action, idTask, idSt):
if not self.loggedIn():
self.redirect("/")
return
values = self.getValues()
i18n.get_i18n().set_locale(self.getLanguage())
if action == "calify":
# Get task and subject entities
task = db.Task.get_by_id(long(idTask))
sub = task.subject.get()
# Recover marks of the task
marks = {}
for mark in task.getMarks():
marks[mark.student.id()] = mark.mark
students = sub.getStudents()
try:
students = [(student, marks.get(student.key.id(), -1)) for student in students]
except Exception: # BadQueryError
students = []
values["task"] = task
values["subject"] = sub
values["students"] = students# sub.getStudents()
if self.session.get('correctLines', None) != None: # File load results
values["correct"] = self.session.pop('correctLines', None)
values["incorrect"] = self.session.pop('incorrectLines', None)
values["incorrect_lines"] = self.session.pop('incorrectLinesData', None)
template = JINJA_ENVIRONMENT.get_template('view/tasks/calify.html')
elif action == "addmark": # Called by ajax requests
task = db.Task.get_by_id(long(idTask))
sub = task.subject.get()
student = db.Student.get_by_id(long(idSt))
mark = self.request.get("mark").strip()
try:
if mark == "":
mark = db.Mark.getByStudentAndTask(student.key, task.key)
if mark:
mark.remove()
else:
mark = float(self.request.get("mark"))
db.Mark.addOrUpdate(student.key, task.key, mark) # TODO: check if mark it's updated correctly
if student.key in sub.promoteds:
sub.removePromoted(student.key)
except:
pass # Mark isn't float
return
elif action == "export" and idTask != "":
task = db.Task.get_by_id(long(idTask))
# Export CSV
export_time = time.localtime()
str_export_time = str.format("{0:02d}_{1:02d}_{2:02d}",
export_time.tm_year, export_time.tm_mon, export_time.tm_mday)
str_export_time += "-" + str.format("{0:02d}_{1:02d}_{2:02d}",
export_time.tm_hour, export_time.tm_min, export_time.tm_sec)
file_name = utils.create_file_name(self.getUserName(), "task", task.subject.get().name + "_" + task.name)
file_name += ".csv"
self.response.headers['Content-Type'] = 'text/csv'
self.response.headers['Content-Disposition'] = 'attachment; filename=' + file_name
self.response.write(self.Parser.exportCsvStudentsFile(task))
return
else:
self.redirect("/")
return
self.response.write(template.render(values))
def dispatch(self):
# Get a session store for this request.
self.session_store = sessions.get_store(request=self.request)
try:
# Dispatch the request.
webapp2.RequestHandler.dispatch(self)
finally:
# Save all sessions.
self.session_store.save_sessions(self.response)
@webapp2.cached_property
def session(self):
# Returns a session using the default cookie key.
return self.session_store.get_session()
config = {}
config['webapp2_extras.sessions'] = {
'secret_key': '5680fd16956dd8ef2290e4c029e6e841',
}
app = webapp2.WSGIApplication([
('/tasks/?([a-z]*)/?([0-9]*)/?([0-9]*)', TasksHandler)
], debug=True, config=config)