Left: | ||
Right: |
OLD | NEW |
---|---|
(Empty) | |
1 #!/usr/bin/env python3 | |
Vasily Kuznetsov
2017/08/04 18:01:46
Yay! Python 3 FTW!
f.lopez
2017/08/07 03:10:14
Done.
| |
2 | |
3 import argparse | |
4 import logging | |
5 | |
6 from http.server import BaseHTTPRequestHandler, HTTPServer | |
7 from string import Template | |
8 | |
9 punctuation = """!"#$%&'()*+,-./:;<=>?@[\]^_`{|}~""" | |
Vasily Kuznetsov
2017/08/04 18:01:46
These things look like constants, they should be n
f.lopez
2017/08/04 18:58:51
Acknowledged.
f.lopez
2017/08/07 03:10:15
Done.
f.lopez
2017/08/07 03:10:15
Done.
| |
10 proxy_token = 'http_' | |
11 | |
12 class Handler(BaseHTTPRequestHandler): | |
Vasily Kuznetsov
2017/08/04 18:01:46
PEP8 recommends to surround top level classes and
f.lopez
2017/08/04 18:58:51
Acknowledged.
f.lopez
2017/08/07 03:10:15
Done.
f.lopez
2017/08/07 03:10:15
Done.
| |
13 def set_values(self, values, log_format): | |
Vasily Kuznetsov
2017/08/04 18:01:46
So here you take a dict of variables as a paramete
f.lopez
2017/08/04 18:58:51
Ok this makes way more sense, thanks
f.lopez
2017/08/07 03:10:15
Done.
| |
14 for var in log_format.split(): | |
15 if proxy_token in var: | |
16 name = var.rstrip(punctuation).lstrip(punctuation) | |
Vasily Kuznetsov
2017/08/04 18:01:45
This seems to be equivalent to `var.strip(punctuat
f.lopez
2017/08/04 18:58:50
Acknowledged.
f.lopez
2017/08/07 03:10:15
Done.
f.lopez
2017/08/07 03:10:15
Done.
| |
17 new_var = name[len(proxy_token):].title() | |
Vasily Kuznetsov
2017/08/04 18:01:46
You seem to be assuming that `proxy_token` is at t
f.lopez
2017/08/04 18:58:51
you are right.
f.lopez
2017/08/07 03:10:15
Done.
| |
18 values[name] = self.headers.get(new_var, '-') | |
19 return values | |
20 | |
21 def log_mensaje(self, form, args): | |
Vasily Kuznetsov
2017/08/04 18:01:47
I'd suggest to name this in English. Not everyone
f.lopez
2017/08/04 18:58:51
Ok I did change it but apparently I forgot to push
f.lopez
2017/08/07 03:10:15
Done.
| |
22 message = Template(form) | |
23 logging.info(message.safe_substitute(args)) | |
24 | |
25 def do_POST(self): | |
26 status = 200 | |
27 content = bytes(self.response, "UTF-8") | |
28 values = { | |
29 "remote_addr": self.address_string(), | |
30 "time_local": self.log_date_time_string(), | |
31 "request": self.requestline, | |
32 "status": status, | |
33 "bytes_sent": len(content), | |
34 "Content-Type": "text/plain", | |
35 "Content-Length": len(content), | |
36 } | |
37 values = self.set_values(values, self.log_format) | |
38 self.log_mensaje(self.log_format, values) | |
39 self.send_response(status) | |
40 self.send_header("Content-Type",values["Content-Type"]) | |
Vasily Kuznetsov
2017/08/04 18:01:46
Our style guide recommends using single quotes in
f.lopez
2017/08/04 18:58:50
Gonna use what you suggested before for the code s
f.lopez
2017/08/07 03:10:14
Done.
| |
41 self.send_header("Content-Length", values["Content-Length"]) | |
42 self.end_headers() | |
43 self.wfile.write(content) | |
44 self.log_request(200) | |
45 | |
46 def run(server_class=HTTPServer, handler_class=Handler, port=8000, log_format='' ): | |
Vasily Kuznetsov
2017/08/04 18:01:46
Do you really need this function? There's a lot of
f.lopez
2017/08/04 18:58:51
Acknowledged.
f.lopez
2017/08/07 03:10:15
Done.
| |
47 server_address = ('', port) | |
48 httpd = server_class(server_address, handler_class) | |
49 httpd.serve_forever() | |
50 | |
51 if __name__ == '__main__': | |
52 parser = argparse.ArgumentParser() | |
53 parser.add_argument('port', action='store', | |
Vasily Kuznetsov
2017/08/04 18:01:46
Why is "port" a positional argument while all othe
f.lopez
2017/08/04 18:58:51
Acknowledged.
f.lopez
2017/08/07 03:10:14
Done.
| |
54 default=8000, type=int, | |
55 nargs='?', | |
56 help='Specify alternate port [default: 8000]') | |
57 parser.add_argument('--response', action='store', | |
Vasily Kuznetsov
2017/08/04 18:01:45
This is an optional parameter with no default. If
f.lopez
2017/08/04 18:58:51
Acknowledged.
f.lopez
2017/08/07 03:10:15
Done.
| |
58 type=str, nargs='?', | |
59 help='The response send to the client') | |
60 parser.add_argument('--log_format', action='store', | |
61 type=str, nargs='?', | |
62 help='Specify the format of the log ouput') | |
Vasily Kuznetsov
2017/08/04 18:01:47
I don't think you need the word "Specify" here. Th
f.lopez
2017/08/04 18:58:51
Acknowledged.
f.lopez
2017/08/07 03:10:14
Done.
| |
63 parser.add_argument('--log_file', action='store', | |
64 type=str, nargs='?', | |
65 help='The file where the logs will be written') | |
66 args = parser.parse_args() | |
67 handler_class = Handler | |
68 logging.basicConfig(filename=args.log_file, level=logging.INFO) | |
Vasily Kuznetsov
2017/08/04 18:01:46
What do you think about moving this line 2 lines d
f.lopez
2017/08/04 18:58:51
I'm not using the function anymore but I'll still
f.lopez
2017/08/07 03:10:14
Done.
| |
69 setattr(handler_class, 'log_format', args.log_format) | |
70 setattr(handler_class, 'response', args.response) | |
71 run(handler_class=handler_class, port=args.port, log_format=args.log_format) | |
72 | |
OLD | NEW |