123456789_123456789_123456789_123456789_123456789_

Class: Gem::UriFormatter

Relationships & Source Files
Inherits: Object
Defined in: lib/rubygems/uri_formatter.rb

Overview

The UriFormatter handles URIs from user-input and escaping.

uf = Gem::UriFormatter.new 'example.com'

p uf.normalize #=> 'http://example.com'

Class Method Summary

Instance Attribute Summary

  • #uri readonly

    The URI to be formatted.

Instance Method Summary

Constructor Details

.new(uri) ⇒ UriFormatter

Creates a new URI formatter for #uri.

[ GitHub ]

  
# File 'lib/rubygems/uri_formatter.rb', line 19

def initialize(uri)
  require "cgi"

  @uri = uri
end

Instance Attribute Details

#uri (readonly)

The URI to be formatted.

[ GitHub ]

  
# File 'lib/rubygems/uri_formatter.rb', line 14

attr_reader :uri

Instance Method Details

#escape

Escapes the #uri for use as a CGI parameter

[ GitHub ]

  
# File 'lib/rubygems/uri_formatter.rb', line 28

def escape
  return unless @uri
  CGI.escape @uri
end

#normalize

Normalize the URI by adding “http://” if it is missing.

[ GitHub ]

  
# File 'lib/rubygems/uri_formatter.rb', line 36

def normalize
  /^(https?|ftp|file):/i.match?(@uri) ? @uri : "http://#{@uri}"
end

#unescape

Unescapes the #uri which came from a CGI parameter

[ GitHub ]

  
# File 'lib/rubygems/uri_formatter.rb', line 43

def unescape
  return unless @uri
  CGI.unescape @uri
end