3 This module builds on BaseHTTPServer by implementing the standard GET
4 and HEAD requests in a fairly straightforward manner.
11 __all__
= ["SimpleHTTPRequestHandler"]
22 from cStringIO
import StringIO
24 from StringIO
import StringIO
27 class SimpleHTTPRequestHandler(BaseHTTPServer
.BaseHTTPRequestHandler
):
29 """Simple HTTP request handler with GET and HEAD commands.
31 This serves files from the current directory and any of its
32 subdirectories. The MIME type for files is determined by
33 calling the .guess_type() method.
35 The GET and HEAD requests are identical except that the HEAD
36 request omits the actual contents of the file.
40 server_version
= "SimpleHTTP/" + __version__
43 """Serve a GET request."""
46 self
.copyfile(f
, self
.wfile
)
50 """Serve a HEAD request."""
56 """Common code for GET and HEAD commands.
58 This sends the response code and MIME headers.
60 Return value is either a file object (which has to be copied
61 to the outputfile by the caller unless the command was HEAD,
62 and must be closed by the caller under all circumstances), or
63 None, in which case the caller has nothing further to do.
66 path
= self
.translate_path(self
.path
)
68 if os
.path
.isdir(path
):
69 for index
in "index.html", "index.htm":
70 index
= os
.path
.join(path
, index
)
71 if os
.path
.exists(index
):
75 return self
.list_directory(path
)
76 ctype
= self
.guess_type(path
)
77 if ctype
.startswith('text/'):
84 self
.send_error(404, "File not found")
86 self
.send_response(200)
87 self
.send_header("Content-type", ctype
)
88 fs
= os
.fstat(f
.fileno())
89 self
.send_header("Content-Length", str(fs
[6]))
90 self
.send_header("Last-Modified", self
.date_time_string(fs
.st_mtime
))
94 def list_directory(self
, path
):
95 """Helper to produce a directory listing (absent index.html).
97 Return value is either a file object, or None (indicating an
98 error). In either case, the headers are sent, making the
99 interface the same as for send_head().
103 list = os
.listdir(path
)
105 self
.send_error(404, "No permission to list directory")
107 list.sort(key
=lambda a
: a
.lower())
109 displaypath
= cgi
.escape(urllib
.unquote(self
.path
))
110 f
.write("<title>Directory listing for %s</title>\n" % displaypath
)
111 f
.write("<h2>Directory listing for %s</h2>\n" % displaypath
)
112 f
.write("<hr>\n<ul>\n")
114 fullname
= os
.path
.join(path
, name
)
115 displayname
= linkname
= name
116 # Append / for directories or @ for symbolic links
117 if os
.path
.isdir(fullname
):
118 displayname
= name
+ "/"
119 linkname
= name
+ "/"
120 if os
.path
.islink(fullname
):
121 displayname
= name
+ "@"
122 # Note: a link to a directory displays with @ and links with /
123 f
.write('<li><a href="%s">%s</a>\n'
124 % (urllib
.quote(linkname
), cgi
.escape(displayname
)))
125 f
.write("</ul>\n<hr>\n")
128 self
.send_response(200)
129 self
.send_header("Content-type", "text/html")
130 self
.send_header("Content-Length", str(length
))
134 def translate_path(self
, path
):
135 """Translate a /-separated PATH to the local filename syntax.
137 Components that mean special things to the local file system
138 (e.g. drive or directory names) are ignored. (XXX They should
139 probably be diagnosed.)
142 # abandon query parameters
143 path
= urlparse
.urlparse(path
)[2]
144 path
= posixpath
.normpath(urllib
.unquote(path
))
145 words
= path
.split('/')
146 words
= filter(None, words
)
149 drive
, word
= os
.path
.splitdrive(word
)
150 head
, word
= os
.path
.split(word
)
151 if word
in (os
.curdir
, os
.pardir
): continue
152 path
= os
.path
.join(path
, word
)
155 def copyfile(self
, source
, outputfile
):
156 """Copy all data between two file objects.
158 The SOURCE argument is a file object open for reading
159 (or anything with a read() method) and the DESTINATION
160 argument is a file object open for writing (or
161 anything with a write() method).
163 The only reason for overriding this would be to change
164 the block size or perhaps to replace newlines by CRLF
165 -- note however that this the default server uses this
166 to copy binary data as well.
169 shutil
.copyfileobj(source
, outputfile
)
171 def guess_type(self
, path
):
172 """Guess the type of a file.
174 Argument is a PATH (a filename).
176 Return value is a string of the form type/subtype,
177 usable for a MIME Content-type header.
179 The default implementation looks the file's extension
180 up in the table self.extensions_map, using application/octet-stream
181 as a default; however it would be permissible (if
182 slow) to look inside the data to make a better guess.
186 base
, ext
= posixpath
.splitext(path
)
187 if ext
in self
.extensions_map
:
188 return self
.extensions_map
[ext
]
190 if ext
in self
.extensions_map
:
191 return self
.extensions_map
[ext
]
193 return self
.extensions_map
['']
195 if not mimetypes
.inited
:
196 mimetypes
.init() # try to read system mime.types
197 extensions_map
= mimetypes
.types_map
.copy()
198 extensions_map
.update({
199 '': 'application/octet-stream', # Default
206 def test(HandlerClass
= SimpleHTTPRequestHandler
,
207 ServerClass
= BaseHTTPServer
.HTTPServer
):
208 BaseHTTPServer
.test(HandlerClass
, ServerClass
)
211 if __name__
== '__main__':