Class: CanvasCc::Canvas::Assignment
Constant Summary
collapse
- SETTINGS_ATTRIBUTES =
[:title, :points_possible, :grading_type, :due_at,
:lock_at, :unlock_at, :all_day, :all_day_date, :submission_types,
:position, :peer_reviews, :automatic_peer_reviews, :peer_review_count,
:anonymous_peer_reviews, :assignment_group_identifierref]
CanvasCc::CC::CCHelper::ASSESSMENT_CC_QTI, CanvasCc::CC::CCHelper::ASSESSMENT_META, CanvasCc::CC::CCHelper::ASSESSMENT_NON_CC_FOLDER, CanvasCc::CC::CCHelper::ASSESSMENT_TYPE, CanvasCc::CC::CCHelper::ASSIGNMENT_GROUPS, CanvasCc::CC::CCHelper::ASSIGNMENT_SETTINGS, CanvasCc::CC::CCHelper::BASIC_LTI, CanvasCc::CC::CCHelper::BLTI_NAMESPACE, CanvasCc::CC::CCHelper::CANVAS_NAMESPACE, CanvasCc::CC::CCHelper::CANVAS_PLATFORM, CanvasCc::CC::CCHelper::CC_ASSIGNMENT_FOLDER, CanvasCc::CC::CCHelper::CC_EXTENSION, CanvasCc::CC::CCHelper::CC_WIKI_FOLDER, CanvasCc::CC::CCHelper::COURSE_SETTINGS, CanvasCc::CC::CCHelper::COURSE_SETTINGS_DIR, CanvasCc::CC::CCHelper::COURSE_TOKEN, CanvasCc::CC::CCHelper::DISCUSSION_TOPIC, CanvasCc::CC::CCHelper::EVENTS, CanvasCc::CC::CCHelper::EXTERNAL_FEEDS, CanvasCc::CC::CCHelper::EXTERNAL_TOOLS, CanvasCc::CC::CCHelper::FILES_META, CanvasCc::CC::CCHelper::GRADING_STANDARDS, CanvasCc::CC::CCHelper::IMS_DATE, CanvasCc::CC::CCHelper::IMS_DATETIME, CanvasCc::CC::CCHelper::LEARNING_OUTCOMES, CanvasCc::CC::CCHelper::LOR, CanvasCc::CC::CCHelper::MANIFEST, CanvasCc::CC::CCHelper::MEDIA_OBJECTS_FOLDER, CanvasCc::CC::CCHelper::MODULE_META, CanvasCc::CC::CCHelper::MOODLE_FILEBASE_TOKEN, CanvasCc::CC::CCHelper::MOODLE_SLASH_TOKEN, CanvasCc::CC::CCHelper::OBJECT_TOKEN, CanvasCc::CC::CCHelper::QTI_ASSESSMENT_TYPE, CanvasCc::CC::CCHelper::QTI_EXTENSION, CanvasCc::CC::CCHelper::QUESTION_BANK, CanvasCc::CC::CCHelper::RUBRICS, CanvasCc::CC::CCHelper::SYLLABUS, CanvasCc::CC::CCHelper::WEBCONTENT, CanvasCc::CC::CCHelper::WEB_CONTENT_TOKEN, CanvasCc::CC::CCHelper::WEB_LINK, CanvasCc::CC::CCHelper::WEB_RESOURCES_FOLDER, CanvasCc::CC::CCHelper::WIKI_FOLDER, CanvasCc::CC::CCHelper::WIKI_TOKEN, CanvasCc::CC::CCHelper::XSD_URI
Instance Attribute Summary
#body, #meta_fields
Instance Method Summary
collapse
Methods included from Resource
#create_module_meta_item_node
#build_meta_fields, #create_html, #create_resource_node
#create_organization_item_node, #create_resource_node, included
#convert_file_path_tokens, convert_file_path_tokens, #create_key, create_key, create_mod_key, #create_mod_key, #create_resource_key, create_resource_key, file_query_string, #file_slug, file_slug, #get_html_title_and_body, #get_html_title_and_body_and_id, #get_html_title_and_body_and_meta_fields, ims_date, #ims_date, ims_datetime, #ims_datetime, media_object_info
Constructor Details
#initialize(mod, position = 0) ⇒ Assignment
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
|
# File 'lib/canvas_cc/canvas/assignment.rb', line 11
def initialize(mod, position=0)
super
@rel_path = "#{identifier}/#{file_slug(@title)}.html"
@resource_type = LOR
@body = convert_file_path_tokens(mod.description)
@points_possible = mod.grade_item ? mod.grade_item.grade_max : mod.grade
@grading_type = 'points'
if mod.time_due.to_i > 0
@due_at = ims_datetime(Time.at(mod.time_due))
@all_day = Time.at(mod.time_due).utc.strftime('%H:%M') == '23:59' ? true : false
if @all_day
@all_day_date = ims_date(Time.at(mod.time_due))
end
if mod.prevent_late
@lock_at = @due_at
end
end
if mod.time_available.to_i > 0
@unlock_at = ims_datetime(Time.at(mod.time_available))
end
if mod.submission_end.to_i > 0
@due_at = ims_datetime(Time.at(mod.submission_end))
end
@submission_types = get_submission_types(mod)
@position = position
@peer_reviews = @automatic_peer_reviews = mod.mod_type == 'workshop'
@peer_review_count = mod.number_of_student_assessments
@anonymous_peer_reviews = mod.anonymous
@assignment_group_identifierref = create_key(mod.section_mod.section.id, 'assignment_group_')
end
|
Instance Method Details
#create_files(export_dir) ⇒ Object
69
70
71
72
|
# File 'lib/canvas_cc/canvas/assignment.rb', line 69
def create_files(export_dir)
super
create_settings_xml(export_dir)
end
|
93
94
95
96
|
# File 'lib/canvas_cc/canvas/assignment.rb', line 93
def create_module_meta_item_elements(item_node)
item_node.content_type 'Assignment'
item_node.identifierref @identifier
end
|
#create_resource_sub_nodes(resource_node) ⇒ Object
65
66
67
|
# File 'lib/canvas_cc/canvas/assignment.rb', line 65
def create_resource_sub_nodes(resource_node)
resource_node.file(:href => File.join(identifier, ASSIGNMENT_SETTINGS))
end
|
#create_settings_xml(export_dir) ⇒ Object
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
|
# File 'lib/canvas_cc/canvas/assignment.rb', line 74
def create_settings_xml(export_dir)
path = File.join(export_dir, identifier, ASSIGNMENT_SETTINGS)
FileUtils.mkdir_p(File.dirname(path))
File.open(path, 'w') do |file|
settings_node = Builder::XmlMarkup.new(:target => file, :indent => 2)
settings_node.instruct!
settings_node.assignment(
:identifier => identifier,
'xsi:schemaLocation' => "http://canvas.instructure.com/xsd/cccv1p0 http://canvas.instructure.com/xsd/cccv1p0.xsd",
'xmlns:xsi' => "http://www.w3.org/2001/XMLSchema-instance",
'xmlns' => "http://canvas.instructure.com/xsd/cccv1p0"
) do |assignment_node|
SETTINGS_ATTRIBUTES.each do |attr|
assignment_node.tag!(attr, send(attr)) unless send(attr).nil?
end
end
end
end
|
#get_submission_types(mod) ⇒ Object
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
# File 'lib/canvas_cc/canvas/assignment.rb', line 42
def get_submission_types(mod)
if mod.mod_type == 'assignment'
case mod.assignment_type
when 'online'
'online_text_entry'
when 'upload'
if mod.var2 == 1
'online_upload,online_text_entry'
else
'online_upload'
end
when 'uploadsingle'
'online_upload'
else
'none'
end
elsif mod.mod_type == 'workshop'
submission_types = ['online_text_entry']
submission_types.unshift('online_upload') if mod.number_of_attachments > 0
submission_types.join(',')
end
end
|