This repository has been archived on 2024-06-09. You can view files and clone it, but cannot push or open issues/pull-requests.
2016-11-30 21:32:11 +01:00
|
|
|
# frozen_string_literal: true
|
2017-02-11 02:12:05 +01:00
|
|
|
|
2016-11-24 00:31:38 +01:00
|
|
|
module ObfuscateFilename
|
|
|
|
extend ActiveSupport::Concern
|
|
|
|
|
|
|
|
class_methods do
|
|
|
|
def obfuscate_filename(*args)
|
|
|
|
before_action { obfuscate_filename(*args) }
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def obfuscate_filename(path)
|
|
|
|
file = params.dig(*path)
|
|
|
|
return if file.nil?
|
|
|
|
|
2017-03-14 15:59:21 +01:00
|
|
|
file.original_filename = secure_token + File.extname(file.original_filename)
|
|
|
|
end
|
|
|
|
|
|
|
|
def secure_token(length = 16)
|
|
|
|
SecureRandom.hex(length / 2)
|
2016-11-24 00:31:38 +01:00
|
|
|
end
|
|
|
|
end
|