-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathweb-connector.py
55 lines (43 loc) · 1.61 KB
/
web-connector.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
import gevent
from gevent import monkey
from gevent.pywsgi import WSGIServer
from DBUtils.PooledDB import PooledDB
import redis, json, mysql.connector, logging, logging.handlers
monkey.patch_all()
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().addHandler(SYSLOG)
logging.getLogger().setLevel(LOG_LEVEL)
global r, d
r = redis.StrictRedis(host='127.0.0.1', port=6379, db=0)
d = PooledDB(mysql.connector, 10, database='mysql', user='root', password = 'mysql', host='127.0.0.1')
def redis(response):
global r
response['redis'] = r.info()
def mysql(response):
conn = d.connection()
cursor = conn.cursor()
query = ('SELECT Host FROM user WHERE User = %s')
cursor.execute(query, ('root', ))
response['mysql'] = []
for (host) in cursor:
response['mysql'].append(host[0])
cursor.close()
conn.close()
def application(env, start_response):
if env['PATH_INFO'] == '/':
response = {}
g1 = gevent.spawn(redis, response)
g2 = gevent.spawn(mysql, response)
gevent.joinall([g1, g2])
start_response('200 OK', [('Content-Type', 'application/json')])
return [json.dumps(response)]
else:
start_response('404 Not Found', [('Content-Type', 'application/json')])
return ['Not Found']
if __name__ == '__main__':
logging.info('Listening on 8000...')
WSGIServer(('', 8000), application).serve_forever()