mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 20:20:43 +08:00
427d54b2b0
Zeitwerk simplifies working with dependencies in dev and makes it easier reloading class chains. We no longer need to use Rails "require_dependency" anywhere and instead can just use standard Ruby patterns to require files. This is a far reaching change and we expect some followups here.
27 lines
732 B
Ruby
27 lines
732 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Jobs
|
|
|
|
class DownloadBackupEmail < ::Jobs::Base
|
|
|
|
sidekiq_options queue: 'critical'
|
|
|
|
def execute(args)
|
|
user_id = args[:user_id]
|
|
user = User.find_by(id: user_id)
|
|
raise Discourse::InvalidParameters.new(:user_id) unless user
|
|
|
|
backup_file_path = args[:backup_file_path]
|
|
raise Discourse::InvalidParameters.new(:backup_file_path) if backup_file_path.blank?
|
|
|
|
backup_file_path = URI(backup_file_path)
|
|
backup_file_path.query = URI.encode_www_form(token: EmailBackupToken.set(user.id))
|
|
|
|
message = DownloadBackupMailer.send_email(user.email, backup_file_path.to_s)
|
|
Email::Sender.new(message, :download_backup_message).send
|
|
end
|
|
|
|
end
|
|
|
|
end
|