home *** CD-ROM | disk | FTP | other *** search
/ linuxmafia.com 2016 / linuxmafia.com.tar / linuxmafia.com / pub / palmos / pippy-0.6beta-src.tar.gz / pippy-0.6beta-src.tar / pippy-0.6beta-src / src / Lib / BaseHTTPServer.py < prev    next >
Text File  |  2000-12-21  |  17KB  |  501 lines

  1. """HTTP server base class.
  2.  
  3. Note: the class in this module doesn't implement any HTTP request; see
  4. SimpleHTTPServer for simple implementations of GET, HEAD and POST
  5. (including CGI scripts).
  6.  
  7. Contents:
  8.  
  9. - BaseHTTPRequestHandler: HTTP request handler base class
  10. - test: test function
  11.  
  12. XXX To do:
  13.  
  14. - send server version
  15. - log requests even later (to capture byte count)
  16. - log user-agent header and other interesting goodies
  17. - send error log to separate file
  18. - are request names really case sensitive?
  19.  
  20. """
  21.  
  22.  
  23. # See also:
  24. #
  25. # HTTP Working Group                                        T. Berners-Lee
  26. # INTERNET-DRAFT                                            R. T. Fielding
  27. # <draft-ietf-http-v10-spec-00.txt>                     H. Frystyk Nielsen
  28. # Expires September 8, 1995                                  March 8, 1995
  29. #
  30. # URL: http://www.ics.uci.edu/pub/ietf/http/draft-ietf-http-v10-spec-00.txt
  31.  
  32.  
  33. # Log files
  34. # ---------
  35. # Here's a quote from the NCSA httpd docs about log file format.
  36. # | The logfile format is as follows. Each line consists of: 
  37. # | 
  38. # | host rfc931 authuser [DD/Mon/YYYY:hh:mm:ss] "request" ddd bbbb 
  39. # | 
  40. # |        host: Either the DNS name or the IP number of the remote client 
  41. # |        rfc931: Any information returned by identd for this person,
  42. # |                - otherwise. 
  43. # |        authuser: If user sent a userid for authentication, the user name,
  44. # |                  - otherwise. 
  45. # |        DD: Day 
  46. # |        Mon: Month (calendar name) 
  47. # |        YYYY: Year 
  48. # |        hh: hour (24-hour format, the machine's timezone) 
  49. # |        mm: minutes 
  50. # |        ss: seconds 
  51. # |        request: The first line of the HTTP request as sent by the client. 
  52. # |        ddd: the status code returned by the server, - if not available. 
  53. # |        bbbb: the total number of bytes sent,
  54. # |              *not including the HTTP/1.0 header*, - if not available 
  55. # | 
  56. # | You can determine the name of the file accessed through request.
  57. # (Actually, the latter is only true if you know the server configuration
  58. # at the time the request was made!)
  59.  
  60.  
  61. __version__ = "0.2"
  62.  
  63.  
  64. import sys
  65. import time
  66. import socket # For gethostbyaddr()
  67. import string
  68. import mimetools
  69. import SocketServer
  70.  
  71. # Default error message
  72. DEFAULT_ERROR_MESSAGE = """\
  73. <head>
  74. <title>Error response</title>
  75. </head>
  76. <body>
  77. <h1>Error response</h1>
  78. <p>Error code %(code)d.
  79. <p>Message: %(message)s.
  80. <p>Error code explanation: %(code)s = %(explain)s.
  81. </body>
  82. """
  83.  
  84.  
  85. class HTTPServer(SocketServer.TCPServer):
  86.  
  87.     def server_bind(self):
  88.         """Override server_bind to store the server name."""
  89.         SocketServer.TCPServer.server_bind(self)
  90.         host, port = self.socket.getsockname()
  91.         if not host or host == '0.0.0.0':
  92.             host = socket.gethostname()
  93.         try:
  94.             hostname, hostnames, hostaddrs = socket.gethostbyaddr(host)
  95.         except socket.error:
  96.             hostname = host
  97.         else:
  98.             if '.' not in hostname:
  99.                 for host in hostnames:
  100.                     if '.' in host:
  101.                         hostname = host
  102.                         break
  103.         self.server_name = hostname
  104.         self.server_port = port
  105.  
  106.  
  107. class BaseHTTPRequestHandler(SocketServer.StreamRequestHandler):
  108.  
  109.     """HTTP request handler base class.
  110.  
  111.     The following explanation of HTTP serves to guide you through the
  112.     code as well as to expose any misunderstandings I may have about
  113.     HTTP (so you don't need to read the code to figure out I'm wrong
  114.     :-).
  115.  
  116.     HTTP (HyperText Transfer Protocol) is an extensible protocol on
  117.     top of a reliable stream transport (e.g. TCP/IP).  The protocol
  118.     recognizes three parts to a request:
  119.  
  120.     1. One line identifying the request type and path
  121.     2. An optional set of RFC-822-style headers
  122.     3. An optional data part
  123.  
  124.     The headers and data are separated by a blank line.
  125.  
  126.     The first line of the request has the form
  127.  
  128.     <command> <path> <version>
  129.  
  130.     where <command> is a (case-sensitive) keyword such as GET or POST,
  131.     <path> is a string containing path information for the request,
  132.     and <version> should be the string "HTTP/1.0".  <path> is encoded
  133.     using the URL encoding scheme (using %xx to signify the ASCII
  134.     character with hex code xx).
  135.  
  136.     The protocol is vague about whether lines are separated by LF
  137.     characters or by CRLF pairs -- for compatibility with the widest
  138.     range of clients, both should be accepted.  Similarly, whitespace
  139.     in the request line should be treated sensibly (allowing multiple
  140.     spaces between components and allowing trailing whitespace).
  141.  
  142.     Similarly, for output, lines ought to be separated by CRLF pairs
  143.     but most clients grok LF characters just fine.
  144.  
  145.     If the first line of the request has the form
  146.  
  147.     <command> <path>
  148.  
  149.     (i.e. <version> is left out) then this is assumed to be an HTTP
  150.     0.9 request; this form has no optional headers and data part and
  151.     the reply consists of just the data.
  152.  
  153.     The reply form of the HTTP 1.0 protocol again has three parts:
  154.  
  155.     1. One line giving the response code
  156.     2. An optional set of RFC-822-style headers
  157.     3. The data
  158.  
  159.     Again, the headers and data are separated by a blank line.
  160.  
  161.     The response code line has the form
  162.  
  163.     <version> <responsecode> <responsestring>
  164.  
  165.     where <version> is the protocol version (always "HTTP/1.0"),
  166.     <responsecode> is a 3-digit response code indicating success or
  167.     failure of the request, and <responsestring> is an optional
  168.     human-readable string explaining what the response code means.
  169.  
  170.     This server parses the request and the headers, and then calls a
  171.     function specific to the request type (<command>).  Specifically,
  172.     a request SPAM will be handled by a method do_SPAM().  If no
  173.     such method exists the server sends an error response to the
  174.     client.  If it exists, it is called with no arguments:
  175.  
  176.     do_SPAM()
  177.  
  178.     Note that the request name is case sensitive (i.e. SPAM and spam
  179.     are different requests).
  180.  
  181.     The various request details are stored in instance variables:
  182.  
  183.     - client_address is the client IP address in the form (host,
  184.     port);
  185.  
  186.     - command, path and version are the broken-down request line;
  187.  
  188.     - headers is an instance of mimetools.Message (or a derived
  189.     class) containing the header information;
  190.  
  191.     - rfile is a file object open for reading positioned at the
  192.     start of the optional input data part;
  193.  
  194.     - wfile is a file object open for writing.
  195.  
  196.     IT IS IMPORTANT TO ADHERE TO THE PROTOCOL FOR WRITING!
  197.  
  198.     The first thing to be written must be the response line.  Then
  199.     follow 0 or more header lines, then a blank line, and then the
  200.     actual data (if any).  The meaning of the header lines depends on
  201.     the command executed by the server; in most cases, when data is
  202.     returned, there should be at least one header line of the form
  203.  
  204.     Content-type: <type>/<subtype>
  205.  
  206.     where <type> and <subtype> should be registered MIME types,
  207.     e.g. "text/html" or "text/plain".
  208.  
  209.     """
  210.  
  211.     # The Python system version, truncated to its first component.
  212.     sys_version = "Python/" + string.split(sys.version)[0]
  213.  
  214.     # The server software version.  You may want to override this.
  215.     # The format is multiple whitespace-separated strings,
  216.     # where each string is of the form name[/version].
  217.     server_version = "BaseHTTP/" + __version__
  218.  
  219.     def parse_request(self):
  220.         """Parse a request (internal).
  221.  
  222.         The request should be stored in self.raw_request; the results
  223.         are in self.command, self.path, self.request_version and
  224.         self.headers.
  225.  
  226.         Return value is 1 for success, 0 for failure; on failure, an
  227.         error is sent back.
  228.  
  229.         """
  230.         self.request_version = version = "HTTP/0.9" # Default
  231.         requestline = self.raw_requestline
  232.         if requestline[-2:] == '\r\n':
  233.             requestline = requestline[:-2]
  234.         elif requestline[-1:] == '\n':
  235.             requestline = requestline[:-1]
  236.         self.requestline = requestline
  237.         words = string.split(requestline)
  238.         if len(words) == 3:
  239.             [command, path, version] = words
  240.             if version[:5] != 'HTTP/':
  241.                 self.send_error(400, "Bad request version (%s)" % `version`)
  242.                 return 0
  243.         elif len(words) == 2:
  244.             [command, path] = words
  245.             if command != 'GET':
  246.                 self.send_error(400,
  247.                                 "Bad HTTP/0.9 request type (%s)" % `command`)
  248.                 return 0
  249.         else:
  250.             self.send_error(400, "Bad request syntax (%s)" % `requestline`)
  251.             return 0
  252.         self.command, self.path, self.request_version = command, path, version
  253.         self.headers = self.MessageClass(self.rfile, 0)
  254.         return 1
  255.  
  256.     def handle(self):
  257.         """Handle a single HTTP request.
  258.  
  259.         You normally don't need to override this method; see the class
  260.         __doc__ string for information on how to handle specific HTTP
  261.         commands such as GET and POST.
  262.  
  263.         """
  264.  
  265.         self.raw_requestline = self.rfile.readline()
  266.         if not self.parse_request(): # An error code has been sent, just exit
  267.             return
  268.         mname = 'do_' + self.command
  269.         if not hasattr(self, mname):
  270.             self.send_error(501, "Unsupported method (%s)" % `self.command`)
  271.             return
  272.         method = getattr(self, mname)
  273.         method()
  274.  
  275.     def send_error(self, code, message=None):
  276.         """Send and log an error reply.
  277.  
  278.         Arguments are the error code, and a detailed message.
  279.         The detailed message defaults to the short entry matching the
  280.         response code.
  281.  
  282.         This sends an error response (so it must be called before any
  283.         output has been generated), logs the error, and finally sends
  284.         a piece of HTML explaining the error to the user.
  285.  
  286.         """
  287.  
  288.         try:
  289.             short, long = self.responses[code]
  290.         except KeyError:
  291.             short, long = '???', '???'
  292.         if not message:
  293.             message = short
  294.         explain = long
  295.         self.log_error("code %d, message %s", code, message)
  296.         self.send_response(code, message)
  297.         self.end_headers()
  298.         self.wfile.write(self.error_message_format %
  299.                          {'code': code,
  300.                           'message': message,
  301.                           'explain': explain})
  302.  
  303.     error_message_format = DEFAULT_ERROR_MESSAGE
  304.  
  305.     def send_response(self, code, message=None):
  306.         """Send the response header and log the response code.
  307.  
  308.         Also send two standard headers with the server software
  309.         version and the current date.
  310.  
  311.         """
  312.         self.log_request(code)
  313.         if message is None:
  314.             if self.responses.has_key(code):
  315.                 message = self.responses[code][0]
  316.             else:
  317.                 message = ''
  318.         if self.request_version != 'HTTP/0.9':
  319.             self.wfile.write("%s %s %s\r\n" %
  320.                              (self.protocol_version, str(code), message))
  321.         self.send_header('Server', self.version_string())
  322.         self.send_header('Date', self.date_time_string())
  323.  
  324.     def send_header(self, keyword, value):
  325.         """Send a MIME header."""
  326.         if self.request_version != 'HTTP/0.9':
  327.             self.wfile.write("%s: %s\r\n" % (keyword, value))
  328.  
  329.     def end_headers(self):
  330.         """Send the blank line ending the MIME headers."""
  331.         if self.request_version != 'HTTP/0.9':
  332.             self.wfile.write("\r\n")
  333.  
  334.     def log_request(self, code='-', size='-'):
  335.         """Log an accepted request.
  336.  
  337.         This is called by send_reponse().
  338.  
  339.         """
  340.  
  341.         self.log_message('"%s" %s %s',
  342.                          self.requestline, str(code), str(size))
  343.  
  344.     def log_error(self, *args):
  345.         """Log an error.
  346.  
  347.         This is called when a request cannot be fulfilled.  By
  348.         default it passes the message on to log_message().
  349.  
  350.         Arguments are the same as for log_message().
  351.  
  352.         XXX This should go to the separate error log.
  353.  
  354.         """
  355.  
  356.         apply(self.log_message, args)
  357.  
  358.     def log_message(self, format, *args):
  359.         """Log an arbitrary message.
  360.  
  361.         This is used by all other logging functions.  Override
  362.         it if you have specific logging wishes.
  363.  
  364.         The first argument, FORMAT, is a format string for the
  365.         message to be logged.  If the format string contains
  366.         any % escapes requiring parameters, they should be
  367.         specified as subsequent arguments (it's just like
  368.         printf!).
  369.  
  370.         The client host and current date/time are prefixed to
  371.         every message.
  372.  
  373.         """
  374.  
  375.         sys.stderr.write("%s - - [%s] %s\n" %
  376.                          (self.address_string(),
  377.                           self.log_date_time_string(),
  378.                           format%args))
  379.  
  380.     def version_string(self):
  381.         """Return the server software version string."""
  382.         return self.server_version + ' ' + self.sys_version
  383.  
  384.     def date_time_string(self):
  385.         """Return the current date and time formatted for a message header."""
  386.         now = time.time()
  387.         year, month, day, hh, mm, ss, wd, y, z = time.gmtime(now)
  388.         s = "%s, %02d %3s %4d %02d:%02d:%02d GMT" % (
  389.                 self.weekdayname[wd],
  390.                 day, self.monthname[month], year,
  391.                 hh, mm, ss)
  392.         return s
  393.  
  394.     def log_date_time_string(self):
  395.         """Return the current time formatted for logging."""
  396.         now = time.time()
  397.         year, month, day, hh, mm, ss, x, y, z = time.localtime(now)
  398.         s = "%02d/%3s/%04d %02d:%02d:%02d" % (
  399.                 day, self.monthname[month], year, hh, mm, ss)
  400.         return s
  401.  
  402.     weekdayname = ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun']
  403.  
  404.     monthname = [None,
  405.                  'Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun',
  406.                  'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec']
  407.  
  408.     def address_string(self):
  409.         """Return the client address formatted for logging.
  410.  
  411.         This version looks up the full hostname using gethostbyaddr(),
  412.         and tries to find a name that contains at least one dot.
  413.  
  414.         """
  415.  
  416.         (host, port) = self.client_address
  417.         try:
  418.             name, names, addresses = socket.gethostbyaddr(host)
  419.         except socket.error, msg:
  420.             return host
  421.         names.insert(0, name)
  422.         for name in names:
  423.             if '.' in name: return name
  424.         return names[0]
  425.  
  426.  
  427.     # Essentially static class variables
  428.  
  429.     # The version of the HTTP protocol we support.
  430.     # Don't override unless you know what you're doing (hint: incoming
  431.     # requests are required to have exactly this version string).
  432.     protocol_version = "HTTP/1.0"
  433.  
  434.     # The Message-like class used to parse headers
  435.     MessageClass = mimetools.Message
  436.  
  437.     # Table mapping response codes to messages; entries have the
  438.     # form {code: (shortmessage, longmessage)}.
  439.     # See http://www.w3.org/hypertext/WWW/Protocols/HTTP/HTRESP.html
  440.     responses = {
  441.         200: ('OK', 'Request fulfilled, document follows'),
  442.         201: ('Created', 'Document created, URL follows'),
  443.         202: ('Accepted',
  444.               'Request accepted, processing continues off-line'),
  445.         203: ('Partial information', 'Request fulfilled from cache'),
  446.         204: ('No response', 'Request fulfilled, nothing follows'),
  447.         
  448.         301: ('Moved', 'Object moved permanently -- see URI list'),
  449.         302: ('Found', 'Object moved temporarily -- see URI list'),
  450.         303: ('Method', 'Object moved -- see Method and URL list'),
  451.         304: ('Not modified',
  452.               'Document has not changed singe given time'),
  453.         
  454.         400: ('Bad request',
  455.               'Bad request syntax or unsupported method'),
  456.         401: ('Unauthorized',
  457.               'No permission -- see authorization schemes'),
  458.         402: ('Payment required',
  459.               'No payment -- see charging schemes'),
  460.         403: ('Forbidden',
  461.               'Request forbidden -- authorization will not help'),
  462.         404: ('Not found', 'Nothing matches the given URI'),
  463.         
  464.         500: ('Internal error', 'Server got itself in trouble'),
  465.         501: ('Not implemented',
  466.               'Server does not support this operation'),
  467.         502: ('Service temporarily overloaded',
  468.               'The server cannot process the request due to a high load'),
  469.         503: ('Gateway timeout',
  470.               'The gateway server did not receive a timely response'),
  471.         
  472.         }
  473.  
  474.  
  475. def test(HandlerClass = BaseHTTPRequestHandler,
  476.          ServerClass = HTTPServer):
  477.     """Test the HTTP request handler class.
  478.  
  479.     This runs an HTTP server on port 8000 (or the first command line
  480.     argument).
  481.  
  482.     """
  483.  
  484.     if sys.argv[1:]:
  485.         port = string.atoi(sys.argv[1])
  486.     else:
  487.         port = 8000
  488.     server_address = ('', port)
  489.  
  490.     httpd = ServerClass(server_address, HandlerClass)
  491.  
  492.     print "Serving HTTP on port", port, "..."
  493.     httpd.serve_forever()
  494.  
  495.  
  496. if __name__ == '__main__':
  497.     test()
  498.