aboutsummaryrefslogtreecommitdiffstats
path: root/activestorage/app/models/active_storage/filename/parameters.rb
blob: fb9ea10e49661bd01aef54dab8135b6d1ef589b9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# frozen_string_literal: true

class ActiveStorage::Filename::Parameters #:nodoc:
  attr_reader :filename

  def initialize(filename)
    @filename = filename
  end

  def combined
    "#{ascii}; #{utf8}"
  end

  TRADITIONAL_ESCAPED_CHAR = /[^ A-Za-z0-9!#$+.^_`|~-]/

  def ascii
    'filename="' + percent_escape(I18n.transliterate(filename.sanitized), TRADITIONAL_ESCAPED_CHAR) + '"'
  end

  RFC_5987_ESCAPED_CHAR = /[^A-Za-z0-9!#$&+.^_`|~-]/

  def utf8
    "filename*=UTF-8''" + percent_escape(filename.sanitized, RFC_5987_ESCAPED_CHAR)
  end

  def to_s
    combined
  end

  private
    def percent_escape(string, pattern)
      string.gsub(pattern) do |char|
        char.bytes.map { |byte| "%%%02X" % byte }.join
      end
    end
end