discourse/app/jobs/regular/download_backup_email.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

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