Website : rimsha.abasa.com
backdoor
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
var
/
canvas
/
spec
/
Filename :
import_helper.rb
back
Copy
# frozen_string_literal: true # # Copyright (C) 2011 - 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/>. # IMPORT_JSON_DIR = File.dirname(__FILE__) + "/fixtures/importer/" QUESTIONS = [ ["calculated_complex", "calculated_question"], ["calculated_simple", "calculated_question"], ["essay"], ["file_upload", "unsupported"], ["fill_in_multiple_blanks"], ["hot_spot", "unsupported"], ["matching"], ["multiple_answers"], ["multiple_choice"], ["multiple_dropdowns"], ["numerical"], ["ordering", "matching_question"], ["short_answer"], ["true_false"], ].freeze SYSTEMS = %w[vista bb8 bb9 angel].freeze def import_data_exists?(sub_folder, hash_name) File.exist? File.join(IMPORT_JSON_DIR, sub_folder, "#{hash_name}.json") end def get_import_data(sub_folder, hash_name) json = File.read(File.join(IMPORT_JSON_DIR, sub_folder, "#{hash_name}.json")) data = JSON.parse(json) data = data.with_indifferent_access if data.is_a? Hash data end def import_example_questions questions = [] QUESTIONS.each do |question| if import_data_exists?(["vista", "quiz"], question[0]) q = get_import_data ["vista", "quiz"], question[0] questions << q end end hash = { "assessment_questions" => { "assessment_questions" => questions } } Importers::AssessmentQuestionImporter.process_migration(hash, @migration) end def get_import_context(_system = nil) course_model end class ImportHelper def self.get_import_data_xml(sub_folder, file_name) File.open(File.join(IMPORT_JSON_DIR, sub_folder, "#{file_name}.xml")) { |f| Nokogiri::XML(f) } end end