remove port from ip
This commit is contained in:
parent
5bcbc5a337
commit
c2191153cf
|
@ -75,6 +75,10 @@ The following variables are accessible as properties on `Request` objects:
|
||||||
|
|
||||||
- `ip` (str) - IP address of the requester.
|
- `ip` (str) - IP address of the requester.
|
||||||
|
|
||||||
|
- `port` (str) - Port address of the requester.
|
||||||
|
|
||||||
|
- `socket` (tuple) - (IP, port) of the requester.
|
||||||
|
|
||||||
- `app` - a reference to the Sanic application object that is handling this request. This is useful when inside blueprints or other handlers in modules that do not have access to the global `app` object.
|
- `app` - a reference to the Sanic application object that is handling this request. This is useful when inside blueprints or other handlers in modules that do not have access to the global `app` object.
|
||||||
|
|
||||||
```python
|
```python
|
||||||
|
|
|
@ -46,7 +46,8 @@ class Request(dict):
|
||||||
__slots__ = (
|
__slots__ = (
|
||||||
'app', 'headers', 'version', 'method', '_cookies', 'transport',
|
'app', 'headers', 'version', 'method', '_cookies', 'transport',
|
||||||
'body', 'parsed_json', 'parsed_args', 'parsed_form', 'parsed_files',
|
'body', 'parsed_json', 'parsed_args', 'parsed_form', 'parsed_files',
|
||||||
'_ip', '_parsed_url', 'uri_template', 'stream', '_remote_addr'
|
'_ip', '_parsed_url', 'uri_template', 'stream', '_remote_addr',
|
||||||
|
'_socket', '_port'
|
||||||
)
|
)
|
||||||
|
|
||||||
def __init__(self, url_bytes, headers, version, method, transport):
|
def __init__(self, url_bytes, headers, version, method, transport):
|
||||||
|
@ -167,11 +168,27 @@ class Request(dict):
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def ip(self):
|
def ip(self):
|
||||||
if not hasattr(self, '_ip'):
|
if not hasattr(self, '_socket'):
|
||||||
self._ip = (self.transport.get_extra_info('peername') or
|
self._get_address()
|
||||||
(None, None))
|
|
||||||
return self._ip
|
return self._ip
|
||||||
|
|
||||||
|
@property
|
||||||
|
def port(self):
|
||||||
|
if not hasattr(self, '_socket'):
|
||||||
|
self._get_address()
|
||||||
|
return self._port
|
||||||
|
|
||||||
|
@property
|
||||||
|
def socket(self):
|
||||||
|
if not hasattr(self, '_socket'):
|
||||||
|
self._get_socket()
|
||||||
|
return self._socket
|
||||||
|
|
||||||
|
def _get_address(self):
|
||||||
|
self._socket = (self.transport.get_extra_info('peername') or
|
||||||
|
(None, None))
|
||||||
|
self._ip, self._port = self._socket
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def remote_addr(self):
|
def remote_addr(self):
|
||||||
"""Attempt to return the original client ip based on X-Forwarded-For.
|
"""Attempt to return the original client ip based on X-Forwarded-For.
|
||||||
|
|
|
@ -27,6 +27,16 @@ def test_sync():
|
||||||
|
|
||||||
assert response.text == 'Hello'
|
assert response.text == 'Hello'
|
||||||
|
|
||||||
|
def test_remote_address():
|
||||||
|
app = Sanic('test_text')
|
||||||
|
|
||||||
|
@app.route('/')
|
||||||
|
def handler(request):
|
||||||
|
return text("{}".format(request.ip))
|
||||||
|
|
||||||
|
request, response = app.test_client.get('/')
|
||||||
|
|
||||||
|
assert response.text == '127.0.0.1'
|
||||||
|
|
||||||
def test_text():
|
def test_text():
|
||||||
app = Sanic('test_text')
|
app = Sanic('test_text')
|
||||||
|
|
Loading…
Reference in New Issue
Block a user