blob: cb0c4dcf49f1a751b1a7ebd1b7449c80d97e1e72 [file] [log] [blame]
# Copyright 2013 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
from fnmatch import fnmatch
import logging
import mimetypes
import posixpath
import traceback
from urlparse import urlsplit
from data_source_registry import CreateDataSources
from file_system import FileNotFoundError
from redirector import Redirector
from servlet import Servlet, Response
from svn_constants import DOCS_PATH, PUBLIC_TEMPLATE_PATH
from third_party.handlebar import Handlebar
def _MakeHeaders(content_type):
return {
'x-frame-options': 'sameorigin',
'content-type': content_type,
'cache-control': 'max-age=300',
}
class RenderServlet(Servlet):
'''Servlet which renders templates.
'''
class Delegate(object):
def CreateServerInstance(self):
raise NotImplementedError(self.__class__)
def __init__(self, request, delegate):
Servlet.__init__(self, request)
self._delegate = delegate
def Get(self):
''' Render the page for a request.
'''
# TODO(kalman): a consistent path syntax (even a Path class?) so that we
# can stop being so conservative with stripping and adding back the '/'s.
path = self._request.path.lstrip('/')
server_instance = self._delegate.CreateServerInstance()
try:
return self._GetSuccessResponse(path, server_instance)
except FileNotFoundError:
# Maybe it didn't find the file because its canonical location is
# somewhere else; this is distinct from "redirects", which are typically
# explicit. This is implicit.
canonical_result = server_instance.path_canonicalizer.Canonicalize(path)
redirect = canonical_result.path.lstrip('/')
if path != redirect:
return Response.Redirect('/' + redirect,
permanent=canonical_result.permanent)
# Not found for reals. Find the closest 404.html file and serve that;
# e.g. if the path is extensions/manifest/typo.html then first look for
# extensions/manifest/404.html, then extensions/404.html, then 404.html.
#
# Failing that just print 'Not Found' but that should preferrably never
# happen, because it would look really bad.
path_components = path.split('/')
for i in xrange(len(path_components) - 1, -1, -1):
try:
path_404 = posixpath.join(*(path_components[0:i] + ['404.html']))
response = self._GetSuccessResponse(path_404, server_instance)
return Response.NotFound(response.content.ToString(),
headers=response.headers)
except FileNotFoundError: continue
logging.error('No 404.html found in %s' % path)
return Response.NotFound('Not Found', headers=_MakeHeaders('text/plain'))
def _GetSuccessResponse(self, path, server_instance):
'''Returns the Response from trying to render |path| with
|server_instance|. If |path| isn't found then a FileNotFoundError will be
raised, such that the only responses that will be returned from this method
are Ok and Redirect.
'''
content_provider, path = (
server_instance.content_providers.GetByServeFrom(path))
assert content_provider, 'No ContentProvider found for %s' % path
redirect = Redirector(
server_instance.compiled_fs_factory,
content_provider.file_system).Redirect(self._request.host, path)
if redirect is not None:
return Response.Redirect(redirect, permanent=False)
content_and_type = content_provider.GetContentAndType(
self._request.host, path).Get()
if not content_and_type.content:
logging.error('%s had empty content' % path)
if isinstance(content_and_type.content, Handlebar):
content_and_type.content = server_instance.template_renderer.Render(
content_and_type.content, self._request)
return Response.Ok(content_and_type.content,
headers=_MakeHeaders(content_and_type.content_type))