mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 07:52:19 +08:00
30990006a9
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
48 lines
987 B
Ruby
48 lines
987 B
Ruby
# frozen_string_literal: true
|
|
|
|
require File.expand_path(File.dirname(__FILE__) + "/base.rb")
|
|
|
|
# Edit the constants and initialize method for your import data.
|
|
|
|
class ImportScripts::DrupalJson < ImportScripts::Base
|
|
|
|
JSON_FILES_DIR = "/Users/techapj/Documents"
|
|
|
|
def initialize
|
|
super
|
|
@users_json = load_json("formatted_users.json")
|
|
end
|
|
|
|
def execute
|
|
puts "", "Importing from Drupal..."
|
|
|
|
import_users
|
|
|
|
puts "", "Done"
|
|
end
|
|
|
|
def load_json(arg)
|
|
filename = File.join(JSON_FILES_DIR, arg)
|
|
raise RuntimeError.new("File #{filename} not found!") if !File.exists?(filename)
|
|
JSON.parse(File.read(filename)).reverse
|
|
end
|
|
|
|
def import_users
|
|
puts '', "Importing users"
|
|
|
|
create_users(@users_json) do |u|
|
|
{
|
|
id: u["uid"],
|
|
name: u["name"],
|
|
email: u["mail"],
|
|
created_at: Time.zone.at(u["created"].to_i)
|
|
}
|
|
end
|
|
EmailToken.delete_all
|
|
end
|
|
end
|
|
|
|
if __FILE__ == $0
|
|
ImportScripts::DrupalJson.new.perform
|
|
end
|