Class: ActionDispatch::Journey::Router::Utils::UriEncoder

Inherits:
Object
  • Object
show all
Defined in:
actionpack/lib/action_dispatch/journey/router/utils.rb

Overview

URI path and fragment escaping tools.ietf.org/html/rfc3986

Constant Summary collapse

ENCODE =

:nodoc:

"%%%02X"
US_ASCII =
Encoding::US_ASCII
UTF_8 =
Encoding::UTF_8
EMPTY =
(+"").force_encoding(US_ASCII).freeze
DEC2HEX =
(0..255).map { |i| (ENCODE % i).force_encoding(US_ASCII) }
ALPHA =
"a-zA-Z"
DIGIT =
"0-9"
UNRESERVED =
"#{ALPHA}#{DIGIT}\\-\\._~"
SUB_DELIMS =
"!\\$&'\\(\\)\\*\\+,;="
ESCAPED =
/%[a-zA-Z0-9]{2}/
FRAGMENT =
/[^#{UNRESERVED}#{SUB_DELIMS}:@\/?]/
SEGMENT =
/[^#{UNRESERVED}#{SUB_DELIMS}:@]/
PATH =
/[^#{UNRESERVED}#{SUB_DELIMS}:@\/]/

Instance Method Summary collapse

Instance Method Details

#escape_fragment(fragment) ⇒ Object



59
60
61
# File 'actionpack/lib/action_dispatch/journey/router/utils.rb', line 59

def escape_fragment(fragment)
  escape(fragment, FRAGMENT)
end

#escape_path(path) ⇒ Object



63
64
65
# File 'actionpack/lib/action_dispatch/journey/router/utils.rb', line 63

def escape_path(path)
  escape(path, PATH)
end

#escape_segment(segment) ⇒ Object



67
68
69
# File 'actionpack/lib/action_dispatch/journey/router/utils.rb', line 67

def escape_segment(segment)
  escape(segment, SEGMENT)
end