discourse/script/import_scripts/quandora/export.rb
Sam Saffron 30990006a9 DEV: enable frozen string literal on all files
This reduces chances of errors where consumers of strings mutate inputs
and reduces memory usage of the app.

Test suite passes now, but there may be some stuff left, so we will run
a few sites on a branch prior to merging
2019-05-13 09:31:32 +08:00

32 lines
737 B
Ruby

# frozen_string_literal: true
require 'yaml'
require_relative 'quandora_api'
def load_config(file)
config = YAML::load_file(File.join(__dir__, file))
@domain = config['domain']
@username = config['username']
@password = config['password']
end
def export
api = QuandoraApi.new @domain, @username, @password
bases = api.list_bases
bases.each do |base|
question_list = api.list_questions base['objectId'], 1000
question_list.each do |q|
question_id = q['uid']
question = api.get_question question_id
File.open("output/#{question_id}.json", 'w') do |f|
puts question['title']
f.write question.to_json
f.close
end
end
end
end
load_config ARGV.shift
export