2015-01-14 00:05:26 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
#
|
|
|
|
# Copyright (C) 2015 GNS3 Technologies Inc.
|
|
|
|
#
|
|
|
|
# This program is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
import json
|
|
|
|
import jsonschema
|
2016-06-28 16:17:48 +00:00
|
|
|
import aiohttp
|
2015-01-14 00:05:26 +00:00
|
|
|
import aiohttp.web
|
2016-06-28 16:17:48 +00:00
|
|
|
import mimetypes
|
2019-03-06 16:00:01 +00:00
|
|
|
import aiofiles
|
2015-01-16 16:09:45 +00:00
|
|
|
import logging
|
2015-02-23 10:27:07 +00:00
|
|
|
import jinja2
|
2016-06-28 16:17:48 +00:00
|
|
|
import sys
|
|
|
|
import os
|
2015-02-23 10:27:07 +00:00
|
|
|
|
2015-07-03 18:03:37 +00:00
|
|
|
from ..utils.get_resource import get_resource
|
2015-01-26 13:40:31 +00:00
|
|
|
from ..version import __version__
|
2015-01-14 00:05:26 +00:00
|
|
|
|
2015-01-16 16:09:45 +00:00
|
|
|
log = logging.getLogger(__name__)
|
2015-07-03 18:03:37 +00:00
|
|
|
renderer = jinja2.Environment(loader=jinja2.FileSystemLoader(get_resource('templates')))
|
2015-01-14 00:05:26 +00:00
|
|
|
|
2019-03-06 16:00:01 +00:00
|
|
|
CHUNK_SIZE = 1024 * 8 # 8KB
|
|
|
|
|
2015-01-20 12:04:20 +00:00
|
|
|
|
2015-01-14 00:05:26 +00:00
|
|
|
class Response(aiohttp.web.Response):
|
|
|
|
|
2015-04-23 12:31:36 +00:00
|
|
|
def __init__(self, request=None, route=None, output_schema=None, headers={}, **kwargs):
|
2015-01-14 00:05:26 +00:00
|
|
|
self._route = route
|
|
|
|
self._output_schema = output_schema
|
2015-04-23 12:31:36 +00:00
|
|
|
self._request = request
|
2017-02-23 08:21:49 +00:00
|
|
|
headers['Connection'] = "close" # Disable keep alive because create trouble with old Qt (5.2, 5.3 and 5.4)
|
2015-01-14 00:05:26 +00:00
|
|
|
headers['X-Route'] = self._route
|
2015-01-26 13:40:31 +00:00
|
|
|
headers['Server'] = "Python/{0[0]}.{0[1]} GNS3/{1}".format(sys.version_info, __version__)
|
2015-01-14 00:05:26 +00:00
|
|
|
super().__init__(headers=headers, **kwargs)
|
|
|
|
|
2017-05-31 09:17:19 +00:00
|
|
|
def enable_chunked_encoding(self):
|
2017-05-31 09:03:44 +00:00
|
|
|
# Very important: do not send a content length otherwise QT closes the connection (curl can consume the feed)
|
2017-06-01 16:35:03 +00:00
|
|
|
if self.content_length:
|
|
|
|
self.content_length = None
|
2017-05-31 09:03:44 +00:00
|
|
|
super().enable_chunked_encoding()
|
|
|
|
|
2018-10-15 10:05:49 +00:00
|
|
|
async def prepare(self, request):
|
2018-10-16 08:56:06 +00:00
|
|
|
|
2015-02-05 14:35:52 +00:00
|
|
|
if log.getEffectiveLevel() == logging.DEBUG:
|
|
|
|
log.info("%s %s", request.method, request.path_qs)
|
|
|
|
log.debug("%s", dict(request.headers))
|
|
|
|
if isinstance(request.json, dict):
|
|
|
|
log.debug("%s", request.json)
|
|
|
|
log.info("Response: %d %s", self.status, self.reason)
|
|
|
|
log.debug(dict(self.headers))
|
2015-02-23 16:21:39 +00:00
|
|
|
if hasattr(self, 'body') and self.body is not None and self.headers["CONTENT-TYPE"] == "application/json":
|
2015-02-05 14:35:52 +00:00
|
|
|
log.debug(json.loads(self.body.decode('utf-8')))
|
2018-10-15 10:05:49 +00:00
|
|
|
return (await super().prepare(request))
|
2015-01-27 10:39:13 +00:00
|
|
|
|
2015-02-23 10:27:07 +00:00
|
|
|
def html(self, answer):
|
|
|
|
"""
|
|
|
|
Set the response content type to text/html and serialize
|
|
|
|
the content.
|
|
|
|
|
|
|
|
:param anwser The response as a Python object
|
|
|
|
"""
|
|
|
|
|
|
|
|
self.content_type = "text/html"
|
|
|
|
self.body = answer.encode('utf-8')
|
|
|
|
|
|
|
|
def template(self, template_filename, **kwargs):
|
|
|
|
"""
|
|
|
|
Render a template
|
|
|
|
|
|
|
|
:params template: Template name
|
|
|
|
:params kwargs: Template parameters
|
|
|
|
"""
|
|
|
|
template = renderer.get_template(template_filename)
|
|
|
|
kwargs["gns3_version"] = __version__
|
2015-04-23 12:31:36 +00:00
|
|
|
kwargs["gns3_host"] = self._request.host
|
2015-02-23 10:27:07 +00:00
|
|
|
self.html(template.render(**kwargs))
|
|
|
|
|
2015-01-14 00:05:26 +00:00
|
|
|
def json(self, answer):
|
2015-02-05 12:55:53 +00:00
|
|
|
"""
|
|
|
|
Set the response content type to application/json and serialize
|
|
|
|
the content.
|
|
|
|
|
|
|
|
:param anwser The response as a Python object
|
|
|
|
"""
|
2015-01-14 00:05:26 +00:00
|
|
|
|
|
|
|
self.content_type = "application/json"
|
2015-01-16 16:09:45 +00:00
|
|
|
if hasattr(answer, '__json__'):
|
|
|
|
answer = answer.__json__()
|
2015-07-24 08:09:16 +00:00
|
|
|
elif isinstance(answer, list):
|
|
|
|
newanswer = []
|
|
|
|
for elem in answer:
|
|
|
|
if hasattr(elem, '__json__'):
|
|
|
|
elem = elem.__json__()
|
|
|
|
newanswer.append(elem)
|
|
|
|
answer = newanswer
|
2015-01-14 00:05:26 +00:00
|
|
|
if self._output_schema is not None:
|
|
|
|
try:
|
|
|
|
jsonschema.validate(answer, self._output_schema)
|
|
|
|
except jsonschema.ValidationError as e:
|
2015-02-12 20:39:24 +00:00
|
|
|
log.error("Invalid output query. JSON schema error: {}".format(e.message))
|
2015-01-14 00:05:26 +00:00
|
|
|
raise aiohttp.web.HTTPBadRequest(text="{}".format(e))
|
|
|
|
self.body = json.dumps(answer, indent=4, sort_keys=True).encode('utf-8')
|
2015-02-23 16:21:39 +00:00
|
|
|
|
2019-03-06 16:00:01 +00:00
|
|
|
async def stream_file(self, path, status=200, set_content_type=None, set_content_length=True):
|
2016-06-28 16:17:48 +00:00
|
|
|
"""
|
2019-03-06 16:00:01 +00:00
|
|
|
Stream a file as a response
|
2016-06-28 16:17:48 +00:00
|
|
|
"""
|
2019-03-22 07:35:27 +00:00
|
|
|
encoding = None
|
2019-03-06 16:00:01 +00:00
|
|
|
|
2018-06-22 13:29:47 +00:00
|
|
|
if not os.path.exists(path):
|
|
|
|
raise aiohttp.web.HTTPNotFound()
|
|
|
|
|
2019-03-06 16:00:01 +00:00
|
|
|
if not set_content_type:
|
|
|
|
ct, encoding = mimetypes.guess_type(path)
|
|
|
|
if not ct:
|
|
|
|
ct = 'application/octet-stream'
|
|
|
|
else:
|
|
|
|
ct = set_content_type
|
|
|
|
|
2016-06-28 16:17:48 +00:00
|
|
|
if encoding:
|
|
|
|
self.headers[aiohttp.hdrs.CONTENT_ENCODING] = encoding
|
|
|
|
self.content_type = ct
|
|
|
|
|
2017-11-13 21:12:39 +00:00
|
|
|
if set_content_length:
|
|
|
|
st = os.stat(path)
|
|
|
|
self.last_modified = st.st_mtime
|
|
|
|
self.headers[aiohttp.hdrs.CONTENT_LENGTH] = str(st.st_size)
|
|
|
|
else:
|
|
|
|
self.enable_chunked_encoding()
|
2016-06-28 16:17:48 +00:00
|
|
|
|
2017-11-13 21:12:39 +00:00
|
|
|
self.set_status(status)
|
2016-06-28 16:17:48 +00:00
|
|
|
|
2017-11-13 21:12:39 +00:00
|
|
|
try:
|
2019-03-06 16:00:01 +00:00
|
|
|
async with aiofiles.open(path, 'rb') as f:
|
2018-10-15 10:05:49 +00:00
|
|
|
await self.prepare(self._request)
|
2017-11-13 21:12:39 +00:00
|
|
|
while True:
|
2019-03-06 16:00:01 +00:00
|
|
|
data = await f.read(CHUNK_SIZE)
|
2017-11-13 21:12:39 +00:00
|
|
|
if not data:
|
|
|
|
break
|
2018-10-15 10:05:49 +00:00
|
|
|
await self.write(data)
|
2017-11-13 21:12:39 +00:00
|
|
|
except FileNotFoundError:
|
|
|
|
raise aiohttp.web.HTTPNotFound()
|
|
|
|
except PermissionError:
|
|
|
|
raise aiohttp.web.HTTPForbidden()
|
2016-06-28 16:17:48 +00:00
|
|
|
|
2015-02-23 16:21:39 +00:00
|
|
|
def redirect(self, url):
|
|
|
|
"""
|
|
|
|
Redirect to url
|
|
|
|
:params url: Redirection URL
|
|
|
|
"""
|
|
|
|
raise aiohttp.web.HTTPFound(url)
|