Class: Sinatra::Request::MimeTypeEntry

Inherits:
Object
  • Object
show all
Defined in:
lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/sinatra-3.0.5/lib/sinatra/base.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(entry) ⇒ MimeTypeEntry

Returns a new instance of MimeTypeEntry.



132
133
134
135
136
137
138
139
140
141
# File 'lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/sinatra-3.0.5/lib/sinatra/base.rb', line 132

def initialize(entry)
  params = entry.scan(HEADER_PARAM).map! do |s|
    key, value = s.strip.split('=', 2)
    value = value[1..-2].gsub(/\\(.)/, '\1') if value.start_with?('"')
    [key, value]
  end

  @type   = entry[/[^;]+/].delete(' ')
  @params = params.to_h
end

Instance Attribute Details

#paramsObject (readonly)

Returns the value of attribute params.



130
131
132
# File 'lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/sinatra-3.0.5/lib/sinatra/base.rb', line 130

def params
  @params
end

Instance Method Details

#accepts?(entry) ⇒ Boolean

Returns:

  • (Boolean)


143
144
145
# File 'lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/sinatra-3.0.5/lib/sinatra/base.rb', line 143

def accepts?(entry)
  File.fnmatch(entry, self) && matches_params?(entry.params)
end

#matches_params?(params) ⇒ Boolean

Returns:

  • (Boolean)


151
152
153
154
155
# File 'lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/sinatra-3.0.5/lib/sinatra/base.rb', line 151

def matches_params?(params)
  return true if @params.empty?

  params.all? { |k, v| !@params.key?(k) || @params[k] == v }
end

#to_strObject



147
148
149
# File 'lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/sinatra-3.0.5/lib/sinatra/base.rb', line 147

def to_str
  @type
end