-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwww.py
67 lines (50 loc) · 1.69 KB
/
www.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
# -*- coding: utf-8 -*-
import importlib
from pprint import pprint
from six.moves.configparser import ConfigParser, NoSectionError
from httoop import ServerHeader
from circuits import handler
from circuits.http.server.__main__ import HTTPServer
from circuits.http.server.wsgi import Application
try:
unicode
except NameError:
unicode = str
class Server(HTTPServer):
logformat = '%(h)s %(l)s %(u)s %(t)s %(s)s "%(r)s" "%(H)s" %(b)s "%(f)s" "%(a)s"'
def add_arguments(self):
add = self.parser.add_argument
add(
'-c', '--config', metavar='configuration file',
help='Specifies an alternative per-user configuration file.')
super(Server, self).add_arguments()
def add_components(self):
self.add_config()
super(Server, self).add_components()
self.add_domains()
def add_config(self):
self.config = ConfigParser()
if self.arguments.config:
self.config.read(self.arguments.config)
def add_domains(self):
try:
domains = self.config.get('general', 'domains').split(',')
except NoSectionError:
return
for domain in domains:
path = self.config.get(domain, 'module')
module = importlib.import_module(path)
module.main(self, domain)
@handler('response.complete', priority=-0.2)
def _log_failed_responses(self, client):
request = client.request
response = client.response
if response.status > 399:
print((int(response.status), unicode(request.method), tuple(request.protocol), unicode(request.uri)))
pprint(dict(request.headers))
if __name__ == '__main__':
ServerHeader.value = 'circuits.http/1.0 %s' % (ServerHeader,)
Server.main()
else:
ServerHeader.value = 'circuits.http.wsgi/1.0 %s' % (ServerHeader,)
application = Application(Server, '-w', '-n', '-d4')