mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 19:35:13 +08:00
edbc356593
The following methods have long been deprecated in ruby due to flaws in their implementation per http://blade.nagaokaut.ac.jp/cgi-bin/vframe.rb/ruby/ruby-core/29293?29179-31097: URI.escape URI.unescape URI.encode URI.unencode escape/encode are just aliases for one another. This PR uses the Addressable gem to replace these methods with its own encode, unencode, and encode_component methods where appropriate. I have put all references to Addressable::URI here into the UrlHelper to keep them corralled in one place to make changes to this implementation easier. Addressable is now also an explicit gem dependency.
27 lines
724 B
Ruby
27 lines
724 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 = { token: EmailBackupToken.set(user.id) }.to_param
|
|
|
|
message = DownloadBackupMailer.send_email(user.email, backup_file_path.to_s)
|
|
Email::Sender.new(message, :download_backup_message).send
|
|
end
|
|
|
|
end
|
|
|
|
end
|