Parent: [f976f3] (diff)

Child: [61625d] (diff)

Download this file

root.py    92 lines (75 with data), 3.2 kB

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
# -*- coding: utf-8 -*-
"""Main Controller"""
import logging, string, os
from collections import defaultdict
import pkg_resources
from tg import expose, flash, redirect, session, config, response, request
from tg.decorators import with_trailing_slash, without_trailing_slash
from pylons import c, g, cache
import ew
import ming
import allura
from allura.app import SitemapEntry
from allura.lib.base import WsgiDispatchController
from allura.lib import helpers as h
from allura.lib import plugin
from allura.controllers.error import ErrorController
from allura import model as M
from allura.lib.widgets import project_list as plw
from .auth import AuthController
from .search import SearchController, ProjectBrowseController
from .static import NewForgeController
from .site_admin import SiteAdminController
from .project import NeighborhoodController, HostNeighborhoodController
from .oembed import OEmbedController
from .rest import RestController
__all__ = ['RootController']
log = logging.getLogger(__name__)
class W:
project_summary = plw.ProjectSummary()
class RootController(WsgiDispatchController):
"""
The root controller for the allura application.
All the other controllers and WSGI applications should be mounted on this
controller. For example::
panel = ControlPanelController()
another_app = AnotherWSGIApplication()
Keep in mind that WSGI applications shouldn't be mounted directly: They
must be wrapped around with :class:`tg.controllers.WSGIAppController`.
"""
auth = AuthController()
error = ErrorController()
nf = NewForgeController()
nf.admin = SiteAdminController()
search = SearchController()
rest = RestController()
def __init__(self):
for n in M.Neighborhood.query.find():
if n.url_prefix.startswith('//'): continue
n.bind_controller(self)
self.browse = ProjectBrowseController()
super(RootController, self).__init__()
def _setup_request(self):
c.project = c.app = None
c.user = plugin.AuthenticationProvider.get(request).authenticate_request()
assert c.user is not None, 'c.user should always be at least User.anonymous()'
c.queued_messages = defaultdict(list)
def _cleanup_request(self):
g.send_all_messages()
@expose('jinja:allura:templates/project_list.html')
@with_trailing_slash
def index(self, **kw):
"""Handle the front-page."""
c.project_summary = W.project_summary
projects = M.Project.query.find(
dict(is_root=True,
shortname={'$ne':'--init--'},
deleted=False)).sort('shortname').all()
neighborhoods = M.Neighborhood.query.find().sort('name')
psort = [ (n, [ p for p in projects if p.neighborhood_id==n._id ])
for n in neighborhoods ]
categories = M.ProjectCategory.query.find({'parent_id':None}).sort('name').all()
c.custom_sidebar_menu = [
SitemapEntry(cat.label, '/browse/'+cat.name, className='nav_child') for cat in categories
]
return dict(projects=psort,title="All Projects",text=None)