view pylons_app/lib/base.py @ 185:3380ca40cdba

added version generation to pylons_app and showed it into template. Propagated baseController with some data for acces into each controller. Fixed simplehg middleware to get proper name of application
author Marcin Kuzminski <marcin@python-works.com>
date Sat, 22 May 2010 00:51:49 +0200
parents 8e01265fb586
children 568f95056716
line wrap: on
line source

"""The base Controller API

Provides the BaseController class for subclassing.
"""
from beaker.cache import cache_region
from pylons import config, tmpl_context as c, request, session
from pylons.controllers import WSGIController
from pylons.templating import render_mako as render
from pylons_app.lib.auth import LoginRequired, AuthUser
from pylons_app.lib.utils import get_repo_slug
from pylons_app.model import meta
from pylons_app.model.hg_model import HgModel
from pylons_app import get_version

@cache_region('long_term', 'cached_repo_list')
def _get_repos_cached():
    return [rep for rep in HgModel().get_repos()]

class BaseController(WSGIController):
    
    def __before__(self):
        c.hg_app_version = get_version()
        c.repos_prefix = config['hg_app_name']
        c.repo_name = get_repo_slug(request)
        c.hg_app_user = session.get('hg_app_user', AuthUser())
        c.cached_repo_list = _get_repos_cached()
        self.sa = meta.Session
    
    def __call__(self, environ, start_response):
        """Invoke the Controller"""
        # WSGIController.__call__ dispatches to the Controller method
        # the request is routed to. This routing information is
        # available in environ['pylons.routes_dict']
        try:
            return WSGIController.__call__(self, environ, start_response)
        finally:
            meta.Session.remove()