░▒▓████████████████████████████████▓▒░ ░▒▓█ ▓▒░ ░▒▓█ ~ S W A M P ~ ▓▒░ ░▒▓█ ▓▒░ ░▒▓████████████████████████████████▓▒░
pplmvsvm
LOCATION:
/var/www/canvas/gems/plugins/moodle_importer/lib/moodle_importer
☗ ROOT
↻ REFRESH
✎ CARVE FLESH
EDITING: converter.rb
# frozen_string_literal: true # # Copyright (C) 2012 - present Instructure, Inc. # # This file is part of Canvas. # # Canvas is free software: you can redistribute it and/or modify it under # the terms of the GNU Affero General Public License as published by the Free # Software Foundation, version 3 of the License. # # Canvas is distributed in the hope that it will be useful, but WITHOUT ANY # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR # A PARTICULAR PURPOSE. See the GNU Affero General Public License for more # details. # # You should have received a copy of the GNU Affero General Public License along # with this program. If not, see <http://www.gnu.org/licenses/>. module MoodleImporter class Converter < Canvas::Migration::Migrator def initialize(settings) super(settings, "moodle") end def export(_to_export = Canvas::Migration::Migrator::SCRAPE_ALL_HASH) unzip_archive migrator = Moodle2CC::Migrator.new @package_root.root_path, Dir.mktmpdir, "format" => "canvas", "logger" => self migrator.migrate if migrator.last_error raise migrator.last_error end @settings[:archive_file] = File.open(migrator.imscc_path) @settings.delete(:archive) cc_converter = CC::Importer::Canvas::Converter.new(@settings) cc_converter.export @course = cc_converter.course add_question_warnings File.open(@course[:full_export_file_path], "w") { |file| file << @course.to_json } @course ensure FileUtils.rm migrator.imscc_path if migrator&.imscc_path && File.exist?(migrator.imscc_path) end def add_question_warnings return unless @course[:assessment_questions] && @course[:assessment_questions][:assessment_questions] warning_map = {} @course[:assessment_questions][:assessment_questions].each do |q_hash| qb_ident = q_hash["question_bank_id"] || q_hash["question_bank_name"] || :default next unless q_hash["question_type"] == "multiple_dropdowns_question" || q_hash["question_type"] == "calculated_question" warning_map[qb_ident] ||= {} warning_map[qb_ident][q_hash["question_type"]] ||= [] warning_map[qb_ident][q_hash["question_type"]] << q_hash end add_warnings_to_map(warning_map) end def add_warnings_to_map(warning_map) warning_map.each_value do |warnings| if (hashes = warnings["multiple_dropdowns_question"]) if hashes.count > 2 q_hash = hashes.first q_hash["import_warnings"] ||= [] q_hash["import_warnings"] << I18n.t(:moodle_dropdown_many_warning_title, "There are %{count} Multiple Dropdowns questions in this bank that may have been imported incorrectly", count: hashes.count) else hashes.each do |q_hash2| q_hash2["import_warnings"] ||= [] q_hash2["import_warnings"] << I18n.t(:moodle_dropdown_warning_title, "Multiple Dropdowns question may have been imported incorrectly") end end end if (hashes = warnings["calculated_question"]) if hashes.count > 2 q_hash = hashes.first q_hash["import_warnings"] ||= [] q_hash["import_warnings"] << I18n.t(:moodle_formula_many_warning_title, "There are %{count} Formula questions in this bank that will need to have their possible answers regenerated", count: hashes.count) else hashes.each do |q_hash2| q_hash2["import_warnings"] ||= [] q_hash2["import_warnings"] << I18n.t(:moodle_formula_warning_title, "Possible answers will need to be regenerated for Formula question") end end end end end end end
CANCEL
Name
Type
Size
Modified
Actions
↩ ..
DIR
—
—
📄 converter.rb
RB
4 KB
2023-09-24 03:36
EDIT
📄 engine.rb
RB
1.6 KB
2023-09-24 03:36
EDIT
📄 version.rb
RB
757 B
2023-09-24 03:36
EDIT