mirror of
https://github.com/discourse/discourse.git
synced 2024-11-29 12:13:58 -06: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
30 lines
805 B
Ruby
30 lines
805 B
Ruby
# frozen_string_literal: true
|
|
|
|
require_dependency 'email/sender'
|
|
require_dependency "email_backup_token"
|
|
|
|
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
|