2014-10-10 14:04:07 -04:00
|
|
|
module BackupRestore
|
2014-02-12 23:32:58 -05:00
|
|
|
|
2015-06-11 02:42:01 -04:00
|
|
|
class RestoreDisabledError < RuntimeError; end
|
2014-02-12 23:32:58 -05:00
|
|
|
class FilenameMissingError < RuntimeError; end
|
|
|
|
|
2014-10-10 14:04:07 -04:00
|
|
|
class Restorer
|
2016-07-21 22:45:39 -04:00
|
|
|
include BackupRestore::Utils
|
2014-02-12 23:32:58 -05:00
|
|
|
|
2014-08-04 11:55:09 -04:00
|
|
|
attr_reader :success
|
|
|
|
|
2015-08-27 14:02:13 -04:00
|
|
|
def initialize(user_id, opts={})
|
|
|
|
@user_id = user_id
|
|
|
|
@client_id = opts[:client_id]
|
|
|
|
@filename = opts[:filename]
|
|
|
|
@publish_to_message_bus = opts[:publish_to_message_bus] || false
|
2014-02-12 23:32:58 -05:00
|
|
|
|
2014-10-10 14:04:07 -04:00
|
|
|
ensure_restore_is_enabled
|
2014-02-12 23:32:58 -05:00
|
|
|
ensure_no_operation_is_running
|
|
|
|
ensure_we_have_a_user
|
|
|
|
ensure_we_have_a_filename
|
|
|
|
|
|
|
|
initialize_state
|
|
|
|
end
|
|
|
|
|
|
|
|
def run
|
|
|
|
log "[STARTED]"
|
|
|
|
log "'#{@user_info[:username]}' has started the restore!"
|
|
|
|
|
2014-10-10 14:04:07 -04:00
|
|
|
mark_restore_as_running
|
2014-02-12 23:32:58 -05:00
|
|
|
|
|
|
|
listen_for_shutdown_signal
|
|
|
|
|
|
|
|
ensure_directory_exists(@tmp_directory)
|
|
|
|
|
|
|
|
copy_archive_to_tmp_directory
|
|
|
|
unzip_archive
|
|
|
|
|
|
|
|
extract_metadata
|
|
|
|
validate_metadata
|
|
|
|
|
|
|
|
extract_dump
|
|
|
|
restore_dump
|
|
|
|
|
2014-04-08 12:06:53 -04:00
|
|
|
### READ-ONLY / START ###
|
|
|
|
enable_readonly_mode
|
|
|
|
|
|
|
|
pause_sidekiq
|
|
|
|
wait_for_sidekiq
|
|
|
|
|
2014-02-12 23:32:58 -05:00
|
|
|
switch_schema!
|
|
|
|
|
2016-01-18 19:01:17 -05:00
|
|
|
migrate_database
|
2014-02-12 23:32:58 -05:00
|
|
|
reconnect_database
|
2014-04-08 12:06:53 -04:00
|
|
|
reload_site_settings
|
2015-03-17 12:29:18 -04:00
|
|
|
clear_emoji_cache
|
2014-04-08 12:06:53 -04:00
|
|
|
|
|
|
|
disable_readonly_mode
|
|
|
|
### READ-ONLY / END ###
|
2014-02-12 23:32:58 -05:00
|
|
|
|
2016-01-18 19:01:17 -05:00
|
|
|
extract_uploads
|
2014-02-12 23:32:58 -05:00
|
|
|
rescue SystemExit
|
|
|
|
log "Restore process was cancelled!"
|
|
|
|
rollback
|
2014-08-18 02:42:48 -04:00
|
|
|
rescue => ex
|
2014-02-12 23:32:58 -05:00
|
|
|
log "EXCEPTION: " + ex.message
|
|
|
|
log ex.backtrace.join("\n")
|
|
|
|
rollback
|
|
|
|
else
|
|
|
|
@success = true
|
|
|
|
ensure
|
2016-07-22 00:14:35 -04:00
|
|
|
begin
|
|
|
|
notify_user
|
|
|
|
clean_up
|
|
|
|
rescue => ex
|
|
|
|
Rails.logger.error("#{ex}\n" + ex.backtrace.join("\n"))
|
|
|
|
end
|
|
|
|
|
2014-02-12 23:32:58 -05:00
|
|
|
@success ? log("[SUCCESS]") : log("[FAILED]")
|
|
|
|
end
|
|
|
|
|
|
|
|
protected
|
|
|
|
|
2014-10-10 14:04:07 -04:00
|
|
|
def ensure_restore_is_enabled
|
2015-06-11 02:42:01 -04:00
|
|
|
raise BackupRestore::RestoreDisabledError unless Rails.env.development? || SiteSetting.allow_restore?
|
2014-02-12 23:32:58 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def ensure_no_operation_is_running
|
|
|
|
raise BackupRestore::OperationRunningError if BackupRestore.is_operation_running?
|
|
|
|
end
|
|
|
|
|
|
|
|
def ensure_we_have_a_user
|
2014-05-06 09:41:59 -04:00
|
|
|
user = User.find_by(id: @user_id)
|
2014-02-12 23:32:58 -05:00
|
|
|
raise Discourse::InvalidParameters.new(:user_id) unless user
|
|
|
|
# keep some user data around to check them against the newly restored database
|
|
|
|
@user_info = { id: user.id, username: user.username, email: user.email }
|
|
|
|
end
|
|
|
|
|
|
|
|
def ensure_we_have_a_filename
|
2015-06-11 02:42:01 -04:00
|
|
|
raise BackupRestore::FilenameMissingError if @filename.nil?
|
2014-02-12 23:32:58 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def initialize_state
|
|
|
|
@success = false
|
2014-08-20 05:53:15 -04:00
|
|
|
@db_was_changed = false
|
2014-02-12 23:32:58 -05:00
|
|
|
@current_db = RailsMultisite::ConnectionManagement.current_db
|
|
|
|
@current_version = BackupRestore.current_version
|
|
|
|
@timestamp = Time.now.strftime("%Y-%m-%d-%H%M%S")
|
|
|
|
@tmp_directory = File.join(Rails.root, "tmp", "restores", @current_db, @timestamp)
|
2016-07-31 23:56:06 -04:00
|
|
|
@source_filename = File.join(Backup.base_directory, @filename)
|
2014-02-12 23:32:58 -05:00
|
|
|
@archive_filename = File.join(@tmp_directory, @filename)
|
|
|
|
@tar_filename = @archive_filename[0...-3]
|
|
|
|
@meta_filename = File.join(@tmp_directory, BackupRestore::METADATA_FILE)
|
2016-08-01 09:18:42 -04:00
|
|
|
@is_archive = !(@filename =~ /.sql.gz$/)
|
2016-07-31 23:56:06 -04:00
|
|
|
|
|
|
|
# For backwards compatibility
|
|
|
|
@dump_filename =
|
2016-08-01 09:18:42 -04:00
|
|
|
if @is_archive
|
2016-09-15 22:32:53 -04:00
|
|
|
if system('tar', '--list', '--file', @source_filename, BackupRestore::OLD_DUMP_FILE)
|
2016-08-23 22:28:23 -04:00
|
|
|
File.join(@tmp_directory, BackupRestore::OLD_DUMP_FILE)
|
2016-08-01 09:18:42 -04:00
|
|
|
else
|
2016-08-23 22:28:23 -04:00
|
|
|
File.join(@tmp_directory, BackupRestore::DUMP_FILE)
|
2016-08-01 09:18:42 -04:00
|
|
|
end
|
2016-07-31 23:56:06 -04:00
|
|
|
else
|
2016-08-01 09:18:42 -04:00
|
|
|
File.join(@tmp_directory, @filename)
|
2016-07-31 23:56:06 -04:00
|
|
|
end
|
|
|
|
|
2014-03-25 00:15:30 -04:00
|
|
|
@logs = []
|
2014-03-28 07:15:53 -04:00
|
|
|
@readonly_mode_was_enabled = Discourse.readonly_mode?
|
2014-02-12 23:32:58 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def listen_for_shutdown_signal
|
|
|
|
Thread.new do
|
|
|
|
while BackupRestore.is_operation_running?
|
|
|
|
exit if BackupRestore.should_shutdown?
|
|
|
|
sleep 0.1
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-10-10 14:04:07 -04:00
|
|
|
def mark_restore_as_running
|
2014-02-12 23:32:58 -05:00
|
|
|
log "Marking restore as running..."
|
|
|
|
BackupRestore.mark_as_running!
|
|
|
|
end
|
|
|
|
|
|
|
|
def enable_readonly_mode
|
2014-03-28 07:15:53 -04:00
|
|
|
return if @readonly_mode_was_enabled
|
2014-02-12 23:32:58 -05:00
|
|
|
log "Enabling readonly mode..."
|
|
|
|
Discourse.enable_readonly_mode
|
|
|
|
end
|
|
|
|
|
|
|
|
def pause_sidekiq
|
|
|
|
log "Pausing sidekiq..."
|
|
|
|
Sidekiq.pause!
|
|
|
|
end
|
|
|
|
|
|
|
|
def wait_for_sidekiq
|
|
|
|
log "Waiting for sidekiq to finish running jobs..."
|
2014-03-14 10:49:35 -04:00
|
|
|
iterations = 1
|
|
|
|
while sidekiq_has_running_jobs?
|
|
|
|
log "Waiting for sidekiq to finish running jobs... ##{iterations}"
|
2014-02-12 23:32:58 -05:00
|
|
|
sleep 5
|
|
|
|
iterations += 1
|
2014-03-14 10:49:35 -04:00
|
|
|
raise "Sidekiq did not finish running all the jobs in the allowed time!" if iterations > 6
|
2014-02-12 23:32:58 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-03-14 10:49:35 -04:00
|
|
|
def sidekiq_has_running_jobs?
|
2014-08-14 17:54:55 -04:00
|
|
|
Sidekiq::Workers.new.each do |_, _, worker|
|
2014-03-14 10:49:35 -04:00
|
|
|
payload = worker.try(:payload)
|
|
|
|
return true if payload.try(:all_sites)
|
|
|
|
return true if payload.try(:current_site_id) == @current_db
|
|
|
|
end
|
|
|
|
|
|
|
|
false
|
|
|
|
end
|
|
|
|
|
2014-02-12 23:32:58 -05:00
|
|
|
def copy_archive_to_tmp_directory
|
|
|
|
log "Copying archive to tmp directory..."
|
2016-09-15 22:32:53 -04:00
|
|
|
execute_command('cp', @source_filename, @archive_filename, failure_message: "Failed to copy archive to tmp directory.")
|
2014-02-12 23:32:58 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def unzip_archive
|
2016-08-01 09:18:42 -04:00
|
|
|
return unless @is_archive
|
|
|
|
|
2016-05-23 03:33:29 -04:00
|
|
|
log "Unzipping archive, this may take a while..."
|
2016-08-01 09:18:42 -04:00
|
|
|
|
2016-07-21 22:45:39 -04:00
|
|
|
FileUtils.cd(@tmp_directory) do
|
2016-09-15 22:32:53 -04:00
|
|
|
execute_command('gzip', '--decompress', @archive_filename, failure_message: "Failed to unzip archive.")
|
2016-07-21 22:45:39 -04:00
|
|
|
end
|
2014-02-12 23:32:58 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def extract_metadata
|
|
|
|
log "Extracting metadata file..."
|
2016-07-21 22:45:39 -04:00
|
|
|
|
2016-08-01 09:18:42 -04:00
|
|
|
@metadata =
|
2016-09-15 22:32:53 -04:00
|
|
|
if system('tar', '--list', '--file', @source_filename, BackupRestore::METADATA_FILE)
|
2016-08-01 09:18:42 -04:00
|
|
|
FileUtils.cd(@tmp_directory) do
|
|
|
|
execute_command(
|
2016-09-15 22:32:53 -04:00
|
|
|
'tar', '--extract', '--file', @tar_filename, BackupRestore::METADATA_FILE,
|
|
|
|
failure_message: "Failed to extract metadata file."
|
2016-08-01 09:18:42 -04:00
|
|
|
)
|
|
|
|
end
|
2016-07-21 22:45:39 -04:00
|
|
|
|
2016-08-25 05:19:10 -04:00
|
|
|
data = Oj.load_file(@meta_filename)
|
|
|
|
raise "Failed to load metadata file." if !data
|
|
|
|
data
|
2016-08-01 09:18:42 -04:00
|
|
|
else
|
|
|
|
if @filename =~ /-#{BackupRestore::VERSION_PREFIX}(\d{14})/
|
|
|
|
{ "version" => Regexp.last_match[1].to_i }
|
|
|
|
else
|
|
|
|
raise "Migration version is missing from the filename."
|
|
|
|
end
|
|
|
|
end
|
2014-02-12 23:32:58 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def validate_metadata
|
|
|
|
log "Validating metadata..."
|
|
|
|
log " Current version: #{@current_version}"
|
2016-08-25 05:19:10 -04:00
|
|
|
|
|
|
|
raise "Metadata has not been extracted correctly." if !@metadata
|
|
|
|
|
2014-02-12 23:32:58 -05:00
|
|
|
log " Restored version: #{@metadata["version"]}"
|
|
|
|
|
2014-10-10 14:04:07 -04:00
|
|
|
error = "You're trying to restore a more recent version of the schema. You should migrate first!"
|
2014-02-12 23:32:58 -05:00
|
|
|
raise error if @metadata["version"] > @current_version
|
|
|
|
end
|
|
|
|
|
|
|
|
def extract_dump
|
2016-08-01 09:18:42 -04:00
|
|
|
return unless @is_archive
|
|
|
|
|
2014-02-12 23:32:58 -05:00
|
|
|
log "Extracting dump file..."
|
2016-07-21 22:45:39 -04:00
|
|
|
|
|
|
|
FileUtils.cd(@tmp_directory) do
|
|
|
|
execute_command(
|
2016-09-15 22:32:53 -04:00
|
|
|
'tar', '--extract', '--file', @tar_filename, File.basename(@dump_filename),
|
|
|
|
failure_message: "Failed to extract dump file."
|
2016-07-21 22:45:39 -04:00
|
|
|
)
|
|
|
|
end
|
2014-02-12 23:32:58 -05:00
|
|
|
end
|
|
|
|
|
2016-07-31 23:56:06 -04:00
|
|
|
def restore_dump_command
|
|
|
|
if File.extname(@dump_filename) == '.gz'
|
|
|
|
"gzip -d < #{@dump_filename} | #{sed_command} | #{psql_command} 2>&1"
|
|
|
|
else
|
|
|
|
"#{psql_command} 2>&1 < #{@dump_filename}"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-02-12 23:32:58 -05:00
|
|
|
def restore_dump
|
|
|
|
log "Restoring dump file... (can be quite long)"
|
|
|
|
|
|
|
|
logs = Queue.new
|
|
|
|
psql_running = true
|
|
|
|
has_error = false
|
|
|
|
|
|
|
|
Thread.new do
|
2014-04-08 12:06:53 -04:00
|
|
|
RailsMultisite::ConnectionManagement::establish_connection(db: @current_db)
|
2014-02-12 23:32:58 -05:00
|
|
|
while psql_running
|
|
|
|
message = logs.pop.strip
|
|
|
|
has_error ||= (message =~ /ERROR:/)
|
|
|
|
log(message) unless message.blank?
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-07-31 23:56:06 -04:00
|
|
|
IO.popen(restore_dump_command) do |pipe|
|
2014-02-12 23:32:58 -05:00
|
|
|
begin
|
|
|
|
while line = pipe.readline
|
|
|
|
logs << line
|
|
|
|
end
|
|
|
|
rescue EOFError
|
|
|
|
# finished reading...
|
|
|
|
ensure
|
|
|
|
psql_running = false
|
|
|
|
logs << ""
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# psql does not return a valid exit code when an error happens
|
|
|
|
raise "psql failed" if has_error
|
|
|
|
end
|
|
|
|
|
2014-03-12 06:45:55 -04:00
|
|
|
def psql_command
|
2014-02-19 09:25:31 -05:00
|
|
|
db_conf = BackupRestore.database_configuration
|
|
|
|
|
2014-02-19 09:43:59 -05:00
|
|
|
password_argument = "PGPASSWORD=#{db_conf.password}" if db_conf.password.present?
|
2014-02-20 12:42:17 -05:00
|
|
|
host_argument = "--host=#{db_conf.host}" if db_conf.host.present?
|
2014-07-30 11:20:25 -04:00
|
|
|
port_argument = "--port=#{db_conf.port}" if db_conf.port.present?
|
2014-02-20 12:42:17 -05:00
|
|
|
username_argument = "--username=#{db_conf.username}" if db_conf.username.present?
|
2014-02-19 09:25:31 -05:00
|
|
|
|
2014-02-20 12:42:17 -05:00
|
|
|
[ password_argument, # pass the password to psql (if any)
|
2014-02-19 09:25:31 -05:00
|
|
|
"psql", # the psql command
|
|
|
|
"--dbname='#{db_conf.database}'", # connect to database *dbname*
|
|
|
|
"--single-transaction", # all or nothing (also runs COPY commands faster)
|
2014-02-20 12:42:17 -05:00
|
|
|
host_argument, # the hostname to connect to (if any)
|
2016-09-15 22:32:53 -04:00
|
|
|
port_argument, # the port to connect to (if any)
|
2014-02-20 12:42:17 -05:00
|
|
|
username_argument # the username to connect as (if any)
|
2014-02-12 23:32:58 -05:00
|
|
|
].join(" ")
|
|
|
|
end
|
|
|
|
|
2016-07-21 22:45:39 -04:00
|
|
|
def sed_command
|
|
|
|
# in order to limit the downtime when restoring as much as possible
|
|
|
|
# we force the restoration to happen in the "restore" schema
|
|
|
|
|
|
|
|
# during the restoration, this make sure we
|
|
|
|
# - drop the "restore" schema if it exists
|
|
|
|
# - create the "restore" schema
|
|
|
|
# - prepend the "restore" schema into the search_path
|
|
|
|
|
|
|
|
regexp = "SET search_path = public, pg_catalog;"
|
|
|
|
|
|
|
|
replacement = [ "DROP SCHEMA IF EXISTS restore CASCADE;",
|
|
|
|
"CREATE SCHEMA restore;",
|
|
|
|
"SET search_path = restore, public, pg_catalog;",
|
|
|
|
].join(" ")
|
|
|
|
|
|
|
|
# we only want to replace the VERY first occurence of the search_path command
|
|
|
|
expression = "1,/^#{regexp}$/s/#{regexp}/#{replacement}/"
|
|
|
|
|
|
|
|
"sed -e '#{expression}'"
|
|
|
|
end
|
|
|
|
|
2014-02-12 23:32:58 -05:00
|
|
|
def switch_schema!
|
2015-03-09 11:11:15 -04:00
|
|
|
log "Switching schemas... try reloading the site in 5 minutes, if successful, then reboot and restore is complete."
|
2014-02-12 23:32:58 -05:00
|
|
|
|
2014-02-19 09:25:31 -05:00
|
|
|
sql = [
|
|
|
|
"BEGIN;",
|
|
|
|
BackupRestore.move_tables_between_schemas_sql("public", "backup"),
|
|
|
|
BackupRestore.move_tables_between_schemas_sql("restore", "public"),
|
|
|
|
"COMMIT;"
|
|
|
|
].join("\n")
|
2014-02-12 23:32:58 -05:00
|
|
|
|
2014-08-20 05:53:15 -04:00
|
|
|
@db_was_changed = true
|
|
|
|
|
2014-02-12 23:32:58 -05:00
|
|
|
User.exec_sql(sql)
|
|
|
|
end
|
|
|
|
|
|
|
|
def migrate_database
|
|
|
|
log "Migrating the database..."
|
|
|
|
Discourse::Application.load_tasks
|
|
|
|
ENV["VERSION"] = @current_version.to_s
|
2016-07-12 16:26:21 -04:00
|
|
|
User.exec_sql("SET search_path = public, pg_catalog;")
|
2014-02-21 10:17:00 -05:00
|
|
|
Rake::Task["db:migrate"].invoke
|
2014-02-12 23:32:58 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def reconnect_database
|
|
|
|
log "Reconnecting to the database..."
|
2014-04-08 12:06:53 -04:00
|
|
|
RailsMultisite::ConnectionManagement::establish_connection(db: @current_db)
|
|
|
|
end
|
|
|
|
|
|
|
|
def reload_site_settings
|
|
|
|
log "Reloading site settings..."
|
|
|
|
SiteSetting.refresh!
|
2014-02-12 23:32:58 -05:00
|
|
|
end
|
|
|
|
|
2015-03-17 12:29:18 -04:00
|
|
|
def clear_emoji_cache
|
|
|
|
log "Clearing emoji cache..."
|
|
|
|
Emoji.clear_cache
|
|
|
|
end
|
|
|
|
|
2014-02-12 23:32:58 -05:00
|
|
|
def extract_uploads
|
2016-09-15 23:00:37 -04:00
|
|
|
if system('tar', '--exclude=*/*', '--list', '--file', @tar_filename, 'uploads')
|
2014-12-22 19:12:26 -05:00
|
|
|
log "Extracting uploads..."
|
2014-02-12 23:32:58 -05:00
|
|
|
FileUtils.cd(File.join(Rails.root, "public")) do
|
2016-07-21 22:45:39 -04:00
|
|
|
execute_command(
|
2016-09-15 22:32:53 -04:00
|
|
|
'tar', '--extract', '--keep-newer-files', '--file', @tar_filename, 'uploads/',
|
|
|
|
failure_message: "Failed to extract uploadsd."
|
2016-07-21 22:45:39 -04:00
|
|
|
)
|
2014-02-12 23:32:58 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def rollback
|
|
|
|
log "Trying to rollback..."
|
2014-08-20 05:53:15 -04:00
|
|
|
if @db_was_changed && BackupRestore.can_rollback?
|
2014-02-13 18:27:25 -05:00
|
|
|
log "Rolling back..."
|
2014-02-19 09:25:31 -05:00
|
|
|
BackupRestore.move_tables_between_schemas("backup", "public")
|
2014-02-12 23:32:58 -05:00
|
|
|
else
|
2014-02-13 18:27:25 -05:00
|
|
|
log "There was no need to rollback"
|
2014-02-12 23:32:58 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-03-24 14:34:16 -04:00
|
|
|
def notify_user
|
2014-05-06 09:41:59 -04:00
|
|
|
if user = User.find_by(email: @user_info[:email])
|
2014-03-24 14:34:16 -04:00
|
|
|
log "Notifying '#{user.username}' of the end of the restore..."
|
|
|
|
if @success
|
2016-08-03 04:18:35 -04:00
|
|
|
SystemMessage.create_from_system_user(user, :restore_succeeded, logs: pretty_logs(@logs))
|
2014-03-24 14:34:16 -04:00
|
|
|
else
|
2016-08-03 04:18:35 -04:00
|
|
|
SystemMessage.create_from_system_user(user, :restore_failed, logs: pretty_logs(@logs))
|
2014-03-24 14:34:16 -04:00
|
|
|
end
|
|
|
|
else
|
|
|
|
log "Could not send notification to '#{@user_info[:username]}' (#{@user_info[:email]}), because the user does not exists..."
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-02-12 23:32:58 -05:00
|
|
|
def clean_up
|
|
|
|
log "Cleaning stuff up..."
|
|
|
|
remove_tmp_directory
|
|
|
|
unpause_sidekiq
|
2014-04-08 12:06:53 -04:00
|
|
|
disable_readonly_mode if Discourse.readonly_mode?
|
2014-10-10 14:04:07 -04:00
|
|
|
mark_restore_as_not_running
|
2014-02-12 23:32:58 -05:00
|
|
|
log "Finished!"
|
|
|
|
end
|
|
|
|
|
|
|
|
def remove_tmp_directory
|
|
|
|
log "Removing tmp '#{@tmp_directory}' directory..."
|
|
|
|
FileUtils.rm_rf(@tmp_directory) if Dir[@tmp_directory].present?
|
|
|
|
rescue
|
|
|
|
log "Something went wrong while removing the following tmp directory: #{@tmp_directory}"
|
|
|
|
end
|
|
|
|
|
|
|
|
def unpause_sidekiq
|
|
|
|
log "Unpausing sidekiq..."
|
|
|
|
Sidekiq.unpause!
|
2014-05-13 10:18:08 -04:00
|
|
|
rescue
|
|
|
|
log "Something went wrong while unpausing Sidekiq."
|
2014-02-12 23:32:58 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def disable_readonly_mode
|
2014-03-28 07:15:53 -04:00
|
|
|
return if @readonly_mode_was_enabled
|
2014-02-12 23:32:58 -05:00
|
|
|
log "Disabling readonly mode..."
|
|
|
|
Discourse.disable_readonly_mode
|
|
|
|
end
|
|
|
|
|
2014-10-10 14:04:07 -04:00
|
|
|
def mark_restore_as_not_running
|
2014-02-12 23:32:58 -05:00
|
|
|
log "Marking restore as finished..."
|
|
|
|
BackupRestore.mark_as_not_running!
|
|
|
|
end
|
|
|
|
|
|
|
|
def ensure_directory_exists(directory)
|
|
|
|
log "Making sure #{directory} exists..."
|
|
|
|
FileUtils.mkdir_p(directory)
|
|
|
|
end
|
|
|
|
|
|
|
|
def log(message)
|
2015-02-09 10:53:28 -05:00
|
|
|
timestamp = Time.now.strftime("%Y-%m-%d %H:%M:%S")
|
2014-02-12 23:32:58 -05:00
|
|
|
puts(message) rescue nil
|
2015-02-09 10:53:28 -05:00
|
|
|
publish_log(message, timestamp) rescue nil
|
|
|
|
save_log(message, timestamp)
|
2014-02-12 23:32:58 -05:00
|
|
|
end
|
|
|
|
|
2015-02-09 10:53:28 -05:00
|
|
|
def publish_log(message, timestamp)
|
2014-02-12 23:32:58 -05:00
|
|
|
return unless @publish_to_message_bus
|
2015-02-09 10:53:28 -05:00
|
|
|
data = { timestamp: timestamp, operation: "restore", message: message }
|
2015-08-27 14:02:13 -04:00
|
|
|
MessageBus.publish(BackupRestore::LOGS_CHANNEL, data, user_ids: [@user_id], client_ids: [@client_id])
|
2014-02-12 23:32:58 -05:00
|
|
|
end
|
|
|
|
|
2015-02-09 10:53:28 -05:00
|
|
|
def save_log(message, timestamp)
|
|
|
|
@logs << "[#{timestamp}] #{message}"
|
2014-03-24 14:34:16 -04:00
|
|
|
end
|
|
|
|
|
2014-02-12 23:32:58 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|