Rewrote get_real_client_addr

pull/12/head
Sheng 2018-04-11 21:06:03 +08:00
parent ce3c70c419
commit e55e7e6898
1 changed files with 10 additions and 6 deletions

View File

@ -24,14 +24,18 @@ class MixinHandler(object):
def get_real_client_addr(self):
ip = self.request.headers.get('X-Real-Ip')
port = self.request.headers.get('X-Real-Port')
addr = None
if ip and port:
addr = (ip, int(port))
elif ip or port:
logging.warn('Wrong nginx configuration.')
if ip is None and port is None:
return
return addr
try:
port = int(port)
except (TypeError, ValueError):
pass
else:
if ip: # does not validate ip and port here
return (ip, port)
logging.warn('Bad nginx configuration.')
class IndexHandler(MixinHandler, tornado.web.RequestHandler):