This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2016-11-30 12:32:11 -08:00
|
|
|
# frozen_string_literal: true
|
2016-11-23 15:31:38 -08: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?
|
|
|
|
|
2016-11-30 12:32:11 -08:00
|
|
|
file.original_filename = 'media' + File.extname(file.original_filename)
|
2016-11-23 15:31:38 -08:00
|
|
|
end
|
|
|
|
end
|