about summary refs log tree commit diff
path: root/app/controllers/concerns/obfuscate_filename.rb
blob: 9c896fb0988ba6c5fc78a6b127b66304feb822f3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# frozen_string_literal: true

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 = secure_token + File.extname(file.original_filename)
  end

  def secure_token(length = 16)
    SecureRandom.hex(length / 2)
  end
end