brotherton-erpnext/erpnext/www/lms/topic.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

58 lines
1.5 KiB
Python
Raw Normal View History

2019-06-05 14:12:30 +00:00
import frappe
import erpnext.education.utils as utils
2019-06-05 14:12:30 +00:00
no_cache = 1
2022-03-28 13:22:46 +00:00
2019-06-05 14:12:30 +00:00
def get_context(context):
try:
course = frappe.form_dict["course"]
program = frappe.form_dict["program"]
topic = frappe.form_dict["topic"]
except KeyError:
frappe.local.flags.redirect_location = "/lms"
raise frappe.Redirect
2019-06-05 14:12:30 +00:00
context.program = program
context.course = course
context.topic = frappe.get_doc("Topic", topic)
context.contents = get_contents(context.topic, course, program)
context.has_access = utils.allowed_program_access(program)
2022-03-28 13:22:46 +00:00
2019-06-05 14:12:30 +00:00
def get_contents(topic, course, program):
student = utils.get_current_student()
2019-06-06 08:32:49 +00:00
if student:
course_enrollment = utils.get_or_create_course_enrollment(course, program)
2019-06-05 14:12:30 +00:00
contents = topic.get_contents()
progress = []
if contents:
for content in contents:
if content.doctype in ("Article", "Video"):
2019-06-06 08:32:49 +00:00
if student:
status = utils.check_content_completion(content.name, content.doctype, course_enrollment.name)
else:
status = True
2019-06-05 14:12:30 +00:00
progress.append({"content": content, "content_type": content.doctype, "completed": status})
elif content.doctype == "Quiz":
2019-06-06 08:32:49 +00:00
if student:
status, score, result, time_taken = utils.check_quiz_completion(
content, course_enrollment.name
)
2019-06-06 08:32:49 +00:00
else:
status = False
score = None
result = None
2019-06-05 14:12:30 +00:00
progress.append(
2022-03-28 13:22:46 +00:00
{
2019-06-05 14:12:30 +00:00
"content": content,
"content_type": content.doctype,
"completed": status,
"score": score,
"result": result,
2022-03-28 13:22:46 +00:00
}
2019-06-05 14:12:30 +00:00
)
return progress