about summary refs log tree commit diff
path: root/app/models/concerns/obfuscate_filename.rb
blob: dc25cdbc2e2eaf0f00535be4676c28bdd62acc4a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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?

    file.original_filename = "media" + File.extname(file.original_filename)
  end
end