ipserver.http_server package

IpServer’s Module Index

ipserver.server.http_server module

class BufferedReader(socket_io, buf_size)

Bases: _io.BufferedReader

pull_data()
read(*args, **kwargs)

Read and return up to n bytes.

If the argument is omitted, None, or negative, reads and returns all data until EOF.

If the argument is positive, and the underlying raw stream is not ‘interactive’, multiple raw reads may be issued to satisfy the byte count (unless EOF is reached first). But for interactive raw streams (as well as sockets and pipes), at most one raw read will be issued, and a short result does not imply that EOF is imminent.

Returns an empty bytes object on EOF.

Returns None if the underlying raw stream was open in non-blocking mode and no data is available at the moment.

readline(*args, **kwargs)

Read and return a line from the stream.

If size is specified, at most size bytes will be read.

The line terminator is always b’n’ for binary files; for text files, the newlines argument to open can be used to select the line terminator(s) recognized.

reset()
class HTTPConnSock(sock, addr)

Bases: ipserver.server.socket_server.ConnSock

complete_receive(binary)
post_send(binary)
receive()
send(binary)
send_queue(binary)
set_interactive_queue(interactive_queue)
class HTTPHandler(conn_sock, port, pipeline, args, shared_object)

Bases: http.server.SimpleHTTPRequestHandler

Parameters
create_http_digest_auth(httpio)
Parameters

httpio (HttpIo) –

create_http_file_uploader()
create_httpio(environ, gets, posts, post_data)
do_GET()

Serve a GET request.

do_HEAD()

Serve a HEAD request.

do_POST()
guess_type(path)

Guess the type of a file.

Argument is a PATH (a filename).

Return value is a string of the form type/subtype, usable for a MIME Content-type header.

The default implementation looks the file’s extension up in the table self.extensions_map, using application/octet-stream as a default; however it would be permissible (if slow) to look inside the data to make a better guess.

list_directory(path)

Helper to produce a directory listing (absent index.html).

Return value is either a file object, or None (indicating an error). In either case, the headers are sent, making the interface the same as for send_head().

log_message(format, *args)

Log an arbitrary message.

This is used by all other logging functions. Override it if you have specific logging wishes.

The first argument, FORMAT, is a format string for the message to be logged. If the format string contains any % escapes requiring parameters, they should be specified as subsequent arguments (it’s just like printf!).

The client ip and current date/time are prefixed to every message.

parse_request()

Parse a request (internal).

The request should be stored in self.raw_requestline; the results are in self.command, self.path, self.request_version and self.headers.

Return True for success, False for failure; on failure, an error is sent back.

receive()
send_error(code, message=None, explain=None)

Send and log an error reply.

Arguments are * code: an HTTP error code

3 digits

  • message: a simple optional 1 line reason phrase.

    *( HTAB / SP / VCHAR / %x80-FF ) defaults to short entry matching the response code

  • explain: a detailed message defaults to the long entry

    matching the response code.

This sends an error response (so it must be called before any output has been generated), logs the error, and finally sends a piece of HTML explaining the error to the user.

send_head()

Common code for GET and HEAD commands.

This sends the response code and MIME headers.

Return value is either a file object (which has to be copied to the outputfile by the caller unless the command was HEAD, and must be closed by the caller under all circumstances), or None, in which case the caller has nothing further to do.

set_forwarding_requester(forwarding_requester)
translate_path(path)

Translate a /-separated PATH to the local filename syntax.

Components that mean special things to the local file system (e.g. drive or directory names) are ignored. (XXX They should probably be diagnosed.)

version_string()

Return the server software version string.

class HTTPSSocketServer(factory, pipeline, args)

Bases: ipserver.server.socket_server.SSLSocketServer

accept(add_conn=True)
class HTTPSocketServer(factory, pipeline, args)

Bases: ipserver.server.socket_server.TCPSocketServer

accept(add_conn=True)
class HttpIo(method, request_path, environ, req_headers, gets, posts, post_data)

Bases: object

add_header(name, value)
print(v, nl=True)
print_byte(v, append=False)
set_dir(root_path, is_directory, directory_path)

ipserver.server.http_server_module module

class HTTPDigestAuth(httpio, command, path, pipeline)

Bases: object

authenticate()
create_md5_hash(data)
is_md5(v)
load(http_digest_auth)
load_from_file(file_path)
parse_auth_header(headers)
verify_authed(headers)
verify_user(auth_data, username, password)
class HttpFileUploader(pipeline)

Bases: object

create_md5(data)
create_token(httpio)
dispatch(httpio, mode)
get_directory_files(httpio)
get_upload_path(httpio)
is_valid_filename(filename)
save_file(httpio, name, mode)
show_foot(httpio)
show_form(httpio)
show_head(httpio)
verify_token(httpio)
class QueueLogger(name='queue')

Bases: object

flush()
classmethod get_instance(name='queue')
initialize()