class CGI
Overview
The Common Gateway Interface (CGI) is a simple protocol for passing an HTTP request from a web server to a standalone program, and returning the output to the web browser. Basically, a CGI program is called with the parameters of the request passed in either in the environment (GET) or via $stdin (POST), and everything it prints to $stdout is returned to the client.
This file holds the CGI class. This class provides functionality for retrieving HTTP request parameters, managing cookies, and generating HTML output.
The file CGI::Session provides session management functionality; see that class for more details.
See www.w3.org/CGI/ for more information on the CGI protocol.
Introduction
CGI is a large class, providing several categories of methods, many of which are mixed in from other modules. Some of the documentation is in this class, some in the modules CGI::QueryExtension and CGI::HtmlExtension. See CGI::Cookie for specific information on handling cookies, and cgi/session.rb (CGI::Session) for information on sessions.
For queries, CGI provides methods to get at environmental variables, parameters, cookies, and multipart request data. For responses, CGI provides methods for writing output and generating HTML.
Read on for more details. Examples are provided at the bottom.
About the Examples
Examples on this page assume that CGI has been required:
require 'cgi'
Unless otherwise stated, examples also assume that environment variable ‘REQUEST_METHOD’ exists (which prevents CGI.new from entering its online mode):
ENV.include?('REQUEST_METHOD') # => true
Queries
The CGI class dynamically mixes in parameter and cookie-parsing functionality, environmental variable access, and support for parsing multipart requests (including uploaded files) from the CGI::QueryExtension module.
Environmental Variables
The standard CGI environmental variables are available as read-only attributes of a CGI object. The following is a list of these variables:
AUTH_TYPE HTTP_HOST REMOTE_IDENT CONTENT_LENGTH HTTP_NEGOTIATE REMOTE_USER CONTENT_TYPE HTTP_PRAGMA REQUEST_METHOD GATEWAY_INTERFACE HTTP_REFERER SCRIPT_NAME HTTP_ACCEPT HTTP_USER_AGENT SERVER_NAME HTTP_ACCEPT_CHARSET PATH_INFO SERVER_PORT HTTP_ACCEPT_ENCODING PATH_TRANSLATED SERVER_PROTOCOL HTTP_ACCEPT_LANGUAGE QUERY_STRING SERVER_SOFTWARE HTTP_CACHE_CONTROL REMOTE_ADDR HTTP_FROM REMOTE_HOST
For each of these variables, there is a corresponding attribute with the same name, except all lower case and without a preceding HTTP_. content_length and server_port are integers; the rest are strings.
Parameters
The method params() returns a hash of all parameters in the request as name/value-list pairs, where the value-list is an Array of one or more values. The CGI object itself also behaves as a hash of parameter names to values, but only returns a single value (as a String) for each parameter name.
For instance, suppose the request contains the parameter “favourite_colours” with the multiple values “blue” and “green”. The following behavior would occur:
cgi.params["favourite_colours"] # => ["blue", "green"] cgi["favourite_colours"] # => "blue"
If a parameter does not exist, the former method will return an empty array, the latter an empty string. The simplest way to test for existence of a parameter is by the has_key? method.
Cookies
HTTP Cookies are automatically parsed from the request. They are available from the cookies() accessor, which returns a hash from cookie name to CGI::Cookie object.
Multipart requests
If a request’s method is POST and its content type is multipart/form-data, then it may contain uploaded files. These are stored by the QueryExtension module in the parameters of the request. The parameter name is the name attribute of the file input field, as usual. However, the value is not a string, but an IO object, either an IOString for small files, or a Tempfile for larger ones. This object also has the additional singleton methods:
- local_path()
-
the path of the uploaded file on the local filesystem
- original_filename()
-
the name of the file on the client computer
- content_type()
-
the content type of the file
Responses
The CGI class provides methods for sending header and content output to the HTTP client, and mixes in methods for programmatic HTML generation from CGI::HtmlExtension and CGI::TagMaker modules. The precise version of HTML to use for HTML generation is specified at object creation time.
Writing output
The simplest way to send output to the HTTP client is using the out() method. This takes the HTTP headers as a hash parameter, and the body content via a block. The headers can be generated as a string using the http_header() method. The output stream can be written directly to using the print() method.
Generating HTML
Each HTML element has a corresponding method for generating that element as a String. The name of this method is the same as that of the element, all lowercase. The attributes of the element are passed in as a hash, and the body as a no-argument block that evaluates to a String. The HTML generation module knows which elements are always empty, and silently drops any passed-in body. It also knows which elements require matching closing tags and which don’t. However, it does not know what attributes are legal for which elements.
There are also some additional HTML generation methods mixed in from the CGI::HtmlExtension module. These include individual methods for the different types of form inputs, and methods for elements that commonly take particular attributes where the attributes can be directly specified as arguments, rather than via a hash.
Utility HTML escape and other methods like a function.
There are some utility tools defined in cgi/util.rb and cgi/escape.rb. Escape and unescape methods are defined in cgi/escape.rb. And when include, you can use utility methods like a function.
Examples of Use
Form Values
Get Form Values
You can use method cgi.params to retrieve form values in a Hash:
ENV.update( 'REQUEST_METHOD' => 'GET', 'QUERY_STRING' => 'a=111&&b=222&c&d=' ) cgi = CGI.new cgi.params.class # => Hash cgi.params # => {"a" => ["111"], "b" => ["222"], "c" => [], "d" => [""]} cgi.params.keys # => ["a", "b", "c", "d"] cgi.params['a'] # => ["111"] # Returns an array. cgi.params['d'] # => [""] # Returns empty string in array if no value. cgi.params['x'] # => [] # Returns empty array if no key.
A CGI instance has these convenience methods:
# Convenience method for cgi.params.keys. cgi.keys # => ["a", "b", "c", "d"] # Convenience method for cgi.params[key].first. cgi['a'] # => "111" # Returns string, not array. cgi['d'] # => "" # Returns empty string if no value. cgi['x'] # => "" # Returns empty string if no key. # Convenience method for cgi.params.include?. cgi.include?('a') # => true cgi.include?('x') # => false
Save and Restore Form Values
This example uses Pstore to store and retrieve form values:
ENV.update( 'REQUEST_METHOD' => 'GET', 'QUERY_STRING' => 'a=111&&b=222&c&d=' ) cgi = CGI.new require 'pstore' store = PStore.new('params.store') store.transaction do store['params'] = cgi.params end cgi.params.clear # Oops! Lost my params! store.transaction do cgi.params = store['params'] end cgi.params # => {"a" => ["111"], "b" => ["222"], "c" => [], "d" => [""]}
Get multipart form values
cgi = CGI.new value = cgi['field_name'] # <== value string for 'field_name' value.read # <== body of value value.local_path # <== path to local file of value value.original_filename # <== original filename of value value.content_type # <== content_type of value
and value has StringIO or Tempfile class methods.
Get cookie values
cgi = CGI.new values = cgi.cookies['name'] # <== array of 'name' # if not 'name' included, then return []. names = cgi.cookies.keys # <== array of cookie names
and cgi.cookies is a hash.
Get cookie objects
cgi = CGI.new for name, cookie in cgi.cookies cookie.expires = Time.now + 30 end cgi.out("cookie" => cgi.cookies) {"string"} cgi.cookies # { "name1" => cookie1, "name2" => cookie2, ... } cgi = CGI.new cgi.cookies['name'].expires = Time.now + 30 cgi.out("cookie" => cgi.cookies['name']) {"string"}
Print http header and html string to $DEFAULT_OUTPUT ($>)
cgi = CGI.new("html4") # add HTML generation methods cgi.out do cgi.html do cgi.head do cgi.title { "TITLE" } end + cgi.body do cgi.form("ACTION" => "uri") do cgi.p do cgi.textarea("get_text") + cgi.br + cgi.submit end end + cgi.pre do CGI.escapeHTML( "params: #{cgi.params.inspect}\n" + "cookies: #{cgi.cookies.inspect}\n" + ENV.collect do |key, value| "#{key} --> #{value}\n" end.join("") ) end end end end # add HTML generation methods CGI.new("html3") # html3.2 CGI.new("html4") # html4.01 (Strict) CGI.new("html4Tr") # html4.01 Transitional CGI.new("html4Fr") # html4.01 Frameset CGI.new("html5") # html5
Some utility methods
require 'cgi/escape' CGI.escapeHTML('Usage: foo "bar" <baz>')
Some utility methods like a function
require 'cgi/escape' include CGI::Escape escapeHTML('Usage: foo "bar" <baz>') h('Usage: foo "bar" <baz>') # alias
:stopdoc
Constants
- CR
-
String for carriage return
- EOL
-
Standard internet newline sequence
- HTTP_STATUS
-
HTTP status codes.
- LF
-
String for linefeed
- MAX_MULTIPART_COUNT
-
Maximum number of request parameters when multipart
- NEEDS_BINMODE
-
Whether processing will be required in binary vs text
- PATH_SEPARATOR
-
Path separators in different environments.
- VERSION
-
The version string
Attributes
Return the accept character set for this CGI instance.
Public Class Methods
Source
# File lib/cgi/core.rb, line 762 def self.accept_charset @@accept_charset end
Return the accept character set for all new CGI instances.
Source
# File lib/cgi/core.rb, line 767 def self.accept_charset=(accept_charset) @@accept_charset=accept_charset end
Set the accept character set for all new CGI instances.
Source
# File lib/cgi/core.rb, line 930 def initialize(options = {}, &block) # :yields: name, value @accept_charset_error_block = block_given? ? block : nil @options={ :accept_charset=>@@accept_charset, :max_multipart_length=>@@max_multipart_length } case options when Hash @options.merge!(options) when String @options[:tag_maker]=options end @accept_charset=@options[:accept_charset] @max_multipart_length=@options[:max_multipart_length] if defined?(MOD_RUBY) && !ENV.key?("GATEWAY_INTERFACE") Apache.request.setup_cgi_env end extend QueryExtension @multipart = false initialize_query() # set @params, @cookies @output_cookies = nil @output_hidden = nil case @options[:tag_maker] when "html3" require_relative 'html' extend Html3 extend HtmlExtension when "html4" require_relative 'html' extend Html4 extend HtmlExtension when "html4Tr" require_relative 'html' extend Html4Tr extend HtmlExtension when "html4Fr" require_relative 'html' extend Html4Tr extend Html4Fr extend HtmlExtension when "html5" require_relative 'html' extend Html5 extend HtmlExtension end end
Returns a new CGI object.
The behavior of this method depends strongly on whether it is called within a standard CGI call environment; that is, whether ENV['REQUEST_METHOD'] is defined.
Within a Standard Call Environment
This section assumes that ENV['REQUEST_METHOD'] is defined; for example:
ENV['REQUEST_METHOD'] # => "GET"
With no argument and no block given, returns a new CGI object with default values:
cgi = CGI.new
puts cgi.pretty_inspect
#<CGI:0x000002b0ea237bc8
@accept_charset=#<Encoding:UTF-8>,
@accept_charset_error_block=nil,
@cookies={},
@max_multipart_length=134217728,
@multipart=false,
@output_cookies=nil,
@output_hidden=nil,
@params={}>
With hash argument options given and no block given, returns a new CGI object with the given options.
The options may be:
-
accept_charset: encoding: specifies the encoding of the received query string.Value encoding may be an Encoding object or an encoding name:
CGI.new(accept_charset: 'EUC-JP')
If the option is not given, the default value is the class default encoding.
Note: The
accept_charsetmethod returns the HTTP Accept-Charset header value, not the configured encoding. The configured encoding is used internally for query string parsing. -
max_multipart_length: size: specifies maximum size (in bytes) of multipart data.The size may be:
-
A positive integer.
CGI.new(max_multipart_length: 1024 * 1024)
-
A lambda to be evaluated when the request is parsed. This is useful when determining whether to accept multipart data (e.g. by consulting a registered user’s upload allowance).
CGI.new(max_multipart_length: -> {check_filesystem})
If the option is not given, the default is
134217728, specifying a maximum size of 128 megabytes.Note: This option configures internal behavior only. There is no public method to retrieve this value after initialization.
-
-
tag_maker: html_version: specifies which version of HTML to use in generating tags.Value html_version may be one of:
-
'html3': HTML version 3. -
'html4': HTML version 4. -
'html4Tr': HTML 4.0 Transitional. -
'html4Fr': HTML 4.0 with Framesets. -
'html5': HTML version 5.
Example:
CGI.new(tag_maker: 'html5')
If the option is not given, no HTML generation methods are loaded.
-
With string argument tag_maker given as tag_maker and no block given, equivalent to CGI.new(tag_maker: tag_maker):
CGI.new('html5')
Outside a Standard Call Environment
This section assumes that ENV['REQUEST_METHOD'] is not defined; for example:
ENV['REQUEST_METHOD'] # => nil
In this mode, the method reads its parameters from the command line or (failing that) from standard input; returns a new CGI object.
Otherwise, cookies and other parameters are parsed automatically from the standard CGI locations, which vary according to the request method.
Options vs Public Methods
Some initialization options configure internal behavior only and do not provide corresponding public getter methods:
-
accept_charset: Configures internal encoding for parsing. Theaccept_charsetmethod returns the HTTP Accept-Charset header. -
max_multipart_length: Configures internal multipart size limits. No public getter method is available. -
tag_maker: Loads HTML generation methods (publicly accessible).
Block
If a block is given, its code is stored as a Proc; whenever CGI::InvalidEncoding would be raised, the proc is called instead.
In this example, the proc simply saves the error:
encoding_errors={}
CGI.new(accept_charset: 'EUC-JP') do |name,value|
encoding_errors[name] = value
end
# =>
#<CGI:0x000002b0ec11bcd8
@accept_charset="EUC-JP",
@accept_charset_error_block=#<Proc:0x000002b0ed2ee190 (irb):146>,
@cookies={},
@max_multipart_length=134217728,
@multipart=false,
@options={accept_charset: "EUC-JP", max_multipart_length: 134217728},
@output_cookies=nil,
@output_hidden=nil,
@params={}>
Source
# File lib/cgi/core.rb, line 396 def self.parse(query) params = {} query.split(/[&;]/).each do |pairs| key, value = pairs.split('=',2).collect{|v| CGI.unescape(v) } next unless key params[key] ||= [] params[key].push(value) if value end params.default=[].freeze params end
Returns a new hash built from name/value pairs in the given query_string:
query = 'foo=0&bar=1&foo=2&bar=3' CGI.parse(query) # => {"foo" => ["0", "2"], "bar" => ["1", "3"]}
Public Instance Methods
Source
# File lib/cgi/core.rb, line 367 def out(options = "text/html") # :yield: options = { "type" => options } if options.kind_of?(String) content = yield options["length"] = content.bytesize.to_s output = stdoutput output.binmode if defined? output.binmode output.print http_header(options) output.print content unless "HEAD" == env_table['REQUEST_METHOD'] end
Print an HTTP header and body to $DEFAULT_OUTPUT ($>)
content_type_string-
If a string is passed, it is assumed to be the content type.
headers_hash-
This is a Hash of headers, similar to that used by
http_header. block-
A block is required and should evaluate to the body of the response.
Content-Length is automatically calculated from the size of the String returned by the content block.
If ENV['REQUEST_METHOD'] == "HEAD", then only the header is output (the content block is still required, but it is ignored).
If the charset is “iso-2022-jp” or “euc-jp” or “shift_jis” then the content is converted to this charset, and the language is set to “ja”.
Example:
cgi = CGI.new cgi.out{ "string" } # Content-Type: text/html # Content-Length: 6 # # string cgi.out("text/plain") { "string" } # Content-Type: text/plain # Content-Length: 6 # # string cgi.out("nph" => true, "status" => "OK", # == "200 OK" "server" => ENV['SERVER_SOFTWARE'], "connection" => "close", "type" => "text/html", "charset" => "iso-2022-jp", # Content-Type: text/html; charset=iso-2022-jp "language" => "ja", "expires" => Time.now + (3600 * 24 * 30), "cookie" => [cookie1, cookie2], "my_header1" => "my_value", "my_header2" => "my_value") { "string" } # HTTP/1.1 200 OK # Date: Sun, 15 May 2011 17:35:54 GMT # Server: Apache 2.2.0 # Connection: close # Content-Type: text/html; charset=iso-2022-jp # Content-Length: 6 # Content-Language: ja # Expires: Tue, 14 Jun 2011 17:35:54 GMT # Set-Cookie: foo # Set-Cookie: bar # my_header1: my_value # my_header2: my_value # # string
Source
# File lib/cgi/core.rb, line 383 def print(*options) stdoutput.print(*options) end
Print an argument or list of arguments to the default output stream
cgi = CGI.new cgi.print # default: cgi.print == $DEFAULT_OUTPUT.print
Private Instance Methods
Source
# File lib/cgi/core.rb, line 191 def _no_crlf_check(str) if str str = str.to_s raise "A HTTP status or header field must not include CR and LF" if str =~ /[\r\n]/ str else nil end end