-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathweb.py
executable file
·137 lines (109 loc) · 4.28 KB
/
web.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
#!/usr/bin/env python
"""
Basic template for gevent web server
"""
import gevent
from gevent import monkey
monkey.patch_all()
from gevent.lock import BoundedSemaphore
from gevent.pywsgi import WSGIServer
from urllib.parse import parse_qs
from http import cookies
import argparse, pymysql, redis, json, logging.handlers, signal, sys, uuid, datetime
SEM = BoundedSemaphore(1)
LOG_LEVEL = logging.DEBUG
LOG_FORMAT = '[%(levelname)1.1s %(asctime)s %(module)s:%(lineno)d] %(message)s'
SYSLOG = logging.handlers.SysLogHandler(address='/dev/log')
SYSLOG.setFormatter(logging.Formatter(LOG_FORMAT))
logging.basicConfig(format=LOG_FORMAT)
logging.getLogger().setLevel(LOG_LEVEL)
POOL = redis.ConnectionPool(host='localhost', port=6379,
db=0, max_connections=100)
def redis_exec():
"""
retrieve redis info array
"""
connection = redis.Redis(connection_pool=POOL)
return connection.info()
def mysql_exec():
"""
retrieve mysql hosts
"""
dbase = pymysql.connect(host='127.0.0.1', port=3306,
user='root', passwd='mysql', db='mysql')
result = dbase.cursor()
result.execute("SELECT Host FROM user WHERE User = 'root' LIMIT 1")
res = []
for host in result:
res.append(host[0])
result.close()
dbase.close()
return res
def application(environ, start_response):
"""
application handler
"""
status = '200 OK'
headers = [('Content-Type', 'application/json; charset=utf-8')]
if 'HTTP_COOKIE' not in environ:
ck = cookies.SimpleCookie()
ck['session'] = str(uuid.uuid4())
ck['session']['domain'] = '' # localhost
ck['session']['path'] = '/'
expires = datetime.datetime.utcnow() + datetime.timedelta(minutes=1)
ck['session']['expires'] = expires.strftime("%a, %d %b %Y %H:%M:%S GMT")
ck['session']['httponly'] = True
logging.getLogger().info('cookie generated: [{0}]={1}'.format(json.dumps(ck), ck['session'].value))
headers.append(('Set-Cookie', ck['session'].OutputString()))
else:
ck = SimpleCookie(environ['HTTP_COOKIE'])
logging.getLogger().info('cookie received: [{0}]={1}'.format(json.dumps(ck), ck['session'].value))
data = parse_qs(environ['QUERY_STRING'])
time = int(data.get('t', ['0'])[0])
with SEM:
if time > 0:
gevent.sleep(int(time))
gev1 = gevent.spawn(redis_exec)
gev2 = gevent.spawn(mysql_exec)
gevent.joinall([gev1, gev2])
if gev1.value == None or gev2.value == None:
start_response("503", headers)
yield ("%s\n" % json.dumps(
{"error": "Sorry, service unavailable."})[:1024]).encode('utf-8')
else:
start_response(status, headers)
yield ("%s\n" % json.dumps({"redis": gev1.value["redis_version"],
"mysql":gev2.value, "t":time})[:1024]).encode('utf-8')
def graceful_shutdown(gexc=None):
if gexc:
logging.getLogger().info('%s Exiting and closing connections...' % (gexc.__class__,))
sys.exit(0)
if __name__ == "__main__":
PARSER = argparse.ArgumentParser()
PARSER.add_argument('-s', '--syslog',
dest="syslog",
action='store_true',
help="enable syslog (default: disabled)")
PARSER.add_argument('-b', '--bind',
dest="bind",
default="0.0.0.0",
help="bind address (default: 0.0.0.0)")
PARSER.add_argument('-p', '--port',
dest="port",
type=int,
default=8000,
help="listen port (default: 8000)")
PARSER.add_argument('-i', '--instances',
dest="instances",
type=int,
default=0,
help="instances number (supervisor only, default:<cpu-count>)")
ARGS = PARSER.parse_args()
if ARGS.syslog:
logging.getLogger().addHandler(SYSLOG)
logging.info('Listening on %s:%d...' % (ARGS.bind, ARGS.port))
gevent.signal(signal.SIGTERM, graceful_shutdown)
try:
WSGIServer((ARGS.bind, ARGS.port), application).serve_forever()
except (KeyboardInterrupt, SystemExit) as err:
graceful_shutdown(err)