Module: Lotus::Action::Mime
- Defined in:
- lib/lotus/action/mime.rb
Overview
Mime type API
Defined Under Namespace
Modules: ClassMethods
Constant Summary collapse
- HTTP_ACCEPT =
This constant is part of a private API. You should avoid using this constant if possible, as it may be removed or be changed in the future.
The key that returns accepted mime types from the Rack env
'HTTP_ACCEPT'.freeze
- CONTENT_TYPE =
This constant is part of a private API. You should avoid using this constant if possible, as it may be removed or be changed in the future.
The header key to set the mime type of the response
'Content-Type'.freeze
- DEFAULT_ACCEPT =
This constant is part of a private API. You should avoid using this constant if possible, as it may be removed or be changed in the future.
The default mime type for an incoming HTTP request
'*/*'.freeze
- DEFAULT_CONTENT_TYPE =
This constant is part of a private API. You should avoid using this constant if possible, as it may be removed or be changed in the future.
The default mime type that is returned in the response
'application/octet-stream'.freeze
- DEFAULT_CHARSET =
This constant is part of a private API. You should avoid using this constant if possible, as it may be removed or be changed in the future.
The default charset that is returned in the response
'utf-8'.freeze
Class Method Summary collapse
-
.included(base) ⇒ Object
private
Override Ruby’s hook for modules.
Instance Method Summary collapse
-
#charset ⇒ String
The charset that will be automatically set in the response.
-
#charset=(value) ⇒ String
Action charset setter, receives new charset value.
-
#content_type ⇒ String
The content type that will be automatically set in the response.
-
#format ⇒ Symbol
Returns a symbol representation of the content type.
Class Method Details
.included(base) ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Override Ruby’s hook for modules. It includes Mime types logic
50 51 52 |
# File 'lib/lotus/action/mime.rb', line 50 def self.included(base) base.extend ClassMethods end |
Instance Method Details
#charset ⇒ String
The charset that will be automatically set in the response.
It prefers, in order:
* Explicit set value (see #charset=)
* Default configuration charset
* Default content type
To override the value, use #charset=
239 240 241 |
# File 'lib/lotus/action/mime.rb', line 239 def charset @charset || default_charset || DEFAULT_CHARSET end |
#charset=(value) ⇒ String
Action charset setter, receives new charset value
206 207 208 |
# File 'lib/lotus/action/mime.rb', line 206 def charset=(value) @charset = value end |
#content_type ⇒ String
The content type that will be automatically set in the response.
It prefers, in order:
* Explicit set value (see #format=)
* Weighted value from Accept
* Default content type
To override the value, use #format=
185 186 187 |
# File 'lib/lotus/action/mime.rb', line 185 def content_type @content_type || accepts || default_content_type || DEFAULT_CONTENT_TYPE end |
#format ⇒ Symbol
Returns a symbol representation of the content type.
The framework automatically detects the request mime type, and returns the corresponding format.
However, if this value was explicitely set by ‘#format=`, it will return that value
152 153 154 |
# File 'lib/lotus/action/mime.rb', line 152 def format @format ||= detect_format end |