'''
Copyright 2013 Cosnita Radu Viorel
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated
documentation files (the "Software"), to deal in the Software without restriction, including without limitation
the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software,
and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
.. codeauthor:: Radu Viorel Cosnita <radu.cosnita@gmail.com>
.. py:module:: fantastico.contrib.dynamic_pages.pages_router
'''
from fantastico.contrib.dynamic_pages.models.pages import DynamicPage, DynamicPageModel
from fantastico.exceptions import FantasticoTemplateNotFoundError
from fantastico.mvc.base_controller import BaseController
from fantastico.mvc.controller_decorators import ControllerProvider, Controller
from fantastico.mvc.models.model_filter import ModelFilter
from webob.response import Response
import os
@ControllerProvider()
[docs]class PagesRouter(BaseController):
'''This class provides the API for managing dynamic pages. In addition, it creates the special route **/dynamic/<page_url>**
used to access pages stored in the database. From dynamic pages module perspective, a web page is nothing more than a relation
between :py:class:`fantastico.contrib.dynamic_pages.models.pages.DynamicPage` and
:py:class:`fantastico.contrib.dynamic_pages.models.pages.DynamicPageModel`.
.. image:: /images/components/dynamic_pages/erd.png
A typical template for dynamic pages might look like:
.. code-block:: html
<!DOCTYPE html>
<html lang="{{page.language}}">
<head>
<meta http-equiv="Content-type" content="text/html;charset=UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="keywords" content="{{page.keywords}}" />
<meta name="description" content="{{page.description}}" />
<link href="/frontend/static/css/bootstrap-responsive.css" rel="stylesheet">
<link href="/frontend/static/css/forhidraulic.css" rel="stylesheet">
<title>{{page.title}}</title>
</head>
<body>
<h1>{{page.article_left.value}}</h1>
<h2>{{page.article_right.value}}</h1>
</body>
</html>
'''
MAX_PAGE_ATTRS = 100
@Controller(url="/dynamic/(?P<page_url>.*)$", method="GET",
models={"DynamicPage": "fantastico.contrib.dynamic_pages.models.pages.DynamicPage",
"DynamicPageModel": "fantastico.contrib.dynamic_pages.models.pages.DynamicPageModel"})
[docs] def serve_dynamic_page(self, request, page_url, os_provider=os):
'''This method is used to route all /dynamic/... requests to database pages. It renders the configured template into
database binded to :py:class:`fantastico.contrib.models.pages.DynamicPageModel` values.'''
page_facade = request.models.DynamicPage
page_attr_facade = request.models.DynamicPageModel
page_url = "/%s" % page_url
page = page_facade.get_records_paged(0, 1, ModelFilter(DynamicPage.url, page_url, ModelFilter.EQ))
if len(page) == 0:
msg_not_found = "Page %s does not exist." % page_url
return Response(msg_not_found.encode(), content_type="text/html", status=404)
page = page[0]
page_attrs = page_attr_facade.get_records_paged(0, self.MAX_PAGE_ATTRS, ModelFilter(DynamicPageModel.page_id, page.id,
ModelFilter.EQ))
return self._load_page(page, page_attrs, os_provider)
def _load_page(self, page, page_attrs, os_provider):
'''This method loads page content based on the given page entity and given page attributes.'''
page_model = {}
for attr in page_attrs:
if not attr:
continue
page_model[attr.name] = {"value": attr.value}
page_model.update({"title": page.title,
"keywords": page.keywords,
"description": page.description,
"language": page.language})
try:
# this fails first time because all components can see only own templates.
content = self.load_template(page.template, {"page": page_model})
except FantasticoTemplateNotFoundError:
parent_path = os_provider.path.abspath("%s../../" % self._tpl_loader.searchpath[0])
self._tpl_loader.searchpath.append(parent_path)
content = self.load_template(page.template, {"page": page_model})
return Response(content.encode(), content_type="text/html")